/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i");
.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; }

@-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 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) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

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

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip; }

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

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

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX; }

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

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

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY; }

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

.flipOutX {
  -webkit-animation-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);
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

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

.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out; }

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in; }

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: 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; }

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

audio, canvas, video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

a {
  background: 0 0; }

a:focus {
  outline: thin dotted; }

a:active, a:hover {
  outline: 0; }

h1 {
  font-size: 2em;
  margin: .67em 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0; }

mark {
  background: #ff0;
  color: #000; }

code, kbd, pre, samp {
  font-family: monospace,serif;
  font-size: 1em; }

pre {
  white-space: pre-wrap; }
pre.codeaidii {display:none;}
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

small {
  font-size: 80%; }

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

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

legend {
  border: 0;
  padding: 0; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

button, input {
  line-height: normal; }

button, select {
  text-transform: none; }

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], html input[disabled] {
  cursor: default; }

input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0; }

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

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

@font-face {
  font-family: 'PT Serif';
  src: url("fonts/PT_Serif-Web-Bold.ttf.ttf") format("truetype");
  font-weight: bold;
  font-style: normal; }

*,
*:after,
*:before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  box-sizing: border-box; }

*:focus {
  outline: 0; }

/* html element 62.5% font-size for REM use */
html {
  font-family: "Noto Sans", Helvetica, sans-serif;
  color: #505050;
  font-size: 16px; }

body {
  line-height: 1.4;
  font-size: 16px;
  background: transparent; }
  body.show-menu {
    overflow: hidden; }

