body, html {
  width: 100%;
  height: 100%;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

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

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}

@-webkit-keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

@keyframes flash {
  0%, 50%, 100% {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}

.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }
  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }
  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

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

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

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

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

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

@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

@-webkit-keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

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

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

.hinge {
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}

.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(48px);
    transform: scale(0.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-48px);
    transform: scale(0.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}

@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}

.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(-60px);
    transform: scale(0.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(2000px);
    transform: scale(0.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(42px);
    transform: scale(0.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(-2000px);
    transform: scale(0.1) translateX(-2000px);
    -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: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateX(-42px);
    transform: scale(0.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateX(2000px);
    transform: scale(0.1) translateX(2000px);
    -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: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(0.475) translateY(60px);
    transform: scale(0.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.1) translateY(-2000px);
    transform: scale(0.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

.clear {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

/* === Breakpoints === */
/* === Colors === */
/* === Fonts === */
/* === Defaults === */
* {
  position: relative;
  z-index: 2;
}

h4 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 25px;
  color: #ff4200;
  text-transform: uppercase;
  margin-bottom: 20px;
}

h4 strong {
  font-family: "Merriweather", serif;
  font-style: inherit;
  font-weight: 700;
  font-size: inherit;
}

p {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: auto;
}

p a {
  vertical-align: top;
}

p span.gc-cs-link {
  color: #ff4200;
  text-decoration: none;
}

a {
  color: #ff4200;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: auto;
  vertical-align: top !important;
}

ul {
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: auto;
  list-style-type: disc;
  list-style-position: inside;
}

section {
  -webkit-transition: 1s;
  transition: 1s;
  position: relative;
  left: 0;
}

section .row {
  margin: 0;
  padding: 0;
}

#body {
  width: 100%;
  height: 100%;
  overflow: visible;
  -webkit-transition: 1s;
  transition: 1s;
  position: relative;
  left: 0;
}

#main-menu {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 30px;
  -webkit-animation-delay: .3s;
          animation-delay: .3s;
  pointer-events: none;
  -webkit-transition: 1s;
  transition: 1s;
  /* Standard */
  /* Standard */
}

@media (max-width: 768px) {
  #main-menu {
    position: fixed;
  }
}

@media (max-width: 480px) {
  #main-menu {
    padding: 15px;
  }
}

#main-menu.fixed {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  /* Standard */
}

#main-menu.fixed #logo {
  padding: 7px 0 0;
}

#main-menu.fixed #logo .ico {
  width: 30px;
  height: 30px;
}

#main-menu.fixed #logo .ico:hover {
  width: 40px;
}

#main-menu.fixed #logo .text {
  opacity: 0;
}

@media (max-width: 768px) {
  #main-menu.fixed {
    padding: 2px 10px 10px;
  }
}

#main-menu * {
  pointer-events: all;
}

#main-menu #logo {
  float: left;
  display: table;
  -webkit-transition: .7s;
  transition: .7s;
  position: relative;
  left: 0;
}

#main-menu #logo:hover .ico {
  width: 60px;
  /* Standard */
}

@media (max-width: 480px) {
  #main-menu #logo:hover .ico {
    width: 40px;
  }
}

#main-menu #logo:hover .text {
  width: 190px;
  opacity: 1;
  /* Standard */
}

@media (max-width: 480px) {
  #main-menu #logo:hover .text {
    width: 150px;
  }
}

#main-menu #logo * {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: .3s;
  transition: .3s;
}

#main-menu #logo .ico {
  width: 50px;
  height: 50px;
  /* Standard */
}

@media (max-width: 480px) {
  #main-menu #logo .ico {
    width: 30px;
  }
}

#main-menu #logo .text {
  width: 180px;
  height: 40px;
  fill: #fff;
  /* Standard */
}

@media (max-width: 480px) {
  #main-menu #logo .text {
    width: 140px;
    height: 30px;
  }
}

#main-menu .nav {
  /* Standard */
}

@media (max-width: 768px) {
  #main-menu .nav {
    display: none;
  }
}

#main-menu .nav .container {
  display: table;
  width: auto;
  height: 50px;
  /* Standard */
}

@media (max-width: 768px) {
  #main-menu .nav .container {
    height: 100%;
  }
}

#main-menu .nav .container ul {
  display: table-cell;
  vertical-align: middle;
  /* Standard */
}

@media (max-width: 768px) {
  #main-menu .nav .container ul {
    width: 100%;
    padding: 0 2%;
  }
}

#main-menu .nav .container ul li {
  display: inline-block;
  list-style: none;
  margin: 0 5px;
  /* Standard */
}

#main-menu .nav .container ul li:last-child {
  margin-right: 0;
}

#main-menu .nav .container ul li.active a {
  opacity: 1;
  text-decoration: none;
  color: #ff4200;
}

