@charset "UTF-8";
/* Partials
================================================ */
@import url("https://fonts.googleapis.com/css?family=Roboto:300,500,700,900");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, 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;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* Font stacks
================================================ */
/* Base Typography
================================================ */
body {
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  color: #080808;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

strong {
  font-weight: bold;
}

sup {
  vertical-align: super;
  font-size: smaller;
}

sub {
  vertical-align: sub;
  font-size: smaller;
}

h1, h2, h3, h4, h5 {
  color: #080808;
}

h1 {
  font-size: 30px;
  line-height: 36px;
  font-weight: bold;
  margin-bottom: 21px;
}

h2 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 22px;
}

h3 {
  font-size: 36px;
  font-weight: 300;
  margin-bottom: 22px;
}

h4 {
  font-size: 24px;
  line-height: 28px;
  font-weight: 300;
  margin-bottom: 30px;
}

h5 {
  font-size: 18px;
  font-weight: 18px;
}

a {
  color: #AF272F;
}

p {
  line-height: 19px;
  margin-bottom: 18px;
}

@media only screen and (min-width: 600px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 48px;
    line-height: 52px;
    font-weight: bold;
    margin-bottom: 21px;
  }

  p {
    line-height: 24px;
    margin-bottom: 18px;
  }
}
ol, ul {
  margin-bottom: 18px;
  line-height: 24px;
}

ol {
  list-style: decimal;
  margin-left: 20px;
}
ol li {
  margin-bottom: 20px;
}
ol li:last-of-type {
  margin-bottom: 0;
}

ul {
  list-style: none;
}
ul li {
  margin-bottom: 20px;
}
ul li:before {
  font-size: 20px;
  margin-right: 10px;
  content: "•";
  color: #080808;
  font-weight: bold;
  display: inline-block;
}
ul li:last-of-type {
  margin-bottom: 0;
}

em {
  font-style: italic;
}

/* Links
================================================ */
a {
  color: inherit;
  text-decoration: none;
}

a {
  color: #AF272F;
}

.content a {
  text-decoration: underline;
}

a.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #FFF;
  background: #AF272F;
  border-radius: 4px;
  height: 50px;
  text-align: center;
  min-width: 190px;
  padding: 0 20px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  font-weight: 400;
}
a.btn:hover {
  background: #720E14;
}

.wpcf7-form-control-wrap {
  position: relative;
}
.wpcf7-form-control-wrap.invalid-field:after {
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: calc(50% - 7px);
  content: "";
  height: 25px;
  width: 25px;
  background: url("../library/images/cross.svg") center/contain no-repeat;
}
.wpcf7-form-control-wrap.invalid-field input {
  border: 1px solid #AF272F;
}
.wpcf7-form-control-wrap.valid-field:after {
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: calc(50% - 7px);
  content: "";
  height: 25px;
  width: 25px;
  background: url("../library/images/tick.svg") center/contain no-repeat;
}
.wpcf7-form-control-wrap.valid-field input, .wpcf7-form-control-wrap.valid-field select, .wpcf7-form-control-wrap.valid-field textarea {
  border: 1px solid #69c17c;
}
.wpcf7-form-control-wrap.your-message.valid-field:after, .wpcf7-form-control-wrap.your-message.invalid-field:after {
  top: 20px;
}

.newsletter-popup .wpcf7-form-control-wrap.invalid-field:after, .newsletter-sign-up .wpcf7-form-control-wrap.invalid-field:after {
  top: calc(50% - 12px);
  height: 20px;
  width: 20px;
}
.newsletter-popup .wpcf7-form-control-wrap.valid-field:after, .newsletter-sign-up .wpcf7-form-control-wrap.valid-field:after {
  top: calc(50% - 12px);
  height: 25px;
  width: 25px;
}

input {
  font-family: "Roboto", sans-serif;
  font-size: 18px;
  font-weight: 300;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #FFF;
  border: 1px solid #D8D7D1;
  border-radius: 4px;
  height: 50px;
  padding-left: 15px;
  outline: 0;
}
input:focus {
  border-color: #080808;
}

textarea {
  border: 1px solid #D8D7D1;
  border-radius: 4px;
}

/* GENERAL LAYOUT
================================================ */
body {
  padding-top: 90px;
  color: #080808;
}

@media only screen and (max-width: 1024px) {
  html.noscroll, body.noscroll {
    height: 100%;
    position: relative;
    overflow: hidden;
  }
}
@media only screen and (min-width: 1024px) {
  body {
    padding-top: 0;
  }
  body.fixedheaderactive {
    padding-top: 785px;
  }

  body:not(.home) {
    padding-top: 205px;
  }
}
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
}

.tag {
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 16px;
  min-width: 50px;
  padding: 0 12px 0 12px;
  text-transform: uppercase;
  font-size: 10px;
  background: #F4F4F4;
  border-radius: 10px;
}

/* LOADER
================================================ */
.page-loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  -webkit-transition: all 0.8s ease;
  transition: all 0.8s ease;
  opacity: 1;
  visibility: visible;
}
.page-loader--hidden {
  opacity: 0;
  visibility: hidden;
}
.page-loader--change {
  opacity: 1;
  visibility: visible;
}

.anchor-link {
  display: block;
  position: relative;
  top: -100px;
}

@media only screen and (min-width: 1024px) {
  .anchor-link {
    top: -200px;
  }
}
/* Blog image styling
================================================ */
img.alignright, img.alignleft, img.aligncenter, img.alignnone {
  display: block;
  max-width: 100%;
  height: auto;
}

img.alignright {
  margin: 1em 0;
}

img.alignleft {
  margin: 1em 0;
}

img.alignnone {
  margin: 1em 0;
}

img.aligncenter {
  display: block;
  margin: 1em;
}

a img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (min-width: 768px) {
  img.alignright {
    float: right;
    margin: 0 0 1em 1em;
  }

  img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
  }

  img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  a img.alignright {
    float: right;
    margin: 0 0 1em 1em;
  }

  a img.alignleft {
    float: left;
    margin: 0 1em 1em 0;
  }

  a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }

  .section {
    padding: 65px 0;
  }
}
/* Third Party Payload
================================================ */
/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -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-item img {
  display: block;
  width: 100%;
}

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

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

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

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

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

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

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

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

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

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

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

.owl-carousel .animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

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

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

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

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.owl-height {
  -webkit-transition: height 0.5s ease-in-out;
  transition: height 0.5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

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

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          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;
  -webkit-transition: -webkit-transform 0.1s ease;
  transition: -webkit-transform 0.1s ease;
  transition: transform 0.1s ease;
  transition: transform 0.1s ease, -webkit-transform 0.1s ease;
}

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