input:focus {
  outline: 0;
  border: 1px solid #04A4CC; }

img {
  max-width: 100%;
  vertical-align: bottom; }

a {
  color: #505050;
  text-decoration: underline;
  -webkit-text-decoration-color: #1c9dbb;
          text-decoration-color: #1c9dbb; }

a:hover, a:focus {
  text-decoration: underline;
  -webkit-text-decoration-color: #1c9dbb;
          text-decoration-color: #1c9dbb; }

a:focus {
  outline: 0; }

a:hover,
a:active {
  outline: 0; }

body h2.remove-margins {
  margin: 0;
  margin-right: 50px; }

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: "Noto Sans", Helvetica, sans-serif;
  color: #282828;
  margin-top: 1em;
  margin-bottom: 1em; }

h1, .h1 {
  font-weight: 700;
  font-size: 2.5rem; }

.h1 h1,
.h1 h2,
.h1 h3,
.h1 h4,
.h1 h5,
.h1 h6,
.h1 p,
.h1 li,
.h1 ul,
.h1 strong,
.h1 b,
.h1 u,
.h1 i,
.h1 td,
.h1 th {
  font-weight: 700;
  font-size: 2.5rem; }

.h1 strong,
.h1 b {
  font-weight: 700; }

h2, .h2 {
  font-weight: 700;
  font-size: 1.8333333333rem;
  line-height: 1.1363636364; }

.h2 h1,
.h2 h2,
.h2 h3,
.h2 h4,
.h2 h5,
.h2 h6,
.h2 p,
.h2 li,
.h2 ul,
.h2 strong,
.h2 b,
.h2 u,
.h2 i,
.h2 td,
.h2 th {
  font-weight: 700;
  font-size: 1.8333333333rem;
  line-height: 1.1363636364; }

.h2 strong,
.h2 b {
  font-weight: 700; }

h3, .h3 {
  font-size: 1.0833333333rem;
  line-height: 1.1538461538;
  font-weight: 700; }

.h3 h1,
.h3 h2,
.h3 h3,
.h3 h4,
.h3 h5,
.h3 h6,
.h3 p,
.h3 li,
.h3 ul,
.h3 strong,
.h3 b,
.h3 u,
.h3 i,
.h3 td,
.h3 th {
  font-weight: 700;
  font-size: 1.0833333333rem;
  line-height: 0.6546153846; }

.h3 strong,
.h3 b {
  font-weight: 700; }

h4, .h4 {
  font-weight: 500;
  font-size: 1.25rem; }

.h4 h1,
.h4 h2,
.h4 h3,
.h4 h4,
.h4 h5,
.h4 h6,
.h4 p,
.h4 li,
.h4 ul,
.h4 strong,
.h4 b,
.h4 u,
.h4 i,
.h4 td,
.h4 th {
  font-weight: 500;
  font-size: 1.25rem; }

.h4 strong,
.h4 b {
  font-weight: 700; }

h5, .h5 {
  font-weight: 500;
  font-size: 1.0833333333rem; }

.h5 h1,
.h5 h2,
.h5 h3,
.h5 h4,
.h5 h5,
.h5 h6,
.h5 p,
.h5 li,
.h5 ul,
.h5 strong,
.h5 b,
.h5 u,
.h5 i,
.h5 td,
.h5 th {
  font-weight: 500;
  font-size: 1.0833333333rem; }

.h5 strong,
.h5 b {
  font-weight: 700; }

p,
li,
ul,
strong,
b,
u,
i,
td,
th {
  font-family: "Noto Sans", Helvetica, sans-serif;
  font-weight: 400;
  font-size: 0.9166666667rem;
  color: #282828; }

strong,
b {
  font-weight: 700; }

p {
  margin-top: .9em;
  margin-bottom: .9em; }

strong,
b {
  font-weight: bold; }

blockquote {
  position: relative;
  margin-left: 0; }
  blockquote, blockquote p {
    font-family: "Noto Sans", Helvetica, sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.2666666667;
    font-style: italic;
    color: #189dba;
    padding-left: 28px; }
  blockquote:after {
    position: absolute;
    content: "";
    background-image: url("img/blockquote.svg");
    background-size: cover;
    width: 38px;
    height: 30.5607692308px;
    top: 3px;
    left: 0; }

.hide {
  display: none; }

ol {
  padding-left: 1.0625em; }
  ol li {
    margin-bottom: .9em; }

ul li {
  margin-bottom: .9em; }

li ul li {
    margin-top: 0.9em;
}

table {
  width: 100%; }
.two-box-columns section {
    width: 48.33%;
    margin-bottom: 20px;
}
.home .events-calendar {width:100%;}
.home .event-page-content h3 {
    margin: 0;color:#282828
}
h3.startdate {
    float: left;
    font-size: 250%;
    margin: 0 36px 0 0;
    width: 35%;
}
.searchandfilter ul li {
    width: 50%;
    float: left;
}


section#breadcrumbs {
    padding-top: 2.5em;
}
section#breadcrumbs span {font-style:italic; font-size: small;}
header,
.header {
  height: 3.75em; }
  header > .container,
  .header > .container {
    height: 3.75em; }
  @media screen and (min-width: 48em) {
    header,
    .header {
      height: 6.25em; }
      header > .container,
      .header > .container {
        height: 6.25em; } }
  header .container,
  .header .container {
    max-width: inherit;
    width: 95%; }
  header--project,
  .header--project {
    height: 3.75em;
    background-color: #5ca6bd; }
    header--project > .container,
    .header--project > .container {
      height: 3.75em; }
    header--project-btn,
    .header--project-btn {
      color: #009dbc;
      background-color: #fff;
      border-radius: 8px;
      text-decoration: none;
      font-size: 0.75rem;
      line-height: 1.2222222222;
      padding: 7px 40px;
      font-weight: bold; }

.nav {
  background-color: #58a6bd;
  position: relative;
  display: none; }
  @media screen and (min-width: 62em) {
    .nav {
      display: block; } }
  .nav .container {
    max-width: 100em; }
  .nav--project .container {
    max-width: 87.5em; }
  .nav--project .menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 4.0625em; }
    .nav--project .menu li {
      font-size: 0.9166666667rem;
      line-height: 1.2727272727;
      font-weight: bold;
      padding: 0 25px;
      min-height: 65px;
      cursor: pointer;
      -webkit-transition: background-color .3s ease-in-out;
      transition: background-color .3s ease-in-out; }
      .nav--project .menu li.activated {
        background-color: rgba(0, 0, 0, 0.2); }

.mobile-nav {
  background-color: #5cb7d2;
  display: none;
  overflow-x: hidden; }
  .mobile-nav > .container {
    overflow-x: visible; }
  @media screen and (min-width: 48em) {
    .mobile-nav {
      display: none; } }
  .footer.activated .mobile-nav {
    display: block;
    z-index: 9999;
    border-bottom: 20px solid #1c9dbb; }

.nav .menu {
  height: 3.4375em;
  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;
  width: 100%; }
  .nav .menu > ul,
  .nav .menu li {
    list-style-type: none;
    margin: 0;
    padding: 0; }
  .nav .menu > ul {
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .nav .menu li {
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 55px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .nav .menu li a {
      color: #fff;
      font-size: 0.9166666667rem;
      line-height: 1.2;
      display: block;
      font-weight: 700;
      padding: 0 0.625em;
      text-transform: uppercase;
      text-decoration: none; }
      @media screen and (min-width: 55.5em) {
        .nav .menu li a {
          padding: 1.1875em 1.25em; } }
      @media screen and (min-width: 67.5em) {
        .nav .menu li a {
          padding: 1.1875em 2.1875em; } }
    .nav .menu li.current_page_item, .nav .menu li.current-menu-ancestor, .nav .menu li:hover, .nav .menu li:focus {
      background-color: #5cb7d2; }
  .nav .menu:hover > ul > li.current_page_item,
  .nav .menu:focus > ul > li.current_page_item,
  .nav .menu:hover > ul > li.current-menu-ancestor,
  .nav .menu:focus > ul > li.current-menu-ancestor {
    background-color: #58a6bd; }
  .nav .menu ul > li.current_page_item:hover,
  .nav .menu ul > li.current_page_item:focus,
  .nav .menu:hover > ul > li.current-menu-ancestor:hover,
  .nav .menu:focus > ul > li.current-menu-ancestor:focus {
    background-color: #5cb7d2; }
  .nav .menu .sub-menu {
    display: none;
    position: absolute;

    top: 55px;
    z-index: 1000;

    margin-left: 0;
    padding-left: 0;
    width: auto;
    background-color: #5cb7d2; }
.nav .menu ul.sub-menu ul.sub-menu {
    left: 100%;
    top: 0%;
	width: 100%;
}
li#menu-item-26 ul.sub-menu ul.sub-menu {
    left: -100%;
}
    .nav .menu .sub-menu .sub-menu {
      display: none; }
    .nav .menu .sub-menu li:hover,
    .nav .menu .sub-menu li:focus,
    .nav .menu .sub-menu li.current_page_item,
    .nav .menu .sub-menu li.current-menu-ancestor {
      background-color: #89cbdf; }
    .nav .menu .sub-menu:hover > li.current_page_item,
    .nav .menu .sub-menu:focus > li.current_page_item,
    .nav .menu .sub-menu:hover > li.current-menu-ancestor,
    .nav .menu .sub-menu:focus > li.current-menu-ancestor {
      background-color: #5cb7d2; }
    .nav .menu .sub-menu > li.current_page_item:hover,
    .nav .menu .sub-menu > li.current_page_item:focus,
    .nav .menu .sub-menu > li.current-menu-ancestor:hover
    .nav .menu .sub-menu > li.current-menu-ancestor:focus {
      background-color: #89cbdf; }
    .nav .menu .sub-menu .sub-menu {
      background-color: #89cbdf; }
      .nav .menu .sub-menu .sub-menu li {
        background-color: #89cbdf; }
        .nav .menu .sub-menu .sub-menu li:hover, .nav .menu .sub-menu .sub-menu li.current_page_item,
        .nav .menu .sub-menu .sub-menu li:focus, .nav .menu .sub-menu .sub-menu li.current_page_item{
          text-decoration: underline; }
        .nav .menu .sub-menu .sub-menu li.current_page_item {
          background-color: #89cbdf; }
        .nav .menu .sub-menu .sub-menu li a {
          text-transform: capitalize; }
      .nav .menu .sub-menu .sub-menu:hover > li.current_page_item,
      .nav .menu .sub-menu .sub-menu:focus > li.current_page_item,
      .nav .menu .sub-menu .sub-menu:hover > li.current-menu-ancestor,
      .nav .menu .sub-menu .sub-menu:focus > li.current-menu-ancestor {
        text-decoration: none; }
      .nav .menu .sub-menu .sub-menu > li.current_page_item:hover,
      .nav .menu .sub-menu .sub-menu > li.current_page_item:focus,
      .nav .menu .sub-menu .sub-menu > li.current-menu-ancestor:hover,
      .nav .menu .sub-menu .sub-menu > li.current-menu-ancestor:focus {
        text-decoration: underline; }
  .nav .menu li:hover > .sub-menu,   .nav .menu li:focus > .sub-menu  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; flex-direction: column;}

.mobile-nav .menu {
  margin: 0;
  width: 100%; }
  .mobile-nav .menu .opener {
    content: "+";
    margin-left: 5px;
    padding: 6px 0;
    padding-right: 10px;
    color: #fff;
    text-transform: uppercase;
    font-size: 1.4166666667rem;
    line-height: 0.8235294118;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    display: none;
    min-width: 64px;
    margin-right: -32.8px; }
    .mobile-nav .menu .opener:after {
      content: "+"; }
    .mobile-nav .menu .opener.activated {
      margin-right: -29.16px; }
      .mobile-nav .menu .opener.activated:after {
        content: '-'; }
  .mobile-nav .menu .menu-item-has-children > .opener {
    display: inline; }
  .mobile-nav .menu a {
    color: #fff;
    text-transform: uppercase;
    font-size: 1.4166666667rem;
    line-height: 1.1764705882;
    font-weight: bold;
    text-decoration: none;
    padding: 6px 0;
    text-align: center; }
    .mobile-nav .menu a:hover {
      text-decoration: none; }
  .mobile-nav .menu ul {
    list-style-type: none;
    padding: 0;
    margin: 0; }
  .mobile-nav .menu li {
    padding: 14px 0;
    margin-bottom: 0;
    text-align: center;
    line-height: 34px; }
    .mobile-nav .menu li.activated {
      padding-bottom: 0; }
  .mobile-nav .menu .sub-menu {
    padding-top: 14px; }
    .mobile-nav .menu .sub-menu .sub-menu {
      padding: 0; }
  .mobile-nav .menu ul li.activated {
    background-color: #58a6bd;
    -webkit-box-shadow: -50px 0 #58a6bd, 50px 0 #58a6bd;
            box-shadow: -50px 0 #58a6bd, 50px 0 #58a6bd; }
  .mobile-nav .menu ul > li > ul {
    display: none; }
    .mobile-nav .menu ul > li > ul.activated {
      display: block;
      background-color: #58a6bd; }
      .mobile-nav .menu ul > li > ul.activated li:last-of-type.activated {
        background-color: #89cbdf;
        -webkit-box-shadow: -50px 0 #89cbdf, 50px 0 #89cbdf;
                box-shadow: -50px 0 #89cbdf, 50px 0 #89cbdf; }
  .mobile-nav .menu ul > li > ul > li > ul {
    display: none; }
    .mobile-nav .menu ul > li > ul > li > ul .opener {
      display: none !important; }
    .mobile-nav .menu ul > li > ul > li > ul.activated {
      display: block;
      background-color: #89cbdf;
      -webkit-box-shadow: -50px 0 #89cbdf, 50px 0 #89cbdf;
              box-shadow: -50px 0 #89cbdf, 50px 0 #89cbdf; }
  .mobile-nav .menu ul > li > ul > li > ul > li ul {
    display: none; }

main,
.main {
  border-bottom: 20px solid #178aa4; }
  @media screen and (min-width: 62em) {
    main,
    .main {
      margin-top: 2.5em; } }
  .page-template-members-page main, .page-template-members-page
  .main {
    background-color: #fff;
    margin-top: 0; }

footer,
.footer {
  border-top: 20px solid #1c9dbb;
  border-bottom: 20px solid #fdd82d;
  padding: 0.625em 0; }
  @media screen and (min-width: 48em) {
    footer,
    .footer {
      padding: 0.625em 0 7.5em; } }
  @media screen and (min-width: 62em) {
    footer,
    .footer {
      padding: 2.5em 0; } }
  footer a,
  .footer a {
    color: #1c9dbb;
    font-size: 1rem;
    line-height: 1.3333333333; }
    @media screen and (min-width: 62em) {
      footer a,
      .footer a {
        font-size: 0.8333333333rem;
        line-height: 1.5; } }
  footer h1,
  footer h2,
  footer h3,
  footer h4,
  footer h5,
  footer h6,
  footer p,
  footer li,
  footer ul,
  footer strong,
  footer b,
  footer u,
  footer i,
  footer td,
  footer th,
  .footer h1,
  .footer h2,
  .footer h3,
  .footer h4,
  .footer h5,
  .footer h6,
  .footer p,
  .footer li,
  .footer ul,
  .footer strong,
  .footer b,
  .footer u,
  .footer i,
  .footer td,
  .footer th {
    color: #1c9dbb;
    text-align: center;
    font-size: 1rem;
    line-height: 1.3333333333;
    margin: 0;
    padding: 0; }
    @media screen and (min-width: 62em) {
      footer h1,
      footer h2,
      footer h3,
      footer h4,
      footer h5,
      footer h6,
      footer p,
      footer li,
      footer ul,
      footer strong,
      footer b,
      footer u,
      footer i,
      footer td,
      footer th,
      .footer h1,
      .footer h2,
      .footer h3,
      .footer h4,
      .footer h5,
      .footer h6,
      .footer p,
      .footer li,
      .footer ul,
      .footer strong,
      .footer b,
      .footer u,
      .footer i,
      .footer td,
      .footer th {
        text-align: left;
        font-size: 0.8333333333rem;
        line-height: 1.5; } }
  footer strong,
  footer b,
  .footer strong,
  .footer b {
    font-weight: 700; }
  footer .footer-links,
  .footer .footer-links {
    margin-top: 12px;
    text-align: center;
    margin-bottom: 12px; }
    @media screen and (min-width: 62em) {
      footer .footer-links,
      .footer .footer-links {
        margin-top: 2.5em;
        margin-bottom: 0;
        text-align: left; } }
    footer .footer-links a,
    .footer .footer-links a {
      display: block; }
  footer .footer-images,
  .footer .footer-images {
    text-align: right;
    margin-top: 88px;
    margin-bottom: 12px; }
    @media screen and (min-width: 62em) {
      footer .footer-images,
      .footer .footer-images {
        margin-top: 0;
        margin-bottom: 0;
        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-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        margin-top: -35px; }
        footer .footer-images .textwidget,
        footer .footer-images .textwidget p,
        .footer .footer-images .textwidget,
        .footer .footer-images .textwidget p {
          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-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start; } }
    footer .footer-images img,
    .footer .footer-images img {
      max-width: 50%;
      height: auto;
      margin: 12px auto 0; }
      @media screen and (min-width: 62em) {
        footer .footer-images img,
        .footer .footer-images img {
          margin: 0; } }
      @media screen and (min-width: 62em) {
        footer .footer-images img:first-of-type,
        .footer .footer-images img:first-of-type {
          margin-right: 1em; } }
  footer .row:last-of-type,
  .footer .row:last-of-type {
    margin-top: 0px; }
    @media screen and (min-width: 48em) {
      footer .row:last-of-type,
      .footer .row:last-of-type {
        margin-top: 0px; } }
    @media screen and (min-width: 62em) {
      footer .row:last-of-type,
      .footer .row:last-of-type {
        margin-top: 0; } }
  footer.activated,
  .footer.activated {
    display: block;
    z-index: 9999;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    overflow-x: hidden;
    background-color: #fff;
    padding: 0;
    border-top: 0;
    overflow: scroll;
    height: 100%;
    padding-bottom: 80px;
    /*
        .row:last-of-type {
            margin-top: -360px;
            @include tablet {
                margin-top: -27em;
            }
        }
		*/ }
    @media screen and (min-width: 48em) {
      footer.activated,
      .footer.activated {
        top: 100px; } }
    footer.activated h1,
    footer.activated h2,
    footer.activated h3,
    footer.activated h4,
    footer.activated h5,
    footer.activated h6,
    footer.activated p,
    footer.activated li,
    footer.activated ul,
    footer.activated strong,
    footer.activated b,
    footer.activated u,
    footer.activated i,
    footer.activated td,
    footer.activated th,
    .footer.activated h1,
    .footer.activated h2,
    .footer.activated h3,
    .footer.activated h4,
    .footer.activated h5,
    .footer.activated h6,
    .footer.activated p,
    .footer.activated li,
    .footer.activated ul,
    .footer.activated strong,
    .footer.activated b,
    .footer.activated u,
    .footer.activated i,
    .footer.activated td,
    .footer.activated th {
      text-align: center;
      font-size: 1rem;
      line-height: 1.3333333333; }
    footer.activated strong,
    footer.activated b,
    .footer.activated strong,
    .footer.activated b {
      font-weight: 700; }
    footer.activated a,
    .footer.activated a {
      font-size: 1rem;
      line-height: 1.3333333333; }
    footer.activated .footer-images,
    .footer.activated .footer-images {
      margin-top: 88px;
      margin-bottom: 12px; }
      footer.activated .footer-images img,
      .footer.activated .footer-images img {
        margin: 12px auto 0; }
    footer.activated .footer-links,
    .footer.activated .footer-links {
      margin-top: 12px;
      text-align: center;
      margin-bottom: 2em; }

.nav--project {
  display: block; }
  .nav--project .container {
    max-width: 87.5em;
    overflow-x: visible; }
    @media screen and (min-width: 48em) {
      .nav--project .container {
        overflow-x: hidden; } }
  .nav--project .menu {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: inherit;
    display: block; }
    @media screen and (min-width: 48em) {
      .nav--project .menu {
        height: 4.0625em; } }
    .nav--project .menu ul {
      display: block; }
      @media screen and (min-width: 48em) {
        .nav--project .menu ul {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }
    .nav--project .menu li {
      font-size: 0.9166666667rem;
      line-height: 1.2727272727;
      font-weight: bold;
      padding: 0 25px;
      min-height: 40px;
      cursor: pointer;
      -webkit-transition: background-color .3s, -webkit-box-shadow .3s;
      transition: background-color .3s, -webkit-box-shadow .3s;
      transition: background-color .3s, box-shadow .3s;
      transition: background-color .3s, box-shadow .3s, -webkit-box-shadow .3s;
      text-transform: uppercase;
      text-align: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
      @media screen and (min-width: 48em) {
        .nav--project .menu li {
          min-height: 65px;
          text-transform: inherit;
          text-align: left;
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; } }
      .nav--project .menu li:hover {
        background-color: rgba(0, 0, 0, 0.2) !important; }
      .nav--project .menu li.activated {
        background-color: rgba(0, 0, 0, 0.2);
        -webkit-box-shadow: 50px 0 rgba(0, 0, 0, 0.2), -50px 0 rgba(0, 0, 0, 0.2);
                box-shadow: 50px 0 rgba(0, 0, 0, 0.2), -50px 0 rgba(0, 0, 0, 0.2); }
        @media screen and (min-width: 48em) {
          .nav--project .menu li.activated {
            -webkit-box-shadow: none;
                    box-shadow: none; } }

aside > section:first-of-type .articles-content .related-title {
  margin-top: 0; }

.ie11 .three-columns-item {
  display: table; }
  .ie11 .three-columns-item-image {
    margin: 0 auto 1.5em; }
  @media screen and (min-width: 62em) {
    .ie11 .three-columns-item {
      width: calc(33.33% - 10px);
      margin: 0 5px; } }

.ie11 .call-for-action-header {
  display: table; }

.ie11 .call-for-action-subheader {
  display: table; }

.ie11 .top-navigation {
  overflow: hidden; }
  .ie11 .top-navigation-search svg {
    width: 48px;
    height: 48px; }
  .ie11 .top-navigation-search i {
    top: -8px; }

.ie11 .events-calendar {
  overflow: hidden; }

.ie11 .events .fc-scroller.fc-day-grid-container {
  min-height: 330px;
  max-height: 330px; }

.ie11 .events .fc-basic-view .fc-body .fc-row {
  max-height: 4em; }

.ie11 .fc-ltr .fc-basic-view .fc-day-top.fc-today {
  border-color: #ddd;
  position: relative; }
  .ie11 .fc-ltr .fc-basic-view .fc-day-top.fc-today:before {
    content: "";
    background-color: #fff;
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1; }
  .ie11 .fc-ltr .fc-basic-view .fc-day-top.fc-today:after {
    content: "";
    width: 42px;
    height: 42px;
    background-color: #a0a5a5;
    border-radius: 56px;
    display: table;
    position: absolute;
    top: 10px;
    left: 10px;
    -webkit-transform: none;
            transform: none;
    z-index: -1;
    color: #a0a5a5; }
    .ie11 .fc-ltr .fc-basic-view .fc-day-top.fc-today:after:hover,
    .ie11 .fc-ltr .fc-basic-view .fc-day-top.fc-today:after:focus{
      color: #282828; }

.ie11 .fc-ltr .fc-basic-view .fc-day-top.hasEvent {
  border-color: #ddd;
  position: relative; }
  .ie11 .fc-ltr .fc-basic-view .fc-day-top.hasEvent:before {
    background-color: #fff;
    display: table;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1; }
  .ie11 .fc-ltr .fc-basic-view .fc-day-top.hasEvent:after {
    content: "+";
    width: 42px;
    height: 42px;
    border-radius: 56px;
    display: table;
    position: absolute;
    top: 10px;
    left: 10px;
    -webkit-transform: none;
            transform: none;
    z-index: -1;
    color: #a0a5a5; }
    .ie11 .fc-ltr .fc-basic-view .fc-day-top.hasEvent:after:hover {
      color: #282828; }

.ie11 .news-article {
  overflow: hidden; }

.ie11 footer .footer-images img, .ie11 .footer .footer-images img {
  max-width: 243px; }

.member-content-text {
  width: 100%; }

.logo {
  width: 14.375em;
  max-width: 14.375em; }
  @media screen and (min-width: 48em) {
    .logo {
      width: 19.0625em;
      max-width: 19.0625em; } }
  .logo-img {
    max-width: 100%; }

.container {
  margin: 0px auto;
  max-width: 60.9375em;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-x: hidden; overflow-y: hidden;}
  @media screen and (min-width: 87.5em) {
    .container {
      width: 100%; } }
  .container.relative,
  .container .row.relative {
    position: relative; }
  .container.row,
  .container .row.flex-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  .container .row {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (max-width: 62em) {
      .container .row {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
  .container.row-reverse,
  .container .row.reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse; }
  .container.column,
  .container .row.column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .container.column-reverse,
  .container .row.column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
  .container.justify-start,
  .container .row.justify-start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .container.justify-end,
  .container .row.justify-end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .container.justify-center,
  .container .row.justify-center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .container.justify-space-between,
  .container .row.justify-space-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  @media screen and (min-width: 48em) {
    .container.md-justify-space-between,
    .container .row.md-justify-space-between {
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  .container.justify-space-around,
  .container .row.justify-space-around {
    -ms-flex-pack: distribute;
        justify-content: space-around; }
  .container.align-start,
  .container .row.align-start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .container.align-end,
  .container .row.align-end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end; }
  .container.align-center,
  .container .row.align-center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .container.baseline,
  .container .row.baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline; }
  .container.stretch,
  .container .row.stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
  .container > div,
  .container > h1 {
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .container .fill {
    width: 0;
    min-width: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .container .col1 {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .container .col1 {
        width: calc(100% * 1 / 12); } }
  .container .col2 {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .container .col2 {
        width: calc(100% * 2 / 12); } }
  .container .col3 {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .container .col3 {
        width: calc(100% * 3 / 12); } }
  .container .col4 {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .container .col4 {
        width: calc(100% * 4 / 12); } }
  .container .col5 {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .container .col5 {
        width: calc(100% * 5 / 12); } }
  .container .col6 {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .container .col6 {
        width: calc(100% * 6 / 12); } }
  .container .col7 {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .container .col7 {
        width: calc(100% * 7 / 12); } }
  .container .col8 {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .container .col8 {
        width: calc(100% * 8 / 12); } }
  .container .col9 {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .container .col9 {
        width: calc(100% * 9 / 12); } }
  .container .col10 {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .container .col10 {
        width: calc(100% * 10 / 12); } }
  .container .col11 {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .container .col11 {
        width: calc(100% * 11 / 12); } }
  .container .col12 {
    width: 100%; }

.hero {
  height: 17.5em;
  width: 100%;
  position: relative; }
  @media screen and (min-width: 48em) {
    .hero {
      height: 29.6875em; } }
  @media screen and (min-width: 62em) {
    .hero {
      height: 34.375em; } }
  .hero-background {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center; }
  .hero-foreground {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 1;
    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;
    -webkit-box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.27);
            box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.27); }
    .hero-foreground h1 {
      position: absolute;
      z-index: -1;
      text-indent: -5000px;
      top: 0; }
    .hero-foreground i {
      display: block;
      margin-top: 12px; }
      .hero-foreground i svg {
        width: 64px;
        height: 64px; }
  .hero-content, .hero-content-small {
    max-width: 576px;
    font-size: 2.0524166667rem;
    line-height: 1.2810101912;
    font-weight: 700;
    font-style: italic;
    color: #fff;
    text-align: center;
    text-shadow: 6px 6px 20px rgba(0, 0, 0, 0.8);
    text-decoration: none; }
    @media screen and (min-width: 48em) {
      .hero-content, .hero-content-small {
        font-size: 3.1666666667rem;
        line-height: 1.1842105263; } }
    .hero-content:hover, .hero-content-small:hover {
      text-decoration: none; }
  .hero-content {
    opacity: 0; }
    .hero-content.bounceInUp {
      opacity: 1; }
  .hero-content-small {
    font-size: 1.6758333333rem;
    line-height: 1.2;
    white-space: nowrap; }
  .hero--project {
    height: 20.3125em; }
    @media screen and (min-width: 48em) {
      .hero--project {
        height: 24.8125em; } }

.news-article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.25em;
  margin-bottom: 1.25em; }
  @media screen and (min-width: 62em) {
    .news-article {
      margin-top: 2.5em;
      margin-bottom: 1.25em; } }
  .news-article article {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .news-article article {
        width: 74%;
        padding-right: 1.25em;
        border-right: 1px solid #c9c9c9; } }
    .news-article article > :last-child > :last-child {
      margin-bottom: 0; }
    .news-article article.no-sidebar {
      border-right: none; }
  .news-article aside {
    width: 100%;
    margin-top: 2em; }
    @media screen and (min-width: 62em) {
      .news-article aside {
        margin-top: 0;
        width: 26%;
        padding-left: 1.25em; } }
    .news-article aside section {
      border-bottom: 1px solid #c9c9c9;
      padding-bottom: .75em;
      padding-top: .75em; }
      .news-article aside section:first-of-type {
        padding-top: 0; }
      .news-article aside section:last-of-type {
        padding-bottom: 0;
        border-bottom: none; }
  .news-article aside section {
    padding-top: 0; }
  .news-article-subtitle {
    font-size: 0.9166666667rem;
    line-height: 1.1818181818;
    color: #505050;
    margin-top: 24px;
    margin-bottom: 5px;
    text-transform: uppercase; }
    @media screen and (min-width: 48em) {
      .news-article-subtitle {
        margin-top: 2.5em; } }
    .news-article-subtitle span {
      color: #505050; }
  .news-article-title {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.1363636364;
    margin-top: 0; }
    .news-article-title.no-subtitle {
      margin-top: 30px; }
  .news-article p,
  .news-article li,
  .news-article ul,
  .news-article strong,
  .news-article b,
  .news-article u,
  .news-article i,
  .news-article td,
  .news-article th {
    font-size: 1rem;
    line-height: 1.3333333333; }
  .news-article strong,
  .news-article b {
    font-weight: 700; }
  .news-article-top-image figcaption {
    margin-top: 5px;
    font-size: 0.75rem;
    line-height: 1.2222222222;
    font-weight: 700; }
    .news-article-top-image figcaption p,
    .news-article-top-image figcaption li,
    .news-article-top-image figcaption ul,
    .news-article-top-image figcaption strong,
    .news-article-top-image figcaption b,
    .news-article-top-image figcaption u,
    .news-article-top-image figcaption i,
    .news-article-top-image figcaption td,
    .news-article-top-image figcaption th {
      font-size: 0.75rem;
      line-height: 1.2222222222;
      font-weight: 700;
      font-weight: 700; }
    .news-article-top-image figcaption strong,
    .news-article-top-image figcaption b {
      font-weight: 700; }
  .news-article-ingress p,
  .news-article-ingress li,
  .news-article-ingress ul,
  .news-article-ingress strong,
  .news-article-ingress b,
  .news-article-ingress u,
  .news-article-ingress i,
  .news-article-ingress td,
  .news-article-ingress th {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700; }
  .news-article-ingress strong,
  .news-article-ingress b {
    font-weight: 700; }
  .news-article-content-credits span:first-of-type {
    margin-right: 8px; }
  .news-article-content-credits span {
    font-size: 0.8333333333rem;
    line-height: 1.4; }
  .news-article-content-credits p,
  .news-article-content-credits li,
  .news-article-content-credits ul,
  .news-article-content-credits strong,
  .news-article-content-credits b,
  .news-article-content-credits u,
  .news-article-content-credits i,
  .news-article-content-credits td,
  .news-article-content-credits th {
    font-size: 0.8333333333rem;
    line-height: 1.4; }
  .news-article-content-credits strong,
  .news-article-content-credits b {
    font-weight: 700; }

.basic-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.25em;
  margin-bottom: 1.25em; }
  @media screen and (min-width: 62em) {
    .basic-page {
      margin-top: 2.5em;
      margin-bottom: 1.25em; } }
  .basic-page article {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .basic-page article {
        width: 74%;
        padding-right: 1.25em;
        border-right: 1px solid #c9c9c9; } }
    .basic-page article > :last-child > :last-child {
      margin-bottom: 0; }
    .basic-page article.no-sidebar {
      border-right: none; }
  .basic-page aside {
    width: 100%;
    margin-top: 2em; }
    @media screen and (min-width: 62em) {
      .basic-page aside {
        margin-top: 0;
        width: 26%;
        padding-left: 1.25em; } }
    .basic-page aside section {
      border-bottom: 1px solid #c9c9c9;
      padding-bottom: .75em;
      padding-top: .75em; }
      .basic-page aside section:first-of-type {
        padding-top: 0; }
      .basic-page aside section:last-of-type {
        padding-bottom: 0;
        border-bottom: none; }
  .basic-page > :last-child {
    margin-bottom: 0; }
  .basic-page-title {
    color: #009dbc;
    /*font-size: 1.8333333333rem;*/
    line-height: 1.1363636364; }
  .basic-page-ingress p,
  .basic-page-ingress li,
  .basic-page-ingress ul,
  .basic-page-ingress strong,
  .basic-page-ingress b,
  .basic-page-ingress u,
  .basic-page-ingress i,
  .basic-page-ingress td,
  .basic-page-ingress th {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 700; }
  .basic-page-ingress strong,
  .basic-page-ingress b {
    font-weight: 700; }
  .basic-page-content h1, .basic-page-content h2, .basic-page-content h3, .basic-page-content h4, .basic-page-content h5, .basic-page-content h6,
  .basic-page-content .h1, .basic-page-content .h2, .basic-page-content .h3, .basic-page-content .h4, .basic-page-content .h5, .basic-page-content .h6 {
    color: #009dbc; }

.project-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.25em;
  margin-bottom: 1.25em;
  max-width: 87.5em; }
  @media screen and (min-width: 62em) {
    .project-page {
      margin-top: 2.5em;
      margin-bottom: 1.25em; } }
  .project-page article {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .project-page article {
        width: 74%;
        padding-right: 1.25em;
        border-right: 1px solid #c9c9c9; } }
    .project-page article > :last-child > :last-child {
      margin-bottom: 0; }
    .project-page article.no-sidebar {
      border-right: none; }
  .project-page aside {
    width: 100%;
    margin-top: 2em; }
    @media screen and (min-width: 62em) {
      .project-page aside {
        margin-top: 0;
        width: 26%;
        padding-left: 1.25em; } }
    .project-page aside section {
      border-bottom: 1px solid #c9c9c9;
      padding-bottom: .75em;
      padding-top: .75em; }
      .project-page aside section:first-of-type {
        padding-top: 0; }
      .project-page aside section:last-of-type {
        padding-bottom: 0;
        border-bottom: none; }
  .project-page article {
    width: 100%;
    display: none;
    border-right: none; }
    @media screen and (min-width: 48em) {
      .project-page article {
        width: 70%; } }
    .project-page article h1 {
      font-size: 1.8333333333rem;
      line-height: 1.1363636364;
      margin-top: 0; }
    .project-page article.activated {
      display: block; }
  .project-page-ingress h1,
  .project-page-ingress h2,
  .project-page-ingress h3,
  .project-page-ingress h4,
  .project-page-ingress h5,
  .project-page-ingress h6,
  .project-page-ingress p,
  .project-page-ingress li,
  .project-page-ingress ul,
  .project-page-ingress strong,
  .project-page-ingress b,
  .project-page-ingress u,
  .project-page-ingress i,
  .project-page-ingress td,
  .project-page-ingress th {
    font-weight: 700; }
  .project-page-ingress strong,
  .project-page-ingress b {
    font-weight: 700; }

.project-sidebar {
  border: 12px solid black;
  padding: 12px;
  width: 36%;
  -ms-flex-item-align: start;
      align-self: flex-start; }
  .project-sidebar .some {
    display: inline-block; }
  .project-sidebar-text-title {
    margin-bottom: 0; }
    .project-sidebar-text-title + p {
      margin-top: 0; }
  .project-sidebar-website {
    word-break: break-all; }

.project-list-item {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #505050; }
  .project-list-item:last-of-type {
    border-bottom: none; }

.event-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.25em;
  margin-bottom: 1.25em; }
  @media screen and (min-width: 62em) {
    .event-page {
      margin-top: 2.5em;
      margin-bottom: 1.25em; } }
  .event-page article {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .event-page article {
        width: 74%;
        padding-right: 1.25em;
        border-right: 1px solid #c9c9c9; } }
    .event-page article > :last-child > :last-child {
      margin-bottom: 0; }
    .event-page article.no-sidebar {
      border-right: none; }
  .event-page aside {
    width: 100%;
    margin-top: 2em; }
    @media screen and (min-width: 62em) {
      .event-page aside {
        margin-top: 0;
        width: 26%;
        padding-left: 1.25em; } }
    .event-page aside section {
      border-bottom: 1px solid #c9c9c9;
      padding-bottom: .75em;
      padding-top: .75em; }
      .event-page aside section:first-of-type {
        padding-top: 0; }
      .event-page aside section:last-of-type {
        padding-bottom: 0;
        border-bottom: none; }
  .event-page > :last-child {
    margin-bottom: 0; }
  .event-page-title {
    color: #778283;
    font-size: 1.8333333333rem;
    line-height: 1.1363636364; }
  .event-page-content h1, .event-page-content h2, .event-page-content h3, .event-page-content h4, .event-page-content h5, .event-page-content h6,
  .event-page-content .h1, .event-page-content .h2, .event-page-content .h3, .event-page-content .h4, .event-page-content .h5, .event-page-content .h6 {
    color: #009dbc;
    color: #778283; }

.event-page-title .own-event {
  color: #009dbc; }

.event-page-content .own-event h1, .single .event-page-content .own-event h2, .single .event-page-content .own-event h3, .event-page-content .own-event h4, .event-page-content .own-event h5, .event-page-content .own-event h6,
.event-page-content .own-event .h1, .event-page-content .own-event .h2, .event-page-content .own-event .h3, .event-page-content .own-event .h4, .event-page-content .own-event .h5, .event-page-content .own-event .h6 {
  color: #009dbc; }

.own-event .event-page-title {
  color: #009dbc; }

.own-event .event-page-content h1, .own-event .event-page-content h2, .own-event .event-page-content h3, .own-event .event-page-content h4, .own-event .event-page-content h5, .own-event .event-page-content h6,
.own-event .event-page-content .h1, .own-event .event-page-content .h2, .own-event .event-page-content .h3, .own-event .event-page-content .h4, .own-event .event-page-content .h5, .own-event .event-page-content .h6 {
  color: #009dbc; }
.event-page-content .category-292 .tribe-events-schedule h2, .event-page-content .category-18 .tribe-events-schedule h2, .event-page-content .category-292 .tribe-events-schedule h3, .event-page-content .category-18 .tribe-events-schedule h3 {
    color: #000;
}
.tribe-events-category-eaea-events span a {
    color: #009dbc;
}
.tribe-events-category-member-event span a {
    color: #ffdd00;
}
.some a {
  text-decoration: none;
  margin-right: 5px; }
  .some a:hover {
    text-decoration: none; }
  .some a svg {
    width: 2.5em;
    height: 2.5em;
	border-radius: 3px; }

.clear {
  *zoom: 1; }
  .clear:before, .clear:after {
    content: ' ';
    display: table; }
  .clear:after {
    clear: both; }
section.two-box-columns {margin-top: 45px;}
.call-for-action-head-title {
  padding: 20px;
  width: 235px;
  text-align: left;
  margin-top: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  color: #fff;
  min-width: 100%; }
  @media screen and (min-width: 62em) {
    .call-for-action-head-title {
      width: inherit; } }
  .call-for-action-head-title > h2,
  .call-for-action-head-title > span {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.1333333333; }
  .call-for-action-head-title > span {
    font-weight: bold; }
  .call-for-action-head-title > a {
    text-decoration: none;
    font-size: 0.9166666667rem;
    line-height: 1;
    margin-left: auto; }
  .call-for-action-head-title > h2,
  .call-for-action-head-title > a {
    color: #fff; }
  @media screen and (min-width: 48em) {
    .call-for-action-head-title {
      min-width: 305px; } }

.call-for-action-content {
  padding: .75em;
  border: 1px solid #000;
  border-top: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 266px;
  width: 235px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  min-width: 100%; }
  @media screen and (min-width: 62em) {
    .call-for-action-content {
      width: 100%; } }
  .call-for-action-content:hover {
    text-decoration: none; }
  @media screen and (min-width: 48em) {
    .call-for-action-content {
      min-width: 305px; } }

.call-for-action h2,
.call-for-action h3 {
  color: #fff;
  margin: 0;
  padding: 0;
  width: 100%; }

.call-for-action h2 {
  font-size: 1.5rem;
  line-height: 1.1111111111;
  font-weight: 700; }

.call-for-action h3 {
  font-size: 0.9166666667rem;
  line-height: 1.2727272727;
  font-weight: 700; }
  .call-for-action h3:after {
    content: " >"; }

aside .call-for-action-head-title {
  min-width: inherit; }

aside .call-for-action-content {
  min-width: inherit; }

.related-information-head-title {
  padding: 20px;
  width: 235px;
  text-align: left;
  margin-top: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fcdc29;
  color: #000; }
  @media screen and (min-width: 62em) {
    .related-information-head-title {
      width: inherit; } }
  .related-information-head-title > h2,
  .related-information-head-title > span {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.1333333333; }
  .related-information-head-title > span {
    font-weight: bold; }
  .related-information-head-title > a {
    text-decoration: none;
    font-size: 0.9166666667rem;
    line-height: 1;
    margin-left: auto; }
  .related-information-head-title > h2,
  .related-information-head-title > a {
    color: #000; }

.three-columns {
  padding-top: 36px; }
  @media screen and (min-width: 62em) {
    .three-columns {
      padding-top: 0;
      margin-bottom: 2.5em; } }
  .three-columns-item {
    margin: 0 auto 1.25em;
    border-bottom: 1px solid #a1aba7;
    padding-bottom: 1.25em;
    width: 100%;
    text-align: center;
    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: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .three-columns-item:last-of-type {
      border-bottom: none; }
    @media screen and (min-width: 48em) {
      .three-columns-item {
        border-bottom: none;
        width: 50%; } }
    @media screen and (min-width: 62em) {
      .three-columns-item {
        width: 33.33%;
        margin: 0;
        padding-bottom: 0; } }
    .three-columns-item-image {
      width: 160px;
      height: 160px;
      border-radius: 160px;
      margin-bottom: 1.5em;
      background-repeat: no-repeat;
      background-size: cover; }
    .three-columns-item-content {
      max-width: 400px; }
      @media screen and (max-width: 47.9375em) {
        .three-columns-item-content {
          max-width: 100%; }
		  h3.startdate {font-size:150%;}
.two-box-columns section {
	width: 97.33%;}}
      @media screen and (min-width: 48em) {
        .three-columns-item-content {
          max-width: 250px; } }
      @media screen and (min-width: 62em) {
        .three-columns-item-content {
          max-width: inherit;
          padding: 0 12px; } }
      .three-columns-item-content p,
      .three-columns-item-content li,
      .three-columns-item-content ul,
      .three-columns-item-content strong,
      .three-columns-item-content b,
      .three-columns-item-content u,
      .three-columns-item-content i,
      .three-columns-item-content td,
      .three-columns-item-content th {
        font-size: 0.9166666667rem;
        line-height: 1.2727272727; }
        @media screen and (max-width: 47.9375em) {
          .three-columns-item-content p,
          .three-columns-item-content li,
          .three-columns-item-content ul,
          .three-columns-item-content strong,
          .three-columns-item-content b,
          .three-columns-item-content u,
          .three-columns-item-content i,
          .three-columns-item-content td,
          .three-columns-item-content th {
            font-size: 1.25rem;
            line-height: 1.2; } }
      .three-columns-item-content strong,
      .three-columns-item-content b {
        font-weight: 700; }
    .three-columns-item h2 {
      font-size: 1.5rem;
      line-height: 1.1111111111;
      margin: 0;
      padding: 0; }
      @media screen and (max-width: 47.9375em) {
        .three-columns-item h2 {
          font-size: 2rem;
          line-height: 1.0833333333; } }
    .three-columns-item a {
      cursor: pointer;
      font-size: 0.75rem;
      line-height: 1.2222222222;
      color: #fff;
      border-radius: 8px;
      padding: 6px 18px;
      display: inline-block;
      font-weight: bold;
      text-decoration: none;
      margin: 12px auto 0;
      display: table;
      background-color: #1c9dbb; }
      @media screen and (min-width: 20em) and (max-width: 47.9375em) {
        .three-columns-item a {
          font-size: 1.1666666667rem;
          line-height: 1.0714285714;
          padding: 14px 32px;
          border-radius: 12px; } }
      @media screen and (min-width: 48em) {
        .three-columns-item a {
          margin: 0;
          display: inline-block;
          margin-top: 10px; } }
      .three-columns-item a:hover {
        text-decoration: none; }
      @media screen and (min-width: 62em) {
        .three-columns-item a {
          margin-top: 15px; } }

.three-box-columns {
  padding-top: .5em;
  padding-bottom: 1.25em; }
  @media screen and (min-width: 48em) {
    .three-box-columns {
      padding-top: 2.5em;
      padding-bottom: 2.5em; } }
  .three-box-columns .container {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; }
  .three-box-columns .call-for-action,
  .three-box-columns .speakerscorner,
  .three-box-columns .twitter-wall {
    width: 100%;
    margin-bottom: 2em; }
    @media screen and (min-width: 48em) {
      .three-box-columns .call-for-action,
      .three-box-columns .speakerscorner,
      .three-box-columns .twitter-wall {
        width: 49%; } }
    @media screen and (min-width: 62em) {
      .three-box-columns .call-for-action,
      .three-box-columns .speakerscorner,
      .three-box-columns .twitter-wall {
        width: 31.33%;
        margin-bottom: 0; } 
      .two-box-columns .call-for-action,
      .two-box-columns .speakerscorner,
      .two-box-columns .twitter-wall {
        width: 48.33%;
        margin-bottom: 20px; } }
    .three-box-columns .call-for-action-content,
    .three-box-columns .speakerscorner-content,
    .three-box-columns .twitter-wall-content {
      height: 354px; }
  .three-box-columns .twitter-wall {
    border: 1px solid #c9c9c9;
    border-top: none; }
    .three-box-columns .twitter-wall-content {
      padding: 20px; }
  .three-box-columns .twitter-timeline-item > a {
    font-weight: bold; }
  .three-box-columns .twitter-timeline-item p:first-of-type {
    margin-top: 0; }
  .three-box-columns .speakerscorner {
    display: none; }
.third-cta a.call-for-action-content {
    border-color: #58a6bd;
}
.home .third-cta .call-for-action-head-title {
    background-color: #58a6bd;
}
    .three-box-columns .speakerscorner-head-title {
      padding: 20px;
      text-align: left;
      margin-top: 0;
      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-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #58a6bd;
      color: #fff; }
      @media screen and (min-width: 62em) {
        .three-box-columns .speakerscorner-head-title {
          width: 100%; } }
      .three-box-columns .speakerscorner-head-title > h2,
      .three-box-columns .speakerscorner-head-title > span {
        text-align: left;
        margin: 0;
        padding: 0;
        font-size: 1.25rem;
        line-height: 1.1333333333; }
      .three-box-columns .speakerscorner-head-title > span {
        font-weight: bold; }
      .three-box-columns .speakerscorner-head-title > a {
        text-decoration: none;
        font-size: 0.9166666667rem;
        line-height: 1;
        margin-left: auto; }
      .three-box-columns .speakerscorner-head-title > h2,
      .three-box-columns .speakerscorner-head-title > a {
        color: #fff; }
    .three-box-columns .speakerscorner-content {
      padding: .75em;
      border: 1px solid #000;
      border-top: none;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      height: 266px;
      width: 235px;
      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;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-decoration: none;
      padding: 0;
      border: none;
      height: 354px; }
      @media screen and (min-width: 62em) {
        .three-box-columns .speakerscorner-content {
          width: 100%; } }
      .three-box-columns .speakerscorner-content:hover {
        text-decoration: none; }
      .three-box-columns .speakerscorner-content img {
        max-width: inherit;
        width: 100%; }
        @media screen and (min-width: 62em) {
          .three-box-columns .speakerscorner-content img {
            max-width: 100%; } }
  @media screen and (min-width: 62em) {
    .three-box-columns .container section {
      margin-right: 3%; } }
  .three-box-columns .container section:last-of-type {
    margin-right: 0; }

.events {
  padding-top: 2.5em;
  padding-bottom: 2.5em;
  background-color: #fff; }
  .events .fc-scroller.fc-day-grid-container {
    min-height: 330px; }
  @media screen and (min-width: 20em) and (max-width: 47.9375em) {
    .events .container {
      /*max-width: inherit;
			width: 100%;*/ }
    .events-calendar {
      padding: 0; } }
  @media screen and (min-width: 48em) {
    .events {
      display: block;
      background-color: #eceeed; } }

.member {
  padding-top: 2.5em;
  display: none; }
  .member.activated {
    display: block; }
  .member .container {
    max-width: 43.75em; }
  .member-clear-btn {
    position: absolute;
    top: 19px;
    right: 20px;
    font-weight: bold;
    color: #6d7776;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: none; }
    @media screen and (min-width: 48em) {
      .member-clear-btn {
        top: 50%;
        -webkit-transform: translate(0, -50%);
                transform: translate(0, -50%); } }
    .member-clear-btn.activated {
      display: block; }
  .member-content {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .member-content-title {
      padding: 20px;
      text-align: left;
      margin-top: 0;
      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-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      background-color: #fcdc29;
      color: #000;
      margin-bottom: 20px;
      width: 100%; }
      @media screen and (min-width: 62em) {
        .member-content-title {
          width: 100%; } }
      .member-content-title > h2,
      .member-content-title > span {
        text-align: left;
        margin: 0;
        padding: 0;
        font-size: 1.25rem;
        line-height: 1.1333333333; }
      .member-content-title > span {
        font-weight: bold; }
      .member-content-title > a {
        text-decoration: none;
        font-size: 0.9166666667rem;
        line-height: 1;
        margin-left: auto; }
      .member-content-title > h2,
      .member-content-title > a {
        color: #000; }
      .member-content-title--associate {
        background-color: #1f9dbc; }
	  .member-content-title--candidate {
    	background: #96a0a0;}
      @media screen and (min-width: 48em) {
        .member-content-title {
          margin-bottom: 50px; } }
    .member-content-info {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .member-content-info-logo-container {
        width: 100%;
        height: 0;
        padding: 0;
        padding-bottom: calc(100% - 28px);
        border: 14px solid black;
        border-radius: 999px;
        position: relative;
        border-color: #fcdc29; }
        .member-content-info-logo-container--associate {
          border-color: #1f9dbc; }
        @media screen and (min-width: 48em) {
          .member-content-info-logo-container {
            margin-left: 20px;
            width: 40%;
            padding-bottom: calc(40% - 28px);
            display: table; } }
      .member-content-info-logo {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        max-width: 80%;
        max-width: 150px; }
      .member-content-info-right {
        width: 100%;
        margin-top: 20px; }
        @media screen and (min-width: 48em) {
          .member-content-info-right {
            width: 50%;
            margin-left: 7%; } }
        .member-content-info-right p {
          margin: 0;
          font-size: 0.8333333333rem;
          line-height: 1.5; }
          .member-content-info-right p:last-of-type {
            margin-bottom: 12px; }
    .member-content-text {
      margin-bottom: 3.125em; }
      .member-content-text h1 {
        font-size: 1.8333333333rem;
        line-height: 1.1363636364;
        margin-bottom: .3em; }

.member-desc {
  background-color: #fff;
  padding-top: 32px; }
  @media screen and (min-width: 48em) {
    .member-desc {
      background-color: #e7e9e4; } }

.member-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
  padding-top: 2em;
  display: none; }
  @media screen and (min-width: 48em) {
    .member-list {
      background-color: #e7e9e4; } }
  .member-list.activated {
    display: block; }
  .member-list .member-search-content {
    background-color: #fff;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px;
    width: calc(100% + 24px); }
    @media screen and (min-width: 48em) {
      .member-list .member-search-content {
        background-color: #e7e9e4;
        margin-left: -12px;
        margin-right: -12px; } }
  .member-list-item {
    border: 1px solid #B4B5B2;
    background-color: #fff;
    margin-top: 25px;
    padding: 36px 12px 24px;
    margin: 25px 0 0; }
    @media screen and (min-width: 48em) {
      .member-list-item {
        width: calc(33.33333% - 24px);
        margin-left: 12px;
        margin-right: 12px; } }
    .member-list-item-type {
      font-size: 1.0833333333rem;
      line-height: 1.0769230769;
      display: inline-block;
      padding: 1px 2px;
      margin: 0;
      margin: 10px 0; }
      .member-list-item-type--ordinary {
        background-color: #fcdc29; }
      .member-list-item-type--associate {
        background-color: #1f9dbc; }
      .member-list-item-type--candidate {
        background-color: #96a0a0; }
    .member-list-item-logo-container {
      height: 102px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; }
    .member-list-item-logo {
      max-width: 100%;
      height: auto;
      max-height: 102px; }
    .member-list-item h3 {
      font-size: 1.0833333333rem;
      line-height: 1.2;
      margin: 0;
      min-height: 90px;
      margin-bottom: 8px; }
    .member-list-item-content {
      font-size: 0.8333333333rem;
      line-height: 1.5;
      min-height: 90px;
      max-height: 90px; }
      @media (max-width: 950px) and (min-width: 48em) {
        .member-list-item-content {
          min-height: 130px;
          max-height: 130px; } }
    .member-list-item-read-more {
      cursor: pointer;
      font-size: 0.75rem;
      line-height: 1.2222222222;
      color: #fff;
      border-radius: 8px;
      padding: 6px 18px;
      display: inline-block;
      font-weight: bold;
      text-decoration: none;
      margin: 12px auto 0;
      display: table;
      background-color: #717b7a; }
      @media screen and (min-width: 20em) and (max-width: 47.9375em) {
        .member-list-item-read-more {
          font-size: 1.1666666667rem;
          line-height: 1.0714285714;
          padding: 14px 32px;
          border-radius: 12px; } }
      @media screen and (min-width: 48em) {
        .member-list-item-read-more {
          margin: 0;
          display: inline-block;
          margin-top: 10px; } }
      .member-list-item-read-more:hover {
        text-decoration: none; }

.member-alphabetic {
  padding-bottom: 2em;
  background-color: #fff;
  padding-top: 2em; }
  @media screen and (min-width: 48em) {
    .member-alphabetic {
      background-color: #e7e9e4; } }
  .member-alphabetic-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style-type: none;
    padding: 20px;
    margin: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    @media screen and (min-width: 48em) {
      .member-alphabetic-list {
        -ms-flex-wrap: inherit;
            flex-wrap: inherit; } }
    .member-alphabetic-list li {
      font-size: 1.0833333333rem;
      line-height: 1;
      font-weight: bold;
      padding: 0;
      margin-bottom: 0;
      padding-right: 10px;
      margin-right: 10px;
      cursor: pointer;
      border-bottom: 3px solid transparent;
      text-transform: uppercase; }
      @media screen and (max-width: 61.9375em) {
        .member-alphabetic-list li {
          margin-right: 20px;
          margin-bottom: 20px; } }
      .member-alphabetic-list li:hover, .member-alphabetic-list li.activated {
        border-bottom-color: #1f9dbc; }

.member-search-title {
  padding: 20px;
  text-align: left;
  margin-top: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fcdc29;
  color: #000; }
  @media screen and (min-width: 62em) {
    .member-search-title {
      width: 100%; } }
  .member-search-title > h2,
  .member-search-title > span {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.1333333333; }
  .member-search-title > span {
    font-weight: bold; }
  .member-search-title > a {
    text-decoration: none;
    font-size: 0.9166666667rem;
    line-height: 1;
    margin-left: auto; }
  .member-search-title > h2,
  .member-search-title > a {
    color: #000; }

.member-search-content {
  background-color: #fff;
  position: relative; }

.member-countries {
  background-color: #fff;
  padding-bottom: 50px; }
  @media screen and (min-width: 48em) {
    .member-countries {
      background-color: #e7e9e4; } }

.member-countries-list {
  width: calc(100% + 16px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -8px; }

.member-country {
  width: calc(50% - (8px * 2));
  height: 112px;
  margin-right: 8px;
  margin-left: 8px;
  background-color: #57b4c7;
  color: #fff;
  font-size: 1.0833333333rem;
  line-height: 1.0769230769;
  font-weight: bold;
  text-align: center;
  padding: 0 20px;
  cursor: pointer;
  margin-bottom: 16px;
  border: 8px solid #57b4c7;
  -webkit-transition: border-color .3s;
  transition: border-color .3s;
  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; }
  @media screen and (min-width: 48em) {
    .member-country {
      width: calc(25% - (8px * 2));
      margin-right: 8px;
      margin-left: 8px; } }
  .member-country:hover {
    border-color: #4a96a7; }
  .member-country.activated {
    border-color: #4a96a7; }

.event-page-title {
  display: none; }

.tribe-events-schedule {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media screen and (min-width: 48em) {
    .tribe-events-schedule {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }
  .tribe-events-schedule-left {
    width: inherit; }
    .tribe-events-schedule-left > h2 {
      font-size: 2.5rem;
      line-height: 1;
      margin: 0; }
      @media screen and (min-width: 48em) {
        .tribe-events-schedule-left > h2 {
          font-size: 5rem;
          line-height: 1.1333333333; } }
  .tribe-events-schedule-right {
    width: inherit;
    margin-top: 14px;
    margin-left: 0;
    margin-bottom: 12px; }
    @media screen and (min-width: 48em) {
      .tribe-events-schedule-right {
        margin-left: 20px;
        margin-bottom: 0;
        max-width: calc(100% - 200px); } }
    .tribe-events-schedule-right > h2 {
      font-weight: bold;
      font-size: 1.6666666667rem;
      line-height: 1;
      width: 100%;
      margin: 0; }
      @media screen and (min-width: 48em) {
        .tribe-events-schedule-right > h2 {
          font-size: 1.9166666667rem;
          line-height: 1.0869565217; } }
    .tribe-events-schedule-right > h3 {
      margin: 0;
      width: 100%;
      margin-top: 12px;
      font-size: 1.6666666667rem;
      line-height: 1;
      font-weight: bold; }
      @media screen and (min-width: 48em) {
        .tribe-events-schedule-right > h3 {
          font-size: 1.9166666667rem;
          line-height: 1.0869565217;
          font-weight: normal; } }
      @media screen and (min-width: 48em) {
        .tribe-events-schedule-right > h3 {
          margin-top: 0; } }
.event-page-content h1.tribe-events-single-event-title {
    color: #000;
}
.single-tribe_events h1.tribe-events-single-event-title {
  color: #000;
  font-size: 1.8333333333rem;
  line-height: 1.1363636364;
  font-weight: normal;
  margin-bottom: 1.25em; }
  .single-tribe_events h1.tribe-events-single-event-title a {
    color: #000;
    font-weight: bold;
    font-size: 1.8333333333rem;
    line-height: 1.1363636364;
    text-decoration: none; }

.single-tribe_events .tribe-events-single-event-description.tribe-events-content p,
.single-tribe_events .tribe-events-single-event-description.tribe-events-content li,
.single-tribe_events .tribe-events-single-event-description.tribe-events-content ul,
.single-tribe_events .tribe-events-single-event-description.tribe-events-content strong,
.single-tribe_events .tribe-events-single-event-description.tribe-events-content b,
.single-tribe_events .tribe-events-single-event-description.tribe-events-content u,
.single-tribe_events .tribe-events-single-event-description.tribe-events-content i,
.single-tribe_events .tribe-events-single-event-description.tribe-events-content td,
.single-tribe_events .tribe-events-single-event-description.tribe-events-content th {
  font-size: 0.8333333333rem;
  line-height: 1.5; }

.single-tribe_events .tribe-events-single-event-description.tribe-events-content strong,
.single-tribe_events .tribe-events-single-event-description.tribe-events-content b {
  font-weight: 700; }

.fc-unthemed td.fc-today {
  background-color: transparent; }

.fc-other-month.fc-today {
  background-color: transparent !important; }

.fc-day-top.fc-other-month.hasEvent {
  opacity: 1; }

.tribe-events-list .tribe-events-page-title,
.tribe-events-month .tribe-events-page-title {
  padding: 20px;
  text-align: left;
  margin-top: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fcdc29;
  color: #000; }
  @media screen and (min-width: 62em) {
    .tribe-events-list .tribe-events-page-title,
    .tribe-events-month .tribe-events-page-title {
      width: 100%;font-weight:700; } }
  .tribe-events-list .tribe-events-page-title > h2,
  .tribe-events-list .tribe-events-page-title > span,
  .tribe-events-month .tribe-events-page-title > h2,
  .tribe-events-month .tribe-events-page-title > span {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.1333333333; }
  .tribe-events-list .tribe-events-page-title > span,
  .tribe-events-month .tribe-events-page-title > span {
    font-weight: bold; }
  .tribe-events-list .tribe-events-page-title > a,
  .tribe-events-month .tribe-events-page-title > a {
    text-decoration: none;
    font-size: 0.9166666667rem;
    line-height: 1;
    margin-left: auto; }
  .tribe-events-list .tribe-events-page-title > h2,
  .tribe-events-list .tribe-events-page-title > a,
  .tribe-events-month .tribe-events-page-title > h2,
  .tribe-events-month .tribe-events-page-title > a {
    color: #000; }

.type-tribe_events,
.tribe-events-content {
  border-bottom: 1px solid #c9c9c9;
  margin-top: 20px; }
  .type-tribe_events.tribe-events-first,
  .tribe-events-content.tribe-events-first {
    margin-top: 0; }
  .type-tribe_events .tribe-events-schedule,
  .tribe-events-content .tribe-events-schedule {
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media screen and (min-width: 48em) {
      .type-tribe_events .tribe-events-schedule,
      .tribe-events-content .tribe-events-schedule {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
    .type-tribe_events .tribe-events-schedule .tribe-events-schedule-left,
    .tribe-events-content .tribe-events-schedule .tribe-events-schedule-left {
      width: inherit; }
      .type-tribe_events .tribe-events-schedule .tribe-events-schedule-left > h2,
      .tribe-events-content .tribe-events-schedule .tribe-events-schedule-left > h2 {
        font-size: 1.8333333333rem;
        line-height: 1.1818181818;
        margin: 0; }
        @media screen and (min-width: 48em) {
          .type-tribe_events .tribe-events-schedule .tribe-events-schedule-left > h2,
          .tribe-events-content .tribe-events-schedule .tribe-events-schedule-left > h2, h2.big-title {
            font-size: 2.6666666667rem;
            line-height: 1.125; } }
    .type-tribe_events .tribe-events-schedule .tribe-events-schedule-right,
    .tribe-events-content .tribe-events-schedule .tribe-events-schedule-right {
      width: inherit;
      margin-top: 6px;
      margin-left: 0;
      margin-bottom: 12px; }
      @media screen and (min-width: 48em) {
        .type-tribe_events .tribe-events-schedule .tribe-events-schedule-right,
        .tribe-events-content .tribe-events-schedule .tribe-events-schedule-right {
          margin-left: 20px;
          margin-bottom: 0;
          max-width: calc(100% - 200px); } }
      .type-tribe_events .tribe-events-schedule .tribe-events-schedule-right > h2,
      .tribe-events-content .tribe-events-schedule .tribe-events-schedule-right > h2 {
        font-weight: bold;
        font-size: 1.6666666667rem;
        line-height: 1;
        width: 100%;
        margin: 0; }
        @media screen and (min-width: 48em) {
          .type-tribe_events .tribe-events-schedule .tribe-events-schedule-right > h2,
          .tribe-events-content .tribe-events-schedule .tribe-events-schedule-right > h2 {
            font-size: 0.9166666667rem;
            line-height: 1.1818181818; } }
      .type-tribe_events .tribe-events-schedule .tribe-events-schedule-right > h3,
      .tribe-events-content .tribe-events-schedule .tribe-events-schedule-right > h3 {
        margin: 0;
        width: 100%;
        margin-top: 12px;
        font-weight: bold;
        font-size: 1.6666666667rem;
        line-height: 1; }
        @media screen and (min-width: 48em) {
          .type-tribe_events .tribe-events-schedule .tribe-events-schedule-right > h3,
          .tribe-events-content .tribe-events-schedule .tribe-events-schedule-right > h3 {
            margin-top: 3px;
            font-size: 0.9166666667rem;
            line-height: 1.1818181818; } }
        @media screen and (min-width: 48em) {
          .type-tribe_events .tribe-events-schedule .tribe-events-schedule-right > h3,
          .tribe-events-content .tribe-events-schedule .tribe-events-schedule-right > h3 {
            margin-top: 0; } }
  .type-tribe_events .tribe-events-list-event-title,
  .tribe-events-content .tribe-events-list-event-title {
    margin-top: 0;
    margin-bottom: 20px; }
    .type-tribe_events .tribe-events-list-event-title a,
    .tribe-events-content .tribe-events-list-event-title a {
      text-decoration: none;
      font-weight: bold;
      font-size: 1.5rem;
      line-height: 1.1111111111;
      display: inline-block;
      width: 100%; }
      .type-tribe_events .tribe-events-list-event-title a:hover,
      .tribe-events-content .tribe-events-list-event-title a:hover {
        text-decoration: none; }
      .type-tribe_events .tribe-events-list-event-title a[rel="tag"],
      .tribe-events-content .tribe-events-list-event-title a[rel="tag"] {
        font-weight: bold; }
        @media screen and (min-width: 48em) {
          .type-tribe_events .tribe-events-list-event-title a[rel="tag"],
          .tribe-events-content .tribe-events-list-event-title a[rel="tag"] {
            font-weight: normal; } }
        .type-tribe_events .tribe-events-list-event-title a[rel="tag"]:after,
        .tribe-events-content .tribe-events-list-event-title a[rel="tag"]:after {
          content: ":"; }
  .type-tribe_events .tribe-events-read-more,
  .tribe-events-content .tribe-events-read-more {
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 1.2222222222;
    color: #fff;
    border-radius: 8px;
    padding: 6px 18px;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    margin: 12px auto 0;
    display: table;
    background-color: #717b7a;
    margin: 5px 0 30px; }
    @media screen and (min-width: 20em) and (max-width: 47.9375em) {
      .type-tribe_events .tribe-events-read-more,
      .tribe-events-content .tribe-events-read-more {
        font-size: 1.1666666667rem;
        line-height: 1.0714285714;
        padding: 14px 32px;
        border-radius: 12px; } }
    @media screen and (min-width: 48em) {
      .type-tribe_events .tribe-events-read-more,
      .tribe-events-content .tribe-events-read-more {
        margin: 0;
        display: inline-block;
        margin-top: 10px; } }
    .type-tribe_events .tribe-events-read-more:hover,
    .tribe-events-content .tribe-events-read-more:hover {
      text-decoration: none; }
    @media screen and (min-width: 48em) {
      .type-tribe_events .tribe-events-read-more,
      .tribe-events-content .tribe-events-read-more {
        margin-bottom: 30px; } }

#tribe-events-footer {
  position: relative;
  overflow: visible; }
  #tribe-events-footer ul.tribe-events-sub-nav {
    text-align: right;
    position: absolute;
    top: 0;
    right: 0; }
    #tribe-events-footer ul.tribe-events-sub-nav li a {
      text-decoration: none; }
      #tribe-events-footer ul.tribe-events-sub-nav li a:hover {
        text-decoration: none; }
  #tribe-events-footer .tribe-events-back-btn {
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 1.2222222222;
    color: #fff;
    border-radius: 8px;
    padding: 6px 18px;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    margin: 12px auto 0;
    display: table;
    background-color: #717b7a;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #189dba; }
    @media screen and (min-width: 20em) and (max-width: 47.9375em) {
      #tribe-events-footer .tribe-events-back-btn {
        font-size: 1.1666666667rem;
        line-height: 1.0714285714;
        padding: 14px 32px;
        border-radius: 12px; } }
    @media screen and (min-width: 48em) {
      #tribe-events-footer .tribe-events-back-btn {
        margin: 0;
        display: inline-block;
        margin-top: 10px; } }
    #tribe-events-footer .tribe-events-back-btn:hover {
      text-decoration: none; }

.tribe-events-loop .type-tribe_events.tribe-events-last {
  border-bottom: 1px solid #c9c9c9; }

.events-month-list {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0; }
  .events-month-list li {
    margin-bottom: 40px; }
  .events-month-list a {
    font-weight: bold;
    text-decoration: none;
    font-size: 1.0833333333rem;
    line-height: 1; }
  .events-month-list .current a {
    border-bottom: 2px solid #1f9dbc; }
    .events-month-list .current a:hover, .events-month-list .current a:focus {
      text-decoration: none; }

.sidebar-events-list h3 {
  padding: 20px;
  text-align: left;
  margin-top: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fcdc29;
  color: #000; }
  @media screen and (min-width: 62em) {
    .sidebar-events-list h3 {
      width: 100%; } }
  .sidebar-events-list h3 > h2,
  .sidebar-events-list h3 > span {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.1333333333; }
  .sidebar-events-list h3 > span {
    font-weight: bold; }
  .sidebar-events-list h3 > a {
    text-decoration: none;
    font-size: 0.9166666667rem;
    line-height: 1;
    margin-left: auto; }
  .sidebar-events-list h3 > h2,
  .sidebar-events-list h3 > a {
    color: #000; }

.sidebar-events-list ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 0; }
  .sidebar-events-list ul li {
    margin-bottom: 20px; }

.sidebar-events-list .first-line {
  width: 100%;
  display: inline-block; }
  .sidebar-events-list .first-line,
  .sidebar-events-list .first-line a {
    font-weight: bold;
    font-size: 0.8333333333rem;
    line-height: 1.5;
    text-decoration: none;
    color: #778283; }
  .sidebar-events-list .first-line.own-event {
    color: #009dbc; }
    .sidebar-events-list .first-line.own-event a {
      color: #009dbc; }

.sidebar-events-list .second-line {
  width: 100%;
  display: inline-block; }
  .sidebar-events-list .second-line,
  .sidebar-events-list .second-line a {
    font-size: 0.8333333333rem;
    line-height: 1.5;
    text-decoration: none; }

.news.homepage {
  padding-top: 2.5em;
  padding-bottom: 2.5em;
  background-color: #fff;
  padding-bottom: 0; }
  @media screen and (min-width: 48em) and (max-width: 61.9375em) {
    .news.homepage {
      padding-top: 0; } }
  @media screen and (min-width: 62em) {
    .news.homepage {
      background-color: #eceeed;
      padding-bottom: 2.5em; } }

.news.news-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1.25em;
  margin-bottom: 1.25em; }
  @media screen and (min-width: 62em) {
    .news.news-page {
      margin-top: 2.5em;
      margin-bottom: 1.25em; } }
  .news.news-page article {
    width: 100%; }
    @media screen and (min-width: 62em) {
      .news.news-page article {
        width: 74%;
        padding-right: 1.25em;
        border-right: 1px solid #c9c9c9; } }
    .news.news-page article > :last-child > :last-child {
      margin-bottom: 0; }
    .news.news-page article.no-sidebar {
      border-right: none; }
  .news.news-page aside {
    width: 100%;
    margin-top: 2em; }
    @media screen and (min-width: 62em) {
      .news.news-page aside {
        margin-top: 0;
        width: 26%;
        padding-left: 1.25em; } }
    .news.news-page aside section {
      border-bottom: 1px solid #c9c9c9;
      padding-bottom: .75em;
      padding-top: .75em; }
      .news.news-page aside section:first-of-type {
        padding-top: 0; }
      .news.news-page aside section:last-of-type {
        padding-bottom: 0;
        border-bottom: none; }
  .news.news-page .news-item {
    margin-left: 0; }

.news.related-articles {
  border-bottom: none; }
  .news.related-articles .news-item {
    display: block;
    padding: 0;
    margin: 0;
    margin-top: 20px; }
    @media screen and (min-width: 48em) and (max-width: 61.9375em) {
      .news.related-articles .news-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    .news.related-articles .news-item:first-of-type {
      margin-top: 0; }
    .news.related-articles .news-item:last-of-type {
      border-bottom: none; }
    .news.related-articles .news-item-left {
      width: 100%;
      margin: 0;
      padding: 0;
      max-width: 382px; }
      @media screen and (min-width: 48em) and (max-width: 61.9375em) {
        .news.related-articles .news-item-left {
          width: 330px;
          max-height: 214px;
          padding: 20px;
          padding-left: 0; } }
    .news.related-articles .news-item-right {
      width: 100%;
      padding-left: 0;
      margin-bottom: 12px; }
      @media screen and (min-width: 48em) {
        .news.related-articles .news-item-right {
          margin-bottom: 0; } }
      @media screen and (min-width: 48em) and (max-width: 61.9375em) {
        .news.related-articles .news-item-right {
          width: calc(100% - 330px);
          padding: 20px;
          padding-right: 0; } }

.news .related-title {
  padding: 20px;
  text-align: left;
  margin-top: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fcdc29;
  color: #000;
  margin-top: 20px; }
  @media screen and (min-width: 62em) {
    .news .related-title {
      width: 100%; } }
  .news .related-title > h2,
  .news .related-title > span {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.1333333333; }
  .news .related-title > span {
    font-weight: bold; }
  .news .related-title > a {
    text-decoration: none;
    font-size: 0.9166666667rem;
    line-height: 1;
    margin-left: auto; }
  .news .related-title > h2,
  .news .related-title > a {
    color: #fff;
    background: #000;
    padding: 10px;
    font-weight: bold; }

.news .container {
  background-color: white; }

.news-title {
  padding: 20px;
  text-align: left;
  margin-top: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fcdc29;
  color: #000; }
  @media screen and (min-width: 62em) {
    .news-title {
      width: 100%; } }
  .news-title > h2,
  .news-title > span {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.1333333333; }
  .news-title > span {
    font-weight: bold; }
  .news-title > a {
    text-decoration: none;
    font-size: 0.9166666667rem;
    line-height: 1;
    margin-left: auto; 
	color: #fff;
    background: #000;
    padding: 10px;
    font-weight: bold;

}
  .news-title > h2,
  .news-title > a {
    color: #fff; }
  @media screen and (max-width: 61.9375em) {
    .news-title {
      width: 100%; } }
  .news-title h3 {
    margin: 0;
    padding: 0; }

.news-item {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #c9c9c9;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1em;
  padding-bottom: 1em; }
  @media screen and (min-width: 48em) {
    .news-item {
      padding-bottom: 0; } }
  @media screen and (min-width: 62em) {
    .news-item {
      margin: 0 20px;
      -ms-flex-wrap: inherit;
          flex-wrap: inherit; }
      .news-item:last-of-type {
        border-bottom: none; } }
  .news-item-left {
    width: 100%;
    margin-top: 12px;
    background-size: cover;
    background-position: center; }
    @media screen and (min-width: 48em) {
      .news-item-left {
        width: 310px;
        max-height: 220px;
        padding: 0;
        margin: 25px 20px 25px 0; } }
  @media screen and (min-width: 48em) {
    .news-item-right {
      width: calc(100% - 350px);
      padding: 25px 0 25px 25px;
      padding-right: 0; } }
  .news-item-subtitle {
    font-size: 0.75rem;
    line-height: 1.2222222222;
    color: #505050;
    margin-top: 24px; }
    @media screen and (min-width: 48em) {
      .news-item-subtitle {
        margin-top: 6px; } }
    .news-item-subtitle span {
      color: #505050; }
  .news-item-category {
    text-transform: uppercase; }
  .news-item-title {
    font-size: 1.5rem;
    line-height: 1.1111111111;
    font-weight: bold;
    margin-top: 12px;
    margin-bottom: 12px; }
    @media screen and (min-width: 48em) {
      .news-item-title {
        margin-top: 5px;
        margin-bottom: 5px; } }
  .news-item-content p:first-of-type {
    margin-top: 0; }
  .news-item-content p:last-of-type {
    margin-bottom: 0; }
  .news-item-readmore {
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 1.2222222222;
    color: #fff;
    border-radius: 8px;
    padding: 6px 18px;
    display: inline-block;
    font-weight: bold;
    text-decoration: none;
    margin: 12px auto 0;
    display: table;
    background-color: #717b7a;
    margin-top: 10px; }
    @media screen and (min-width: 20em) and (max-width: 47.9375em) {
      .news-item-readmore {
        font-size: 1.1666666667rem;
        line-height: 1.0714285714;
        padding: 14px 32px;
        border-radius: 12px; } }
    @media screen and (min-width: 48em) {
      .news-item-readmore {
        margin: 0;
        display: inline-block;
        margin-top: 10px; } }
    .news-item-readmore:hover {
      text-decoration: none; }

.top-navigation {
  justify-self: flex-end;
  margin-left: auto;
  display: none; }
  @media screen and (min-width: 62em) {
    .top-navigation {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .top-navigation > a {
    margin-right: 3em;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    font-size: 0.9166666667rem;
    line-height: 1.2727272727; }
    .top-navigation > a:hover {
      text-decoration: none; }
  .top-navigation .some {
    margin-left: 1em; }
    .top-navigation .some a:last-of-type {
      margin-right: 0; }
  .top-navigation-rss {
    margin-right: 27px; }
  .top-navigation-search {
    position: relative;
    padding-left: 50px; }
    .top-navigation-search i {
      position: absolute;
      left: 0;
      width: 56px;
      height: auto;
      top: -12px; }

.nav-btn {
  display: block;
  width: 32px;
  height: 29.6722517368px;
  margin-left: auto;
  padding: 0;
  border: none;
  background-color: transparent; }
  @media screen and (min-width: 62em) {
    .nav-btn {
      display: none; } }
  .nav-btn > svg {
    height: 100%;
    width: auto; }

main .some {
  margin-top: 1.5em; }
  main .some .whatsapp {
    margin-right: 0; }
  main .some a svg {
    width: 2.5em;
    height: 2.5em; }
.some {	display: flex; }

.twitter-wall-title {
  padding: 20px;
  text-align: left;
  margin-top: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #178aa4;
  color: #fff; }
.facebook-wall-title {
  padding: 20px;
  text-align: left;
  margin-top: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #178aa4;
  color: #000; }
.facebookfeed .cff-wrapper {
    border: 1px solid #178aa4;
}
.twitter-wall-content {
    min-height: 300px;
    border: 1px solid #1c9dbb;
	padding: 10px;
}
  @media screen and (min-width: 62em) {
    .twitter-wall-title {
      width: 100%; } }
  .twitter-wall-title > h2,
  .twitter-wall-title > span {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.1333333333; }
.facebook-wall-title > h2,
  .facebook-wall-title > span {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.1333333333; }
  .twitter-wall-title > span {
    font-weight: bold; }
  .twitter-wall-title > a, .facebook-wall-title > a {
    text-decoration: none;
    font-size: 0.9166666667rem;
    line-height: 1;
    margin-left: auto; }
  .twitter-wall-title > h2, .twitter-wall-title > a, .facebook-wall-title > h2, .facebook-wall-title > a{
    color: #ffff; }
  @media screen and (min-width: 48em) {
    .twitter-wall-title {
      width: 100%; } }
  .twitter-wall-title a, .facebook-wall-title a {
    margin-top: -20px;
    position: relative;
    top: 10px; }
  .twitter-wall-title i, .twitter-wall-title svg, .facebook-wall-title i, .facebook-wall-title svg {
    width: 40px;
    height: 40px; }

.twitter-wall .twitter-timeline {
  padding: .75em;
  border: 1px solid #000;
  border-top: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 266px;
  width: 235px;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-decoration: none;
  border: 1px solid #c9c9c9 !important;
  border-top: none !important; }
  @media screen and (min-width: 62em) {
    .twitter-wall .twitter-timeline {
      width: 100%; } }
  .twitter-wall .twitter-timeline:hover {
    text-decoration: none; }

.events-calendar-title {
  padding: 20px;
  text-align: left;
  margin-top: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fcdc29;
  color: #000; }
  @media screen and (min-width: 62em) {
    .events-calendar-title {
      width: 100%; } }
  .events-calendar-title > h2,
  .events-calendar-title > span {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.1333333333; }
  .events-calendar-title > span {
    font-weight: bold; }
  .events-calendar-title > a {
    text-decoration: none;
    font-size: 0.9166666667rem;
    line-height: 1;
    margin-left: auto;
	color: #fff;
    background: #000;
    padding: 10px;
    font-weight: bold;
top:15px;right:15px;}
  .events-calendar-title > h2 {
    color: #000; }
  @media screen and (min-width: 20em) and (max-width: 47.9375em) {
    .events-calendar-title {
      position: relative; } }
  @media screen and (min-width: 20em) and (max-width: 47.9375em) {
    .events-calendar-title a {
      position: absolute; } }

.events-calendar-content {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row; }
  @media screen and (min-width: 20em) and (max-width: 47.9375em) {
    .events-calendar-content {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      margin-top: 12px; } }
  .events-calendar-content-left {
    width: inherit; }
    .events-calendar-content-left > h2 {
      font-size: 1.8333333333rem;
      line-height: 1.1818181818;
      margin: 0; }
      @media screen and (min-width: 48em) {
        .events-calendar-content-left > h2 {
          font-size: 2.6666666667rem;
          line-height: 1.125; } }
    .events-calendar-content-left h2 {
      color: #1c9dbb;
      margin-bottom: 12px; }
  .events-calendar-content-left, .events-calendar-content-right {
    padding: 20px;
    width: 50%; }
    @media screen and (min-width: 20em) and (max-width: 47.9375em) {
      .events-calendar-content-left, .events-calendar-content-right {
        width: 100%;
        padding: 20px;
        padding: 0; } }
  @media screen and (min-width: 20em) and (max-width: 47.9375em) {
    .events-calendar-content-right {
      margin-top: 24px; } }

.events-calendar-item {
  margin-bottom: 8px; }
  .events-calendar-item a {
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-size: 0.8333333333rem;
    line-height: 1.5;
    font-weight: normal; }
    .events-calendar-item a[rel="tag"] {
      padding: 0;
      margin: 0;
      font-size: 0.8333333333rem;
      line-height: 1.5;
      font-weight: bold;
      display: block;
      color: black; }
  .events-calendar-item p {
    padding: 0;
    margin: 0;
    font-size: 0.8333333333rem;
    line-height: 1.5;
    font-weight: normal;
    color: black; }
  .events-calendar-item p.like-link {
    padding: 0;
    margin: 0;
    font-size: 0.8333333333rem;
    line-height: 1.5;
    font-weight: bold;
    display: block;
    color: black; }
  .events-calendar-item.own-event a[rel="tag"],
  .events-calendar-item.own-event p.like-link {
    color: #009dbc; }

.events-calendar-links {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin: 0;
  padding: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 20px; }

.events-calendar-link {
  margin: 0;
  margin-right: 15px;
  text-transform: lowercase;
  cursor: pointer; }
  .events-calendar-link:hover {
    text-decoration: underline;
    -webkit-text-decoration-color: #1c9dbb;
            text-decoration-color: #1c9dbb; }
  .events-calendar-link:last-of-type {
    margin-right: 0; }

.fc-toolbar.fc-header-toolbar {
  display: none; }

body .fc-ltr .fc-basic-view .fc-day-top .fc-day-number {
  float: inherit;
  text-align: center;
  font-size: 1.3333333333rem;
  line-height: 1;
  font-weight: bold; }

.fc-content-skeleton {
  height: 100%;
  position: relative; }
  .fc-content-skeleton table {
    height: 100%; }
  .fc-content-skeleton tbody {
    display: none;
    /*position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;*/ }

body .fc-ltr .fc-basic-view .fc-day-top {
  text-align: center;
  height: 63px;
  vertical-align: middle;
  background-color: transparent; }
  body .fc-ltr .fc-basic-view .fc-day-top.fc-today {
    border-color: #ddd;
    position: relative; }
    body .fc-ltr .fc-basic-view .fc-day-top.fc-today:before {
      content: "";
      background-color: #fff;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      z-index: -1; }
    body .fc-ltr .fc-basic-view .fc-day-top.fc-today:after {
      content: "";
      width: 42px;
      height: 42px;
      background-color: transparent;
      border-radius: 56px;
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      z-index: -1; }
      @media screen and (max-width: 47.9375em) {
        body .fc-ltr .fc-basic-view .fc-day-top.fc-today:after {
          width: 36px;
          height: 36px; } }
  body .fc-ltr .fc-basic-view .fc-day-top.hasEvent {
    border-color: #ddd;
    position: relative;
    cursor: pointer; }
    body .fc-ltr .fc-basic-view .fc-day-top.hasEvent span {
      -webkit-transition: opacity .3s;
      transition: opacity .3s; }
    body .fc-ltr .fc-basic-view .fc-day-top.hasEvent:hover span {
      opacity: 0; }
    body .fc-ltr .fc-basic-view .fc-day-top.hasEvent:hover:after {
      color: #282828; }
    body .fc-ltr .fc-basic-view .fc-day-top.hasEvent:before {
      content: "";
      background-color: #fff;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      z-index: -1; }
    body .fc-ltr .fc-basic-view .fc-day-top.hasEvent:after {
      content: "+";
      cursor: pointer;
      width: 42px;
      height: 42px;
      background-color: #a0a5a5;
      color: #a0a5a5;
      border-radius: 56px;
      display: block;
      position: absolute;
      top: 50%;
      left: 50%;
      font-size: 1.3333333333rem;
      line-height: 1;
      font-weight: bold;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      z-index: -1;
      line-height: 42px;
      float: inherit;
      text-align: center;
      -webkit-transition: color .3s;
      transition: color .3s; }
      @media screen and (max-width: 47.9375em) {
        body .fc-ltr .fc-basic-view .fc-day-top.hasEvent:after {
          width: 36px;
          height: 36px;
          line-height: 36px; } }
      body .fc-ltr .fc-basic-view .fc-day-top.hasEvent:after:hover {
        color: #282828; }
    body .fc-ltr .fc-basic-view .fc-day-top.hasEvent.ownEvent:after {
      background-color: #1c9dbb;
      color: #1c9dbb; }
    body .fc-ltr .fc-basic-view .fc-day-top.hasEvent.ownEvent:hover:after {
      color: #282828; }

body .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end {
  opacity: .2; }
  body .fc-day-grid-event.fc-h-event.fc-event.fc-start.fc-end .fc-content {
    opacity: 0;
    z-index: -1; }

.single-tribe_events .tribe-events-single-event-description {
  border-bottom: none;
  margin-bottom: 10px; }

.single-tribe_events .tribe-events-event-meta {
  margin: 10px 0 20px 0; }

.type-tribe_events,
.tribe-events-content {
  border-bottom: none; }

.search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  width: 90%;
  margin: 0 auto; }
  .search-form label {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; }
  .search-form input[type="text"] {
    max-width: 1000px;
    height: 80px;
    border: none;
    padding: 0;
    width: 90%;
    text-align: center;
    font-size: 2.6666666667rem;
    line-height: 1;
    font-weight: 800; }
  .search-form input[type="submit"] {
    width: 10%;
    background: transparent;
    border: none;
    padding: 0;
    background-image: url(img/eaea-haku.svg);
    background-repeat: no-repeat;
    background-size: contain; }

.search-container-results {
  width: 90%;
  margin: 0 auto; }
  .search-container-results h1 {
    font-size: 2.3333333333rem;
    margin-top: 1.2em; }
  .search-container-results .search-item {
    position: relative; }
    .search-container-results .search-item h3 {
      font-size: 1.25rem;
      line-height: 1.2; }
    .search-container-results .search-item a {
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0; }
    .search-container-results .search-item p {
      color: #282828; }

.fc-scroller.fc-day-grid-container {
  overflow: hidden !important; }

body .wpcf7-list-item {
  display: block;
  margin-bottom: 8px;
  margin-left: 0; }

.area-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: transparent !important;
  cursor: pointer; }

.relative {
  position: relative; }

.blue-box,
.gray-box {
  padding: 4% 5%;
  position: relative;
  margin-bottom: 2%; }
  .blue-box h1, .blue-box h2, .blue-box h3, .blue-box h4, .blue-box h5, .blue-box h6,
  .blue-box .h1, .blue-box .h2, .blue-box .h3, .blue-box .h4, .blue-box .h5, .blue-box .h6,
  .gray-box h1,
  .gray-box h2,
  .gray-box h3,
  .gray-box h4,
  .gray-box h5,
  .gray-box h6,
  .gray-box .h1,
  .gray-box .h2,
  .gray-box .h3,
  .gray-box .h4,
  .gray-box .h5,
  .gray-box .h6 {
    margin-top: 0;
    color: #282828; }
  .blue-box ul, .blue-box ol,
  .gray-box ul,
  .gray-box ol {
    margin-left: 0;
    padding-left: 0; }
  .blue-box li,
  .gray-box li {
    list-style: disc;
    position: relative;
    margin-left: 20px;
    margin-bottom: .9em; }

.blue-box {
  background-color: #cde1e1; }

.gray-box {
  background-color: #d0d5d3; }

@media (max-width: 890px) {
  table tr {
    display: table;
    width: 100%; }
  table td {
    display: table-row; }
    table td h1,
    table td h2,
    table td h3,
    table td h4,
    table td h5,
    table td h6,
    table td p,
    table td li,
    table td ul,
    table td strong,
    table td b,
    table td u,
    table td i,
    table td td,
    table td th {
      text-align: left !important; }
    table td strong,
    table td b {
      font-weight: 700; }
    table td img {
      margin-left: 0 !important; } }

@media screen and (min-width: 20em) and (max-width: 47.9375em) {
  .page main {
    margin-top: 0; } }

@media screen and (min-width: 48em) and (max-width: 61.9375em) {
  .page main {
    margin-top: 0; } }

.home .call-for-action-head-title {
  padding: 20px;
  text-align: left;
  margin-top: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #000;
  color: #fff; }
  @media screen and (min-width: 62em) {
    .home .call-for-action-head-title {
      width: 100%; min-height: 60px;} }
  .home .call-for-action-head-title > h2,
  .home .call-for-action-head-title > span {
    text-align: left;
    margin: 0;
    padding: 0;
    font-size: 1.25rem;
    line-height: 1.1333333333; }
  .home .call-for-action-head-title > span {
    font-weight: bold; }
  .home .call-for-action-head-title > a {
    text-decoration: none;
    font-size: 0.9166666667rem;
    line-height: 1;
    margin-left: auto; }
  .home .call-for-action-head-title > h2,
  .home .call-for-action-head-title > a {
    color: #fff; }

.search main {
  background-color: #e7e8e4;
  margin: 0;
  padding: 50px 0; }

img {
  display: block;
  /*&.aligncenter {
        margin: 0 auto;
    }
    &.alignright {
        margin-left: auto;
        margin-right: 0;
    }
    &.alignleft {
        margin-left: 0;
        margin-right: auto;
    }*/ }

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

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

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

.wp-caption-text {
  margin-top: 5px;
  font-size: 0.75rem;
  line-height: 1.2222222222;
  font-weight: 700; }
  .wp-caption-text p,
  .wp-caption-text li,
  .wp-caption-text ul,
  .wp-caption-text strong,
  .wp-caption-text b,
  .wp-caption-text u,
  .wp-caption-text i,
  .wp-caption-text td,
  .wp-caption-text th {
    font-size: 0.75rem;
    line-height: 1.2222222222;
    font-weight: 700;
    font-weight: 700; }
  .wp-caption-text strong,
  .wp-caption-text b {
    font-weight: 700; }
.tablepress tbody td, .tablepress tfoot th {word-break: break-word;}
/*
	Theme Name: EAEA
	Description: EAEA HTML5 WordPress Theme
	Version: 1.0.0
	Author: KovaKoodarit
	Author URI: http://kovakoodarit.com
*/
.news-article h2 {
	color: #009dbc;
}

.ub-expand {
	background-color: #cde1e1;
	padding: 4% 5%;
	position: relative;
	margin-bottom: 2%;
}


.ub-expand a {
	cursor: pointer;
}

.ub-expand h2,
.ub-expand h3,
.ub-expand h4 {
	color: #000;
}

.wp-block-image img, table img {
    max-width: 100%;
    object-fit: contain;
    height: auto;
}

@media screen and (min-width: 320px) {
  h1 {
    font-size: calc(27px + 17 * ((100vw - 320px) / 1600));
  }
  h2 {
    font-size: calc(18px + 14 * ((100vw - 320px) / 1600));
  }
  h3, .news-article h2,
  .accent {
    font-size: calc(15px + 7 * ((100vw - 320px) / 1600));
  }
  h4,
  .comment-list .comment-author {
    font-size: calc(15px + 3 * ((100vw - 320px) / 1600));
  }  
}

@media screen and (min-width: 1920px) {

  h1 {
    font-size: 46px;
  }
  h2 {
    font-size: 34px;
  }
  h3, .news-article h2,
  .accent {
    font-size: 26px;
  }
  h4,
  .comment-list .comment-author {
    font-size: 21px;
  }
  h5 {
    font-size: 17px;
  }

}