@media (max-width: 768px) {
  #main-menu .nav .container ul li {
    display: block;
    width: 100%;
    border-bottom: 1px solid #666666;
  }
}

#main-menu .nav .container ul li a {
  display: block;
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: auto;
  font-size: 18px !important;
  text-transform: uppercase;
  text-decoration: none;
  color: white;
  opacity: 0.5;
  -webkit-transition: .5s;
  transition: .5s;
  /* Standard */
  /* Standard */
}

#main-menu .nav .container ul li a:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  #main-menu .nav .container ul li a {
    padding: 20px 0;
    font-size: 35px !important;
  }
}

@media (max-width: 480px) {
  #main-menu .nav .container ul li a {
    font-size: 24px !important;
  }
}

#main-menu .nav .container .closeBtn {
  width: 30px;
  display: block;
  position: absolute;
  top: 0;
  right: 5%;
  opacity: 0.4;
  -webkit-transition: .3s;
  transition: .3s;
}

#main-menu .nav .container .closeBtn:hover {
  opacity: 1;
  cursor: pointer;
}

#main-menu .nav .container .closeBtn * {
  width: 100%;
  stroke: white;
  stroke-width: 5px;
}

#main-menu .mobile-menu span {
  color: white;
  font-size: 30px;
  margin-top: 10px;
  -webkit-transition: .3s;
  transition: .3s;
}

#main-menu .mobile-menu span:hover {
  cursor: pointer;
  color: #ff4200;
}

#mobile-menu {
  width: 80%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  position: fixed;
  top: 0;
  right: -80%;
  z-index: 99;
  padding: 10% 20px 0;
  -webkit-transition: 1s;
  transition: 1s;
}

#mobile-menu #logo {
  display: block;
  width: 100%;
  padding: 11px 16px;
}

#mobile-menu #logo * {
  vertical-align: middle;
}

#mobile-menu #logo .ico {
  width: 100%;
  height: 100px;
  margin-bottom: 20px;
  /* Standard */
}

@media (max-width: 480px) {
  #mobile-menu #logo .ico {
    height: 70px;
  }
}

#mobile-menu #logo .text {
  width: 100%;
  height: 60px;
  fill: white;
  /* Standard */
}

@media (max-width: 480px) {
  #mobile-menu #logo .text {
    height: 40px;
  }
}

#mobile-menu .nav {
  width: 100%;
  margin-top: 10%;
}

#mobile-menu .nav ul li {
  list-style: none;
  text-align: center;
  margin: 20px 0;
}

#mobile-menu .nav ul li a {
  font-size: 40px;
  color: #ff4200;
  text-decoration: none;
  /* Standard */
}

#mobile-menu .nav ul li a:hover {
  text-decoration: none;
  color: white;
}

@media (max-width: 480px) {
  #mobile-menu .nav ul li a {
    font-size: 20px;
  }
}

#mobile-menu .nav ul li.active a {
  text-decoration: none;
  color: white;
}

#home {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: black;
  overflow: hidden;
}

#home .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.3;
}

#home .content {
  width: 80%;
  max-width: 800px;
  height: auto;
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  text-align: center;
  /* Standard */
}

@media (max-width: 768px) {
  #home .content {
    width: 100%;
  }
}

#home .content h1 {
  font-family: 'Lora', serif;
  font-weight: 400;
  margin-bottom: 2%;
  color: white;
  /* Standard */
}

#home .content h1 strong {
  font-family: 'Lora', serif;
  font-weight: 700;
}

@media (max-width: 480px) {
  #home .content h1 {
    font-size: 40px !important;
  }
}

#home .content a {
  display: inline-block;
  width: 40%;
  max-width: 250px;
  padding: 15px;
  margin: 20px 0 0;
  color: white;
  text-decoration: none;
  font-family: "Helvetica Neue", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: auto;
  border-radius: 5px;
  background-color: #ff4200;
  -webkit-transition: .5s;
  transition: .5s;
  /* Standard */
}

#home .content a:hover {
  background-color: #cc3500;
}

@media (max-width: 480px) {
  #home .content a {
    width: 60%;
    padding: 10px;
    font-size: 18px !important;
  }
}

#home .content a * {
  display: inline-block;
}

#home .content a .text {
  position: relative;
  top: -3px;
  /* Standard */
}

@media (max-width: 768px) {
  #home .content a .text {
    top: -1px;
  }
}

#special {
  width: 100%;
  padding: calc(5%) 5%;
  margin: 0 auto;
  background-color: white;
  overflow: hidden;
}

#special .content {
  display: inline-block;
  width: 68%;
  padding-left: 5%;
  text-align: left;
  /* Standard */
}

@media (max-width: 768px) {
  #special .content {
    width: 100%;
  }
}

#special .content h2 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 35px;
  color: #ff4200;
  margin-bottom: 5%;
  /* Standard */
  /* Standard */
}

#special .content h2 strong {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 35px;
  vertical-align: top;
}