.owl-carousel .owl-video-playing .owl-video-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;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

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

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

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

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

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

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

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

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

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

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

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

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

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

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
/*!
 *  Font Awesome 4.6.3 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: "FontAwesome";
  src: url("../library/fonts/fontawesome-webfont.eot?v=4.6.3");
  src: url("../library/fonts/fontawesome-webfont.eot?#iefix&v=4.6.3") format("embedded-opentype"), url("../library/fonts/fontawesome-webfont.woff2?v=4.6.3") format("woff2"), url("../libraryibrary/fonts/fontawesome-webfont.woff?v=4.6.3") format("woff"), url("../library/fonts/fontawesome-webfont.ttf?v=4.6.3") format("truetype"), url("../library/fonts/fontawesome-webfont.svg?v=4.6.3#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-fw {
  width: 1.28571429em;
  text-align: center;
}

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}

.fa-li.fa-lg {
  left: -1.85714286em;
}

.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eeeeee;
  border-radius: 0.1em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left {
  margin-right: 0.3em;
}

.fa.fa-pull-right {
  margin-left: 0.3em;
}

/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}

.pull-left {
  float: left;
}

.fa.pull-left {
  margin-right: 0.3em;
}

.fa.pull-right {
  margin-left: 0.3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.fa-flip-vertical {
  -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
  -webkit-transform: scale(1, -1);
  transform: scale(1, -1);
}

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  -webkit-filter: none;
          filter: none;
}

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #ffffff;
}

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "";
}

.fa-music:before {
  content: "";
}

.fa-search:before {
  content: "";
}

.fa-envelope-o:before {
  content: "";
}

.fa-heart:before {
  content: "";
}

.fa-star:before {
  content: "";
}

.fa-star-o:before {
  content: "";
}

.fa-user:before {
  content: "";
}

.fa-film:before {
  content: "";
}

.fa-th-large:before {
  content: "";
}

.fa-th:before {
  content: "";
}

.fa-th-list:before {
  content: "";
}

.fa-check:before {
  content: "";
}

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "";
}

.fa-search-plus:before {
  content: "";
}

.fa-search-minus:before {
  content: "";
}

.fa-power-off:before {
  content: "";
}

.fa-signal:before {
  content: "";
}

.fa-gear:before,
.fa-cog:before {
  content: "";
}

.fa-trash-o:before {
  content: "";
}

.fa-home:before {
  content: "";
}

.fa-file-o:before {
  content: "";
}

.fa-clock-o:before {
  content: "";
}

.fa-road:before {
  content: "";
}

.fa-download:before {
  content: "";
}

.fa-arrow-circle-o-down:before {
  content: "";
}

.fa-arrow-circle-o-up:before {
  content: "";
}

.fa-inbox:before {
  content: "";
}

.fa-play-circle-o:before {
  content: "";
}

.fa-rotate-right:before,
.fa-repeat:before {
  content: "";
}

.fa-refresh:before {
  content: "";
}

.fa-list-alt:before {
  content: "";
}

.fa-lock:before {
  content: "";
}

.fa-flag:before {
  content: "";
}

.fa-headphones:before {
  content: "";
}

.fa-volume-off:before {
  content: "";
}

.fa-volume-down:before {
  content: "";
}

.fa-volume-up:before {
  content: "";
}

.fa-qrcode:before {
  content: "";
}

.fa-barcode:before {
  content: "";
}

.fa-tag:before {
  content: "";
}

.fa-tags:before {
  content: "";
}

.fa-book:before {
  content: "";
}

.fa-bookmark:before {
  content: "";
}

.fa-print:before {
  content: "";
}

.fa-camera:before {
  content: "";
}

.fa-font:before {
  content: "";
}

.fa-bold:before {
  content: "";
}

.fa-italic:before {
  content: "";
}

.fa-text-height:before {
  content: "";
}

.fa-text-width:before {
  content: "";
}

.fa-align-left:before {
  content: "";
}

.fa-align-center:before {
  content: "";
}

.fa-align-right:before {
  content: "";
}

.fa-align-justify:before {
  content: "";
}

.fa-list:before {
  content: "";
}

.fa-dedent:before,
.fa-outdent:before {
  content: "";
}

.fa-indent:before {
  content: "";
}

.fa-video-camera:before {
  content: "";
}

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "";
}

.fa-pencil:before {
  content: "";
}

.fa-map-marker:before {
  content: "";
}

.fa-adjust:before {
  content: "";
}

.fa-tint:before {
  content: "";
}

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "";
}

.fa-share-square-o:before {
  content: "";
}

.fa-check-square-o:before {
  content: "";
}

.fa-arrows:before {
  content: "";
}

.fa-step-backward:before {
  content: "";
}

.fa-fast-backward:before {
  content: "";
}

.fa-backward:before {
  content: "";
}

.fa-play:before {
  content: "";
}

.fa-pause:before {
  content: "";
}

.fa-stop:before {
  content: "";
}

.fa-forward:before {
  content: "";
}

.fa-fast-forward:before {
  content: "";
}

.fa-step-forward:before {
  content: "";
}

.fa-eject:before {
  content: "";
}

.fa-chevron-left:before {
  content: "";
}

.fa-chevron-right:before {
  content: "";
}

.fa-plus-circle:before {
  content: "";
}

.fa-minus-circle:before {
  content: "";
}

.fa-times-circle:before {
  content: "";
}

.fa-check-circle:before {
  content: "";
}

.fa-question-circle:before {
  content: "";
}

.fa-info-circle:before {
  content: "";
}

.fa-crosshairs:before {
  content: "";
}

.fa-times-circle-o:before {
  content: "";
}

.fa-check-circle-o:before {
  content: "";
}

.fa-ban:before {
  content: "";
}

.fa-arrow-left:before {
  content: "";
}

.fa-arrow-right:before {
  content: "";
}

.fa-arrow-up:before {
  content: "";
}

.fa-arrow-down:before {
  content: "";
}

.fa-mail-forward:before,
.fa-share:before {
  content: "";
}

.fa-expand:before {
  content: "";
}

.fa-compress:before {
  content: "";
}

.fa-plus:before {
  content: "";
}

.fa-minus:before {
  content: "";
}

.fa-asterisk:before {
  content: "";
}

.fa-exclamation-circle:before {
  content: "";
}

.fa-gift:before {
  content: "";
}

.fa-leaf:before {
  content: "";
}

.fa-fire:before {
  content: "";
}

.fa-eye:before {
  content: "";
}

.fa-eye-slash:before {
  content: "";
}

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "";
}

.fa-plane:before {
  content: "";
}

.fa-calendar:before {
  content: "";
}

.fa-random:before {
  content: "";
}

.fa-comment:before {
  content: "";
}

.fa-magnet:before {
  content: "";
}

.fa-chevron-up:before {
  content: "";
}

.fa-chevron-down:before {
  content: "";
}

.fa-retweet:before {
  content: "";
}

.fa-shopping-cart:before {
  content: "";
}

.fa-folder:before {
  content: "";
}

.fa-folder-open:before {
  content: "";
}

.fa-arrows-v:before {
  content: "";
}

.fa-arrows-h:before {
  content: "";
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "";
}

.fa-twitter-square:before {
  content: "";
}

.fa-facebook-square:before {
  content: "";
}

.fa-camera-retro:before {
  content: "";
}

.fa-key:before {
  content: "";
}

.fa-gears:before,
.fa-cogs:before {
  content: "";
}

.fa-comments:before {
  content: "";
}

.fa-thumbs-o-up:before {
  content: "";
}

.fa-thumbs-o-down:before {
  content: "";
}

.fa-star-half:before {
  content: "";
}

.fa-heart-o:before {
  content: "";
}

.fa-sign-out:before {
  content: "";
}

.fa-linkedin-square:before {
  content: "";
}

.fa-thumb-tack:before {
  content: "";
}

.fa-external-link:before {
  content: "";
}

.fa-sign-in:before {
  content: "";
}

.fa-trophy:before {
  content: "";
}

.fa-github-square:before {
  content: "";
}

.fa-upload:before {
  content: "";
}

.fa-lemon-o:before {
  content: "";
}

.fa-phone:before {
  content: "";
}

.fa-square-o:before {
  content: "";
}

.fa-bookmark-o:before {
  content: "";
}

.fa-phone-square:before {
  content: "";
}

.fa-twitter:before {
  content: "";
}

.fa-facebook-f:before,
.fa-facebook:before {
  content: "";
}

.fa-github:before {
  content: "";
}

.fa-unlock:before {
  content: "";
}

.fa-credit-card:before {
  content: "";
}

.fa-feed:before,
.fa-rss:before {
  content: "";
}

.fa-hdd-o:before {
  content: "";
}

.fa-bullhorn:before {
  content: "";
}

.fa-bell:before {
  content: "";
}

.fa-certificate:before {
  content: "";
}

.fa-hand-o-right:before {
  content: "";
}

.fa-hand-o-left:before {
  content: "";
}

.fa-hand-o-up:before {
  content: "";
}

.fa-hand-o-down:before {
  content: "";
}

.fa-arrow-circle-left:before {
  content: "";
}

.fa-arrow-circle-right:before {
  content: "";
}

.fa-arrow-circle-up:before {
  content: "";
}

.fa-arrow-circle-down:before {
  content: "";
}

.fa-globe:before {
  content: "";
}

.fa-wrench:before {
  content: "";
}

.fa-tasks:before {
  content: "";
}

.fa-filter:before {
  content: "";
}

.fa-briefcase:before {
  content: "";
}

.fa-arrows-alt:before {
  content: "";
}

.fa-group:before,
.fa-users:before {
  content: "";
}

.fa-chain:before,
.fa-link:before {
  content: "";
}

.fa-cloud:before {
  content: "";
}

.fa-flask:before {
  content: "";
}

.fa-cut:before,
.fa-scissors:before {
  content: "";
}

.fa-copy:before,
.fa-files-o:before {
  content: "";
}

.fa-paperclip:before {
  content: "";
}

.fa-save:before,
.fa-floppy-o:before {
  content: "";
}

.fa-square:before {
  content: "";
}

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "";
}

.fa-list-ul:before {
  content: "";
}

.fa-list-ol:before {
  content: "";
}

.fa-strikethrough:before {
  content: "";
}

.fa-underline:before {
  content: "";
}

.fa-table:before {
  content: "";
}

.fa-magic:before {
  content: "";
}

.fa-truck:before {
  content: "";
}

.fa-pinterest:before {
  content: "";
}

.fa-pinterest-square:before {
  content: "";
}

.fa-google-plus-square:before {
  content: "";
}

.fa-google-plus:before {
  content: "";
}

.fa-money:before {
  content: "";
}

.fa-caret-down:before {
  content: "";
}

.fa-caret-up:before {
  content: "";
}

.fa-caret-left:before {
  content: "";
}

.fa-caret-right:before {
  content: "";
}

.fa-columns:before {
  content: "";
}

.fa-unsorted:before,
.fa-sort:before {
  content: "";
}

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "";
}

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "";
}

.fa-envelope:before {
  content: "";
}

.fa-linkedin:before {
  content: "";
}

.fa-rotate-left:before,
.fa-undo:before {
  content: "";
}

.fa-legal:before,
.fa-gavel:before {
  content: "";
}

.fa-dashboard:before,
.fa-tachometer:before {
  content: "";
}

.fa-comment-o:before {
  content: "";
}

.fa-comments-o:before {
  content: "";
}

.fa-flash:before,
.fa-bolt:before {
  content: "";
}

.fa-sitemap:before {
  content: "";
}

.fa-umbrella:before {
  content: "";
}

.fa-paste:before,
.fa-clipboard:before {
  content: "";
}

.fa-lightbulb-o:before {
  content: "";
}

.fa-exchange:before {
  content: "";
}

.fa-cloud-download:before {
  content: "";
}

.fa-cloud-upload:before {
  content: "";
}

.fa-user-md:before {
  content: "";
}

.fa-stethoscope:before {
  content: "";
}

.fa-suitcase:before {
  content: "";
}

.fa-bell-o:before {
  content: "";
}

.fa-coffee:before {
  content: "";
}

.fa-cutlery:before {
  content: "";
}

.fa-file-text-o:before {
  content: "";
}

.fa-building-o:before {
  content: "";
}

.fa-hospital-o:before {
  content: "";
}

.fa-ambulance:before {
  content: "";
}

.fa-medkit:before {
  content: "";
}

.fa-fighter-jet:before {
  content: "";
}

.fa-beer:before {
  content: "";
}

.fa-h-square:before {
  content: "";
}

.fa-plus-square:before {
  content: "";
}

.fa-angle-double-left:before {
  content: "";
}

.fa-angle-double-right:before {
  content: "";
}

.fa-angle-double-up:before {
  content: "";
}

.fa-angle-double-down:before {
  content: "";
}

.fa-angle-left:before {
  content: "";
}

.fa-angle-right:before {
  content: "";
}

.fa-angle-up:before {
  content: "";
}

.fa-angle-down:before {
  content: "";
}

.fa-desktop:before {
  content: "";
}

.fa-laptop:before {
  content: "";
}

.fa-tablet:before {
  content: "";
}

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "";
}

.fa-circle-o:before {
  content: "";
}

.fa-quote-left:before {
  content: "";
}

.fa-quote-right:before {
  content: "";
}

.fa-spinner:before {
  content: "";
}

.fa-circle:before {
  content: "";
}

.fa-mail-reply:before,
.fa-reply:before {
  content: "";
}

.fa-github-alt:before {
  content: "";
}

.fa-folder-o:before {
  content: "";
}

.fa-folder-open-o:before {
  content: "";
}

.fa-smile-o:before {
  content: "";
}

.fa-frown-o:before {
  content: "";
}

.fa-meh-o:before {
  content: "";
}

.fa-gamepad:before {
  content: "";
}

.fa-keyboard-o:before {
  content: "";
}

.fa-flag-o:before {
  content: "";
}

.fa-flag-checkered:before {
  content: "";
}

.fa-terminal:before {
  content: "";
}

.fa-code:before {
  content: "";
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "";
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "";
}

.fa-location-arrow:before {
  content: "";
}

.fa-crop:before {
  content: "";
}

.fa-code-fork:before {
  content: "";
}

.fa-unlink:before,
.fa-chain-broken:before {
  content: "";
}

.fa-question:before {
  content: "";
}

.fa-info:before {
  content: "";
}

.fa-exclamation:before {
  content: "";
}

.fa-superscript:before {
  content: "";
}

.fa-subscript:before {
  content: "";
}

.fa-eraser:before {
  content: "";
}

.fa-puzzle-piece:before {
  content: "";
}

.fa-microphone:before {
  content: "";
}

.fa-microphone-slash:before {
  content: "";
}

.fa-shield:before {
  content: "";
}

.fa-calendar-o:before {
  content: "";
}

.fa-fire-extinguisher:before {
  content: "";
}

.fa-rocket:before {
  content: "";
}

.fa-maxcdn:before {
  content: "";
}

.fa-chevron-circle-left:before {
  content: "";
}

.fa-chevron-circle-right:before {
  content: "";
}

.fa-chevron-circle-up:before {
  content: "";
}

.fa-chevron-circle-down:before {
  content: "";
}

.fa-html5:before {
  content: "";
}

.fa-css3:before {
  content: "";
}

.fa-anchor:before {
  content: "";
}

.fa-unlock-alt:before {
  content: "";
}

.fa-bullseye:before {
  content: "";
}

.fa-ellipsis-h:before {
  content: "";
}

.fa-ellipsis-v:before {
  content: "";
}

.fa-rss-square:before {
  content: "";
}

.fa-play-circle:before {
  content: "";
}

.fa-ticket:before {
  content: "";
}

.fa-minus-square:before {
  content: "";
}

.fa-minus-square-o:before {
  content: "";
}

.fa-level-up:before {
  content: "";
}

.fa-level-down:before {
  content: "";
}

.fa-check-square:before {
  content: "";
}

.fa-pencil-square:before {
  content: "";
}

.fa-external-link-square:before {
  content: "";
}

.fa-share-square:before {
  content: "";
}

.fa-compass:before {
  content: "";
}

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "";
}

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "";
}

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "";
}

.fa-euro:before,
.fa-eur:before {
  content: "";
}

.fa-gbp:before {
  content: "";
}

.fa-dollar:before,
.fa-usd:before {
  content: "";
}

.fa-rupee:before,
.fa-inr:before {
  content: "";
}

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "";
}

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "";
}

.fa-won:before,
.fa-krw:before {
  content: "";
}

.fa-bitcoin:before,
.fa-btc:before {
  content: "";
}

.fa-file:before {
  content: "";
}

.fa-file-text:before {
  content: "";
}

.fa-sort-alpha-asc:before {
  content: "";
}

.fa-sort-alpha-desc:before {
  content: "";
}

.fa-sort-amount-asc:before {
  content: "";
}

.fa-sort-amount-desc:before {
  content: "";
}

.fa-sort-numeric-asc:before {
  content: "";
}

.fa-sort-numeric-desc:before {
  content: "";
}

.fa-thumbs-up:before {
  content: "";
}

.fa-thumbs-down:before {
  content: "";
}

.fa-youtube-square:before {
  content: "";
}

.fa-youtube:before {
  content: "";
}

.fa-xing:before {
  content: "";
}

.fa-xing-square:before {
  content: "";
}

.fa-youtube-play:before {
  content: "";
}

.fa-dropbox:before {
  content: "";
}

.fa-stack-overflow:before {
  content: "";
}

.fa-instagram:before {
  content: "";
}

.fa-flickr:before {
  content: "";
}

.fa-adn:before {
  content: "";
}

.fa-bitbucket:before {
  content: "";
}

.fa-bitbucket-square:before {
  content: "";
}

.fa-tumblr:before {
  content: "";
}

.fa-tumblr-square:before {
  content: "";
}

.fa-long-arrow-down:before {
  content: "";
}

.fa-long-arrow-up:before {
  content: "";
}

.fa-long-arrow-left:before {
  content: "";
}

.fa-long-arrow-right:before {
  content: "";
}

.fa-apple:before {
  content: "";
}

.fa-windows:before {
  content: "";
}

.fa-android:before {
  content: "";
}

.fa-linux:before {
  content: "";
}

.fa-dribbble:before {
  content: "";
}

.fa-skype:before {
  content: "";
}

.fa-foursquare:before {
  content: "";
}

.fa-trello:before {
  content: "";
}

.fa-female:before {
  content: "";
}

.fa-male:before {
  content: "";
}

.fa-gittip:before,
.fa-gratipay:before {
  content: "";
}

.fa-sun-o:before {
  content: "";
}

.fa-moon-o:before {
  content: "";
}

.fa-archive:before {
  content: "";
}

.fa-bug:before {
  content: "";
}

.fa-vk:before {
  content: "";
}

.fa-weibo:before {
  content: "";
}

.fa-renren:before {
  content: "";
}

.fa-pagelines:before {
  content: "";
}

.fa-stack-exchange:before {
  content: "";
}

.fa-arrow-circle-o-right:before {
  content: "";
}

.fa-arrow-circle-o-left:before {
  content: "";
}

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "";
}

.fa-dot-circle-o:before {
  content: "";
}

.fa-wheelchair:before {
  content: "";
}

.fa-vimeo-square:before {
  content: "";
}

.fa-turkish-lira:before,
.fa-try:before {
  content: "";
}

.fa-plus-square-o:before {
  content: "";
}

.fa-space-shuttle:before {
  content: "";
}

.fa-slack:before {
  content: "";
}

.fa-envelope-square:before {
  content: "";
}

.fa-wordpress:before {
  content: "";
}

.fa-openid:before {
  content: "";
}

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "";
}

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "";
}

.fa-yahoo:before {
  content: "";
}

.fa-google:before {
  content: "";
}

.fa-reddit:before {
  content: "";
}

.fa-reddit-square:before {
  content: "";
}

.fa-stumbleupon-circle:before {
  content: "";
}

.fa-stumbleupon:before {
  content: "";
}

.fa-delicious:before {
  content: "";
}

.fa-digg:before {
  content: "";
}

.fa-pied-piper-pp:before {
  content: "";
}

.fa-pied-piper-alt:before {
  content: "";
}

.fa-drupal:before {
  content: "";
}

.fa-joomla:before {
  content: "";
}

.fa-language:before {
  content: "";
}

.fa-fax:before {
  content: "";
}

.fa-building:before {
  content: "";
}

.fa-child:before {
  content: "";
}

.fa-paw:before {
  content: "";
}

.fa-spoon:before {
  content: "";
}

.fa-cube:before {
  content: "";
}

.fa-cubes:before {
  content: "";
}

.fa-behance:before {
  content: "";
}

.fa-behance-square:before {
  content: "";
}

.fa-steam:before {
  content: "";
}

.fa-steam-square:before {
  content: "";
}

.fa-recycle:before {
  content: "";
}

.fa-automobile:before,
.fa-car:before {
  content: "";
}

.fa-cab:before,
.fa-taxi:before {
  content: "";
}

.fa-tree:before {
  content: "";
}

.fa-spotify:before {
  content: "";
}

.fa-deviantart:before {
  content: "";
}

.fa-soundcloud:before {
  content: "";
}

.fa-database:before {
  content: "";
}

.fa-file-pdf-o:before {
  content: "";
}

.fa-file-word-o:before {
  content: "";
}

.fa-file-excel-o:before {
  content: "";
}

.fa-file-powerpoint-o:before {
  content: "";
}

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "";
}

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "";
}

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "";
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "";
}

.fa-file-code-o:before {
  content: "";
}

.fa-vine:before {
  content: "";
}

.fa-codepen:before {
  content: "";
}

.fa-jsfiddle:before {
  content: "";
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "";
}

.fa-circle-o-notch:before {
  content: "";
}

.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
  content: "";
}

.fa-ge:before,
.fa-empire:before {
  content: "";
}

.fa-git-square:before {
  content: "";
}

.fa-git:before {
  content: "";
}

.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
  content: "";
}

.fa-tencent-weibo:before {
  content: "";
}

.fa-qq:before {
  content: "";
}

.fa-wechat:before,
.fa-weixin:before {
  content: "";
}

.fa-send:before,
.fa-paper-plane:before {
  content: "";
}

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "";
}

.fa-history:before {
  content: "";
}

.fa-circle-thin:before {
  content: "";
}

.fa-header:before {
  content: "";
}

.fa-paragraph:before {
  content: "";
}

.fa-sliders:before {
  content: "";
}

.fa-share-alt:before {
  content: "";
}

.fa-share-alt-square:before {
  content: "";
}

.fa-bomb:before {
  content: "";
}

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "";
}

.fa-tty:before {
  content: "";
}

.fa-binoculars:before {
  content: "";
}

.fa-plug:before {
  content: "";
}

.fa-slideshare:before {
  content: "";
}

.fa-twitch:before {
  content: "";
}

.fa-yelp:before {
  content: "";
}

.fa-newspaper-o:before {
  content: "";
}

.fa-wifi:before {
  content: "";
}

.fa-calculator:before {
  content: "";
}

.fa-paypal:before {
  content: "";
}

.fa-google-wallet:before {
  content: "";
}

.fa-cc-visa:before {
  content: "";
}

.fa-cc-mastercard:before {
  content: "";
}

.fa-cc-discover:before {
  content: "";
}

.fa-cc-amex:before {
  content: "";
}

.fa-cc-paypal:before {
  content: "";
}

.fa-cc-stripe:before {
  content: "";
}

.fa-bell-slash:before {
  content: "";
}

.fa-bell-slash-o:before {
  content: "";
}

.fa-trash:before {
  content: "";
}

.fa-copyright:before {
  content: "";
}

.fa-at:before {
  content: "";
}

.fa-eyedropper:before {
  content: "";
}

.fa-paint-brush:before {
  content: "";
}

.fa-birthday-cake:before {
  content: "";
}

.fa-area-chart:before {
  content: "";
}

.fa-pie-chart:before {
  content: "";
}

.fa-line-chart:before {
  content: "";
}

.fa-lastfm:before {
  content: "";
}

.fa-lastfm-square:before {
  content: "";
}

.fa-toggle-off:before {
  content: "";
}

.fa-toggle-on:before {
  content: "";
}

.fa-bicycle:before {
  content: "";
}

.fa-bus:before {
  content: "";
}

.fa-ioxhost:before {
  content: "";
}

.fa-angellist:before {
  content: "";
}

.fa-cc:before {
  content: "";
}

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "";
}

.fa-meanpath:before {
  content: "";
}

.fa-buysellads:before {
  content: "";
}

.fa-connectdevelop:before {
  content: "";
}

.fa-dashcube:before {
  content: "";
}

.fa-forumbee:before {
  content: "";
}

.fa-leanpub:before {
  content: "";
}

.fa-sellsy:before {
  content: "";
}

.fa-shirtsinbulk:before {
  content: "";
}

.fa-simplybuilt:before {
  content: "";
}

.fa-skyatlas:before {
  content: "";
}

.fa-cart-plus:before {
  content: "";
}

.fa-cart-arrow-down:before {
  content: "";
}

.fa-diamond:before {
  content: "";
}

.fa-ship:before {
  content: "";
}

.fa-user-secret:before {
  content: "";
}

.fa-motorcycle:before {
  content: "";
}

.fa-street-view:before {
  content: "";
}

.fa-heartbeat:before {
  content: "";
}

.fa-venus:before {
  content: "";
}

.fa-mars:before {
  content: "";
}

.fa-mercury:before {
  content: "";
}

.fa-intersex:before,
.fa-transgender:before {
  content: "";
}

.fa-transgender-alt:before {
  content: "";
}

.fa-venus-double:before {
  content: "";
}

.fa-mars-double:before {
  content: "";
}

.fa-venus-mars:before {
  content: "";
}

.fa-mars-stroke:before {
  content: "";
}

.fa-mars-stroke-v:before {
  content: "";
}

.fa-mars-stroke-h:before {
  content: "";
}

.fa-neuter:before {
  content: "";
}

.fa-genderless:before {
  content: "";
}

.fa-facebook-official:before {
  content: "";
}

.fa-pinterest-p:before {
  content: "";
}

.fa-whatsapp:before {
  content: "";
}

.fa-server:before {
  content: "";
}

.fa-user-plus:before {
  content: "";
}

.fa-user-times:before {
  content: "";
}

.fa-hotel:before,
.fa-bed:before {
  content: "";
}

.fa-viacoin:before {
  content: "";
}

.fa-train:before {
  content: "";
}

.fa-subway:before {
  content: "";
}

.fa-medium:before {
  content: "";
}

.fa-yc:before,
.fa-y-combinator:before {
  content: "";
}

.fa-optin-monster:before {
  content: "";
}

.fa-opencart:before {
  content: "";
}

.fa-expeditedssl:before {
  content: "";
}

.fa-battery-4:before,
.fa-battery-full:before {
  content: "";
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
  content: "";
}

.fa-battery-2:before,
.fa-battery-half:before {
  content: "";
}

.fa-battery-1:before,
.fa-battery-quarter:before {
  content: "";
}

.fa-battery-0:before,
.fa-battery-empty:before {
  content: "";
}

.fa-mouse-pointer:before {
  content: "";
}

.fa-i-cursor:before {
  content: "";
}

.fa-object-group:before {
  content: "";
}

.fa-object-ungroup:before {
  content: "";
}

.fa-sticky-note:before {
  content: "";
}

.fa-sticky-note-o:before {
  content: "";
}

.fa-cc-jcb:before {
  content: "";
}

.fa-cc-diners-club:before {
  content: "";
}

.fa-clone:before {
  content: "";
}

.fa-balance-scale:before {
  content: "";
}

.fa-hourglass-o:before {
  content: "";
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
  content: "";
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
  content: "";
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
  content: "";
}

.fa-hourglass:before {
  content: "";
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
  content: "";
}

.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
  content: "";
}

.fa-hand-scissors-o:before {
  content: "";
}

.fa-hand-lizard-o:before {
  content: "";
}

.fa-hand-spock-o:before {
  content: "";
}

.fa-hand-pointer-o:before {
  content: "";
}

.fa-hand-peace-o:before {
  content: "";
}

.fa-trademark:before {
  content: "";
}

.fa-registered:before {
  content: "";
}

.fa-creative-commons:before {
  content: "";
}

.fa-gg:before {
  content: "";
}

.fa-gg-circle:before {
  content: "";
}

.fa-tripadvisor:before {
  content: "";
}

.fa-odnoklassniki:before {
  content: "";
}

.fa-odnoklassniki-square:before {
  content: "";
}

.fa-get-pocket:before {
  content: "";
}

.fa-wikipedia-w:before {
  content: "";
}

.fa-safari:before {
  content: "";
}

.fa-chrome:before {
  content: "";
}

.fa-firefox:before {
  content: "";
}

.fa-opera:before {
  content: "";
}

.fa-internet-explorer:before {
  content: "";
}

.fa-tv:before,
.fa-television:before {
  content: "";
}

.fa-contao:before {
  content: "";
}

.fa-500px:before {
  content: "";
}

.fa-amazon:before {
  content: "";
}

.fa-calendar-plus-o:before {
  content: "";
}

.fa-calendar-minus-o:before {
  content: "";
}

.fa-calendar-times-o:before {
  content: "";
}

.fa-calendar-check-o:before {
  content: "";
}

.fa-industry:before {
  content: "";
}

.fa-map-pin:before {
  content: "";
}

.fa-map-signs:before {
  content: "";
}

.fa-map-o:before {
  content: "";
}

.fa-map:before {
  content: "";
}

.fa-commenting:before {
  content: "";
}

.fa-commenting-o:before {
  content: "";
}

.fa-houzz:before {
  content: "";
}

.fa-vimeo:before {
  content: "";
}

.fa-black-tie:before {
  content: "";
}

.fa-fonticons:before {
  content: "";
}

.fa-reddit-alien:before {
  content: "";
}

.fa-edge:before {
  content: "";
}

.fa-credit-card-alt:before {
  content: "";
}

.fa-codiepie:before {
  content: "";
}

.fa-modx:before {
  content: "";
}

.fa-fort-awesome:before {
  content: "";
}

.fa-usb:before {
  content: "";
}

.fa-product-hunt:before {
  content: "";
}

.fa-mixcloud:before {
  content: "";
}

.fa-scribd:before {
  content: "";
}

.fa-pause-circle:before {
  content: "";
}

.fa-pause-circle-o:before {
  content: "";
}

.fa-stop-circle:before {
  content: "";
}

.fa-stop-circle-o:before {
  content: "";
}

.fa-shopping-bag:before {
  content: "";
}

.fa-shopping-basket:before {
  content: "";
}

.fa-hashtag:before {
  content: "";
}

.fa-bluetooth:before {
  content: "";
}

.fa-bluetooth-b:before {
  content: "";
}

.fa-percent:before {
  content: "";
}

.fa-gitlab:before {
  content: "";
}

.fa-wpbeginner:before {
  content: "";
}

.fa-wpforms:before {
  content: "";
}

.fa-envira:before {
  content: "";
}

.fa-universal-access:before {
  content: "";
}

.fa-wheelchair-alt:before {
  content: "";
}

.fa-question-circle-o:before {
  content: "";
}

.fa-blind:before {
  content: "";
}

.fa-audio-description:before {
  content: "";
}

.fa-volume-control-phone:before {
  content: "";
}

.fa-braille:before {
  content: "";
}

.fa-assistive-listening-systems:before {
  content: "";
}

.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
  content: "";
}

.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
  content: "";
}

.fa-glide:before {
  content: "";
}

.fa-glide-g:before {
  content: "";
}

.fa-signing:before,
.fa-sign-language:before {
  content: "";
}

.fa-low-vision:before {
  content: "";
}

.fa-viadeo:before {
  content: "";
}

.fa-viadeo-square:before {
  content: "";
}

.fa-snapchat:before {
  content: "";
}

.fa-snapchat-ghost:before {
  content: "";
}

.fa-snapchat-square:before {
  content: "";
}

.fa-pied-piper:before {
  content: "";
}

.fa-first-order:before {
  content: "";
}

.fa-yoast:before {
  content: "";
}

.fa-themeisle:before {
  content: "";
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
  content: "";
}

.fa-fa:before,
.fa-font-awesome:before {
  content: "";
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

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

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

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

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

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

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

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

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

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;
  height: 100%;
  left: 0;
  outline: none;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  width: 100%;
  z-index: 99992;
}

.fancybox-container * {
  -webkit-box-sizing: border-box;
          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;
  -webkit-transition-duration: inherit;
          transition-duration: inherit;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
          transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
  opacity: 0.9;
  -webkit-transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
          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;
  -webkit-transition: opacity 0.25s ease, visibility 0s ease 0.25s;
  transition: opacity 0.25s ease, visibility 0s ease 0.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;
  -webkit-transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
  transition: opacity 0.25s ease 0s, visibility 0s ease 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;
  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: translateZ(0);
          transform: translateZ(0);
  z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}

.fancybox-slide {
  -webkit-backface-visibility: hidden;
  /* Using without prefix would break IE11 */
  display: none;
  height: 100%;
  left: 0;
  outline: none;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  position: absolute;
  text-align: center;
  top: 0;
  -webkit-transition-property: opacity, -webkit-transform;
  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;
  font-size: 0;
  height: 100%;
  vertical-align: middle;
  width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block;
}

.fancybox-slide--image {
  overflow: hidden;
  padding: 44px 0;
}

.fancybox-slide--image::before {
  display: none;
}

.fancybox-slide--html {
  padding: 6px;
}

.fancybox-content {
  background: #fff;
  display: inline-block;
  margin: 0;
  max-width: 100%;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 44px;
  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;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  left: 0;
  max-width: none;
  overflow: visible;
  padding: 0;
  position: absolute;
  top: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition-property: opacity, -webkit-transform;
  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-swipe .fancybox-content,
.fancybox-can-pan .fancybox-content {
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox-is-grabbing .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--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--pdf .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
  height: 100%;
  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;
}

.fancybox-video,
.fancybox-iframe {
  background: transparent;
  border: 0;
  display: block;
  height: 100%;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
}

/* Fix iOS */
.fancybox-iframe {
  left: 0;
  position: absolute;
  top: 0;
}

.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;
  -webkit-box-shadow: none;
          box-shadow: none;
  cursor: pointer;
  display: inline-block;
  height: 44px;
  margin: 0;
  padding: 10px;
  position: relative;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  vertical-align: top;
  visibility: inherit;
  width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
  color: #ccc;
}

.fancybox-button:hover {
  color: #fff;
}

.fancybox-button:focus {
  outline: none;
}

.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}

.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
  color: #888;
  cursor: default;
  outline: none;
}

/* Fix IE11 */
.fancybox-button div {
  height: 100%;
}

.fancybox-button svg {
  display: block;
  height: 100%;
  overflow: visible;
  position: relative;
  width: 100%;
}

.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}

.fancybox-button--play svg:nth-child(2),
.fancybox-button--fsenter svg:nth-child(2) {
  display: none;
}

.fancybox-button--pause svg:nth-child(1),
.fancybox-button--fsexit svg:nth-child(1) {
  display: none;
}

.fancybox-progress {
  background: #ff5268;
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  z-index: 99998;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
  background: transparent;
  border: 0;
  border-radius: 0;
  color: #ccc;
  cursor: pointer;
  opacity: 0.8;
  padding: 8px;
  position: absolute;
  right: -12px;
  top: -44px;
  z-index: 401;
}

.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}

.fancybox-slide--html .fancybox-close-small {
  color: currentColor;
  padding: 10px;
  right: 0;
  top: 0;
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
  background-clip: content-box;
  height: 100px;
  opacity: 0;
  position: absolute;
  top: calc(50% - 50px);
  width: 70px;
}

.fancybox-navigation .fancybox-button div {
  padding: 7px;
}

.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  left: env(safe-area-inset-left);
  padding: 31px 26px 31px 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
  padding: 31px 6px 31px 26px;
  right: 0;
  right: env(safe-area-inset-right);
}

/* Caption */
.fancybox-caption {
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.85)), color-stop(50%, rgba(0, 0, 0, 0.3)), color-stop(65%, rgba(0, 0, 0, 0.15)), color-stop(75.5%, rgba(0, 0, 0, 0.075)), color-stop(82.85%, rgba(0, 0, 0, 0.037)), color-stop(88%, rgba(0, 0, 0, 0.019)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  color: #eee;
  font-size: 14px;
  font-weight: 400;
  left: 0;
  line-height: 1.5;
  padding: 75px 44px 25px 44px;
  pointer-events: none;
  right: 0;
  text-align: center;
  z-index: 99996;
}

.fancybox-caption--separate {
  margin-top: -50px;
}

.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}

.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 1s linear infinite;
          animation: fancybox-rotate 1s linear infinite;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  height: 50px;
  left: 50%;
  margin: -25px 0 0 -25px;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  width: 50px;
  z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Transition effects */