@media (max-width: 768px) {
  #special .content h2 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  #special .content h2 {
    margin-bottom: 10%;
  }
}

#special .content p {
  line-height: 23px;
}

#about {
  width: 100%;
  padding: calc(5% + 80px) 5%;
  margin: 0 auto;
  text-align: center;
  background-color: white;
  overflow: hidden;
  /* Standard */
}

#about .bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.1;
}

@media (max-width: 480px) {
  #about {
    padding: calc(10% + 50px) 5% calc(10% + 50px) 2%;
  }
}

#about * {
  vertical-align: middle;
}

#about img:not(.bg) {
  max-width: 500px;
  border-radius: 500px;
  /* Standard */
  /* Standard */
}

@media (max-width: 768px) {
  #about img:not(.bg) {
    margin-bottom: 5%;
  }
}

@media (max-width: 480px) {
  #about img:not(.bg) {
    width: 80%;
    max-width: 100%;
    margin-bottom: 10%;
  }
}

#about .content {
  display: inline-block;
  width: 68%;
  padding-left: 5%;
  text-align: left;
  /* Standard */
}

@media (max-width: 768px) {
  #about .content {
    width: 100%;
  }
}

#about .content h2 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 35px;
  color: #ff4200;
  margin-bottom: 5%;
  /* Standard */
  /* Standard */
}

#about .content h2 strong {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 35px;
  vertical-align: top;
}

@media (max-width: 768px) {
  #about .content h2 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  #about .content h2 {
    margin-bottom: 10%;
  }
}

#about .content p {
  line-height: 23px;
}

#widgets {
  width: 100%;
  height: 300px;
  text-align: center;
  color: white;
  overflow: auto;
  white-space: nowrap;
  background-color: #3a3a3a;
  position: relative;
  z-index: 1;
  /* Standard */
}

@media (max-width: 768px) {
  #widgets {
    height: 280px;
  }
}

#widgets .bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.3;
}

#widgets .widget {
  width: 400px;
  height: 220px;
  position: relative;
  z-index: 5;
  display: inline-block;
  vertical-align: top;
  margin: 40px 20px 0;
  padding: 30px;
  text-align: left;
  border-radius: 20px;
  border: 2px solid #4d4d4d;
  overflow: hidden;
  /* Standard */
}

@media (max-width: 768px) {
  #widgets .widget {
    width: 330px;
    height: 200px;
  }
  #widgets .widget h4 {
    font-size: 20px;
  }
  #widgets .widget p {
    font-size: 12px;
  }
}

#widgets .widget#hours .open, #widgets .widget#hours .closed {
  margin-bottom: 20px;
  /* Standard */
}

@media (max-width: 768px) {
  #widgets .widget#hours .open, #widgets .widget#hours .closed {
    margin-bottom: 15px;
  }
}

#widgets .widget#hours .open .ico, #widgets .widget#hours .closed .ico {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  border: 2px solid #39b54a;
  border-radius: 10px;
  padding: 10px 25px;
  color: #39b54a;
  margin-right: 20px;
  /* Standard */
}

@media (max-width: 768px) {
  #widgets .widget#hours .open .ico, #widgets .widget#hours .closed .ico {
    font-size: 16px;
    border: 1px solid #39b54a;
    padding: 5px 10px;
    margin-right: 10px;
  }
}

#widgets .widget#hours .open p, #widgets .widget#hours .closed p {
  vertical-align: middle;
  line-height: 20px;
}

#widgets .widget#hours .open p:nth-child(2), #widgets .widget#hours .closed p:nth-child(2) {
  display: inline-block;
  width: 20%;
}

#widgets .widget#hours .open .ico {
  padding: 10px 34px;
  /* Standard */
}

@media (max-width: 768px) {
  #widgets .widget#hours .open .ico {
    padding: 5px 17px;
  }
}

#widgets .widget#hours .closed .ico {
  border-color: red;
  color: red;
}

#widgets .widget#admission .flexslider {
  width: 100%;
  padding-top: 20px;
  position: relative;
  /* Standard */
}

@media (max-width: 768px) {
  #widgets .widget#admission .flexslider {
    padding-top: 15px;
  }
}

#widgets .widget#admission .flexslider .content {
  text-align: center;
}

#widgets .widget#admission .flexslider .content p {
  vertical-align: middle;
}

#widgets .widget#admission .flexslider .content .price {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 20px;
  text-transform: uppercase;
  border: 2px solid #39b54a;
  border-radius: 10px;
  padding: 10px 35px;
  color: #39b54a;
  margin-right: 20px;
  /* Standard */
}

@media (max-width: 768px) {
  #widgets .widget#admission .flexslider .content .price {
    font-size: 16px;
    border: 1px solid #39b54a;
    padding: 7px 20px;
    margin-right: 10px;
  }
}

#widgets .widget#admission .flexslider .content .title {
  display: inline-block;
}

#widgets .widget#admission .flexslider .flex-control-nav {
  position: absolute;
  bottom: -45px;
  left: 50%;
  z-index: 4;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  /* Standard */
}

@media (max-width: 768px) {
  #widgets .widget#admission .flexslider .flex-control-nav {
    bottom: -55px;
  }
}

#widgets .widget#admission .flexslider .flex-control-nav li {
  list-style: none;
  display: inline-block;
}

#widgets .widget#admission .flexslider .flex-control-nav li a {
  display: block;
  text-indent: -999px;
  width: 12px;
  height: 12px;
  margin: 0 2px;
  border: 2px solid gray;
  border-radius: 100px;
}

#widgets .widget#admission .flexslider .flex-control-nav li a:hover {
  cursor: pointer;
  opacity: .5;
}

#widgets .widget#admission .flexslider .flex-control-nav li a.flex-active {
  background-color: gray;
}

#widgets .widget#admission .flexslider .flex-direction-nav {
  width: 100%;
  position: absolute;
  top: 55%;
  left: 0;
  z-index: 3;
}

#widgets .widget#admission .flexslider .flex-direction-nav li {
  list-style: none;
}

#widgets .widget#admission .flexslider .flex-direction-nav a {
  display: block;
  width: 20px;
  font-family: "Glyphicons Halflings";
  visibility: hidden;
  color: white;
  opacity: 0.4;
}

#widgets .widget#admission .flexslider .flex-direction-nav a:hover {
  opacity: 1;
  text-decoration: none;
}

#widgets .widget#admission .flexslider .flex-direction-nav a.flex-prev {
  float: left;
}

#widgets .widget#admission .flexslider .flex-direction-nav a.flex-prev:before {
  content: "\e079";
  visibility: visible;
}

#widgets .widget#admission .flexslider .flex-direction-nav a.flex-next {
  float: right;
}

#widgets .widget#admission .flexslider .flex-direction-nav a.flex-next:before {
  content: "\e080";
  visibility: visible;
}

#widgets .widget.ad {
  background-size: cover;
}

#widgets .widget.ad:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#widgets .widget.ad .overlay {
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 0.5;
}

#widgets .widget.ad .content {
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

#widgets .widget.ad .content h4 {
  font-size: 30px;
  line-height: 35px;
  /* Standard */
}

@media (max-width: 768px) {
  #widgets .widget.ad .content h4 {
    font-size: 25px;
  }
}

#events {
  width: 100%;
  padding: calc(5% + 80px) 0;
  overflow: hidden;
  background-color: whitesmoke;
  background-image: url(../../../content/5-events/01.png);
  background-repeat: no-repeat;
  background-size: 35% auto;
  background-position: center left;
  /* Standard */
  /* Standard */
}

@media (max-width: 992px) {
  #events {
    background-size: 25% auto;
  }
}

@media (max-width: 768px) {
  #events {
    background-image: none;
    padding: 50px 0;
  }
}

#events .content {
  width: 65%;
  float: right;
  padding: 0 5%;
  /* Standard */
  /* Standard */
  /* Standard */
}

@media (max-width: 992px) {
  #events .content {
    width: 75%;
  }
}

@media (max-width: 768px) {
  #events .content {
    width: 100%;
  }
}

@media (max-width: 480px) {
  #events .content {
    padding: 15% 0;
  }
}

#events .content .head {
  padding-bottom: 10%;
  /* Standard */
}

@media (max-width: 768px) {
  #events .content .head {
    text-align: center;
  }
}

#events .content .head * {
  vertical-align: middle;
}

#events .content .head .glyph-cal {
  display: inline-block;
  padding: 40px;
  margin-right: 40px;
  border: 2px solid #ff4200;
  border-radius: 500px;
  /* Standard */
}

@media (max-width: 480px) {
  #events .content .head .glyph-cal {
    display: none;
  }
}

#events .content .head .glyph-cal * {
  width: 80px;
  height: 70px;
}

#events .content .head .glyph-cal .st0 {
  fill: none;
  stroke: #ff4200;
  stroke-width: 3px;
}

#events .content .head .title {
  display: inline-block;
  width: 50%;
  /* Standard */
  /* Standard */
}

@media (max-width: 768px) {
  #events .content .head .title {
    text-align: left;
  }
}

@media (max-width: 480px) {
  #events .content .head .title {
    width: 80%;
    text-align: center;
  }
}

#events .content .head .title h2 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  text-transform: uppercase;
  color: #ff4200;
  margin-bottom: 20px;
  /* Standard */
}

@media (max-width: 480px) {
  #events .content .head .title h2 {
    font-size: 35px;
  }
}

#events .content .head .title p {
  font-size: 20px;
  line-height: 24px;
  /* Standard */
}

@media (max-width: 480px) {
  #events .content .head .title p {
    font-size: 16px;
  }
}

#events .content .head .title p a:hover {
  text-decoration: none;
}