.fancybox-animated {
  -webkit-transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
          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;
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
          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);
          transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  -webkit-transform: rotate(360deg);
          transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  -webkit-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);
}

/* Styling for Small-Screen Devices */
@media all and (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }

  .fancybox-slide--image {
    padding: 6px 0;
  }

  .fancybox-close-small {
    right: -6px;
  }

  .fancybox-slide--image .fancybox-close-small {
    background: #4e4e4e;
    color: #f2f4f6;
    height: 36px;
    opacity: 1;
    padding: 6px;
    right: 0;
    top: 0;
    width: 36px;
  }

  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}
/* 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;
  -webkit-transition: all 0.2s;
  transition: all 0.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: #ddd;
  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: rgba(0, 0, 0, 0);
  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__list {
  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 .fancybox-thumbs__list {
  overflow: hidden;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
          box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}

.fancybox-thumbs__list a {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  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__list a::before {
  border: 6px solid #ff5268;
  bottom: 0;
  content: "";
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}

.fancybox-thumbs__list a:focus::before {
  opacity: 0.5;
}

.fancybox-thumbs__list a.fancybox-thumbs-active::before {
  opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }

  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }

  .fancybox-thumbs__list a {
    max-width: calc(100% - 10px);
  }
}
/* Layout
================================================ */
.nav-icon {
  width: 30px;
  height: 20px;
  position: relative;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  margin-left: auto;
  z-index: 12;
}
.nav-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #AF272F;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.nav-icon span:nth-child(1) {
  top: 0px;
}
.nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
  top: 8px;
}
.nav-icon span:nth-child(4) {
  top: 16px;
}
.nav-icon.open span:nth-child(1) {
  top: 18px;
  width: 0%;
  left: 50%;
}
.nav-icon.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.nav-icon.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.nav-icon.open span:nth-child(4) {
  top: 18px;
  width: 0%;
  left: 50%;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow: auto;
  background: #F1F1EA;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  padding: 70px 20px 100px 20px;
  z-index: 10;
}
nav form {
  margin-bottom: 20px;
}
nav .menu {
  margin-bottom: 0;
  width: 100%;
}
nav .menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-weight: 300;
  color: #080808;
  list-style: none;
  margin: 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
}
nav .menu li a {
  color: #080808;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 0;
}
nav .menu li:before {
  content: none;
}
nav .menu li.menu-item-home {
  display: none;
}
nav.active-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media only screen and (min-width: 1024px) {
  .nav-icon {
    display: none;
  }

  nav {
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    width: auto;
    overflow: auto;
    background: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    overflow: visible;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  nav form {
    display: none;
  }
  nav .menu {
    position: relative;
    background: none;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 20px 0px;
    border-bottom: 1px solid #B5271E;
  }
  nav .menu li {
    display: block;
    width: auto;
    position: relative;
    font-size: 16px;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    border: 0;
  }
  nav .menu li a {
    display: block;
    width: auto;
    padding: 0;
    border: none;
  }
  nav .menu li:before {
    content: none;
  }
  nav .menu li.menu-item-home {
    display: none;
  }
  nav .menu li:after {
    content: " ";
    background: #AF272F;
    height: 4px;
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  nav .menu li:hover:after, nav .menu li.current_page_item:after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
  nav .menu li:hover {
    color: #AF272F;
  }

  .condensed nav .menu {
    padding: 5px 0px;
  }
  .condensed nav .menu li {
    font-size: 16px;
  }
  .condensed nav .menu li:after {
    bottom: -6px;
  }
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #FFF;
  z-index: 50;
}
header form {
  width: 100%;
  position: relative;
}
header form input {
  border: 1px solid #E3E3DF;
  width: 100%;
  border-radius: 4px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
header form input:focus {
  border: 1px solid #AF272F;
}
header form button {
  cursor: pointer;
  top: 12.5px;
  right: 16px;
  height: 24px;
  width: 24px;
  background: url("../library/images/search-icon.svg") center/contain no-repeat;
  position: absolute;
  border: 0;
}
header form input[type=search]::-webkit-search-cancel-button {
  display: none;
}
header form ::-webkit-input-placeholder {
  color: #999;
  font-style: italic;
}
header form ::-moz-placeholder {
  color: #999;
  font-style: italic;
}
header form :-ms-input-placeholder {
  color: #999;
  font-style: italic;
}
header form :-moz-placeholder {
  color: #999;
  font-style: italic;
}
header .top-row {
  position: relative;
  z-index: 12;
  padding: 20px 0 10px 0;
  background: #F1F1EA;
}
header .top-row .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header .top-row .wrap .logo {
  display: block;
  height: 30px;
  width: 88px;
  background: url("../library/images/logo.svg") center/contain no-repeat;
  text-indent: -99999px;
  margin-right: auto;
}
header .top-row .wrap form {
  display: none;
}
header.active-nav {
  z-index: 10;
}
header #searchsubmit {
  text-indent: -9999px;
  overflow: hidden;
}

.skip-to-content-link {
  background: #B5271E;
  color: #fff;
  height: 30px;
  left: 50%;
  top: 0;
  padding: 8px;
  position: absolute;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 100;
  border: 0;
  border-radius: 0;
}
.skip-to-content-link:focus {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

@media only screen and (min-width: 1024px) {
  header .top-row {
    padding: 40px 0 25px 0;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  header .top-row .wrap .logo {
    height: 45px;
    width: 125px;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  header .top-row .wrap form {
    display: block;
    max-width: 305px;
  }
  header.condensed .top-row {
    padding: 5px 0;
  }
  header.condensed .top-row .wrap .logo {
    height: 45px;
    width: 100px;
  }
  header.condensed .top-row .wrap form {
    display: block;
    max-width: 305px;
  }
  header.condensed .top-row .wrap form input {
    font-size: 16px;
    height: 40px;
  }
  header.condensed .top-row .wrap form button {
    top: 10px;
    right: 10px;
    height: 20px;
    width: 20px;
  }

  .home header {
    position: relative;
    background: #F1F1EA;
    margin-bottom: 55px;
  }
  .home .fixed-header {
    position: fixed;
    width: 100%;
    top: -250px;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  .home .fixed-header.active {
    top: 0;
  }
}
.newsletter-sign-up {
  background: #121211;
  padding: 30px 0;
}
.newsletter-sign-up .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 940px;
}
.newsletter-sign-up h3 {
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 22px;
  color: #FFF;
  margin: 0 0 20px 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.newsletter-sign-up .wpcf7 {
  width: 100%;
}
.newsletter-sign-up .wpcf7-form {
  position: relative;
  width: 100%;
}
.newsletter-sign-up .wpcf7-form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}
.newsletter-sign-up .wpcf7-form input {
  width: 100%;
}
.newsletter-sign-up .wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
}
.newsletter-sign-up .wpcf7-form .wpcf7-form-control-wrap.your-name {
  margin-bottom: 10px;
}
.newsletter-sign-up .wpcf7-form .wpcf7-submit {
  border: 0;
  background: #b5271e;
  color: #FFF;
  max-width: 140px;
  margin: 10px auto 0 auto;
  color: #FFF;
  font-size: 24px;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.newsletter-sign-up .wpcf7-form .wpcf7-submit:hover {
  opacity: 0.8;
}
.newsletter-sign-up .wpcf7-form .wpcf7-submit:focus {
  border: 1px solid #fff;
}
.newsletter-sign-up .wpcf7-form .wpcf7-response-output {
  display: none !important;
}
.newsletter-sign-up .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 0;
}
.newsletter-sign-up .wpcf7-form .ajax-loader {
  position: absolute;
  right: 0;
  bottom: -22px;
}
.newsletter-sign-up .visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media only screen and (min-width: 768px) {
  .newsletter-sign-up .wpcf7-form p {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .newsletter-sign-up .wpcf7-form .wpcf7-form-control-wrap.your-name {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .newsletter-sign-up .wpcf7-form .wpcf7-form-control-wrap.email-address {
    margin-right: 20px;
  }
  .newsletter-sign-up .wpcf7-form .wpcf7-submit {
    margin: 0;
  }
  .newsletter-sign-up .wpcf7-form .wpcf7-not-valid-tip {
    position: absolute;
  }
}
@media only screen and (min-width: 1024px) {
  .newsletter-sign-up .wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .newsletter-sign-up h3 {
    text-align: left;
    width: auto;
    max-width: 200px;
    margin: 0 20px 0 0;
  }
  .newsletter-sign-up .wpcf7 {
    max-width: 725px;
  }
  .newsletter-sign-up .wpcf7-form input {
    width: 100%;
  }
  .newsletter-sign-up .wpcf7-form .wpcf7-form-control-wrap.your-name {
    max-width: 215px;
  }
  .newsletter-sign-up .wpcf7-form .wpcf7-form-control-wrap.email-address {
    max-width: 332px;
  }
  .newsletter-sign-up .wpcf7-form .wpcf7-response-output {
    position: absolute;
  }
  .newsletter-sign-up .wpcf7-form .wpcf7-not-valid-tip {
    position: absolute;
  }
}
footer {
  padding: 45px 0 60px 0;
  background: #212529;
  color: #FFF;
  line-height: 21px;
}
footer .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .col {
  margin-right: auto;
}
footer .col ul {
  margin: 0;
  list-style: none;
}
footer .col ul li {
  margin: 0;
  padding: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  opacity: 0.5;
}
footer .col ul li a {
  color: #FFF;
}
footer .col ul li:before {
  content: none;
}
footer .col ul li.current_page_item, footer .col ul li:hover {
  opacity: 1;
}
footer .col p {
  opacity: 0.5;
}
footer .col p a {
  color: #FFF;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
footer .col p a:hover {
  opacity: 1;
}
footer .col:nth-of-type(2) {
  display: none;
}
footer .col.nav .mobile-links {
  margin-top: 19px;
}
footer .col.nav .mobile-links a {
  font-size: 13px;
  opacity: 0.5;
  display: block;
  color: #FFF;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
footer .col.nav .mobile-links a:hover {
  opacity: 1;
}
footer .col:last-of-type {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: 0;
  margin-left: auto;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
footer .col:last-of-type img {
  margin-bottom: 25px;
}
footer .col:last-of-type img:last-of-type {
  margin-bottom: 0;
}
footer .col .copyright {
  font-size: 16px;
  margin: 0;
}
footer .col .rowan-link {
  font-size: 13px;
}
footer .col .company-details {
  font-size: 10px;
  line-height: 12px;
  margin: 0;
  text-align: right;
}
footer .col .social-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
  margin-bottom: 30px;
}
footer .col .social-container a {
  opacity: 0.35;
  font-size: 30px;
  display: block;
  margin-right: 20px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  color: #FFF;
}
footer .col .social-container a:last-of-type {
  margin: 0;
}
footer .col .social-container a:hover {
  opacity: 1;
}

@media only screen and (min-width: 1024px) {
  footer .col {
    margin-right: 180px;
  }
  footer .col.nav .mobile-links {
    display: none;
  }
  footer .col:nth-of-type(2) {
    display: block;
    margin: 0;
    width: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  footer .col:nth-of-type(2) p {
    font-size: 18px;
    line-height: 30px;
    opacity: 0.5;
    margin: 0;
    margin-bottom: 2px;
  }
  footer .col:nth-of-type(2) a {
    color: #FFF;
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
    opacity: 0.5;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  footer .col:nth-of-type(2) a:hover {
    opacity: 1;
  }
  footer .col:last-of-type {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
/* Blocks Payload
================================================ */
.block {
  margin-bottom: 65px;
  outline: 0;
}

.page_introduction .icon-title {
  display: block;
  margin-bottom: 30px;
  max-width: 340px;
  width: 100%;
  height: auto;
}
.page_introduction .page-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  border-bottom: 1px solid #E3E3DF;
  padding-bottom: 17px;
  margin-bottom: 40px;
  font-size: 14px;
  line-height: 16px;
  color: #080808;
}
.page_introduction .page-info strong {
  text-transform: uppercase;
  margin-left: 8px;
}
.page_introduction .page-info img {
  display: block;
  height: 16px;
  width: auto;
  margin-left: 8px;
}
.page_introduction .page-info .read-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  margin-bottom: 15px;
}
.page_introduction .page-info .tag-container {
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_introduction .page-info .tag-container .tag {
  margin-right: 10px;
}
.page_introduction .page-info .tag-container .tag:last-of-type {
  margin-right: 0;
}
.page_introduction .page-info .download {
  margin-top: 10px;
  width: 100%;
}
.page_introduction .page-info .download a {
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page_introduction .page-info .download strong {
  margin-left: 0;
}
.page_introduction .page-info .download img {
  height: 17px;
}
.page_introduction .content img {
  display: block;
  margin: 0 auto 20px;
  max-width: 350px;
  height: auto;
}

@media only screen and (min-width: 550px) {
  .page_introduction .page-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    height: 48px;
  }
  .page_introduction .page-info .tag-container {
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 1px solid #CCCCCC;
    padding-left: 15px;
    margin-left: 15px;
  }
  .page_introduction .page-info .tag-container .tag {
    margin-right: 10px;
  }
  .page_introduction .page-info .tag-container .tag:last-of-type {
    margin-right: 0;
  }
  .page_introduction .page-info .download {
    width: auto;
    border-left: 1px solid #CCCCCC;
    padding-left: 15px;
    margin-left: 15px;
    margin-top: 0;
  }
  .page_introduction .page-info .download a {
    height: 28px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .page_introduction .content img {
    display: block;
    margin: 0 50px 50px 0;
    max-width: 400px;
    width: 100%;
  }
}
.strategy .lower-section .content-col {
  width: 100%;
  margin-bottom: 30px;
}
.strategy .lower-section .image {
  margin: 0 auto;
  width: 100%;
  max-width: 480px;
  height: 375px;
}
.strategy .lower-section img {
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  display: block;
}

@media only screen and (min-width: 1110px) {
  .strategy .lower-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .strategy .lower-section .content-col {
    margin-bottom: 0;
    margin-right: 50px;
  }
  .strategy .lower-section .image, .strategy .lower-section img {
    margin: 0;
  }
}
.successes {
  max-width: 1020px;
}
.successes .btn {
  margin-top: 15px;
}

.boards_and_committees {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.boards_and_committees h3 {
  width: 100%;
}
.boards_and_committees .left-col {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.boards_and_committees .members {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  margin-bottom: 30px;
}
.boards_and_committees .members .member {
  font-size: 14px;
  line-height: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 15px;
}
.boards_and_committees .members .member .member-pic {
  display: block;
  height: 75px;
  width: 75px;
  margin-right: 22px;
  border-radius: 4px;
}
.boards_and_committees .members .member .content {
  width: calc(100% - 97px);
}
.boards_and_committees .members .member .content strong {
  display: block;
}
.boards_and_committees .members .member:last-of-type {
  margin-bottom: 0;
}

@media only screen and (min-width: 660px) {
  .boards_and_committees {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .boards_and_committees .left-col {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: calc(100% - 335px);
  }
  .boards_and_committees .members {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 305px;
    margin-left: 30px;
  }
}
.general_text .button-container .btn {
  margin-bottom: 15px;
}

@media only screen and (min-width: 768px) {
  .general_text.two {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .general_text h3 {
    width: 100%;
  }
  .general_text .intro-content {
    width: 100%;
  }
  .general_text .left-col, .general_text .right-col {
    width: calc(50% - 20px);
  }
  .general_text .left-col {
    margin-right: auto;
  }
  .general_text .button-container .btn {
    margin-bottom: 0;
    margin-right: 15px;
  }
  .general_text .button-container .btn:last-of-type {
    margin: 0;
  }
}
.call_out_-_general {
  background: #F8F8F5;
  padding: 25px 15px;
  border-radius: 12px;
}
.call_out_-_general .content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.call_out_-_general .content-container .image {
  height: 375px;
  max-width: 450px;
  width: 100%;
  border-radius: 6px;
  margin: 0 auto;
  margin-bottom: 50px;
}
.call_out_-_general .content-container img {
  margin: 0 auto;
  display: block;
  max-width: 450px;
  width: 100%;
  height: auto;
  margin-bottom: 50px;
}

@media only screen and (min-width: 930px) {
  .call_out_-_general {
    padding: 30px;
  }
  .call_out_-_general .content-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .call_out_-_general .content-container .image {
    margin: 0;
    margin-right: 20px;
  }
  .call_out_-_general .content-container img {
    margin: 0;
    margin-right: 20px;
  }
  .call_out_-_general .content-container .content {
    max-width: calc(100% - 470px);
  }
  .call_out_-_general.image-right .content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .call_out_-_general.image-right .content-container .image, .call_out_-_general.image-right .content-container img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 20px;
    margin-right: 0;
  }
  .call_out_-_general.image-right .content-container .content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.call_out_-_features_quote {
  background: #F8F8F5;
  padding: 20px;
  border-radius: 12px;
}
.call_out_-_features_quote .content-container .image {
  height: 375px;
  max-width: 500px;
  width: 100%;
  margin-bottom: 20px;
  border-radius: 6px;
}
.call_out_-_features_quote .content-container img {
  display: block;
  max-width: 500px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 6px;
}
.call_out_-_features_quote .quote {
  margin-top: 50px;
  font-size: 43px;
  font-style: italic;
  color: #434343;
}

@media only screen and (min-width: 930px) {
  .call_out_-_features_quote {
    padding: 30px;
  }
  .call_out_-_features_quote .content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .call_out_-_features_quote .content-container .image {
    margin-bottom: 0px;
    margin-right: 20px;
  }
  .call_out_-_features_quote .content-container img {
    margin-right: 20px;
    margin-bottom: 0px;
  }
  .call_out_-_features_quote .content-container .content {
    max-width: 480px;
  }
  .call_out_-_features_quote .quote {
    max-width: 630px;
    margin-left: auto;
  }
  .call_out_-_features_quote.image-right .content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .call_out_-_features_quote.image-right .content-container .image, .call_out_-_features_quote.image-right .content-container img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-left: 20px;
  }
  .call_out_-_features_quote.image-right .content-container .content {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.feature_-_overview {
  background: #F8F8F5;
  padding: 25px;
  border-radius: 12px;
}
.feature_-_overview .upper-content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 35px;
  padding-bottom: 35px;
  border-bottom: 2px solid #E3E3DF;
}
.feature_-_overview .upper-content-container .image {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  height: 375px;
  max-width: 500px;
  width: 100%;
  border-radius: 6px;
  margin-bottom: 20px;
}
.feature_-_overview .upper-content-container img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin: 0 auto;
  display: block;
  max-width: 450px;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
.feature_-_overview .lower-content-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.feature_-_overview .lower-content-container .image-col {
  width: 100%;
  margin-top: 30px;
}
.feature_-_overview .lower-content-container .image-col .image {
  width: 100%;
  height: 225px;
  margin-bottom: 20px;
  border-radius: 6px;
}
.feature_-_overview .lower-content-container .image-col .image:last-of-type {
  margin-bottom: 0;
}

@media only screen and (min-width: 500px) {
  .feature_-_overview .lower-content-container .image-col .image {
    width: 100%;
    height: 300px;
  }
}
@media only screen and (min-width: 600px) {
  .feature_-_overview .lower-content-container .image-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .feature_-_overview .lower-content-container .image-col .image {
    width: 300px;
    height: 150px;
    margin-bottom: 0;
    margin-right: 10px;
  }
  .feature_-_overview .lower-content-container .image-col .image:last-of-type {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .feature_-_overview .lower-content-container .image-col .image {
    width: 300px;
    height: 200px;
  }
}
@media only screen and (min-width: 930px) {
  .feature_-_overview {
    padding: 30px 40px 50px 40px;
  }
  .feature_-_overview .upper-content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .feature_-_overview .upper-content-container .image {
    height: 375px;
    max-width: 500px;
    width: 100%;
    margin-left: 20px;
    border-radius: 6px;
  }
  .feature_-_overview .upper-content-container img {
    margin: 0 auto;
    display: block;
    max-width: 450px;
    width: 100%;
    height: auto;
    margin-left: 20px;
  }
  .feature_-_overview .upper-content-container .content {
    max-width: calc(100% - 470px);
  }
  .feature_-_overview .lower-content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .feature_-_overview .lower-content-container .content {
    width: 100%;
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
    -webkit-column-gap: 45px;
       -moz-column-gap: 45px;
            column-gap: 45px;
  }
  .feature_-_overview .lower-content-container .image-col {
    display: block;
    margin-left: 15px;
    margin-top: 0;
    max-width: 225px;
  }
  .feature_-_overview .lower-content-container .image-col .image {
    max-width: 225px;
    width: 100%;
    height: 225px;
    margin-bottom: 20px;
    border-radius: 6px;
  }
  .feature_-_overview .lower-content-container .image-col .image:last-of-type {
    margin-bottom: 0;
  }
  .feature_-_overview.image-left .upper-content-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .feature_-_overview.image-left .upper-content-container .image, .feature_-_overview.image-left .upper-content-container img {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-right: 20px;
    margin-left: 0;
  }
  .feature_-_overview.image-left .upper-content-container .content {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.research_papers {
  background: #F8F8F5;
  border-radius: 12px;
  padding: 25px;
}
.research_papers .intro-content {
  margin-bottom: 35px;
}
.research_papers .papers-carousel .research-paper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  border-bottom: 1px solid #AF272F;
  padding-bottom: 15px;
  margin-bottom: 50px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.research_papers .papers-carousel .research-paper .pdf-icon {
  display: block;
  max-width: 35px;
  width: 100%;
  height: auto;
  margin-right: 15px;
}
.research_papers .papers-carousel .research-paper .paper-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  font-size: 14px;
  line-height: 16px;
}
.research_papers .papers-carousel .research-paper .paper-content p {
  margin-bottom: 0;
}
.research_papers .papers-carousel .research-paper .paper-actions {
  margin-top: 15px;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 50px;
  font-size: 14px;
}
.research_papers .papers-carousel .research-paper .paper-actions .view {
  color: #AF272F;
  margin-right: 20px;
  border-right: 1px solid #CCC;
  padding-right: 20px;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.research_papers .papers-carousel .research-paper .paper-actions .view:hover {
  font-weight: bold;
}
.research_papers .papers-carousel .research-paper .paper-actions .download {
  height: 100%;
  font-weight: bold;
  color: #AF272F;
}
.research_papers .papers-carousel .research-paper .paper-actions .download a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.research_papers .papers-carousel .research-paper .paper-actions .download img {
  margin-left: 5px;
  width: auto;
  height: 18px;
}
.research_papers .papers-carousel .research-paper:last-of-type {
  margin-right: 0;
  margin-bottom: 0;
}
.research_papers .papers-carousel .owl-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  counter-reset: dots;
}
.research_papers .papers-carousel .owl-dots.disabled {
  display: none;
}
.research_papers .papers-carousel .owl-dots .owl-dot {
  border-bottom: 1px solid #F8F8F5;
  margin-right: 10px;
  padding: 0 0 8px 0 !important;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  outline: 0;
}
.research_papers .papers-carousel .owl-dots .owl-dot:last-of-type {
  margin-right: 0;
}
.research_papers .papers-carousel .owl-dots .owl-dot.active, .research_papers .papers-carousel .owl-dots .owl-dot:hover {
  border-bottom: 1px solid #AF272F;
}
.research_papers .papers-carousel .owl-dots .owl-dot:before {
  counter-increment: dots;
  content: counter(dots);
}

@media only screen and (min-width: 700px) {
  .research_papers {
    padding: 35px 40px 25px 40px;
  }
  .research_papers .papers-carousel .inner-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 100%;
  }
  .research_papers .papers-carousel .research-paper {
    width: calc(50% - 17.5px);
    margin-right: 33.5px;
  }
  .research_papers .papers-carousel .research-paper:last-of-type, .research_papers .papers-carousel .research-paper:nth-of-type(2n) {
    margin-right: 0;
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1260px) {
  .research_papers .papers-carousel .research-paper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: calc(33.33333% - 22.5px);
  }
  .research_papers .papers-carousel .research-paper:nth-of-type(2n) {
    margin-right: 33.5px;
  }
  .research_papers .papers-carousel .research-paper:last-of-type, .research_papers .papers-carousel .research-paper:nth-of-type(3n) {
    margin-right: 0;
  }
}
.team-members .team-members-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
.team-members .team-members-grid .team-member {
  width: calc(33.33333% - 14px);
  margin-right: 20px;
  margin-bottom: 20px;
}
.team-members .team-members-grid .team-member p {
  display: none;
}
.team-members .team-members-grid .team-member .profile-picture {
  position: relative;
  width: 100%;
  height: 100px;
  border-radius: 6px;
  margin-bottom: 15px;
}
.team-members .team-members-grid .team-member .profile-picture a {
  position: relative;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team-members .team-members-grid .team-member .profile-picture .overlay {
  display: none;
}
.team-members .team-members-grid .team-member:nth-of-type(3n) {
  margin-right: 0;
}

@media only screen and (min-width: 480px) {
  .team-members .team-members-grid .team-member .profile-picture {
    height: 197px;
  }
}
@media only screen and (min-width: 768px) {
  .team-members .team-members-grid .team-member {
    width: calc(25% - 15px);
  }
  .team-members .team-members-grid .team-member:nth-of-type(3n) {
    margin-right: 20px;
  }
  .team-members .team-members-grid .team-member:nth-of-type(4n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .team-members .team-members-grid .team-member {
    width: calc(20% - 17px);
  }
  .team-members .team-members-grid .team-member p {
    display: block;
  }
  .team-members .team-members-grid .team-member .profile-picture .overlay {
    position: absolute;
    background: rgba(181, 39, 30, 0.7);
    height: calc(100% - 15px);
    width: calc(100% - 15px);
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    color: #FFF;
    font-size: 16px;
    top: 7.5px;
    left: 7.5px;
    padding: 15px 30px 13px 13px;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  .team-members .team-members-grid .team-member .profile-picture .overlay p {
    line-height: 14px;
    font-size: 14px;
    margin-bottom: 0;
  }
  .team-members .team-members-grid .team-member .profile-picture .overlay:after {
    content: " ";
    position: absolute;
    bottom: 13px;
    right: 15px;
    background: url("../library/images/profile-icon.svg") center/contain no-repeat;
    height: 26px;
    width: 33px;
  }
  .team-members .team-members-grid .team-member .profile-picture:hover .overlay {
    opacity: 1;
    visibility: visible;
  }
  .team-members .team-members-grid .team-member:nth-of-type(4n) {
    margin-right: 20px;
  }
  .team-members .team-members-grid .team-member:nth-of-type(5n) {
    margin-right: 0;
  }
}
.download-block .content {
  width: 100%;
  margin-bottom: 30px;
}
.download-block .download-column {
  width: 100%;
}
.download-block .single-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #AF272F;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.download-block .single-download .pdf-icon {
  display: block;
  max-width: 45px;
  width: 100%;
  height: auto;
  margin-bottom: auto;
  margin-right: 15px;
}
.download-block .single-download .paper-content {
  font-size: 14px;
}
.download-block .single-download .paper-content p {
  line-height: 18px;
  margin-bottom: 5px;
}
.download-block .single-download .paper-content p strong {
  font-weight: 500;
  display: block;
}
.download-block .single-download .paper-content p span {
  text-transform: uppercase;
}
.download-block .single-download .paper-content .paper-actions {
  height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.download-block .single-download .paper-content .paper-actions .download {
  height: 100%;
  font-weight: bold;
  color: #AF272F;
}
.download-block .single-download .paper-content .paper-actions .download a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.download-block .single-download .paper-content .paper-actions .download img {
  margin-left: 5px;
  width: auto;
  height: 12px;
}
.download-block .single-download:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
}

@media only screen and (min-width: 768px) {
  .download-block .inner-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .download-block .content {
    max-width: 615px;
    margin-right: 30px;
    margin-bottom: 0;
  }
  .download-block .download-column {
    max-width: 400px;
  }
}
.funding-block {
  border-radius: 12px;
}
.funding-block p {
  margin-bottom: 30px;
}
.funding-block .partners-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.funding-block .partners-container a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
.funding-block .partners-container a img {
  max-width: 100%;
  height: auto;
  display: block;
  max-height: 100px;
}

@media only screen and (min-width: 600px) {
  .funding-block .partners-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .funding-block .partners-container a {
    width: 50%;
  }
}
@media only screen and (min-width: 900px) {
  .funding-block .partners-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .funding-block .partners-container a {
    margin-right: 15px;
    width: calc(20% - 12px);
  }
  .funding-block .partners-container a:nth-of-type(5n) {
    margin-right: 0px;
  }
  .funding-block .partners-container.three-icons a {
    width: calc(33.3333% - 12px);
  }
  .funding-block .partners-container.three-icons a:nth-of-type(3n) {
    margin-right: 0;
  }
  .funding-block .partners-container.three-icons a:nth-of-type(4n) {
    margin-right: 15px;
  }
  .funding-block .partners-container.three-icons a:nth-of-type(5n) {
    margin-right: 15px;
  }
  .funding-block .partners-container.four-icons a {
    width: calc(25% - 12px);
  }
  .funding-block .partners-container.four-icons a:nth-of-type(3n) {
    margin-right: 15px;
  }
  .funding-block .partners-container.four-icons a:nth-of-type(4n) {
    margin-right: 0;
  }
  .funding-block .partners-container.four-icons a:nth-of-type(5n) {
    margin-right: 15px;
  }
}
.video-block iframe {
  width: 100%;
  height: 200px;
  margin: 40px auto 0 auto;
}

@media only screen and (min-width: 768px) {
  .video-block iframe {
    height: 400px;
  }
}
.image-block {
  background: #F8F8F5;
  border-radius: 12px;
  padding: 25px 20px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.image-block img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

@media only screen and (min-width: 600px) {
  .image-block img {
    max-width: calc(50% - 10px);
  }
}
.full-width-image-block img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

/* Components Payload
================================================ */
.hp-masthead {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .hp-masthead {
    border-radius: 10px;
    display: block;
    position: relative;
    overflow: hidden;
    height: 550px;
  }
  .hp-masthead .slick-list {
    height: 100%;
  }
  .hp-masthead .slick-list .slick-track {
    height: 100%;
  }
  .hp-masthead .hp-masthead-post {
    height: 100%;
    width: 100%;
    background-position: center;
    background-size: cover;
  }
  .hp-masthead .hp-masthead-post .hp-masthead-post-inner {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(66%, rgba(255, 255, 255, 0)), to(rgba(0, 0, 0, 0.9)));
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 66%, rgba(0, 0, 0, 0.9) 100%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 30px;
  }
  .hp-masthead .hp-masthead-post .hp-masthead-post-inner a {
    margin-top: auto;
    max-width: 66%;
  }
  .hp-masthead .hp-masthead-post .hp-masthead-post-inner a .post-title {
    color: #fff;
    font-size: 60px;
    font-weight: 500;
    line-height: 70px;
    position: relative;
  }
  .hp-masthead .hp-masthead-post .hp-masthead-post-inner a .post-title.cursor::after {
    display: inline-block;
    -webkit-animation-name: blink;
            animation-name: blink;
    -webkit-animation-duration: 0.75s;
            animation-duration: 0.75s;
    -webkit-animation-iteration-count: infinite;
            animation-iteration-count: infinite;
    margin-left: 15px;
    margin-bottom: -8px;
    height: 6px;
    width: 35px;
    content: " ";
    background: #B5271E;
  }
  .hp-masthead .hp-masthead-post .hp-masthead-post-inner .stretched-link::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    pointer-events: auto;
    content: "";
    background-color: rgba(0, 0, 0, 0);
  }
}
@media only screen and (max-height: 750px) {
  .hp-masthead {
    max-height: calc(100vh - 200px);
  }
}
.maps {
  display: none;
}

.maps__skip {
  padding: 10px 20px;
  font-size: 20px;
  position: absolute;
  top: 0;
  left: 0;
  text-transform: uppercase;
  z-index: -1;
  color: transparent;
  background: transparent;
}
.maps__skip:focus {
  visibility: visible;
  z-index: 1;
  background: #AF272F;
  color: #fff;
}

@media only screen and (min-width: 1024px) {
  .maps {
    height: 536px;
    display: block;
    max-width: 1070px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    margin-bottom: 110px;
  }

  .map {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
    width: 100%;
  }
  .map.active-map {
    opacity: 1;
    visibility: visible;
  }
  .map.active-map.active-dots .location {
    -webkit-animation: grow 0.5s 1 ease forwards;
            animation: grow 0.5s 1 ease forwards;
  }
  .map.active-map.active-dots .location:nth-of-type(1n) {
    -webkit-animation-delay: 0.1s;
            animation-delay: 0.1s;
  }
  .map.active-map.active-dots .location:nth-of-type(2n) {
    -webkit-animation-delay: 0.2s;
            animation-delay: 0.2s;
  }
  .map.active-map.active-dots .location:nth-of-type(3n) {
    -webkit-animation-delay: 0.3s;
            animation-delay: 0.3s;
  }
  .map.active-map.active-dots .location:nth-of-type(4n) {
    -webkit-animation-delay: 0.4s;
            animation-delay: 0.4s;
  }
  .map.active-map.active-dots .location:nth-of-type(5n) {
    -webkit-animation-delay: 0.5s;
            animation-delay: 0.5s;
  }
  .map.active-map.active-dots .location:nth-of-type(6n) {
    -webkit-animation-delay: 0.6s;
            animation-delay: 0.6s;
  }
  .map.active-map.active-dots .location:nth-of-type(7n) {
    -webkit-animation-delay: 0.7s;
            animation-delay: 0.7s;
  }
  .map.active-map.active-dots .location:nth-of-type(8n) {
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
  .map.active-map.active-dots .location:nth-of-type(9n) {
    -webkit-animation-delay: 0.9s;
            animation-delay: 0.9s;
  }
  .map.active-map.active-dots .location:nth-of-type(10n) {
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
  .map.active-map.active-dots .location:nth-of-type(11n) {
    -webkit-animation-delay: 1.1s;
            animation-delay: 1.1s;
  }
  .map.active-map.active-dots .location:nth-of-type(12n) {
    -webkit-animation-delay: 1.2s;
            animation-delay: 1.2s;
  }
  .map.active-map.active-dots .location:nth-of-type(13n) {
    -webkit-animation-delay: 1.3s;
            animation-delay: 1.3s;
  }
  .map.active-map.active-dots .location:nth-of-type(14n) {
    -webkit-animation-delay: 1.4s;
            animation-delay: 1.4s;
  }
  .map.active-map.active-dots .location:nth-of-type(15n) {
    -webkit-animation-delay: 1.5s;
            animation-delay: 1.5s;
  }
  .map.active-map.active-dots .location:nth-of-type(16n) {
    -webkit-animation-delay: 1.6s;
            animation-delay: 1.6s;
  }
  .map.active-map.active-dots .location:nth-of-type(17n) {
    -webkit-animation-delay: 1.7s;
            animation-delay: 1.7s;
  }
  .map.active-map.active-dots .location:nth-of-type(18n) {
    -webkit-animation-delay: 1.8s;
            animation-delay: 1.8s;
  }
  .map.active-map.active-dots .location:nth-of-type(19n) {
    -webkit-animation-delay: 1.9s;
            animation-delay: 1.9s;
  }
  .map.active-map.active-dots .location:nth-of-type(20n) {
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
  .map.active-map.active-dots .location:nth-of-type(21n) {
    -webkit-animation-delay: 2.1s;
            animation-delay: 2.1s;
  }
  .map.active-map.active-dots .location:nth-of-type(22n) {
    -webkit-animation-delay: 2.2s;
            animation-delay: 2.2s;
  }
  .map.active-map.active-dots .location:nth-of-type(23n) {
    -webkit-animation-delay: 2.3s;
            animation-delay: 2.3s;
  }
  .map.active-map.active-dots .location:nth-of-type(24n) {
    -webkit-animation-delay: 2.4s;
            animation-delay: 2.4s;
  }
  .map.active-map.active-dots .location:nth-of-type(25n) {
    -webkit-animation-delay: 2.5s;
            animation-delay: 2.5s;
  }
  .map.active-map.active-dots .location:nth-of-type(26n) {
    -webkit-animation-delay: 2.6s;
            animation-delay: 2.6s;
  }
  .map.active-map.active-dots .location:nth-of-type(27n) {
    -webkit-animation-delay: 2.7s;
            animation-delay: 2.7s;
  }
  .map.active-map.active-dots .location:nth-of-type(28n) {
    -webkit-animation-delay: 2.8s;
            animation-delay: 2.8s;
  }
  .map.active-map.active-dots .location:nth-of-type(29n) {
    -webkit-animation-delay: 2.9s;
            animation-delay: 2.9s;
  }
  .map.active-map.active-dots .location:nth-of-type(30n) {
    -webkit-animation-delay: 3s;
            animation-delay: 3s;
  }
  .map.active-map.active-dots .location:nth-of-type(31n) {
    -webkit-animation-delay: 3.1s;
            animation-delay: 3.1s;
  }
  .map.active-map.active-dots .location:nth-of-type(32n) {
    -webkit-animation-delay: 3.2s;
            animation-delay: 3.2s;
  }
  .map.active-map.active-dots .location:nth-of-type(33n) {
    -webkit-animation-delay: 3.3s;
            animation-delay: 3.3s;
  }
  .map.active-map.active-dots .location:nth-of-type(34n) {
    -webkit-animation-delay: 3.4s;
            animation-delay: 3.4s;
  }
  .map.active-map.active-dots .location:nth-of-type(35n) {
    -webkit-animation-delay: 3.5s;
            animation-delay: 3.5s;
  }
  .map.active-map.active-dots .location:nth-of-type(36n) {
    -webkit-animation-delay: 3.6s;
            animation-delay: 3.6s;
  }
  .map.active-map.active-dots .location:nth-of-type(37n) {
    -webkit-animation-delay: 3.7s;
            animation-delay: 3.7s;
  }
  .map.active-map.active-dots .location:nth-of-type(38n) {
    -webkit-animation-delay: 3.8s;
            animation-delay: 3.8s;
  }
  .map.active-map.active-dots .location:nth-of-type(39n) {
    -webkit-animation-delay: 3.9s;
            animation-delay: 3.9s;
  }
  .map.active-map.active-dots .location:nth-of-type(40n) {
    -webkit-animation-delay: 4s;
            animation-delay: 4s;
  }
  .map.active-map.active-dots .location:nth-of-type(41n) {
    -webkit-animation-delay: 4.1s;
            animation-delay: 4.1s;
  }
  .map.active-map.active-dots .location:nth-of-type(42n) {
    -webkit-animation-delay: 4.2s;
            animation-delay: 4.2s;
  }
  .map.active-map.active-dots .location:nth-of-type(43n) {
    -webkit-animation-delay: 4.3s;
            animation-delay: 4.3s;
  }
  .map.active-map.active-dots .location:nth-of-type(44n) {
    -webkit-animation-delay: 4.4s;
            animation-delay: 4.4s;
  }
  .map.active-map.active-dots .location:nth-of-type(45n) {
    -webkit-animation-delay: 4.5s;
            animation-delay: 4.5s;
  }
  .map.active-map.active-dots .location:nth-of-type(46n) {
    -webkit-animation-delay: 4.6s;
            animation-delay: 4.6s;
  }
  .map.active-map.active-dots .location:nth-of-type(47n) {
    -webkit-animation-delay: 4.7s;
            animation-delay: 4.7s;
  }
  .map.active-map.active-dots .location:nth-of-type(48n) {
    -webkit-animation-delay: 4.8s;
            animation-delay: 4.8s;
  }
  .map.active-map.active-dots .location:nth-of-type(49n) {
    -webkit-animation-delay: 4.9s;
            animation-delay: 4.9s;
  }
  .map.active-map.active-dots .location:nth-of-type(50n) {
    -webkit-animation-delay: 5s;
            animation-delay: 5s;
  }

  .location {
    position: absolute;
    overflow: visible;
    top: 50%;
    left: 50%;
    display: block;
    cursor: pointer;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    height: 20px;
    width: 20px;
    cursor: pointer;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  @-webkit-keyframes grow {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  @keyframes grow {
    0% {
      -webkit-transform: scale(0);
              transform: scale(0);
    }
    100% {
      -webkit-transform: scale(1);
              transform: scale(1);
    }
  }
  .location:before {
    content: "";
    position: absolute;
    top: 7px;
    right: 19px;
    height: 1px;
    width: 0;
    background: #AF272F;
    -webkit-transition: 1s all;
    transition: 1s all;
  }
  .location .location-details {
    cursor: pointer;
    display: block;
    color: #434343;
    position: absolute;
    left: -383px;
    top: -10px;
    z-index: 4;
    -webkit-transition: 1s all;
    transition: 1s all;
    border: 1px solid #434343;
    background: #fff;
    border-radius: 4px;
    width: 320px;
    padding: 10px;
    line-height: 21px;
    opacity: 0;
    font-size: 14px;
    pointer-events: none;
    z-index: 10;
  }
  .location .location-details h4 {
    color: #434343;
    font-size: 16px;
    border-bottom: 1px solid #F0F0F0;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-weight: bold;
  }
  .location .location-details .body-of-work {
    margin-bottom: 10px;
  }
  .location .location-details h5 {
    border-bottom: 1px solid #F0F0F0;
    font-weight: bold;
    font-size: 14px;
    color: #434343;
    margin-bottom: 5px;
  }
  .location .location-details p {
    font-size: 14px;
    line-height: 16px;
    border-bottom: 1px solid #F0F0F0;
    margin-bottom: 5px;
  }
  .location .location-details p a {
    color: #434343;
  }
  .location .location-details p a:hover {
    text-decoration: underline;
  }
  .location .location-details p:last-of-type {
    border: 0;
  }
  .location .location-marker {
    position: absolute;
    height: 20px;
    width: 20px;
    top: 0;
    left: 0;
    background: #B5271E;
    z-index: 0;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  .location.active-location {
    z-index: 10;
  }
  .location.active-location .location-details {
    -webkit-transition-delay: 0.75s;
            transition-delay: 0.75s;
    opacity: 1;
    pointer-events: auto;
  }
  .location.active-location .location-marker {
    opacity: 1;
  }
  .location.active-location:before {
    width: 55px;
  }
  .location.small {
    height: 10px;
    width: 10px;
  }
  .location.small:before {
    top: 4.5px;
    right: 14px;
  }
  .location.small .location-marker {
    height: 10px;
    width: 10px;
  }
  .location.medium {
    height: 15px;
    width: 15px;
  }
  .location.medium .location-marker {
    height: 15px;
    width: 15px;
  }
  .location.large {
    height: 25px;
    width: 25px;
  }
  .location.large:before {
    top: 11px;
    right: 27px;
  }
  .location.large .location-marker {
    height: 25px;
    width: 25px;
  }
  .location.australia {
    top: 76%;
    left: 83%;
  }
  .location.canberra-australia {
    top: 82%;
    left: 87.5%;
  }
  .location.cairns-australia {
    top: 73%;
    left: 86.5%;
  }
  .location.melbourne-australia {
    top: 88%;
    left: 86.5%;
  }
  .location.benin {
    top: 58%;
    left: 47%;
  }
  .location.brazil {
    top: 70%;
    left: 32%;
  }
  .location.brazil:before {
    right: auto;
    left: 28.5px;
  }
  .location.brazil .location-details {
    left: auto;
    right: -383px;
  }
  .location.burkina-faso {
    top: 55.5%;
    left: 46%;
  }
  .location.cameroon {
    top: 59%;
    left: 50%;
  }
  .location.china {
    top: 47%;
    left: 80%;
  }
  .location.cote-d-ivoire {
    top: 59%;
    left: 44%;
  }
  .location.ethiopia {
    top: 59%;
    left: 58%;
  }
  .location.france {
    top: 35%;
    left: 46%;
  }
  .location.germany {
    top: 32%;
    left: 48%;
  }
  .location.ghana {
    top: 59.5%;
    left: 45.5%;
  }
  .location.guyana {
    top: 60%;
    left: 30%;
  }
  .location.guyana:before {
    right: auto;
    left: 20px;
  }
  .location.guyana .location-details {
    left: auto;
    right: -383px;
  }
  .location.haiti {
    top: 52%;
    left: 25%;
  }
  .location.haiti:before {
    right: auto;
    left: 20px;
  }
  .location.haiti .location-details {
    left: auto;
    right: -383px;
  }
  .location.india {
    top: 56%;
    left: 68%;
  }
  .location.chennai-india {
    top: 56%;
    left: 69%;
  }
  .location.israel {
    top: 44%;
    left: 55%;
  }
  .location.japan {
    top: 42%;
    left: 85%;
  }
  .location.kenya {
    top: 63%;
    left: 58%;
  }
  .location.madagascar {
    top: 74%;
    left: 59%;
  }
  .location.malawi {
    top: 71%;
    left: 55%;
  }
  .location.mali {
    top: 52%;
    left: 44%;
  }
  .location.marseille-france {
    top: 39%;
    left: 47%;
  }
  .location.mexico {
    top: 54%;
    left: 21%;
  }
  .location.mexico:before {
    right: auto;
    left: 20px;
  }
  .location.mexico .location-details {
    left: auto;
    right: -383px;
  }
  .location.mozambique {
    top: 73%;
    left: 57%;
  }
  .location.nigeria {
    top: 57%;
    left: 49%;
  }
  .location.netherlands {
    top: 31%;
    left: 47%;
  }
  .location.papa-new-guinea {
    top: 66.5%;
    left: 87%;
  }
  .location.puerto-rico {
    top: 52%;
    left: 27%;
  }
  .location.puerto-rico:before {
    right: auto;
    left: 20px;
  }
  .location.puerto-rico .location-details {
    left: auto;
    right: -383px;
  }
  .location.rwanda {
    top: 67%;
    left: 54%;
  }
  .location.spain {
    top: 39%;
    left: 44.5%;
  }
  .location.gipuzkoa-spain {
    top: 38%;
    left: 45%;
  }
  .location.switzerland {
    top: 35%;
    left: 47.5%;
  }
  .location.tanzania {
    top: 68%;
    left: 56.5%;
  }
  .location.tanzania-zanzibar {
    top: 68.5%;
    left: 58.2%;
  }
  .location.tanzania-moshi {
    top: 66.5%;
    left: 57.2%;
  }
  .location.toronto {
    top: 66.5%;
    left: 57.2%;
  }
  .location.trinidad {
    top: 56%;
    left: 28%;
  }
  .location.trinidad:before {
    right: auto;
    left: 20px;
  }
  .location.trinidad .location-details {
    left: auto;
    right: -383px;
  }
  .location.uganda {
    top: 63%;
    left: 56%;
  }
  .location.uk {
    top: 30%;
    left: 45%;
  }
  .location.usa {
    top: 36%;
    left: 17%;
  }
  .location.usa:before {
    right: auto;
    left: 28.5px;
  }
  .location.usa .location-details {
    left: auto;
    right: -383px;
  }
  .location.maryland {
    top: 37.5%;
    left: 26.5%;
  }
  .location.maryland:before {
    right: auto;
    left: 28.5px;
  }
  .location.maryland .location-details {
    left: auto;
    right: -383px;
  }
  .location.massachusetts-usa {
    top: 37.5%;
    left: 26.5%;
  }
  .location.massachusetts-usa:before {
    right: auto;
    left: 28.5px;
  }
  .location.massachusetts-usa .location-details {
    left: auto;
    right: -383px;
  }
  .location.new-orleans-usa {
    top: 45.5%;
    left: 22%;
  }
  .location.new-orleans-usa:before {
    right: auto;
    left: 28.5px;
  }
  .location.new-orleans-usa .location-details {
    left: auto;
    right: -383px;
  }
  .location.north-carolina-usa {
    top: 43.5%;
    left: 24.5%;
  }
  .location.north-carolina-usa:before {
    right: auto;
    left: 28.5px;
  }
  .location.north-carolina-usa .location-details {
    left: auto;
    right: -383px;
  }
  .location.seattle-usa {
    top: 39%;
    left: 12%;
  }
  .location.seattle-usa:before {
    right: auto;
    left: 28.5px;
  }
  .location.seattle-usa .location-details {
    left: auto;
    right: -383px;
  }
  .location.washington-dc-usa {
    top: 40.5%;
    left: 25.5%;
  }
  .location.washington-dc-usa:before {
    right: auto;
    left: 28.5px;
  }
  .location.washington-dc-usa .location-details {
    left: auto;
    right: -383px;
  }
  .location.idaho-usa {
    top: 41%;
    left: 14%;
  }
  .location.idaho-usa:before {
    right: auto;
    left: 28.5px;
  }
  .location.idaho-usa .location-details {
    left: auto;
    right: -383px;
  }
  .location.zambia {
    top: 71%;
    left: 53%;
  }
  .location.zimbabwe {
    top: 79%;
    left: 54%;
  }
	.location.chicago {
    top: 28%;
    left: 22%;
	}

  .map.market-access .location .body-of-work h5 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    color: #AF272F;
  }
  .map.market-access .location .body-of-work h5:before {
    position: relative;
    display: block;
    content: "";
    height: 10px;
    width: 10px;
    background: #AF272F;
    margin-top: 5px;
    margin-right: 5px;
  }
  .map.market-access .location .body-of-work.ngenirs h5 {
    color: #009CA6;
  }
  .map.market-access .location .body-of-work.ngenirs h5:before {
    background: #009CA6;
  }
  .map.market-access .location .body-of-work.nnp h5 {
    color: #f0ae42;
  }
  .map.market-access .location .body-of-work.nnp h5:before {
    background: #f0ae42;
  }
  .map.market-access .location .location-marker {
    background: #B5271E;
  }
  .map.market-access .location .location-marker.ngenirs {
    background: #009CA6;
  }
  .map.market-access .location .location-marker.ngenirs.nnp {
    background: #dd9639;
    background: linear-gradient(135deg, #dd9639 46%, #dd9639 50%, #009ca6 50%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dd9639", endColorstr="#009ca6",GradientType=1 );
  }
  .map.market-access .location .location-marker.nnp {
    background: #f0ae42;
  }
}
@media all and (-ms-high-contrast: none) {
  .map .location {
    -webkit-transform: none !important;
            transform: none !important;
  }
  .map .location {
    -webkit-animation: none !important;
            animation: none !important;
  }
}
.grid-container {
  background: #f2f2ef;
  padding: 50px 20px 50px 20px;
}
.grid-container.related-grid {
  padding: 65px 0 55px 0;
}
.grid-container.related-grid h2 {
  margin-bottom: 30px;
}

.grid {
  padding: 0;
}
.grid .grid-sizer {
  width: 6.866%;
}
.grid .gutter-sizer {
  width: 20px;
}
.grid .grid-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-radius: 6px;
  height: 400px;
  overflow: hidden;
  width: 100%;
  background: #FFF;
  -webkit-transition: 1s opacity;
  transition: 1s opacity;
  opacity: 1;
  margin-bottom: 20px;
}
.grid .grid-col a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  height: 100%;
  width: 100%;
}
.grid .grid-col a:focus h3 {
  border: 2px solid #000;
}
.grid .grid-col.new-post:before {
  content: "";
  height: 80px;
  width: 80px;
  position: absolute;
  top: 8px;
  left: 8px;
  background: url("../library/images/new-post-indicator.svg") center/contain no-repeat;
  z-index: 5;
  -webkit-animation: newpulse 1.75s infinite forwards;
          animation: newpulse 1.75s infinite forwards;
}
@-webkit-keyframes newpulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes newpulse {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.grid .grid-col .tag-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 50%;
}
.grid .grid-col .tag {
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 16px;
  min-width: 50px;
  padding: 0 12px 0 12px !important;
  color: #FFF;
  text-transform: uppercase;
  font-size: 10px;
  border-radius: 10px;
  margin-right: 3px;
  margin-bottom: 3px;
  background: #AF272F;
  width: auto;
}
.grid .grid-col .tag.tag-one {
  background: #AF272F;
}
.grid .grid-col .tag.tag-two {
  background: #97CA51;
}
.grid .grid-col .col-image {
  padding: 20px;
  position: relative;
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
  width: 100%;
  display: block;
  background: url("../library/images/filler.jpg") center/cover;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.grid .grid-col .col-image:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  pointer-events: none;
}
.grid .grid-col .col-content {
  padding: 30px;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
  background: #FFF;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  color: #080808;
}
.grid .grid-col .col-content h3 {
  font-size: 28px;
  margin-bottom: 0;
}
.grid .grid-col .col-content h3 br {
  display: none;
}
.grid .grid-col .col-content .readmore {
  margin-bottom: 0;
  font-weight: bold;
  color: #AF272F;
}
.grid .grid-col:hover .col-image, .grid .grid-col:focus .col-image {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -ms-flex-preferred-size: 60%;
      flex-basis: 60%;
}
.grid .grid-col:hover .col-image:after, .grid .grid-col:focus .col-image:after {
  background: #AF272F;
  opacity: 0.4;
}
.grid .grid-col:hover .col-content, .grid .grid-col:focus .col-content {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}
.grid .grid-col.page-col .col-image {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  height: 100%;
  width: 100%;
}
.grid .grid-col.page-col .col-content {
  padding: 30px;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  position: absolute;
  background: none;
  color: #FFF;
  z-index: 2;
}
.grid .grid-col.page-col .col-content h3 {
  color: #FFF;
  font-size: 36px;
  line-height: 38px;
  font-weight: 500;
  margin-top: auto;
}
.grid .grid-col.page-col .col-content h3 br {
  display: block;
}
.grid .grid-col.post-col .col-image {
  height: 40%;
}
.grid .grid-col.post-col .col-content {
  height: 60%;
  padding: 30px;
}
.grid .grid-col.post-col .col-content h4 {
  line-height: 32px;
}
.grid .grid-col.post-col h2,
.grid .grid-col.post-col h3 {
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 28px;
}
.grid .grid-col.post-col.no-thumbnail .col-content {
  padding: 30px;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  width: 100%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  position: absolute;
  background: none;
  color: #FFF;
  z-index: 2;
}
.grid .grid-col.post-col.no-thumbnail .col-content h4 {
  color: #FFF;
  font-size: 36px;
  line-height: 38px;
  font-weight: 500;
  margin-top: auto;
  margin-bottom: 0;
}
.grid .grid-col.post-col.no-thumbnail .col-content h4 br {
  display: block;
}
.grid .grid-col.events-col .col-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  overflow: hidden;
  padding: 50px;
  border-bottom: 1px solid #F4F4F4;
}
.grid .grid-col.events-col .col-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.grid .grid-col.events-col .col-image .virtual-event {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.6);
  color: #FFF;
  font-size: 15px;
  text-align: center;
  z-index: 5;
}
.grid .grid-col.events-col strong {
  color: #b5271e;
}
.grid .grid-col.events-col h3,
.grid .grid-col.events-col h2 {
  font-size: 20px;
  font-weight: 300;
}
.grid .grid-col.events-col .col-content {
  position: relative;
}
.grid .grid-col.job-vacancy-col {
  background: #B5271E;
  padding: 30px;
}
.grid .grid-col.job-vacancy-col a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.grid .grid-col.job-vacancy-col h3 {
  font-size: 24px;
  font-weight: 400;
  color: #FFF;
  opacity: 0.7;
}
.grid .grid-col.job-vacancy-col h3:first-of-type {
  margin-top: auto;
  margin-bottom: 8px;
  opacity: 1;
}
.grid .grid-col.job-vacancy-col h5 {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #FFF;
}
.grid .grid-col.job-vacancy-col.blue {
  background: #6CACE4;
}
.grid .grid-col.job-vacancy-col.green {
  background: #00919c;
}
.grid .grid-col.job-vacancy-col.yellow {
  background: #f0ae42;
}
.grid .grid-col.bespoke-col {
  padding: 30px;
  color: #FFF;
}
.grid .grid-col.bespoke-col a.tag {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3px;
}
.grid .grid-col.bespoke-col a {
  color: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: auto;
}
.grid .grid-col.bespoke-col .content {
  width: 100%;
  -webkit-transition: 0.25s all;
  transition: 0.25s all;
}
.grid .grid-col.bespoke-col .content img {
  margin-bottom: 30px;
  max-width: 100%;
}
.grid .grid-col.bespoke-col .content h3 {
  opacity: 0.7;
}
.grid .grid-col.bespoke-col .content h3:first-of-type {
  margin-top: auto;
  margin-bottom: 8px;
  opacity: 1;
}
.grid .grid-col.bespoke-col .content .readmore {
  font-weight: bold;
  color: #FFF;
  margin-bottom: 0;
}
.grid .grid-col.bespoke-col.teal-gradient {
  background: #00919c;
  background: linear-gradient(135deg, #00919c 0%, #005257 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#00919c", endColorstr="#005257",GradientType=1 );
}
.grid .grid-col.bespoke-col.purple-gradient {
  background: #b496bf;
  background: linear-gradient(135deg, #b496bf 0%, #372c79 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#b496bf", endColorstr="#372c79",GradientType=1 );
}
.grid .grid-col.bespoke-col.yellow-gradient {
  background: #dd9639;
  background: -webkit-gradient(linear, left top, right bottom, from(#f0ae42), to(#9e4e29));
  background: linear-gradient(to bottom right, #f0ae42 0%, #9e4e29 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#dd9639", endColorstr="#9e4e29",GradientType=1 );
}
.grid .grid-col.bespoke-col.new-nets-project .content img {
  display: block;
  height: auto;
}
.grid .grid-col.bespoke-col:hover .content {
  -webkit-transform: translateY(-15px);
          transform: translateY(-15px);
}
.grid .grid-col.annual-reports .annual-report-logo {
  position: absolute;
  right: 15px;
  top: 15px;
}
.grid .grid-col.annual-reports .annual-report-logo img {
  display: block;
  max-width: 100px;
}
.grid .grid-col.annual-reports .annual-report-logo p {
  font-weight: bold;
  font-size: 16px;
  color: #FFF;
  margin: 0 0 0 30px;
}
.grid .play-icon {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  width: auto;
  height: 20px;
}

@media only screen and (min-width: 630px) {
  .grid .grid-sizer {
    width: 6.866%;
  }
  .grid .gutter-sizer {
    width: 1.6%;
  }
  .grid .grid-col {
    width: 49%;
    margin-bottom: 1.6%;
  }
}
@media only screen and (min-width: 1024px) {
  .grid .grid-col {
    height: 400px;
    width: 15.332%;
    margin-bottom: 20px;
  }
  .grid .grid-col.bespoke-col .content {
    width: 70%;
  }
  .grid .grid-col.bespoke-col .content img {
    margin-left: -60px;
    width: auto;
  }

  .grid .row-a-grid-col-1 {
    width: 40.73%;
  }
  .grid .row-a-grid-col-2 {
    width: 23.798%;
  }
  .grid .row-a-grid-col-3 {
    width: 32.264%;
  }
  .grid .row-b-grid-col-1 {
    width: 32.264%;
  }
  .grid .row-b-grid-col-2 {
    width: 23.798%;
  }
  .grid .row-b-grid-col-3 {
    width: 40.73%;
  }
  .grid .row-c-grid-col-1, .grid .row-c-grid-col-2, .grid .row-c-grid-col-3 {
    width: 32.264%;
  }
  .grid .promo-a-grid-col-1 {
    width: 49.1%;
  }
  .grid .promo-a-grid-col-2 {
    width: 49.1%;
  }
  .grid .promo-b-grid-col-1 {
    width: 32.264%;
  }
  .grid .promo-b-grid-col-2 {
    width: 32.264%;
  }
  .grid .promo-b-grid-col-3 {
    width: 32.264%;
  }
  .grid .promo-c-grid-col-1 {
    width: 74.5%;
  }
  .grid .promo-c-grid-col-2 {
    width: 23.798%;
  }
}
@media only screen and (min-width: 1024px) {
  .page-template-page-market-access-overview .grid .grid-sizer {
    width: 0%;
  }
  .page-template-page-market-access-overview .row-a-grid-col-1 {
    width: 23% !important;
  }
  .page-template-page-market-access-overview .bespoke-col {
    width: 36.9% !important;
  }

  .page-template-page-careers-overview .grid .grid-sizer {
    width: 0%;
  }
  .page-template-page-careers-overview .job-vacancy-col {
    width: 49.1% !important;
  }

  .page-template-page-resources-overview .resources-grid .grid-col {
    width: 32.264%;
  }

  .page-template-page-news-overview .grid .grid-col {
    width: 32.264%;
  }
}
.remodal-overlay {
  z-index: 55;
  background: rgba(46, 46, 43, 0.7);
}

.remodal-wrapper {
  z-index: 60;
}

.remodal {
  padding: 0;
  max-width: 1260px;
  background: none;
  z-index: 60;
}
.remodal .modal-background {
  position: relative;
  background: #383735;
  padding: 20px 30px;
  padding-top: 80px;
  border-radius: 10px;
  min-height: 200px;
}
.remodal .modal-background:before {
  position: absolute;
  top: 20px;
  left: 40px;
  content: " ";
  display: block;
  height: 45px;
  width: 125px;
  background: url("../library/images/white-logo.svg") center/contain no-repeat;
}
.remodal .modal-background .remodal-close {
  color: #FFF;
  position: absolute;
  right: 40px;
  top: 20px;
  left: auto;
}
.remodal .modal-background .remodal-close:before {
  font-size: 40px;
  color: #AF272F;
}
.remodal .modal-background .remodal-close:after {
  position: absolute;
  top: 9px;
  left: -50px;
  font-size: 16px;
  font-weight: 300;
  content: "CLOSE";
}
.remodal .modal-background .remodal-close:focus:after {
  color: #AF272F;
}
.remodal .modal-inner .modal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  opacity: 0;
  height: 200px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.remodal .modal-inner .modal-content.active {
  height: auto;
  opacity: 1;
}

@media only screen and (min-width: 768px) {
  .remodal .modal-background {
    padding: 30px 40px;
    padding-top: 110px;
  }
}
.remodal.team-modal {
  background: none;
}
.remodal.team-modal .modal-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #FFF;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.remodal.team-modal .modal-inner .modal-content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.remodal.team-modal .modal-inner .left-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  max-width: 300px;
  width: 100%;
  margin-bottom: 20px;
}
.remodal.team-modal .modal-inner .left-col .profile-picture {
  width: 100%;
  height: 300px;
  border-radius: 6px;
  margin-bottom: 30px;
  margin-right: 0;
}
.remodal.team-modal .modal-inner .left-col p {
  font-size: 23px;
  line-height: 27px;
}
.remodal.team-modal .modal-inner .right-col {
  display: block;
  max-width: 920px;
  width: 100%;
  overflow: auto;
  overflow-x: hidden;
}
.remodal.team-modal .modal-inner .right-col h1, .remodal.team-modal .modal-inner .right-col h2, .remodal.team-modal .modal-inner .right-col h3, .remodal.team-modal .modal-inner .right-col h4 {
  color: #FFF;
}
.remodal.team-modal .modal-inner .right-col p:last-of-type {
  margin-bottom: 0;
}
.remodal.team-modal .modal-inner .right-col.external-content p {
  font-size: 23px;
  line-height: 27px;
}
.remodal.team-modal .modal-inner.active-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (min-width: 768px) {
  .remodal.team-modal .modal-inner {
    text-align: left;
  }
  .remodal.team-modal .modal-inner .modal-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .remodal.team-modal .modal-inner .left-col {
    text-align: left;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 300px;
    width: 100%;
    margin-bottom: 0;
    margin-right: 60px;
  }
  .remodal.team-modal .modal-inner .left-col .mobile-details {
    display: none;
  }
  .remodal.team-modal .modal-inner .right-col {
    display: block;
    max-width: 920px;
    width: 100%;
    max-height: 600px;
    overflow: auto;
    overflow-x: hidden;
    padding-right: 10px;
  }
  .remodal.team-modal .modal-inner .right-col h1, .remodal.team-modal .modal-inner .right-col h2, .remodal.team-modal .modal-inner .right-col h3, .remodal.team-modal .modal-inner .right-col h4 {
    color: #FFF;
  }
  .remodal.team-modal .modal-inner .right-col p:last-of-type {
    margin-bottom: 0;
  }
  .remodal.team-modal .modal-inner .right-col.external-content p {
    font-size: 23px;
    line-height: 27px;
  }
  .remodal.team-modal .modal-inner.active-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .remodal.team-modal .modal-inner ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background: none;
  }
  .remodal.team-modal .modal-inner ::-webkit-scrollbar {
    width: 5px;
  }
  .remodal.team-modal .modal-inner ::-webkit-scrollbar-thumb {
    background-color: #AF272F;
  }
}
.remodal.resource-modal {
  padding-top: 30px;
  color: #FFF;
}
.remodal.resource-modal .modal-inner {
  position: relative;
}
.remodal.resource-modal .modal-inner .left-col {
  display: none;
}
.remodal.resource-modal .modal-inner .left-col.pdf-details {
  display: block;
  width: 100%;
  color: #FFF;
  text-align: left;
  overflow: auto;
  overflow-x: hidden;
}
.remodal.resource-modal .modal-inner .left-col.pdf-details h3, .remodal.resource-modal .modal-inner .left-col.pdf-details h4 {
  color: #FFF;
}
.remodal.resource-modal .modal-inner .right-col {
  width: 100%;
}
.remodal.resource-modal .modal-inner .right-col.pdf-viewer {
  display: none;
}
.remodal.resource-modal .modal-inner .right-col embed {
  width: 100%;
}
.remodal.resource-modal .modal-inner .right-col.gallery-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-height: 600px;
  overflow: auto;
  overflow-x: hidden;
}
.remodal.resource-modal .modal-inner .right-col.gallery-container a {
  display: block;
  width: calc(20% - 7px);
  height: 75px;
  margin-right: 8px;
  margin-bottom: 10px;
  overflow: hidden;
}
.remodal.resource-modal .modal-inner .right-col.gallery-container a:nth-of-type(5n) {
  margin-right: 0;
}
.remodal.resource-modal .modal-inner .right-col.gallery-container a img {
  width: 100%;
}
.remodal.resource-modal .modal-inner .right-col.video-container {
  height: auto;
  min-height: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  cursor: pointer;
}
.remodal.resource-modal .modal-inner .right-col.video-container iframe {
  position: relative;
  display: block;
  width: 100%;
}
.remodal.resource-modal .modal-inner ::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background: none;
}
.remodal.resource-modal .modal-inner ::-webkit-scrollbar {
  width: 5px;
}
.remodal.resource-modal .modal-inner ::-webkit-scrollbar-thumb {
  background-color: #AF272F;
}
.remodal.resource-modal .btn {
  margin-bottom: 20px;
  background: #AF272F;
  color: #FFF;
  font-weight: 400;
  max-width: 300px;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  border: none;
}
.remodal.resource-modal .btn.download-btn {
  display: none;
}

@media only screen and (min-width: 768px) {
  .remodal.resource-modal .modal-inner .right-col.gallery-container a {
    width: calc(20% - 15px);
    height: 143px;
    margin-right: 18px;
    margin-bottom: 18px;
  }
  .remodal.resource-modal .modal-inner .right-col.gallery-container a:nth-of-type(5n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .remodal.resource-modal .modal-inner {
    min-height: none;
    position: relative;
  }
  .remodal.resource-modal .modal-inner .left-col {
    display: block;
    text-align: left;
    width: 100%;
    max-width: 360px;
    max-height: 500px;
    overflow: auto;
    overflow-x: hidden;
    margin-right: auto;
    padding-right: 60px;
  }
  .remodal.resource-modal .modal-inner .left-col h3, .remodal.resource-modal .modal-inner .left-col h4 {
    color: #FFF;
  }
  .remodal.resource-modal .modal-inner .left-col.pdf-details {
    max-width: none;
    margin-right: 0;
  }
  .remodal.resource-modal .modal-inner .right-col {
    width: 100%;
  }
  .remodal.resource-modal .modal-inner .right-col.pdf-viewer {
    display: none;
  }
  .remodal.resource-modal .modal-inner .right-col.video-container {
    max-width: 680px;
  }
  .remodal.resource-modal .modal-inner .right-col.gallery-container {
    max-height: 500px;
  }
  .remodal.resource-modal .modal-inner .right-col.gallery-container a {
    height: 143px;
  }
  .remodal.resource-modal .btn.view-btn {
    display: none;
  }
  .remodal.resource-modal .btn.download-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media only screen and (min-width: 1100px) {
  .remodal.resource-modal .modal-inner {
    position: relative;
  }
  .remodal.resource-modal .modal-inner .left-col.pdf-details {
    display: block;
    text-align: left;
    width: 100%;
    max-width: 300px;
    max-height: 600px;
    overflow: auto;
    overflow-x: hidden;
    margin-right: 60px;
    height: auto;
  }
  .remodal.resource-modal .modal-inner .right-col.pdf-viewer {
    display: block;
  }
}
.modal-loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.modal-loader.show-loader {
  opacity: 1;
}
.modal-loader .loader {
  height: 59px;
  width: 59px;
  position: relative;
}
.modal-loader .loader .loader-block {
  font-size: 8px;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  opacity: 0;
  width: 2em;
  height: 2em;
  background: #fdfdfd;
  -webkit-animation: show 0.88s step-end infinite alternate, pulse 0.88s linear infinite alternate;
          animation: show 0.88s step-end infinite alternate, pulse 0.88s linear infinite alternate;
}
.modal-loader .loader .loader-block:nth-child(1) {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-animation-delay: 0.065s;
          animation-delay: 0.065s;
}
.modal-loader .loader .loader-block:nth-child(2) {
  -webkit-transform: translate(2.66667em, 0);
          transform: translate(2.66667em, 0);
  -webkit-animation-delay: 0.13s;
          animation-delay: 0.13s;
}
.modal-loader .loader .loader-block:nth-child(3) {
  -webkit-transform: translate(5.33333em, 0);
          transform: translate(5.33333em, 0);
  -webkit-animation-delay: 0.195s;
          animation-delay: 0.195s;
}
.modal-loader .loader .loader-block:nth-child(4) {
  -webkit-transform: translate(0, 2.66667em);
          transform: translate(0, 2.66667em);
  -webkit-animation-delay: 0.325s;
          animation-delay: 0.325s;
}
.modal-loader .loader .loader-block:nth-child(5) {
  -webkit-transform: translate(2.66667em, 2.66667em);
          transform: translate(2.66667em, 2.66667em);
  -webkit-animation-delay: 0.13s;
          animation-delay: 0.13s;
}
.modal-loader .loader .loader-block:nth-child(6) {
  -webkit-transform: translate(5.33333em, 2.66667em);
          transform: translate(5.33333em, 2.66667em);
  -webkit-animation-delay: 0.455s;
          animation-delay: 0.455s;
}
.modal-loader .loader .loader-block:nth-child(7) {
  -webkit-transform: translate(0, 5.33333em);
          transform: translate(0, 5.33333em);
  -webkit-animation-delay: 0.39s;
          animation-delay: 0.39s;
}
.modal-loader .loader .loader-block:nth-child(8) {
  -webkit-transform: translate(2.66667em, 5.33333em);
          transform: translate(2.66667em, 5.33333em);
  -webkit-animation-delay: 0.26s;
          animation-delay: 0.26s;
}
.modal-loader .loader .loader-block:nth-child(9) {
  -webkit-transform: translate(5.33333em, 5.33333em);
          transform: translate(5.33333em, 5.33333em);
}
@keyframes pulse {
  from, 40% {
    background: #fdfdfd;
  }
  to {
    background: #dadada;
  }
}
@-webkit-keyframes show {
  from, 40% {
    opacity: 0;
  }
  41%, to {
    opacity: 1;
  }
}
@keyframes show {
  from, 40% {
    opacity: 0;
  }
  41%, to {
    opacity: 1;
  }
}

.newsletter-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  padding: 0 20px;
  z-index: 60;
}
.newsletter-popup-container.active-popup {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.newsletter-popup {
  position: relative;
  width: 100%;
  max-width: 1115px;
  background: #121211;
  padding: 50px 0;
  border-radius: 10px;
}
.newsletter-popup .close {
  width: 28px;
  height: 28px;
  position: absolute;
  right: 10px;
  top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 22px;
  color: #FAFAF8;
  border-radius: 50%;
  border: 1px solid #FAFAF8;
  cursor: pointer;
}
.newsletter-popup .wrap {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 940px;
}
.newsletter-popup h3 {
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
  color: #FFF;
  margin: 0 0 35px 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.newsletter-popup .wpcf7 {
  width: 100%;
}
.newsletter-popup .wpcf7-form {
  position: relative;
  width: 100%;
}
.newsletter-popup .wpcf7-form p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0;
}
.newsletter-popup .wpcf7-form input {
  width: 100%;
}
.newsletter-popup .wpcf7-form .wpcf7-form-control-wrap {
  width: 100%;
}
.newsletter-popup .wpcf7-form .wpcf7-form-control-wrap.your-name {
  margin-bottom: 10px;
}
.newsletter-popup .wpcf7-form .wpcf7-submit {
  border: 0;
  background: #b5271e;
  color: #FFF;
  max-width: 140px;
  margin: 10px auto 0 auto;
  color: #FFF;
  font-size: 24px;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.newsletter-popup .wpcf7-form .wpcf7-submit:hover {
  opacity: 0.8;
}
.newsletter-popup .wpcf7-form .wpcf7-response-output {
  display: none !important;
}
.newsletter-popup .wpcf7-form .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 0;
}
.newsletter-popup .wpcf7-form .ajax-loader {
  position: absolute;
  right: 0;
  bottom: -22px;
}
.newsletter-popup .pop-up-content {
  display: none;
}

@media only screen and (min-width: 768px) {
  .newsletter-popup .close {
    right: 18px;
    top: 18px;
  }
  .newsletter-popup h3 {
    margin: 0 0 35px 0;
  }
  .newsletter-popup .wpcf7-form p {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .newsletter-popup .wpcf7-form .wpcf7-form-control-wrap.your-name {
    margin-bottom: 0;
    margin-right: 20px;
  }
  .newsletter-popup .wpcf7-form .wpcf7-form-control-wrap.email-address {
    margin-right: 20px;
  }
  .newsletter-popup .wpcf7-form .wpcf7-submit {
    margin: 0;
  }
  .newsletter-popup .wpcf7-form .wpcf7-not-valid-tip {
    position: absolute;
  }
  .newsletter-popup .pop-up-content {
    display: block;
    max-width: 675px;
    margin: 55px auto 0 auto;
  }
  .newsletter-popup .pop-up-content p {
    font-weight: 400;
    font-size: 22px;
    line-height: 26px;
    color: #FFF;
    text-align: center;
    margin: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .newsletter-popup .wpcf7 {
    margin: 0 auto;
    max-width: 725px;
  }
  .newsletter-popup .wpcf7-form input {
    width: 100%;
  }
  .newsletter-popup .wpcf7-form .wpcf7-form-control-wrap.your-name {
    max-width: 215px;
  }
  .newsletter-popup .wpcf7-form .wpcf7-form-control-wrap.email-address {
    max-width: 332px;
  }
  .newsletter-popup .wpcf7-form .wpcf7-response-output {
    position: absolute;
  }
  .newsletter-popup .wpcf7-form .wpcf7-not-valid-tip {
    position: absolute;
  }
}
/* Components Payload
================================================ */
.homepage-intro-section {
  max-width: 1110px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 20px 20px 20px;
}
.homepage-intro-section .output {
  height: 96px;
  margin-bottom: 35px;
}
.homepage-intro-section h1 {
  font-weight: 300;
  font-size: 48px;
  line-height: 48px;
  margin: 0;
}
.homepage-intro-section h1 span {
  position: relative;
  font-weight: bold;
  display: block;
}
.homepage-intro-section h1 span:after {
  right: -12px;
  bottom: -2px;
  position: absolute;
  height: 6px;
  width: 35px;
  content: " ";
  background: #B5271E;
}
.homepage-intro-section h2 {
  display: block;
  font-weight: 300;
  font-size: 48px;
  line-height: 48px;
  position: relative;
  font-weight: bold;
  display: block;
}
.homepage-intro-section .cursor::after {
  display: inline-block;
  -webkit-animation-name: blink;
          animation-name: blink;
  -webkit-animation-duration: 0.75s;
          animation-duration: 0.75s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  margin-left: 15px;
  margin-bottom: -8px;
  height: 6px;
  width: 35px;
  content: " ";
  background: #B5271E;
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  49% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.homepage-intro-section .right-col-content {
  display: none;
  width: 100%;
}
.homepage-intro-section .left-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.homepage-intro-section .hp-filters {
  display: none;
}
.homepage-intro-section hr {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .homepage-intro-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .homepage-intro-section .output {
    height: 144px;
  }
  .homepage-intro-section h1 {
    font-size: 72px;
    line-height: 72px;
  }
  .homepage-intro-section h2 {
    font-size: 72px;
    line-height: 72px;
  }
  .homepage-intro-section .right-col-content {
    position: relative;
    display: block;
    max-width: 365px;
    width: 100%;
    margin-left: auto;
  }
  .homepage-intro-section .right-col-content .intro-content {
    position: absolute;
    opacity: 0;
    bottom: 0px;
    visibility: hidden;
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
    width: 100%;
  }
  .homepage-intro-section .right-col-content .intro-content.active-content {
    opacity: 1;
    visibility: visible;
  }
  .homepage-intro-section .right-col-content p {
    max-width: 305px;
    margin-bottom: 0;
  }
  .homepage-intro-section .left-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .homepage-intro-section .hp-filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .homepage-intro-section .hp-filters .filter {
    height: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    cursor: pointer;
    -webkit-transition: 0.25s all;
    transition: 0.25s all;
    padding: 0 20px;
    text-transform: uppercase;
    margin-right: 15px;
    border-radius: 4px;
    color: #080808;
    border: 0;
    font-weight: bold;
    font-size: 18px;
    font-family: "Roboto";
  }
  .homepage-intro-section .hp-filters .filter:last-of-type {
    margin-right: 0;
  }
  .homepage-intro-section .hp-filters .filter.active-filter, .homepage-intro-section .hp-filters .filter:hover {
    color: #FFF;
    background: #B5271E;
  }
  .homepage-intro-section hr {
    display: block;
    max-width: 625px;
    width: 100%;
    margin: 15px 0 50px 0;
    background: #F0F0F0;
    border: 0;
    height: 2px;
  }
}
.partners-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.partners-grid .partner-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 50%;
  border-right: 1px solid #f0f0f1;
  border-bottom: 1px solid #f0f0f1;
  padding: 25px;
}
.partners-grid .partner-image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.partners-grid .partner-image:nth-last-child(-n+2) {
  border-bottom: none;
}
.partners-grid .partner-image:nth-of-type(2n) {
  border-right: none;
}

@media only screen and (min-width: 768px) {
  .partners-grid .partner-image {
    width: 20%;
    padding: 20px;
  }
  .partners-grid .partner-image:nth-last-child(-n+2) {
    border-bottom: 1px solid #f0f0f1;
  }
  .partners-grid .partner-image:nth-of-type(2n) {
    border-right: 1px solid #f0f0f1;
  }
  .partners-grid .partner-image:nth-last-child(-n+5) {
    border-bottom: none;
  }
  .partners-grid .partner-image:nth-of-type(5n) {
    border-right: none;
  }
}
@media only screen and (min-width: 1024px) {
  .partners-grid .partner-image {
    padding: 5px;
  }
}
.funding-partners {
  margin: 50px auto 30px auto;
}
.funding-partners .funding-partners-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.funding-partners .funding-partners-grid .partner-image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 25%;
  padding: 10px;
}
.funding-partners .funding-partners-grid .partner-image img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

@media only screen and (min-width: 650px) {
  .funding-partners .funding-partners-grid .partner-image {
    padding: 20px;
  }
}
@media only screen and (min-width: 1024px) {
  .funding-partners {
    margin: 50px auto 30px auto;
  }
  .funding-partners .funding-partners-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .funding-partners .funding-partners-grid .partner-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 12.5%;
    padding: 20px;
  }
  .funding-partners .funding-partners-grid .partner-image img {
    display: block;
    max-width: 100%;
    height: auto;
  }
  .funding-partners .funding-partners-grid .partner-image:first-of-type {
    padding-left: 0;
  }
  .funding-partners .funding-partners-grid .partner-image:nth-of-type(6n) {
    padding-right: 0;
  }
}
.home footer {
  margin-top: 0;
}

.flexible-content {
  width: 100%;
}

@media only screen and (min-width: 1024px) {
  .page-nav-active {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .page-nav-active .flexible-content {
    width: calc(100% - 235px);
  }
}
.page-nav {
  position: fixed;
  bottom: calc(-100vh + 125px);
  left: 0;
  height: calc(100vh - 60px);
  width: 100%;
  background: #434343;
  z-index: 5;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  overflow: hidden;
  text-align: right;
}
.page-nav.active-nav {
  bottom: 0;
  overflow: auto;
}
.page-nav.active-nav .page-nav-trigger img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.page-nav .page-nav-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px;
  height: 65px;
  cursor: pointer;
}
.page-nav .page-nav-trigger p {
  font-size: 20px;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 0;
}
.page-nav .page-nav-trigger img {
  display: block;
  width: 22px;
  height: 12px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.page-nav ul {
  padding: 10px 20px 0 20px;
  font-size: 20px;
  list-style: none;
  margin-bottom: 0;
  width: 100%;
}
.page-nav ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #FFF;
  margin: 0;
  padding: 12px 0px;
  text-transform: uppercase;
  list-style: none;
  margin: 0;
}
.page-nav ul li:before {
  content: none;
}
.page-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  width: 100%;
  padding: 14px 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  color: #FFF;
}
.page-nav ul li a:hover {
  font-weight: bold;
}
.page-nav .author-info {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .page-nav {
    top: 180px;
    background: none;
    bottom: auto;
    position: sticky;
    -ms-flex-item-align: start;
        align-self: flex-start;
    max-width: 200px;
    width: 100%;
    margin-right: 35px;
    margin-bottom: 65px;
    height: auto;
    overflow: visible;
  }
  .page-nav .page-nav-trigger {
    display: none;
  }
  .page-nav ul {
    font-size: 16px;
    padding: 0;
    margin-bottom: 20px;
  }
  .page-nav ul li {
    display: block;
    color: #080808;
    border-bottom: 1px solid #E2E2E2;
    padding: 12px 0px;
  }
  .page-nav ul li a {
    display: block;
    border: none;
    padding: 0;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    color: #AF272F;
  }
  .page-nav ul li a:hover {
    font-weight: bold;
  }
  .page-nav .author-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .page-nav .author-info .author-pic {
    display: block;
    height: auto;
    width: 100%;
    max-width: 50px;
    border-radius: 4px;
    margin-right: 8px;
  }
  .page-nav .author-info .author-details {
    margin-top: auto;
    font-size: 12px;
    color: #080808;
  }
  .page-nav.condensed-header {
    top: 100px;
  }
}
@media all and (-ms-high-contrast: none) {
  .page-nav {
    top: 0 !important;
    position: relative !important;
  }
}
.success-stories-overview-container {
  padding-bottom: 45px;
}
.success-stories-overview-container h1 {
  margin-bottom: 50px;
}
.success-stories-overview-container .read-more {
  display: block;
  color: #A1C862;
  font-weight: bold;
  margin-top: 45px;
}

.section_introduction {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 45px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.section_introduction .left-col {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-right: auto;
}
.section_introduction .left-col h1 {
  margin-bottom: 30px;
}
.section_introduction .left-col .content {
  display: none;
}
.section_introduction .left-col .content p:last-of-type {
  margin-bottom: 0;
}
.section_introduction .left-col .content.careers-overview-content {
  display: block;
}
.section_introduction .left-col .market-access-intro-content {
  display: block;
}
.section_introduction .left-col .market-access-intro-content .content {
  display: block;
}
.section_introduction .left-col .market-access-intro-content.with-logo {
  display: none;
}
.section_introduction .left-col .market-access-intro-content .section-logo {
  display: block;
  margin-bottom: 20px;
  max-width: 100%;
  height: auto;
}
.section_introduction .map {
  display: none;
}
.section_introduction .author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 30px;
}
.section_introduction .author-info .author-pic {
  display: block;
  height: auto;
  width: 100%;
  max-width: 50px;
  border-radius: 4px;
  margin-right: 8px;
}
.section_introduction .author-info .author-details {
  margin-top: auto;
  font-size: 12px;
  color: #080808;
}

@media only screen and (min-width: 900px) {
  .section_introduction {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 45px;
    padding-top: 30px;
  }
  .section_introduction .left-col {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: auto;
  }
  .section_introduction .left-col h1 {
    margin-bottom: 30px;
  }
  .section_introduction .left-col .content {
    max-width: 545px;
  }
  .section_introduction .left-col .content p:last-of-type {
    margin-bottom: 0;
  }
  .section_introduction .left-col .market-access-intro-content {
    display: block;
  }
  .section_introduction .left-col .market-access-intro-content.with-logo {
    display: none;
    margin-top: auto;
  }
  .section_introduction .left-col .market-access-intro-content .section-logo {
    margin-bottom: 20px;
  }
  .section_introduction .author-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .section_introduction .author-info .author-pic {
    display: block;
    height: auto;
    width: 100%;
    max-width: 50px;
    border-radius: 4px;
    margin-right: 8px;
  }
  .section_introduction .author-info .author-details {
    margin-top: auto;
    font-size: 12px;
    color: #080808;
  }
}
@media only screen and (min-width: 1024px) {
  .section_introduction {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section_introduction .map {
    opacity: 1;
    visibility: visible;
    height: auto;
    position: relative;
    max-width: 650px;
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    display: block;
    margin-left: 50px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .section_introduction .map svg {
    width: 100%;
    display: block;
    height: 320px;
  }
  .section_introduction .map .location.small {
    height: 7px;
    width: 7px;
  }
  .section_introduction .map .location.small:before {
    top: 3px;
    right: 14px;
  }
  .section_introduction .map .location.small .location-marker {
    height: 7px;
    width: 7px;
  }
  .section_introduction .map .location.medium {
    height: 10px;
    width: 10px;
  }
  .section_introduction .map .location.medium:before {
    top: 5px;
    right: 12px;
  }
  .section_introduction .map .location.medium .location-marker {
    height: 10px;
    width: 10px;
  }
  .section_introduction .map .location.large {
    height: 15px;
    width: 15px;
  }
  .section_introduction .map .location.large:before {
    top: 7.5px;
    right: 19px;
  }
  .section_introduction .map .location.large .location-marker {
    height: 15px;
    width: 15px;
  }
  .section_introduction .map .location.brazil:before {
    left: 20px;
  }
  .section_introduction .map .location.guyana:before {
    left: 15px;
  }
  .section_introduction .map .location.haiti:before {
    left: 15px;
  }
  .section_introduction .map .location.mexico:before {
    left: 15px;
  }
  .section_introduction .map .location.puerto-rico:before {
    left: 15px;
  }
  .section_introduction .map .location.trinidad:before {
    left: 15px;
  }
  .section_introduction .map .location.usa:before {
    left: 20px;
  }
  .section_introduction .map .location.massachusetts-usa:before {
    left: 15px;
  }
  .section_introduction .map .location.new-orleans-usa:before {
    left: 15px;
  }
  .section_introduction .map .location.north-carolina-usa:before {
    left: 15px;
  }
  .section_introduction .map .location.seattle-usa:before {
    left: 15px;
  }
  .section_introduction .map .location.washington-dc-usa:before {
    left: 15px;
  }
  .section_introduction .map.market-access.ngenirs .location .body-of-work.nnp {
    display: none;
  }
  .section_introduction .map.market-access.ngenirs .location .location-marker.ngenirs.nnp {
    opacity: 0.4;
    background: #009CA6;
    -webkit-transition: none;
    transition: none;
  }
  .section_introduction .map.market-access.ngenirs .location .location-marker.nnp {
    opacity: 0;
  }
  .section_introduction .map.market-access.new-nets-project .location .body-of-work.ngenirs {
    display: none;
  }
  .section_introduction .map.market-access.new-nets-project .location .location-marker.ngenirs.nnp {
    opacity: 0.4;
    background: #f0ae42;
    -webkit-transition: none;
    transition: none;
  }
  .section_introduction .map.market-access.new-nets-project .location .location-marker.ngenirs {
    opacity: 0;
  }
}
.grid-container .filters-container .filter:focus {
  text-decoration: underline;
}
.grid-container .filters-container.mobile-filter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #434343;
  z-index: 3;
  overflow: hidden;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transform: translateY(calc(100% - 65px));
          transform: translateY(calc(100% - 65px));
}
.grid-container .filters-container.mobile-filter.active-filter {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  overflow: auto;
}
.grid-container .filters-container.mobile-filter.active-filter .mobile-filter-trigger img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.grid-container .filters-container.mobile-filter .mobile-filter-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  height: 65px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.grid-container .filters-container.mobile-filter .mobile-filter-trigger p {
  font-size: 20px;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 0;
}
.grid-container .filters-container.mobile-filter .mobile-filter-trigger img {
  display: block;
  width: 22px;
  height: 12px;
  height: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.grid-container .filters-container.mobile-filter ul {
  padding: 10px 20px 20px 20px;
  font-size: 20px;
  list-style: none;
  margin-bottom: 0;
  width: 100%;
}
.grid-container .filters-container.mobile-filter ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #FFF;
  margin: 0;
  padding: 12px 0px;
  text-transform: uppercase;
  list-style: none;
  margin: 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.grid-container .filters-container.mobile-filter ul li:before {
  content: none;
}
.grid-container .filters-container.mobile-filter ul li:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.grid-container .filters-container.desktop-filters {
  display: none;
}
.grid-container .category-image {
  display: none;
}

@media only screen and (min-width: 768px) {
  .grid-container .filters-container.mobile-filter {
    display: none;
  }
  .grid-container .filters-container.desktop-filters {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 40px;
  }
  .grid-container .filters-container.desktop-filters p {
    width: 100%;
    font-size: 22px;
    margin-bottom: 0;
    line-height: 22px;
    margin-bottom: 14px;
  }
  .grid-container .filters-container.desktop-filters .single-filter-group-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-right: 7px;
    margin-bottom: 7px;
  }
  .grid-container .filters-container.desktop-filters .single-filter-group-container .sub-filters {
    opacity: 0;
    position: absolute;
    left: 0;
    top: 50px;
    z-index: 1;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    pointer-events: none;
  }
  .grid-container .filters-container.desktop-filters .single-filter-group-container .sub-filters .filter {
    height: 40px;
    background: none;
    text-transform: none;
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #dfdfda;
    max-width: 100%;
    font-size: 16px;
    padding: 0;
  }
  .grid-container .filters-container.desktop-filters .single-filter-group-container .sub-filters .filter:last-of-type {
    border: none;
  }
  .grid-container .filters-container.desktop-filters .single-filter-group-container:last-of-type {
    margin-right: 0;
  }
  .grid-container .filters-container.desktop-filters .single-filter-group-container.active-filter-group .sub-filters {
    pointer-events: auto;
    opacity: 1;
  }
  .grid-container .filters-container.desktop-filters .single-filter-group-container.active-filter-group .sub-filters .sub-filter.active-filter, .grid-container .filters-container.desktop-filters .single-filter-group-container.active-filter-group .sub-filters .sub-filter:hover {
    color: #AF272F;
  }
  .grid-container .filters-container.desktop-filters .single-filter-group-container.active-filter-group .sub-filters .sub-filter.teal:hover, .grid-container .filters-container.desktop-filters .single-filter-group-container.active-filter-group .sub-filters .sub-filter.teal.active-filter {
    color: #009CA6;
  }
  .grid-container .filters-container.desktop-filters .single-filter-group-container.active-filter-group .sub-filters .sub-filter.yellow:hover, .grid-container .filters-container.desktop-filters .single-filter-group-container.active-filter-group .sub-filters .sub-filter.yellow.active-filter {
    color: #f0ae42;
  }
  .grid-container .filters-container.desktop-filters .filter {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 50px;
    font-size: 20px;
    padding: 0 15px;
    text-transform: uppercase;
    border: #efefec 1px solid;
    border-radius: 4px;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    font-weight: 300;
    cursor: pointer;
    background: #000;
    color: #fff;
  }
  .grid-container .filters-container.desktop-filters .filter:hover, .grid-container .filters-container.desktop-filters .filter.active-filter {
    font-weight: bold;
    background: #AF272F;
    color: #FFF;
  }
  .grid-container .filters-container.desktop-filters .filter.teal:hover, .grid-container .filters-container.desktop-filters .filter.teal.active-filter {
    font-weight: bold;
    background: #009CA6;
    color: #FFF;
  }
  .grid-container .filters-container.desktop-filters .filter.yellow:hover, .grid-container .filters-container.desktop-filters .filter.yellow.active-filter {
    font-weight: bold;
    background: #f0ae42;
    color: #FFF;
  }
  .grid-container .category-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin-bottom: 40px;
  }

  .grid-category-container {
    display: none;
    position: relative;
  }
}
.vector-control-introduction svg rect {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.vector-control-introduction svg.malaria #ntds rect {
  opacity: 0;
}
.vector-control-introduction svg.novel-ais #malaria rect {
  opacity: 0;
}

.research-and-dev-intro svg rect {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.research-and-dev-intro svg.malaria #ntds rect {
  opacity: 0;
}
.research-and-dev-intro svg.novel-ais #malaria rect {
  opacity: 0;
}

@media only screen and (min-width: 1024px) {
  .page-template-page-market-access-overview .ngenirs-bespoke, .page-template-page-market-access-overview .new-nets-project-bespoke {
    height: auto;
    height: 400px;
  }

  .market-access-introduction svg rect {
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  .market-access-introduction svg.ngenirs #ngenirs rect {
    opacity: 0;
  }
  .market-access-introduction svg.nnp #nnp rect {
    opacity: 0;
  }

  .grid-category-container.new-nets-project .bespoke-col, .grid-category-container.ngenirs .bespoke-col {
    width: 40.73%;
  }

  .changeable-intro-content .content {
    display: none;
  }
}
.event-map {
  display: none;
}

@media only screen and (min-width: 1024px) {
  .event-map {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 35px;
    margin-bottom: 40px;
  }
  .event-map .date-picker {
    background: #FFF;
    border-radius: 4px;
    width: 375px;
    margin-right: 57px;
    text-align: center;
    font-size: 24px;
    font-weight: 300;
    padding: 15px 0 12px 0;
    -ms-flex-item-align: start;
        align-self: flex-start;
    font-size: 9px;
  }
  .event-map .date-picker .selector {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 0 15px 15px 15px;
    border-bottom: #F0F0F0 1px solid;
    text-align: center;
  }
  .event-map .date-picker .selector .arrow {
    width: 43px;
    height: 32px;
    background: url("../library/images/events-arrow-left.svg") center/contain no-repeat;
    cursor: pointer;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  .event-map .date-picker .selector .arrow:last-of-type {
    background: url("../library/images/events-arrow-right.svg") center/contain no-repeat;
  }
  .event-map .date-picker .selector .arrow.disabled {
    opacity: 0.6;
    cursor: default;
  }
  .event-map .date-picker .selector p {
    font-size: 24px;
    color: #434343;
    font-weight: 400;
    margin: 0;
  }
  .event-map .date-picker .selector.month-selector {
    padding: 15px 15px 15px 15px;
    margin-bottom: 10px;
  }
  .event-map .date-picker .calendar {
    width: 100%;
  }
  .event-map .date-picker .calendar td {
    height: 35px;
    vertical-align: middle;
  }
  .event-map .date-picker .calendar .day {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 20px;
    width: 20px;
    background: #E3E3DF;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  .event-map .date-picker .calendar .day.event-present {
    background: #B5271E;
    cursor: pointer;
    color: #FFF;
  }
  .event-map .date-picker .calendar .day.event-present:hover, .event-map .date-picker .calendar .day.event-present.activedate {
    opacity: 1;
  }
  .event-map .date-picker .calendar .day.event-present:focus {
    border: 1px solid #000;
    border-radius: 50%;
  }
  .event-map .map-container {
    position: relative;
    -ms-flex-item-align: start;
        align-self: flex-start;
    justify-self: flex-start;
    margin-bottom: 65px;
  }
  .event-map .map-container .point {
    position: absolute;
    overflow: visible;
    top: 50%;
    left: 50%;
    display: block;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
  }
  .event-map .map-container .point .point-details {
    display: block;
    top: -120px;
    left: -200px;
    color: #434343;
    border: 1px solid #434343;
    background: #fff;
    position: absolute;
    z-index: 5;
    pointer-events: none;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    border-radius: 4px;
    width: 190px;
    line-height: 21px;
    opacity: 0;
  }
  .event-map .map-container .point .point-details a {
    color: #434343;
    display: block;
    height: 100%;
    width: 100%;
    padding: 15px 15px 20px 15px;
  }
  .event-map .map-container .point .point-details strong {
    display: block;
    margin-bottom: 5px;
  }
  .event-map .map-container .point .point-details span {
    display: block;
    font-size: 14px;
    line-height: 16px;
  }
  .event-map .map-container .point .point-details span:first-of-type {
    margin-bottom: 5px;
  }
  .event-map .map-container .point .point-marker {
    position: absolute;
    height: 16px;
    width: 16px;
    top: 0;
    left: 0;
    background: #B5271E;
    opacity: 0.4;
    z-index: 3;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    cursor: pointer;
    border-radius: 50%;
  }
  .event-map .map-container .point.activedate .point-marker {
    opacity: 1;
  }
  .event-map .map-container .point.activedate .point-details {
    pointer-events: auto;
    opacity: 1;
  }
  .event-map .map-container .point.activedate.second-event .point-details {
    top: 0;
  }
  .event-map .map-container .point.location-netherlands {
    top: 30%;
    left: 48%;
  }
  .event-map .map-container .point.location-belgium {
    top: 32%;
    left: 47%;
  }
  .event-map .map-container .point.location-sydney {
    top: 84%;
    left: 88%;
  }
  .event-map .map-container .point.location-liverpool {
    top: 29%;
    left: 44%;
  }
  .event-map .map-container .point.location-yaounde {
    top: 62%;
    left: 49%;
  }
  .event-map .map-container .point.location-geneva {
    top: 34%;
    left: 48%;
  }
  .event-map .map-container .point.location-dakar {
    top: 53%;
    left: 41%;
  }
  .event-map .map-container .point.location-portland-usa {
    top: 36%;
    left: 12%;
  }
  .event-map .map-container .point.location-washington {
    top: 39%;
    left: 24%;
  }
  .event-map .map-container .point.location-florida {
    top: 47%;
    left: 23.5%;
  }
  .event-map .map-container .point.location-india {
    top: 53%;
    left: 69%;
  }
  .event-map .map-container .point.location-pennsylvania {
    top: 36%;
    left: 24%;
  }
  .event-map .map-container .point.location-burkina-faso {
    top: 55%;
    left: 45%;
  }
  .event-map .map-container .point.location-barcelona {
    top: 40%;
    left: 45%;
  }
  .event-map .map-container .point.location-london {
    top: 29%;
    left: 45%;
  }
  .event-map .map-container .point.location-ethiopia {
    top: 59%;
    left: 57%;
  }
  .event-map .map-container .point.location-lyon {
    top: 36%;
    left: 47%;
  }
  .event-map .map-container .point.location-nigeria {
    top: 57%;
    left: 47%;
  }
  .event-map .map-container .point.location-vietnam {
    top: 52%;
    left: 76%;
  }
  .event-map .map-container .point.location-st-louis {
    top: 37%;
    left: 20%;
  }
  .event-map .map-container .point.location-kigali {
    top: 59%;
    left: 55%;
  }
  .event-map .map-container .point.location-bangkok {
    top: 56%;
    left: 75%;
  }
  .event-map .map-container .point.location-ghana {
    top: 59.5%;
    left: 45.5%;
  }
  .event-map .map-container .point.location-maryland {
    top: 39.5%;
    left: 24.5%;
  }
  .event-map .map-container .point.location-toronto {
    top: 34.5%;
    left: 24.5%;
  }
  .event-map .map-container .point.location-salt-lake-city {
    top: 39%;
    left: 15%;
  }
	.event-map .map-container .point.location-chicago {
    top: 28%;
    left: 22%;
  }
	.event-map .map-container .point.location-tanzania {
    top: 65%;
    left: 55%;
  }
	.event-map .map-container .point.location-thailand {
    top: 51%;
    left: 75%;
  }
  .event-map .map-container img {
    max-width: 100%;
    height: auto;
  }
  .event-map .map-container .map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
}
.contact-page-container .page-intro {
  margin-bottom: 30px;
}
.contact-page-container .page-intro h1 {
  width: 100%;
}
.contact-page-container .lower-contact-page {
  background: #fafaf8;
  padding-top: 50px;
  padding-bottom: 70px;
}
.contact-page-container .contact-container {
  margin-bottom: 70px;
}
.contact-page-container .contact-container .wpcf7 {
  max-width: 660px;
  width: 100%;
}
.contact-page-container .contact-container .wpcf7 p {
  position: relative;
  margin-bottom: 25px;
}
.contact-page-container .contact-container .wpcf7 p:last-of-type {
  margin: 0;
}
.contact-page-container .contact-container .wpcf7 input, .contact-page-container .contact-container .wpcf7 textarea, .contact-page-container .contact-container .wpcf7 select {
  width: 100%;
  margin-top: 10px;
  border-radius: 4px;
  outline: 0;
  font-size: 18px;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  color: #707070;
  -webkit-appearance: none;
  background: #FFF;
}
.contact-page-container .contact-container .wpcf7 input.wpcf7-not-valid, .contact-page-container .contact-container .wpcf7 textarea.wpcf7-not-valid, .contact-page-container .contact-container .wpcf7 select.wpcf7-not-valid {
  border: 1px solid red;
}
.contact-page-container .contact-container .wpcf7 .wpcf7-form-control-wrap {
  position: relative;
  display: block;
}
.contact-page-container .contact-container .wpcf7 textarea {
  resize: none;
  padding: 15px 0 0 15px;
}
.contact-page-container .contact-container .wpcf7 input.wpcf7-submit {
  background: #AF272F;
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  max-width: 300px;
  cursor: pointer;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  border: none;
}
.contact-page-container .contact-container .wpcf7 input.wpcf7-submit:hover {
  opacity: 0.8;
}
.contact-page-container .contact-container .wpcf7 input.wpcf7-submit:focus {
  border: 3px solid #000;
}
.contact-page-container .contact-container .wpcf7 .wpcf7-not-valid-tip {
  position: absolute;
  font-size: 12px;
  margin-top: 1px;
}
.contact-page-container .contact-container .wpcf7 .wpcf7-response-output {
  display: none !important;
}
.contact-page-container .contact-container .wpcf7 .ajax-loader {
  position: absolute;
  right: 0;
  bottom: 0;
}
.contact-page-container .details .map-container {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 350px;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 30px;
}
.contact-page-container .details .map-container iframe {
  height: 100%;
  width: 100%;
}
.contact-page-container .details p {
  font-size: 20px;
  line-height: 24px;
}
.contact-page-container .details .top-row .address-container {
  width: 100%;
  max-width: 280px;
  margin-bottom: 30px;
}
.contact-page-container .details .top-row .address-container .social-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: auto;
}
.contact-page-container .details .top-row .address-container .social-container a {
  color: #707070;
  opacity: 0.35;
  font-size: 27px;
  display: block;
  margin-right: 8px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.contact-page-container .details .top-row .address-container .social-container a:last-of-type {
  margin: 0;
}
.contact-page-container .details .top-row .address-container .social-container a:hover {
  opacity: 1;
}
.contact-page-container .details .top-row .media-information a {
  color: #707070;
}
.contact-page-container .details .top-row .media-information a:last-of-type {
  color: #AF272F;
}

@media only screen and (min-width: 768px) {
  .contact-page-container .details .top-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contact-page-container .details .top-row .address-container {
    margin-right: 150px;
  }
}
@media only screen and (min-width: 1024px) {
  .contact-page-container .details .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contact-page-container .details .map-container {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 410px;
    max-height: 420px;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 30px;
  }
  .contact-page-container .details .map-container iframe {
    height: 100%;
    width: 100%;
  }
  .contact-page-container .details p {
    font-size: 20px;
    line-height: 24px;
  }
  .contact-page-container .details .top-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contact-page-container .details .top-row .address-container {
    max-width: 280px;
    margin-bottom: 30px;
  }
}
.single-post-container {
  margin-bottom: 45px;
}
.single-post-container .post-intro h1 {
  margin-bottom: 35px;
}
.single-post-container .page-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px solid #E3E3DF;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.single-post-container .page-info .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 16px;
  color: #080808;
  margin-bottom: 10px;
}
.single-post-container .page-info .date strong {
  text-transform: uppercase;
  margin-left: 8px;
}
.single-post-container .page-info .date img {
  display: block;
  height: 16px;
  width: auto;
  margin-left: 8px;
}
.single-post-container .page-info .read-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px;
  line-height: 16px;
  color: #080808;
  margin-bottom: 10px;
}
.single-post-container .page-info .read-time strong {
  text-transform: uppercase;
  margin-left: 8px;
}
.single-post-container .page-info .read-time img {
  display: block;
  height: 16px;
  width: auto;
  margin-left: 8px;
}
.single-post-container .page-info .tag-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
}
.single-post-container .page-info .tag-container .tag {
  margin-right: 10px;
}
.single-post-container .page-info .tag-container .tag:last-of-type {
  margin-right: 0;
}
.single-post-container .page-info .author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 14px;
}
.single-post-container .page-info .author-info .author-pic {
  display: block;
  height: auto;
  width: 100%;
  max-width: 50px;
  border-radius: 4px;
  margin-right: 8px;
}
.single-post-container .page-info .author-info .author-details {
  margin-top: auto;
  font-size: 12px;
  color: #080808;
}
.single-post-container .content {
  width: 100%;
}
.single-post-container .content .featured-image {
  display: block;
  max-width: 100%;
  margin: 0 auto 35px auto;
  border-radius: 6px;
}
.single-post-container .content .featured-image.caption-present {
  margin-bottom: 10px;
}
.single-post-container .content .image-caption {
  font-size: 14px;
  margin-bottom: 35px;
}
.single-post-container .content .social-share {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-post-container .content .social-share a {
  display: block;
  margin-right: 10px;
  text-decoration: none;
}
.single-post-container .content .social-share a:last-of-type {
  margin: 0;
}
.single-post-container .content .social-share img {
  display: block;
}
.single-post-container .sidebar {
  max-width: 410px;
  width: 100%;
  margin-top: 50px;
}
.single-post-container .sidebar .featured-image {
  display: none;
}
.single-post-container .sidebar .article-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #AF272F;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.single-post-container .sidebar .article-download .pdf-icon {
  display: block;
  max-width: 45px;
  width: 100%;
  height: auto;
  margin-bottom: auto;
  margin-right: 15px;
}
.single-post-container .sidebar .article-download .paper-content {
  font-size: 14px;
}
.single-post-container .sidebar .article-download .paper-content p {
  line-height: 18px;
  margin-bottom: 5px;
}
.single-post-container .sidebar .article-download .paper-content p strong {
  font-weight: 500;
  display: block;
}
.single-post-container .sidebar .article-download .paper-content p span {
  text-transform: uppercase;
}
.single-post-container .sidebar .article-download .paper-content .paper-actions {
  height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-post-container .sidebar .article-download .paper-content .paper-actions .download {
  height: 100%;
  font-weight: bold;
  color: #AF272F;
}
.single-post-container .sidebar .article-download .paper-content .paper-actions .download a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-post-container .sidebar .article-download .paper-content .paper-actions .download img {
  margin-left: 5px;
  width: auto;
  height: 12px;
}
.single-post-container .sidebar .article-download:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
}

@media only screen and (min-width: 900px) {
  .single-post-container .page-info {
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    border-bottom: 1px solid #E3E3DF;
    padding-bottom: 10px;
    margin-bottom: 40px;
  }
  .single-post-container .page-info .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 30px;
    font-size: 14px;
    line-height: 16px;
    color: #080808;
    border-right: 1px solid #CCCCCC;
    padding-right: 15px;
    margin-right: 15px;
    margin-bottom: 0;
  }
  .single-post-container .page-info .date strong {
    text-transform: uppercase;
    margin-left: 8px;
  }
  .single-post-container .page-info .date img {
    display: block;
    height: 16px;
    width: auto;
    margin-left: 8px;
  }
  .single-post-container .page-info .read-time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 30px;
    font-size: 14px;
    line-height: 16px;
    color: #080808;
    margin-bottom: 0;
  }
  .single-post-container .page-info .read-time strong {
    text-transform: uppercase;
    margin-left: 8px;
  }
  .single-post-container .page-info .read-time img {
    display: block;
    height: 16px;
    width: auto;
    margin-left: 8px;
  }
  .single-post-container .page-info .tag-container {
    height: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-left: 1px solid #CCCCCC;
    padding-left: 15px;
    margin-left: 15px;
    border-right: 1px solid #CCCCCC;
    padding-right: 15px;
    margin-right: 15px;
    margin-bottom: 0;
  }
  .single-post-container .page-info .tag-container .tag {
    margin-right: 10px;
  }
  .single-post-container .page-info .tag-container .tag:last-of-type {
    margin-right: 0;
  }
  .single-post-container .page-info .author-info {
    max-width: 410px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    line-height: 14px;
  }
  .single-post-container .page-info .author-info .author-pic {
    display: block;
    height: auto;
    width: 100%;
    max-width: 50px;
    border-radius: 4px;
    margin-right: 8px;
  }
  .single-post-container .page-info .author-info .author-details {
    margin-top: auto;
    font-size: 12px;
    color: #080808;
  }
}
@media only screen and (min-width: 990px) {
  .single-post-container .page-info .tag-container {
    margin-right: auto;
    padding: 0;
    border: 0;
  }
}
@media only screen and (min-width: 900px) {
  .single-post-container .post-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .single-post-container .content {
    width: calc(100% - 430px);
  }
  .single-post-container .content .featured-image, .single-post-container .content .image-caption {
    display: none;
  }
  .single-post-container .sidebar {
    max-width: 410px;
    width: 100%;
    margin-left: 20px;
    margin-top: 0;
  }
  .single-post-container .sidebar .featured-image {
    display: block;
    max-width: 100%;
    margin-bottom: 35px;
    border-radius: 6px;
  }
  .single-post-container .sidebar .featured-image.caption-present {
    margin-bottom: 10px;
  }
  .single-post-container .sidebar .image-caption {
    display: block;
    font-size: 14px;
    margin-bottom: 35px;
  }
  .single-post-container .sidebar h4 {
    display: none;
  }
}
.single-post-container ul, .single-post-container ol {
  margin: 0px 0px 30px 20px;
}
.single-post-container ul li:not(:last-of-type), .single-post-container ol li:not(:last-of-type) {
  margin-bottom: 5px;
}
.single-post-container ul {
  list-style: disc;
}
.single-post-container ul li {
  list-style: disc;
}
.single-post-container ul li:before {
  display: none;
}
.single-post-container ol {
  list-style: decimal;
}
.single-post-container em {
  font-style: italic;
}

.single-event-container {
  margin-bottom: 45px;
}
.single-event-container .page-info {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #E3E3DF;
  padding-bottom: 17px;
  margin-bottom: 40px;
}
.single-event-container .page-info .read-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 14px;
  line-height: 16px;
  color: #080808;
}
.single-event-container .page-info .read-time strong {
  text-transform: uppercase;
  margin-left: 8px;
}
.single-event-container .page-info .read-time img {
  display: block;
  height: 16px;
  width: auto;
  margin-left: 8px;
}
.single-event-container .page-info .tag-container {
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #CCCCCC;
  padding-left: 15px;
  margin-left: 15px;
  margin-right: 15px;
}
.single-event-container .page-info .tag-container .tag {
  margin-right: 10px;
}
.single-event-container .page-info .tag-container .tag:last-of-type {
  margin-right: 0;
}
.single-event-container .page-info .register-for-event {
  height: 22px;
  width: auto;
  margin-left: auto;
}
.single-event-container .event-logo {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 25px;
  max-width: 350px;
}
.single-event-container .event-logo.desktop-event-logo {
  display: none;
}
.single-event-container .virtual-event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-right: 1px solid #CCCCCC;
  padding-right: 15px;
  font-size: 14px;
  text-transform: uppercase;
  margin-right: 15px;
  color: #AF272F;
}
.single-event-container .post-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.single-event-container .content {
  margin-bottom: 50px;
}
.single-event-container .content .event-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.single-event-container .content .event-details img {
  margin-right: auto;
}
.single-event-container .content .event-details h4 {
  font-size: 20px;
}
.single-event-container .content .research_papers {
  margin: 80px 0;
}
.single-event-container .content .research_papers h3 {
  font-size: 32px;
  margin-bottom: 40px;
}
.single-event-container .content .social-share {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.single-event-container .content .social-share a {
  display: block;
  margin-right: 10px;
}
.single-event-container .content .social-share a:last-of-type {
  margin: 0;
}
.single-event-container .content .social-share img {
  display: block;
}
.single-event-container .sidebar {
  width: 100%;
}
.single-event-container .sidebar .author-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 10px;
}
.single-event-container .sidebar .author-info .author-pic {
  display: block;
  height: auto;
  width: 100%;
  max-width: 50px;
  border-radius: 4px;
  margin-right: 8px;
}
.single-event-container .sidebar .author-info .author-details {
  margin-top: auto;
  font-size: 12px;
  color: #080808;
}
.single-event-container .sidebar .author-info:last-of-type {
  margin-bottom: 40px;
}
.single-event-container .sidebar .register-for-event {
  display: none;
}

@media only screen and (min-width: 600px) {
  .single-event-container .content .event-details img {
    margin-right: 25px;
  }
  .single-event-container .content .event-details h4 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 900px) {
  .single-event-container {
    margin-bottom: 45px;
  }
  .single-event-container .page-info .tag-container {
    margin-right: 0;
  }
  .single-event-container .page-info .register-for-event {
    display: none;
  }
  .single-event-container .event-logo {
    margin-bottom: 40px;
  }
  .single-event-container .event-logo.desktop-event-logo {
    display: block;
  }
  .single-event-container .event-logo.mobile-event-logo {
    display: none;
  }
  .single-event-container .post-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .single-event-container .content {
    margin-bottom: 0;
    width: calc(100% - 430px);
  }
  .single-event-container .content .event-details {
    display: block;
  }
  .single-event-container .sidebar {
    max-width: 410px;
    margin-left: 20px;
  }
  .single-event-container .sidebar .author-info {
    margin-bottom: 35px;
  }
  .single-event-container .sidebar .register-for-event {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: bold;
    color: #AF272F;
  }
  .single-event-container .sidebar .register-for-event img {
    margin-right: 15px;
  }
}
.current-esacs {
  background: #F8F8F5;
  padding: 30px 20px 50px 20px;
  border-radius: 12px;
}
.current-esacs h3 {
  margin-bottom: 30px;
}
.current-esacs h3:last-of-type {
  color: #9F9F9F;
  margin-bottom: 18px;
}
.current-esacs .esac-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 25px;
}
.current-esacs .esac-container .esac-block {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 6px;
  color: #FFF;
}
.current-esacs .esac-container .esac-block a {
  display: block;
  height: 100%;
  width: 100%;
  padding: 30px;
}
.current-esacs .esac-container .esac-block h3 {
  color: #FFF;
  margin-bottom: 22px;
}
.current-esacs .esac-container .esac-block hr {
  border: none;
  height: 1px;
  background: #FFF;
  margin-bottom: 18px;
  opacity: 0.5;
}
.current-esacs .esac-container .esac-block p:last-of-type {
  margin-bottom: 0;
}
.current-esacs .esac-container .esac-block:nth-of-type(1n) {
  background: #009CA6;
}
.current-esacs .esac-container .esac-block:nth-of-type(2n) {
  background: #B899C3;
}
.current-esacs .esac-container .esac-block:nth-of-type(3n) {
  background: #3E3084;
}
.current-esacs .esac-container .esac-block:nth-of-type(4n) {
  background: #4092D1;
  margin-right: 0;
}
.current-esacs .esac-container .esac-block.legacy {
  background: #F0F0F0;
  color: #080808;
}
.current-esacs .esac-container .esac-block.legacy h3 {
  color: #080808;
}
.current-esacs .esac-container .esac-block.legacy hr {
  background: #080808;
}

@media only screen and (min-width: 768px) {
  .current-esacs .esac-container .esac-block {
    width: calc(50% - 6px);
    margin-right: 12px;
  }
  .current-esacs .esac-container .esac-block:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media only screen and (min-width: 1024px) {
  .current-esacs {
    background: #F8F8F5;
    padding: 30px 40px 50px 40px;
  }
  .current-esacs .esac-container {
    margin-bottom: 8px;
  }
  .current-esacs .esac-container .esac-block {
    width: calc(25% - 12px);
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .current-esacs .esac-container .esac-block h3 {
    margin-bottom: 22px;
  }
  .current-esacs .esac-container .esac-block hr {
    margin-bottom: 12px;
  }
  .current-esacs .esac-container .esac-block p:last-of-type {
    margin-bottom: 0;
  }
  .current-esacs .esac-container .esac-block:nth-of-type(2n) {
    margin-right: 15px;
  }
  .current-esacs .esac-container .esac-block:nth-of-type(4n) {
    margin-right: 0;
  }
}
.single-job-container {
  margin-bottom: 45px;
}
.single-job-container .post-intro {
  border-bottom: 1px solid #E3E3DF;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.single-job-container .post-intro p {
  line-height: 28px;
}
.single-job-container .recipient-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.single-job-container .recipient-info .recipient-pic {
  display: block;
  height: auto;
  width: 100%;
  max-width: 50px;
  border-radius: 4px;
  margin-right: 8px;
}
.single-job-container .recipient-info .recipient-details {
  margin-top: auto;
  font-size: 12px;
  color: #080808;
}

.reports-page-container {
  margin-bottom: 45px;
}
.reports-page-container .page-info {
  height: 48px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #E3E3DF;
  padding-bottom: 17px;
  margin-bottom: 40px;
}
.reports-page-container .page-info .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 14px;
  line-height: 16px;
  color: #080808;
  border-right: 1px solid #CCCCCC;
  padding-right: 15px;
  margin-right: 15px;
}
.reports-page-container .page-info .date strong {
  text-transform: uppercase;
  margin-left: 8px;
}
.reports-page-container .page-info .date img {
  display: block;
  height: 16px;
  width: auto;
  margin-left: 8px;
}
.reports-page-container .page-info .read-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  font-size: 14px;
  line-height: 16px;
  color: #080808;
}
.reports-page-container .page-info .read-time strong {
  text-transform: uppercase;
  margin-left: 8px;
}
.reports-page-container .page-info .read-time img {
  display: block;
  height: 16px;
  width: auto;
  margin-left: 8px;
}
.reports-page-container .page-info .tag-container {
  height: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-left: 1px solid #CCCCCC;
  padding-left: 15px;
  margin-left: 15px;
}
.reports-page-container .page-info .tag-container .tag {
  margin-right: 10px;
}
.reports-page-container .page-info .tag-container .tag:last-of-type {
  margin-right: 0;
}
.reports-page-container .content {
  width: 100%;
}
.reports-page-container .content a {
  text-decoration: underline;
}
.reports-page-container .sidebar {
  max-width: 410px;
  width: 100%;
  margin-top: 50px;
}
.reports-page-container .sidebar .article-download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #AF272F;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.reports-page-container .sidebar .article-download .pdf-icon {
  display: block;
  max-width: 45px;
  width: 100%;
  height: auto;
  margin-bottom: auto;
  margin-right: 15px;
}
.reports-page-container .sidebar .article-download .paper-content {
  font-size: 14px;
}
.reports-page-container .sidebar .article-download .paper-content p {
  line-height: 18px;
  margin-bottom: 5px;
}
.reports-page-container .sidebar .article-download .paper-content p strong {
  font-weight: 500;
  display: block;
}
.reports-page-container .sidebar .article-download .paper-content p span {
  text-transform: uppercase;
}
.reports-page-container .sidebar .article-download .paper-content .paper-actions {
  height: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reports-page-container .sidebar .article-download .paper-content .paper-actions .download {
  height: 100%;
  font-weight: bold;
  color: #AF272F;
}
.reports-page-container .sidebar .article-download .paper-content .paper-actions .download a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.reports-page-container .sidebar .article-download .paper-content .paper-actions .download img {
  margin-left: 5px;
  width: auto;
  height: 12px;
}
.reports-page-container .sidebar .article-download:last-of-type {
  margin-bottom: 0;
  border-bottom: 0;
}

@media only screen and (min-width: 900px) {
  .reports-page-container .post-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .reports-page-container .content {
    width: calc(100% - 430px);
  }
  .reports-page-container .content .featured-image {
    display: none;
  }
  .reports-page-container .sidebar {
    max-width: 410px;
    width: 100%;
    margin-left: 20px;
    margin-top: 0;
  }
  .reports-page-container .sidebar h4 {
    display: none;
  }
}
.search-results-container {
  margin-bottom: 45px;
}
.search-results-container h1 {
  margin-bottom: 70px;
}
.search-results-container h4 {
  font-size: 30px;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 15px;
}
.search-results-container h5 {
  font-size: 22px;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 15px;
}
.search-results-container .results-header {
  font-size: 12px;
  color: #B5271E;
}
.search-results-container .results-header.lower-header {
  margin: 150px 0 50px 0;
}
.search-results-container .search-result {
  border-bottom: 1px solid rgba(181, 39, 30, 0.3);
}
.search-results-container .search-result a {
  display: block;
  padding: 10px 0px;
}
.search-results-container .search-result h4 {
  font-size: 18px;
  margin-bottom: 0;
}
.search-results-container .search-result h4 .resource-icon {
  display: none;
}
.search-results-container .search-result p {
  display: none;
}
.search-results-container .search-result.featured-results {
  border-bottom: 1px solid #B5271E;
}
.search-results-container .search-result.featured-results a {
  padding: 50px 0 20px 0;
}
.search-results-container .search-result.featured-results h4 {
  font-size: 24px;
  margin-bottom: 5px;
}
.search-results-container .search-result.featured-results h4 .resource-icon {
  display: inline;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  width: auto;
  height: 20px;
  margin-left: 5px;
}
.search-results-container .search-result.featured-results p {
  color: #707070;
  display: block;
  margin: 0;
}
.search-results-container .search-result.featured-results p.date {
  font-size: 14px;
  margin-bottom: 8px;
}
.search-results-container .search-result.resources {
  padding: 10px 0px;
}
.search-results-container .search-result.resources.featured-results {
  padding: 50px 0 20px 0;
}
.search-results-container .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  margin-top: 60px;
}
.search-results-container .pagination .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #707070;
  margin-right: 10px;
  font-size: 18px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  border-bottom: 1px solid #F8F8F5;
  transition: 0.5s all;
  outline: 0;
  padding: 0 2px 10px 2px;
  width: 18px;
}
.search-results-container .pagination .page-numbers.current, .search-results-container .pagination .page-numbers:hover {
  border-bottom: 1px solid #AF272F;
}
.search-results-container .pagination .page-numbers:last-child {
  margin-right: 0;
}
.search-results-container .filters-container.mobile-filter {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #434343;
  z-index: 3;
  overflow: hidden;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transform: translateY(calc(100% - 65px));
          transform: translateY(calc(100% - 65px));
}
.search-results-container .filters-container.mobile-filter.active-filter {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  overflow: auto;
}
.search-results-container .filters-container.mobile-filter.active-filter .mobile-filter-trigger img {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.search-results-container .filters-container.mobile-filter .mobile-filter-trigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px;
  height: 65px;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-results-container .filters-container.mobile-filter .mobile-filter-trigger p {
  font-size: 20px;
  font-weight: 400;
  color: #FFF;
  margin-bottom: 0;
}
.search-results-container .filters-container.mobile-filter .mobile-filter-trigger img {
  display: block;
  width: 22px;
  height: 12px;
  height: auto;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.search-results-container .filters-container.mobile-filter ul {
  padding: 10px 20px 20px 20px;
  font-size: 20px;
  list-style: none;
  margin-bottom: 0;
  width: 100%;
}
.search-results-container .filters-container.mobile-filter ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  color: #FFF;
  margin: 0;
  padding: 12px 0px;
  text-transform: uppercase;
  list-style: none;
  margin: 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
}
.search-results-container .filters-container.mobile-filter ul li:before {
  content: none;
}
.search-results-container .filters-container.mobile-filter ul li:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
}
.search-results-container .filters-container.desktop-filters {
  display: none;
}

@media only screen and (min-width: 768px) {
  .search-results-container .filters-container.mobile-filter {
    display: none;
  }
  .search-results-container .filters-container.desktop-filters {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 80px;
    border-bottom: 1px solid #AF272F;
  }
  .search-results-container .filters-container.desktop-filters p {
    color: #AF272F;
    width: 100%;
    font-size: 12px;
    margin-bottom: 0;
    font-weight: 500;
    line-height: 14px;
    margin-bottom: 15px;
  }
  .search-results-container .filters-container.desktop-filters .filter {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 32px;
    font-size: 18px;
    padding: 0 15px;
    text-transform: uppercase;
    border: #CCC 1px solid;
    border-radius: 4px;
    -webkit-transition: 0.5s all;
    transition: 0.5s all;
    font-weight: 400;
    cursor: pointer;
    margin-right: 7px;
  }
  .search-results-container .filters-container.desktop-filters .filter:last-of-type {
    margin-right: 0;
  }
  .search-results-container .filters-container.desktop-filters .filter:hover, .search-results-container .filters-container.desktop-filters .filter.active-filter {
    border: 1px solid #AF272F;
    color: #AF272F;
  }
}
.thank-you-container {
  padding: 80px 15px;
  text-align: center;
}
.thank-you-container h1 {
  font-size: 60px;
  line-height: 65px;
  font-weight: bold;
  margin-bottom: 50px;
}
.thank-you-container p {
  max-width: 800px;
  margin: 0 auto 40px auto;
}
.thank-you-container form {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
  position: relative;
}
.thank-you-container form input {
  border: 1px solid #AF272F;
  width: 100%;
  border-radius: 4px;
}
.thank-you-container form button {
  cursor: pointer;
  top: 12.5px;
  right: 16px;
  height: 24px;
  width: 24px;
  background: url("../library/images/search-icon.svg") center/contain no-repeat;
  position: absolute;
  border: 0;
}
.thank-you-container form input[type=search]::-webkit-search-cancel-button {
  display: none;
}
.thank-you-container form ::-webkit-input-placeholder {
  color: #999;
  font-style: italic;
}
.thank-you-container form ::-moz-placeholder {
  color: #999;
  font-style: italic;
}
.thank-you-container form :-ms-input-placeholder {
  color: #999;
  font-style: italic;
}
.thank-you-container form :-moz-placeholder {
  color: #999;
  font-style: italic;
}

.error404__content {
  padding: 100px 0 150px;
  text-align: center;
}
.error404__content h1 {
  font-size: 7em;
  line-height: 170px;
  margin-bottom: 30px;
}

.section_introduction.zero-by-40-intro {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section_introduction.zero-by-40-intro .left-col {
  display: none;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.section_introduction.zero-by-40-intro .left-col .zero-by-40-intro-content .content {
  max-width: 700px;
}
.section_introduction.zero-by-40-intro .zbf-logo {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 400px;
  width: 100%;
  display: block;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  margin: 0 auto;
}
.section_introduction.zero-by-40-intro .zbf-logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media only screen and (min-width: 900px) {
  .section_introduction.zero-by-40-intro {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .section_introduction.zero-by-40-intro .left-col {
    display: block;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .section_introduction.zero-by-40-intro .zbf-logo {
    margin: 0;
  }
  .section_introduction.zero-by-40-intro a {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 0;
  }
}
.grid-container .zero-by-40-header {
  display: block;
  margin-bottom: 21px;
  padding: 0;
}
.grid-container .zero-by-40-header img {
  display: block;
  width: 100%;
  height: auto;
}
.grid-container .zero-by-40-header a {
  display: block;
  height: 100%;
  width: 100%;
}

.sitemap-page {
  border-top: 1px solid #DEDEDE;
  padding: 90px 0 50px 0;
}
.sitemap-page h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 30px;
}
.sitemap-page .sitemap-columns .sitemap-col {
  width: 100%;
  margin-bottom: 60px;
}
.sitemap-page .sitemap-columns .sitemap-col h4 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 25px;
}
.sitemap-page .sitemap-columns .sitemap-col h2, .sitemap-page .sitemap-columns .sitemap-col .wsp-posts-title, .sitemap-page .sitemap-columns .sitemap-col .wsp-category-title {
  display: none;
}
.sitemap-page .sitemap-columns .sitemap-col.blog-col ul li:before {
  content: none;
}
.sitemap-page .sitemap-columns .sitemap-col.blog-col ul li li:before {
  font-size: 20px;
  margin-right: 10px;
  content: "•";
  color: #707070;
  font-weight: bold;
  display: inline-block;
}

@media only screen and (min-width: 900px) {
  .sitemap-page {
    padding: 90px 0 50px 0;
  }
  .sitemap-page h1 {
    font-size: 38px;
    margin-bottom: 40px;
  }
  .sitemap-page .sitemap-columns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .sitemap-page .sitemap-columns .sitemap-col {
    width: calc(50% - 30px);
    margin-right: 60px;
    margin-bottom: 40px;
  }
  .sitemap-page .sitemap-columns .sitemap-col:nth-of-type(2n) {
    margin-right: 0;
  }
}