#events .content .flexslider {
  width: 100%;
  position: relative;
}

#events .content .flexslider:hover .flex-direction-nav li:nth-child(1) {
  left: 2%;
}

#events .content .flexslider:hover .flex-direction-nav li:nth-child(2) {
  right: 2%;
}

#events .content .flexslider .shadow {
  position: absolute;
  top: -4%;
  z-index: 3;
  height: 90%;
  -webkit-box-shadow: 0px 0px 1px 1px #e6e6e6;
          box-shadow: 0px 0px 1px 1px #e6e6e6;
}

#events .content .flexslider .shadow.left {
  left: 0;
}

#events .content .flexslider .shadow.right {
  right: 0;
}

#events .content .flexslider .slides {
  overflow: hidden;
  margin-bottom: 5%;
}

#events .content .flexslider .slides li .event {
  padding: 0 10px;
}

#events .content .flexslider .slides li .event .content {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  padding: 40px;
  /* Standard */
}

@media (max-width: 480px) {
  #events .content .flexslider .slides li .event .content {
    padding: 20px;
  }
}

#events .content .flexslider .slides li .event .content h6 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 30px;
  text-transform: uppercase;
  /* Standard */
}

@media (max-width: 480px) {
  #events .content .flexslider .slides li .event .content h6 {
    font-size: 20px;
  }
}

#events .content .flexslider .slides li .event .content h6 strong {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 30px;
}

#events .content .flexslider .slides li .event .content .date {
  width: calc(100% + 80px);
  margin: 5% 0 5% -40px;
  padding: 3px 0;
  background-color: #ff4200;
  color: white;
  text-align: center;
  font-family: "Helvetica Neue", sans-serif;
  font-style: regular;
  font-weight: regular;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 10px;
  /* Standard */
}

@media (max-width: 480px) {
  #events .content .flexslider .slides li .event .content .date {
    width: calc(100% + 40px);
    margin: 7% 0 7% -20px;
  }
}

#events .content .flexslider .slides li .event .content .txt {
  font-family: "Helvetica Neue", sans-serif;
  font-style: regular;
  font-weight: regular;
  font-size: 15px;
  line-height: 20px;
  letter-spacing: 1px;
}

#events .content .flexslider .flex-control-nav {
  text-align: center;
  overflow: hidden;
}

#events .content .flexslider .flex-control-nav li {
  list-style: none;
  display: inline-block;
}

#events .content .flexslider .flex-control-nav li a {
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 2px;
  text-indent: -999px;
  border: 2px solid #b3b3b3;
  border-radius: 500px;
  cursor: pointer;
  -webkit-transition: .3s;
  transition: .3s;
}

#events .content .flexslider .flex-control-nav li a:first-child {
  margin-left: 0;
}

#events .content .flexslider .flex-control-nav li a.flex-active {
  background-color: #ff4200;
  border-color: #ff4200;
}

#events .content .flexslider .flex-control-nav li a:hover {
  opacity: .5;
}

#events .content .flexslider .flex-direction-nav {
  width: 100%;
  height: 50px;
  overflow: hidden;
  position: absolute;
  top: 45%;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  /* Standard */
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) {
  #events .content .flexslider .flex-direction-nav {
    display: none;
  }
}

#events .content .flexslider .flex-direction-nav li {
  width: 40px;
  display: inline-block;
  position: absolute;
  top: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

#events .content .flexslider .flex-direction-nav li:nth-child(1) {
  left: -15%;
}

#events .content .flexslider .flex-direction-nav li:nth-child(2) {
  right: -15%;
}

#events .content .flexslider .flex-direction-nav li a {
  display: block;
  font-family: "Glyphicons Halflings";
  font-size: 40px;
  text-decoration: none;
  color: #333333;
  visibility: hidden;
  opacity: .6;
  -webkit-transition: .3s;
  transition: .3s;
}

#events .content .flexslider .flex-direction-nav li a:hover {
  opacity: 1;
}

#events .content .flexslider .flex-direction-nav li a.flex-prev:before {
  content: "\e079";
  visibility: visible;
}

#events .content .flexslider .flex-direction-nav li a.flex-next:before {
  content: "\e080";
  visibility: visible;
}

#intersection {
  width: 100%;
  padding: 5%;
  margin: 0 auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

#intersection .bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
  opacity: 0.3;
}

#intersection * {
  vertical-align: middle;
}

#intersection img:not(.bg) {
  max-width: 500px;
  border-radius: 500px;
  /* Standard */
  /* Standard */
}

@media (max-width: 768px) {
  #intersection img:not(.bg) {
    margin-bottom: 5%;
  }
}

@media (max-width: 480px) {
  #intersection img:not(.bg) {
    width: 80%;
    max-width: 100%;
    margin-bottom: 10%;
  }
}

#intersection .content {
  display: inline-block;
  width: 68%;
  padding-left: 5%;
  text-align: left;
  /* Standard */
}

@media (max-width: 768px) {
  #intersection .content {
    width: 100%;
  }
}

#intersection .content h2 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 35px;
  color: #ff4200;
  margin-bottom: 5%;
  /* Standard */
  /* Standard */
}

#intersection .content h2 strong {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 35px;
  vertical-align: top;
}

@media (max-width: 768px) {
  #intersection .content h2 {
    text-align: center;
  }
}

@media (max-width: 480px) {
  #intersection .content h2 {
    margin-bottom: 10%;
  }
}

#intersection .content p {
  line-height: 23px;
  color: white;
}

#involvement {
  background-color: white;
  padding: calc(5% + 80px) 5%;
  /* Standard */
}

@media (max-width: 480px) {
  #involvement {
    padding: calc(10% + 50px) 5% calc(10% + 50px) 2%;
  }
}

#involvement .form {
  /* Standard */
}

@media (max-width: 768px) {
  #involvement .form {
    margin-top: 350px;
  }
}

#involvement .form h2 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  text-transform: uppercase;
  color: #ff4200;
  margin-bottom: 20px;
  /* Standard */
}

@media (max-width: 480px) {
  #involvement .form h2 {
    font-size: 35px;
  }
}

#involvement .form form {
  /* Standard */
}

@media (max-width: 768px) {
  #involvement .form form {
    margin-bottom: 20px;
  }
}

#involvement .form form .input-group {
  margin-bottom: 10px;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: auto;
}

#involvement .form form .input-group * {
  padding: 8px 16px;
  /* Standard */
}

@media (max-width: 1200px) {
  #involvement .form form .input-group * {
    padding: 6px 12px;
  }
}

#involvement .form form .input-group .form-control:focus {
  -webkit-box-shadow: 0 0 5px #ff4200;
          box-shadow: 0 0 5px #ff4200;
  border-color: #ff4200;
}

#involvement .form form .input-group .form-control:not(.inp2) {
  position: relative;
  top: 1px;
}

#involvement .form form .input-group .form-control:not(.inp2).inp4 {
  resize: none;
}

#involvement .form form .submit {
  float: right;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: auto;
}

#involvement .title {
  width: 100%;
  margin-bottom: 40px;
}

#involvement .title * {
  vertical-align: middle;
}

#involvement .title .glyph-users {
  display: inline-block;
  padding: 30px;
  margin-right: 40px;
  border: 2px solid #ff4200;
  border-radius: 500px;
  /* Standard */
}

@media (max-width: 992px) {
  #involvement .title .glyph-users {
    display: none;
  }
}

#involvement .title .glyph-users * {
  width: 80px;
  height: 80px;
}

#involvement .title .glyph-users .st0 {
  fill: none;
  stroke: #ff4200;
  stroke-width: 1.5px;
}

#involvement .title .content {
  width: 50%;
  display: inline-block;
  /* Standard */
}

@media (max-width: 992px) {
  #involvement .title .content {
    width: 100%;
  }
}

#involvement .title .content h2 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  text-transform: uppercase;
  color: #ff4200;
  margin-bottom: 20px;
  font-size: 36px;
  /* Standard */
}

@media (max-width: 480px) {
  #involvement .title .content h2 {
    font-size: 40px;
  }
}

#involvement .title .content p {
  line-height: 25px;
}

#involvement .block {
  width: 100%;
  margin-bottom: 40px;
}

#involvement .block h3 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  text-transform: uppercase;
  color: #ff4200;
  margin-bottom: 30px;
  /* Standard */
}

@media (max-width: 480px) {
  #involvement .block h3 {
    font-size: 16px;
  }
}

#involvement .block p {
  line-height: 25px;
  margin-bottom: 10px;
}

#involvement .block ul {
  margin-bottom: 20px;
  display: block;
  list-style-type: square;
  clear: both;
}

#involvement .block ul li {
  float: left;
  width: 50%;
  margin-bottom: 20px;
  font-size: 20px;
  font-style: italic;
}

#involvement .accordion {
  border: 1px solid #e6e6e6;
  border-radius: 20px;
  padding: 7%;
  /* Standard */
}

@media (max-width: 480px) {
  #involvement .accordion {
    padding: 5%;
  }
}

#involvement .accordion h6 {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: auto;
  margin-bottom: 20px;
  /* Standard */
}

@media (max-width: 480px) {
  #involvement .accordion h6 {
    font-size: 25px;
  }
}

#involvement .accordion .clear {
  margin: 20px 0;
}

#involvement .accordion .accordionButton {
  padding: 7px 5px;
  -webkit-transition: .3s;
  transition: .3s;
  border-radius: 2px;
  /* Standard */
}

@media (max-width: 480px) {
  #involvement .accordion .accordionButton {
    padding: 15px 2px;
  }
}

#involvement .accordion .accordionButton:hover {
  color: white;
  cursor: pointer;
  background-color: #ff4200;
}

#involvement .accordion .accordionButton:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

#involvement .accordion .accordionButton * {
  display: inline;
}

#involvement .accordion .accordionButton .caret {
  float: left;
  margin: 7px 7px 0 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: .5s;
  transition: .5s;
  color: black !important;
}

#involvement .accordion .accordionButton .title {
  font-family: "Source Sans Pro", sans-serif;
  font-style: italic;
  font-weight: 300;
  font-size: auto;
  margin: 0;
  float: left;
  width: auto;
  /* Standard */
}

@media (max-width: 480px) {
  #involvement .accordion .accordionButton .title {
    font-size: 17px;
  }
}

#involvement .accordion .accordionButton .price {
  float: right;
  font-weight: 400;
}

#involvement .accordion .accordionContent {
  display: none;
  padding: 0 15px;
}

#involvement .accordion .accordionContent .txt {
  font-size: 13px;
  color: gray;
  line-height: 20px;
  margin: 10px 0;
}

#involvement #volunteerForm {
  left: 15px;
  top: 20px;
  right: 50px;
  width: 96%;
  z-index: -200;
}

#contact {
  width: 100%;
  background-color: white;
}

#contact #map {
  height: 400px;
}

#contact #map .left {
  width: 30%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 10;
  display: table;
  text-align: center;
  overflow: hidden;
  /* Standard */
  /* Standard */
}

@media (max-width: 992px) {
  #contact #map .left {
    width: 40%;
  }
}

@media (max-width: 768px) {
  #contact #map .left {
    float: none;
    width: 100%;
    height: 300px;
  }
}

#contact #map .left .bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.3;
}

#contact #map .left .content {
  color: white;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
}

#contact #map .left .content h6 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 700;
  font-size: 35px;
  color: #ff4200;
  text-transform: uppercase;
  margin-bottom: 20px;
  /* Standard */
}

@media (max-width: 1200px) {
  #contact #map .left .content h6 {
    font-size: 30px;
  }
}

#contact #map .left .content p {
  font-size: 20px;
  line-height: 25px;
  color: black;
  /* Standard */
}

@media (max-width: 1200px) {
  #contact #map .left .content p {
    font-size: 16px;
  }
}

#contact #map .left .content p span {
  color: white;
  text-decoration: none;
}

#contact #map .left .content p a {
  color: black;
}

#contact #map .left .content p a:hover {
  text-decoration: none;
  color: #ff4200;
}

#contact #map #map-canvas-open {
  float: left;
  width: 70%;
  height: 100%;
  margin: 0px;
  padding: 0px;
  margin-bottom: 5%;
  z-index: 0;
  overflow: hidden;
  /* Standard */
  /* Standard */
  /* Standard */
}

#contact #map #map-canvas-open iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 992px) {
  #contact #map #map-canvas-open {
    width: 60%;
  }
}

@media (max-width: 768px) {
  #contact #map #map-canvas-open {
    float: none;
    width: 100%;
  }
}

@media (max-width: 480px) {
  #contact #map #map-canvas-open {
    margin-bottom: 10%;
    height: 50%;
  }
}

#contact .form {
  padding-top: 20px;
  padding-left: 5%;
  /* Standard */
}

@media (max-width: 768px) {
  #contact .form {
    margin-top: 350px;
  }
}

#contact .form h2 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 26px;
  text-transform: uppercase;
  color: #ff4200;
  margin-bottom: 20px;
  /* Standard */
}

@media (max-width: 480px) {
  #contact .form h2 {
    font-size: 35px;
  }
}

#contact .form form {
  /* Standard */
}

@media (max-width: 768px) {
  #contact .form form {
    margin-bottom: 20px;
  }
}

#contact .form form .input-group {
  margin-bottom: 10px;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: auto;
}

#contact .form form .input-group * {
  padding: 8px 16px;
  /* Standard */
}

@media (max-width: 1200px) {
  #contact .form form .input-group * {
    padding: 6px 12px;
  }
}

#contact .form form .input-group .form-control:focus {
  -webkit-box-shadow: 0 0 5px #ff4200;
          box-shadow: 0 0 5px #ff4200;
  border-color: #ff4200;
}

#contact .form form .input-group .form-control:not(.inp2) {
  position: relative;
  top: 1px;
}

#contact .form form .input-group .form-control:not(.inp2).inp4 {
  resize: none;
}

#contact .form form .submit {
  float: right;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: auto;
}

#contact .contacts {
  padding-right: 5%;
  padding-bottom: 10%;
}

#contact .contacts .contact {
  float: left;
  width: 50%;
  padding: 4%;
  -webkit-transition: .3s;
  transition: .3s;
  border-right: 1px solid #e6e6e6;
  border-bottom: 1px solid #e6e6e6;
  /* Standard */
}

#contact .contacts .contact:nth-child(even) {
  border-right: none;
}

#contact .contacts .contact:last-child {
  border-bottom: none;
  /* Standard */
}

@media (max-width: 1200px) {
  #contact .contacts .contact:last-child {
    border-bottom: 1px solid #e6e6e6;
  }
}

#contact .contacts .contact:hover {
  background-color: #f2f2f2;
}

@media (max-width: 1200px) {
  #contact .contacts .contact {
    width: 100%;
    border-right: none;
  }
}

#contact .contacts .contact h6 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  text-transform: uppercase;
  color: #ff4200;
  /* Standard */
}

@media (max-width: 480px) {
  #contact .contacts .contact h6 {
    font-size: 18px;
  }
}

#contact .contacts .contact p {
  margin: 5px 0;
  /* Standard */
}

@media (max-width: 768px) {
  #contact .contacts .contact p {
    margin: 10px 0;
  }
}

#footer {
  width: 100%;
  background-color: #262626;
  color: white;
  padding: 10% 0;
}

#footer h6 {
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 25px;
  text-transform: uppercase;
  color: #b3b3b3;
  margin-bottom: 10%;
  padding-bottom: 2px;
  border-bottom: 1px solid #b3b3b3;
  /* Standard */
}

@media (max-width: 992px) {
  #footer h6 {
    margin-bottom: 5%;
  }
}

#footer .col {
  /* Standard */
  /* Standard */
}

@media (max-width: 992px) {
  #footer .col {
    margin-bottom: 5%;
  }
}

@media (max-width: 768px) {
  #footer .col {
    margin-bottom: 10%;
  }
}

#footer .col1 {
  text-align: center;
  /* Standard */
  /* Standard */
}

@media (max-width: 992px) {
  #footer .col1 {
    margin-bottom: 10%;
  }
}

@media (max-width: 768px) {
  #footer .col1 {
    margin-bottom: 10%;
  }
}

#footer .col1 .logo {
  display: inline-block;
  width: 50%;
  height: 150px;
  position: relative;
}

#footer .col1 .logo .ico {
  width: 120px;
  height: 100%;
}

#footer .col1 .logo .ico * {
  stroke: #474747;
}

#footer .col1 .logo .text {
  width: 100%;
  max-width: 300px;
  position: absolute;
  top: 30%;
  left: 0%;
}

#footer .col1 .logo .text * {
  fill: #ff4200;
}

#footer .col1 .address {
  display: inline-block;
  margin: 5% 0;
  padding-left: 6%;
  text-align: left;
}

#footer .col1 .address p {
  font-size: 16px;
  line-height: 25px;
}

#footer .col1 .address p span {
  color: white;
  text-decoration: none;
}

#footer .col1 .social {
  font-size: 30px;
  text-align: center;
}

#footer .col1 .social a {
  padding: 0 3%;
}

#footer .col2 #instafeed a {
  display: inline-block;
  width: 30%;
  margin: 1% 1%;
  -webkit-transition: .3s;
  transition: .3s;
}

#footer .col2 #instafeed a:hover {
  opacity: 0.7;
}

#footer .col2 #instafeed a img {
  width: 100%;
}

#footer .links a {
  display: inline-block;
  line-height: 25px;
  padding: 2px 0;
  color: white;
}

#footer .links a:hover {
  text-decoration: none;
  color: #ff4200;
}

.stamp {
  font-family: "Source Sans Pro", sans-serif;
  color: #b3b3b3;
  font-weight: 300;
  text-align: right;
  margin: -1.7% 5%;
  font-size: 1.2em;
  letter-spacing: 1px;
}

.stamp a {
  font-weight: 600;
  letter-spacing: 2px;
  color: #ff4200;
}

.stamp a:hover {
  color: #ffffff;
}

.modal-dialog {
  display: inline-block;
  text-align: left;
  vertical-align: middle;
}

.modal-backdrop.in {
  z-index: 1;
}

.modal {
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 0 !important;
}

.modal:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -4px;
}

.modal-body {
  color: #ff4200;
  font-family: "Merriweather", serif;
  font-style: italic;
  font-weight: 300;
  font-size: 1.7em;
  padding: 40px;
  text-align: center;
  margin-bottom: 17px;
  /* Standard */
}

.modal-body i {
  font-size: 3em;
  margin: 5%;
}

@media (max-width: 768px) {
  .modal-body {
    font-size: 1.1em;
    padding: 30px;
  }
  .modal-body i {
    font-size: 2.3em;
    margin: 5%;
  }
}

.modal-header {
  border-bottom: none;
  margin-bottom: -30px;
}

button.close {
  margin-top: -10px;
}

.closeme {
  color: #9a9a9a;
  font-family: "Source Sans Pro", sans-serif;
  font-style: normal;
  font-size: 1.3em;
  /* Standard */
}

@media (max-width: 768px) {
  .closeme {
    font-size: 0.9em;
  }
}

.closeme:hover {
  color: #525252;
}
/*# sourceMappingURL=style.css.map */