@charset "UTF-8";


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

Copyright (c) 2013 Daniel Eden

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

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

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

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

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

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

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

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

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

  25%, 75% {
    opacity: 0;
  }
}

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

  25%, 75% {
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

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

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

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

@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

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

@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

@keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

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

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

@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

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

@keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

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

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

@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

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

@keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

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

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

@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

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

@keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

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

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

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

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

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

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

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

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

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

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

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

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

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

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

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

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

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

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

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

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

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

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

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

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

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

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

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

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

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

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

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

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

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

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

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

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

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

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

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

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

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

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

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

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

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

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

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

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

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

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

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

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

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

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

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

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

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

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

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

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

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

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

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

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

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

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

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

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

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

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

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

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

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

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

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

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

@keyframes slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

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

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

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

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

@keyframes slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

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

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

@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

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

@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, 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,
main, 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, main, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

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

/* //////////////////// */
/* SETTINGS / VARIABLES */
/* //////////////////// */
/**
  @font-face Includes
  ...
 */
@font-face {
  font-family: 'Futura Condensed';
  src: url("../fonts/futura/Futura-Condensed-Extra-Bold-Italic.ttf");
  font-style: italic;
  font-weight: 900; }

@font-face {
  font-family: 'Good Sans';
  src: url("../fonts/goodsans/GoodSans-Light.ttf");
  font-style: normal;
  font-weight: 300; }

@font-face {
  font-family: 'Good Sans';
  src: url("../fonts/goodsans/GoodSans-Regular.ttf");
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: 'Good Sans';
  src: url("../fonts/goodsans/GoodSans-Medium.ttf");
  font-style: normal;
  font-weight: 500; }

/**
  Explicit Color-Variables

  $color_red: red;
  $color_red-dark: darkred;
  ...
 */
/**
  Readable Color-Variables
 */
/**
  Global Variables
 */
/*
  If any value is `false` it will be ignored
 */
/**
  Mixins
 */
/**
  Use Describing Font-Weight Mixin
  Bsp: "@include fontweight(light)"
  @arg {*} $fontweight = light, regular, medium, bold
 */
/**
 Applies font-smoothing
 */
/**
 Removes any unit (px, rem, % etc.) from given argument
 */
/**
  Map deep get
  @arg {Map} $map = Map
  @arg {Arglist} $keys = Key chain
  @return {*} - Desired value
 */
/**
  Calculated a Rem value for a given Pixel Input
  @arg {Int} $px = Pixel-Value without "px"-Unit
  @return {String} = Calculated Rem-value
 */
/**
  Calculates the rem value for the base fontsize with px fallback
  @arg {Int} $sizeValue = Desired Font-Size without 'px'
  @arg {Bool|Int} = Set line-height property as well. true for automatic calculation from $sizeValue
  @args {Bool|Int} = Set the letter-spacing property as well.
*/
/**
  Gets font-size from array for a needed font-key
  @arg {*} $fontKey = h1, h2, h3, h4, h5, subline, copy, meta
  @arg {d|lg|md|sm|xs} $viewport = Viewport Font-Size-Stack the value should be fetched from
  @arg {Bool} $responsive = Should the mixin return all media queries/sizes for that fontKey?
  @arg {Bool} $letterspacing = Should the mixin also print the letterspacing-property?
 */
/**
  Generate Cascading Transition delays for child elements
  @arg {Int} $delay_step = Increase of delay for every child
  @arg {Int} $init_delay = Initial delay for the first child
  @arg {Int} $count = Number of children to cascade for
 */
/**
  Lets a div breakout of his parent without destroying the flow
  @arg {String} $realWidth = Width of the div inside its parent
  @arg {Type}   $dir = Direction on which side the div breaks out of the parent
  @arg {Bool}   $padding = If the extra space is filled with padding or with its content
  @arg {String} $maxWidth = How far the div should breakout (default: full viewport)
 */
/**
  Generates a fake-border around text
  @arg {Ing}    $width = Border width
  @arg {Color}  $color = Border color
  @arg {Int}    $blur  = Blur amount
 */
/**
 Sets the global placeholder color
 @arg {Color} $color_placeholder = Color to set placeholder to
 @arg {Bool} $child = Use mixin as global placeholder style (false) or within an element (true)
 */
/**
 Browser Targeting
 */
/**
 Only target Internet Explorers (not Edge)
 */
/**
 Only target Edge (not Internet Explorers)
 */
/**
 Only target Safari (mobile and desktop)
 */
/**
 * Combines targeting of Internet Explorer and Edge
 */
/**
 Only target Firefox
 */
/**
  Responsive Breakpoints
 */
/* ///// */
/* GRID */
/* ///// */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (max-width: 670px) {
    .row:not(.keep-row) {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
      .row:not(.keep-row):not(.keep-row) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .row.gutters,
  .row.gutters > .row {
    margin-left: -20px; }
    @media (max-width: 670px) {
      .row.gutters:not(.keep-row),
      .row.gutters > .row:not(.keep-row) {
        margin-left: 0; } }
    .row.gutters > .col,
    .row.gutters > .row > .col {
      margin-left: 20px; }
    @media (max-width: 670px) {
      .row.gutters:not(.keep-row),
      .row.gutters > .row:not(.keep-row) {
        margin-left: 0; } }
  .row.around {
    -ms-flex-pack: distribute;
        justify-content: space-around; }
  .row.between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .row.auto .col {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }

.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap; }

.col-1 {
  width: 8.33333%; }

.offset-1 {
  margin-left: 8.33333%; }

.col-2 {
  width: 16.66667%; }

.offset-2 {
  margin-left: 16.66667%; }

.col-3 {
  width: 25%; }

.offset-3 {
  margin-left: 25%; }

.col-4 {
  width: 33.33333%; }

.offset-4 {
  margin-left: 33.33333%; }

.col-5 {
  width: 41.66667%; }

.offset-5 {
  margin-left: 41.66667%; }

.col-6 {
  width: 50%; }

.offset-6 {
  margin-left: 50%; }

.col-7 {
  width: 58.33333%; }

.offset-7 {
  margin-left: 58.33333%; }

.col-8 {
  width: 66.66667%; }

.offset-8 {
  margin-left: 66.66667%; }

.col-9 {
  width: 75%; }

.offset-9 {
  margin-left: 75%; }

.col-10 {
  width: 83.33333%; }

.offset-10 {
  margin-left: 83.33333%; }

.col-11 {
  width: 91.66667%; }

.offset-11 {
  margin-left: 91.66667%; }

.col-12 {
  width: 100%; }

.offset-12 {
  margin-left: 100%; }

@media (max-width: 1260px) {
  .col-lg-0 {
    width: 0%; }
  .offset-lg-0 {
    margin-left: 0%; } }

@media (max-width: 1260px) {
  .col-lg-1 {
    width: 8.33333%; }
  .offset-lg-1 {
    margin-left: 8.33333%; } }

@media (max-width: 1260px) {
  .col-lg-2 {
    width: 16.66667%; }
  .offset-lg-2 {
    margin-left: 16.66667%; } }

@media (max-width: 1260px) {
  .col-lg-3 {
    width: 25%; }
  .offset-lg-3 {
    margin-left: 25%; } }

@media (max-width: 1260px) {
  .col-lg-4 {
    width: 33.33333%; }
  .offset-lg-4 {
    margin-left: 33.33333%; } }

@media (max-width: 1260px) {
  .col-lg-5 {
    width: 41.66667%; }
  .offset-lg-5 {
    margin-left: 41.66667%; } }

@media (max-width: 1260px) {
  .col-lg-6 {
    width: 50%; }
  .offset-lg-6 {
    margin-left: 50%; } }

@media (max-width: 1260px) {
  .col-lg-7 {
    width: 58.33333%; }
  .offset-lg-7 {
    margin-left: 58.33333%; } }

@media (max-width: 1260px) {
  .col-lg-8 {
    width: 66.66667%; }
  .offset-lg-8 {
    margin-left: 66.66667%; } }

@media (max-width: 1260px) {
  .col-lg-9 {
    width: 75%; }
  .offset-lg-9 {
    margin-left: 75%; } }

@media (max-width: 1260px) {
  .col-lg-10 {
    width: 83.33333%; }
  .offset-lg-10 {
    margin-left: 83.33333%; } }

@media (max-width: 1260px) {
  .col-lg-11 {
    width: 91.66667%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

@media (max-width: 1260px) {
  .col-lg-12 {
    width: 100%; }
  .offset-lg-12 {
    margin-left: 100%; } }

@media (max-width: 1023px) {
  .col-md-0 {
    width: 0%; }
  .offset-md-0 {
    margin-left: 0%; } }

@media (max-width: 1023px) {
  .col-md-1 {
    width: 8.33333%; }
  .offset-md-1 {
    margin-left: 8.33333%; } }

@media (max-width: 1023px) {
  .col-md-2 {
    width: 16.66667%; }
  .offset-md-2 {
    margin-left: 16.66667%; } }

@media (max-width: 1023px) {
  .col-md-3 {
    width: 25%; }
  .offset-md-3 {
    margin-left: 25%; } }

@media (max-width: 1023px) {
  .col-md-4 {
    width: 33.33333%; }
  .offset-md-4 {
    margin-left: 33.33333%; } }

@media (max-width: 1023px) {
  .col-md-5 {
    width: 41.66667%; }
  .offset-md-5 {
    margin-left: 41.66667%; } }

@media (max-width: 1023px) {
  .col-md-6 {
    width: 50%; }
  .offset-md-6 {
    margin-left: 50%; } }

@media (max-width: 1023px) {
  .col-md-7 {
    width: 58.33333%; }
  .offset-md-7 {
    margin-left: 58.33333%; } }

@media (max-width: 1023px) {
  .col-md-8 {
    width: 66.66667%; }
  .offset-md-8 {
    margin-left: 66.66667%; } }

@media (max-width: 1023px) {
  .col-md-9 {
    width: 75%; }
  .offset-md-9 {
    margin-left: 75%; } }

@media (max-width: 1023px) {
  .col-md-10 {
    width: 83.33333%; }
  .offset-md-10 {
    margin-left: 83.33333%; } }

@media (max-width: 1023px) {
  .col-md-11 {
    width: 91.66667%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (max-width: 1023px) {
  .col-md-12 {
    width: 100%; }
  .offset-md-12 {
    margin-left: 100%; } }

@media (max-width: 670px) {
  .col-sm-0 {
    width: 0%; }
  .offset-sm-0 {
    margin-left: 0%; } }

@media (max-width: 670px) {
  .col-sm-1 {
    width: 8.33333%; }
  .offset-sm-1 {
    margin-left: 8.33333%; } }

@media (max-width: 670px) {
  .col-sm-2 {
    width: 16.66667%; }
  .offset-sm-2 {
    margin-left: 16.66667%; } }

@media (max-width: 670px) {
  .col-sm-3 {
    width: 25%; }
  .offset-sm-3 {
    margin-left: 25%; } }

@media (max-width: 670px) {
  .col-sm-4 {
    width: 33.33333%; }
  .offset-sm-4 {
    margin-left: 33.33333%; } }

@media (max-width: 670px) {
  .col-sm-5 {
    width: 41.66667%; }
  .offset-sm-5 {
    margin-left: 41.66667%; } }

@media (max-width: 670px) {
  .col-sm-6 {
    width: 50%; }
  .offset-sm-6 {
    margin-left: 50%; } }

@media (max-width: 670px) {
  .col-sm-7 {
    width: 58.33333%; }
  .offset-sm-7 {
    margin-left: 58.33333%; } }

@media (max-width: 670px) {
  .col-sm-8 {
    width: 66.66667%; }
  .offset-sm-8 {
    margin-left: 66.66667%; } }

@media (max-width: 670px) {
  .col-sm-9 {
    width: 75%; }
  .offset-sm-9 {
    margin-left: 75%; } }

@media (max-width: 670px) {
  .col-sm-10 {
    width: 83.33333%; }
  .offset-sm-10 {
    margin-left: 83.33333%; } }

@media (max-width: 670px) {
  .col-sm-11 {
    width: 91.66667%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (max-width: 670px) {
  .col-sm-12 {
    width: 100%; }
  .offset-sm-12 {
    margin-left: 100%; } }

@media (max-width: 480px) {
  .col-xs-0 {
    width: 0%; }
  .offset-xs-0 {
    margin-left: 0%; } }

@media (max-width: 480px) {
  .col-xs-1 {
    width: 8.33333%; }
  .offset-xs-1 {
    margin-left: 8.33333%; } }

@media (max-width: 480px) {
  .col-xs-2 {
    width: 16.66667%; }
  .offset-xs-2 {
    margin-left: 16.66667%; } }

@media (max-width: 480px) {
  .col-xs-3 {
    width: 25%; }
  .offset-xs-3 {
    margin-left: 25%; } }

@media (max-width: 480px) {
  .col-xs-4 {
    width: 33.33333%; }
  .offset-xs-4 {
    margin-left: 33.33333%; } }

@media (max-width: 480px) {
  .col-xs-5 {
    width: 41.66667%; }
  .offset-xs-5 {
    margin-left: 41.66667%; } }

@media (max-width: 480px) {
  .col-xs-6 {
    width: 50%; }
  .offset-xs-6 {
    margin-left: 50%; } }

@media (max-width: 480px) {
  .col-xs-7 {
    width: 58.33333%; }
  .offset-xs-7 {
    margin-left: 58.33333%; } }

@media (max-width: 480px) {
  .col-xs-8 {
    width: 66.66667%; }
  .offset-xs-8 {
    margin-left: 66.66667%; } }

@media (max-width: 480px) {
  .col-xs-9 {
    width: 75%; }
  .offset-xs-9 {
    margin-left: 75%; } }

@media (max-width: 480px) {
  .col-xs-10 {
    width: 83.33333%; }
  .offset-xs-10 {
    margin-left: 83.33333%; } }

@media (max-width: 480px) {
  .col-xs-11 {
    width: 91.66667%; }
  .offset-xs-11 {
    margin-left: 91.66667%; } }

@media (max-width: 480px) {
  .col-xs-12 {
    width: 100%; }
  .offset-xs-12 {
    margin-left: 100%; } }

.gutters > .col-0 {
  width: calc(0% - 20px); }

.gutters > .offset-0 {
  margin-left: calc(0% + 20px) !important; }

.gutters > .col-1 {
  width: calc(8.33333% - 20px); }

.gutters > .offset-1 {
  margin-left: calc(8.33333% + 20px) !important; }

.gutters > .col-2 {
  width: calc(16.66667% - 20px); }

.gutters > .offset-2 {
  margin-left: calc(16.66667% + 20px) !important; }

.gutters > .col-3 {
  width: calc(25% - 20px); }

.gutters > .offset-3 {
  margin-left: calc(25% + 20px) !important; }

.gutters > .col-4 {
  width: calc(33.33333% - 20px); }

.gutters > .offset-4 {
  margin-left: calc(33.33333% + 20px) !important; }

.gutters > .col-5 {
  width: calc(41.66667% - 20px); }

.gutters > .offset-5 {
  margin-left: calc(41.66667% + 20px) !important; }

.gutters > .col-6 {
  width: calc(50% - 20px); }

.gutters > .offset-6 {
  margin-left: calc(50% + 20px) !important; }

.gutters > .col-7 {
  width: calc(58.33333% - 20px); }

.gutters > .offset-7 {
  margin-left: calc(58.33333% + 20px) !important; }

.gutters > .col-8 {
  width: calc(66.66667% - 20px); }

.gutters > .offset-8 {
  margin-left: calc(66.66667% + 20px) !important; }

.gutters > .col-9 {
  width: calc(75% - 20px); }

.gutters > .offset-9 {
  margin-left: calc(75% + 20px) !important; }

.gutters > .col-10 {
  width: calc(83.33333% - 20px); }

.gutters > .offset-10 {
  margin-left: calc(83.33333% + 20px) !important; }

.gutters > .col-11 {
  width: calc(91.66667% - 20px); }

.gutters > .offset-11 {
  margin-left: calc(91.66667% + 20px) !important; }

.gutters > .col-12 {
  width: calc(100% - 20px); }

.gutters > .offset-12 {
  margin-left: calc(100% + 20px) !important; }

@media (max-width: 1260px) {
  .gutters > .col-lg-0 {
    width: calc(0% - 20px); }
  .gutters > .offset-lg-0 {
    margin-left: calc(0% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-1 {
    width: calc(8.33333% - 20px); }
  .gutters > .offset-lg-1 {
    margin-left: calc(8.33333% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-2 {
    width: calc(16.66667% - 20px); }
  .gutters > .offset-lg-2 {
    margin-left: calc(16.66667% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-3 {
    width: calc(25% - 20px); }
  .gutters > .offset-lg-3 {
    margin-left: calc(25% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-4 {
    width: calc(33.33333% - 20px); }
  .gutters > .offset-lg-4 {
    margin-left: calc(33.33333% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-5 {
    width: calc(41.66667% - 20px); }
  .gutters > .offset-lg-5 {
    margin-left: calc(41.66667% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-6 {
    width: calc(50% - 20px); }
  .gutters > .offset-lg-6 {
    margin-left: calc(50% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-7 {
    width: calc(58.33333% - 20px); }
  .gutters > .offset-lg-7 {
    margin-left: calc(58.33333% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-8 {
    width: calc(66.66667% - 20px); }
  .gutters > .offset-lg-8 {
    margin-left: calc(66.66667% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-9 {
    width: calc(75% - 20px); }
  .gutters > .offset-lg-9 {
    margin-left: calc(75% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-10 {
    width: calc(83.33333% - 20px); }
  .gutters > .offset-lg-10 {
    margin-left: calc(83.33333% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-11 {
    width: calc(91.66667% - 20px); }
  .gutters > .offset-lg-11 {
    margin-left: calc(91.66667% + 20px) !important; } }

@media (max-width: 1260px) {
  .gutters > .col-lg-12 {
    width: calc(100% - 20px); }
  .gutters > .offset-lg-12 {
    margin-left: calc(100% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-0 {
    width: calc(0% - 20px); }
  .gutters > .offset-md-0 {
    margin-left: calc(0% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-1 {
    width: calc(8.33333% - 20px); }
  .gutters > .offset-md-1 {
    margin-left: calc(8.33333% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-2 {
    width: calc(16.66667% - 20px); }
  .gutters > .offset-md-2 {
    margin-left: calc(16.66667% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-3 {
    width: calc(25% - 20px); }
  .gutters > .offset-md-3 {
    margin-left: calc(25% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-4 {
    width: calc(33.33333% - 20px); }
  .gutters > .offset-md-4 {
    margin-left: calc(33.33333% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-5 {
    width: calc(41.66667% - 20px); }
  .gutters > .offset-md-5 {
    margin-left: calc(41.66667% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-6 {
    width: calc(50% - 20px); }
  .gutters > .offset-md-6 {
    margin-left: calc(50% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-7 {
    width: calc(58.33333% - 20px); }
  .gutters > .offset-md-7 {
    margin-left: calc(58.33333% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-8 {
    width: calc(66.66667% - 20px); }
  .gutters > .offset-md-8 {
    margin-left: calc(66.66667% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-9 {
    width: calc(75% - 20px); }
  .gutters > .offset-md-9 {
    margin-left: calc(75% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-10 {
    width: calc(83.33333% - 20px); }
  .gutters > .offset-md-10 {
    margin-left: calc(83.33333% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-11 {
    width: calc(91.66667% - 20px); }
  .gutters > .offset-md-11 {
    margin-left: calc(91.66667% + 20px) !important; } }

@media (max-width: 1023px) {
  .gutters > .col-md-12 {
    width: calc(100% - 20px); }
  .gutters > .offset-md-12 {
    margin-left: calc(100% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-0 {
    width: calc(0% - 20px); }
  .gutters > .offset-sm-0 {
    margin-left: calc(0% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-1 {
    width: calc(8.33333% - 20px); }
  .gutters > .offset-sm-1 {
    margin-left: calc(8.33333% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-2 {
    width: calc(16.66667% - 20px); }
  .gutters > .offset-sm-2 {
    margin-left: calc(16.66667% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-3 {
    width: calc(25% - 20px); }
  .gutters > .offset-sm-3 {
    margin-left: calc(25% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-4 {
    width: calc(33.33333% - 20px); }
  .gutters > .offset-sm-4 {
    margin-left: calc(33.33333% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-5 {
    width: calc(41.66667% - 20px); }
  .gutters > .offset-sm-5 {
    margin-left: calc(41.66667% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-6 {
    width: calc(50% - 20px); }
  .gutters > .offset-sm-6 {
    margin-left: calc(50% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-7 {
    width: calc(58.33333% - 20px); }
  .gutters > .offset-sm-7 {
    margin-left: calc(58.33333% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-8 {
    width: calc(66.66667% - 20px); }
  .gutters > .offset-sm-8 {
    margin-left: calc(66.66667% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-9 {
    width: calc(75% - 20px); }
  .gutters > .offset-sm-9 {
    margin-left: calc(75% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-10 {
    width: calc(83.33333% - 20px); }
  .gutters > .offset-sm-10 {
    margin-left: calc(83.33333% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-11 {
    width: calc(91.66667% - 20px); }
  .gutters > .offset-sm-11 {
    margin-left: calc(91.66667% + 20px) !important; } }

@media (max-width: 670px) {
  .gutters > .col-sm-12 {
    width: calc(100% - 20px); }
  .gutters > .offset-sm-12 {
    margin-left: calc(100% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-0 {
    width: calc(0% - 20px); }
  .gutters > .offset-xs-0 {
    margin-left: calc(0% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-1 {
    width: calc(8.33333% - 20px); }
  .gutters > .offset-xs-1 {
    margin-left: calc(8.33333% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-2 {
    width: calc(16.66667% - 20px); }
  .gutters > .offset-xs-2 {
    margin-left: calc(16.66667% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-3 {
    width: calc(25% - 20px); }
  .gutters > .offset-xs-3 {
    margin-left: calc(25% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-4 {
    width: calc(33.33333% - 20px); }
  .gutters > .offset-xs-4 {
    margin-left: calc(33.33333% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-5 {
    width: calc(41.66667% - 20px); }
  .gutters > .offset-xs-5 {
    margin-left: calc(41.66667% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-6 {
    width: calc(50% - 20px); }
  .gutters > .offset-xs-6 {
    margin-left: calc(50% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-7 {
    width: calc(58.33333% - 20px); }
  .gutters > .offset-xs-7 {
    margin-left: calc(58.33333% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-8 {
    width: calc(66.66667% - 20px); }
  .gutters > .offset-xs-8 {
    margin-left: calc(66.66667% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-9 {
    width: calc(75% - 20px); }
  .gutters > .offset-xs-9 {
    margin-left: calc(75% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-10 {
    width: calc(83.33333% - 20px); }
  .gutters > .offset-xs-10 {
    margin-left: calc(83.33333% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-11 {
    width: calc(91.66667% - 20px); }
  .gutters > .offset-xs-11 {
    margin-left: calc(91.66667% + 20px) !important; } }

@media (max-width: 480px) {
  .gutters > .col-xs-12 {
    width: calc(100% - 20px); }
  .gutters > .offset-xs-12 {
    margin-left: calc(100% + 20px) !important; } }

@media (max-width: 670px) {
  .row:not(.keep-row) [class^='offset-'],
  .row:not(.keep-row) [class*=' offset-'] {
    margin-left: 0; } }

.first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1; }

.last {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1; }

@media (max-width: 670px) {
  .row:not(.keep-row) > .col {
    margin-left: 0;
    width: 100%; }
  .row:not(.keep-row).gutters > .col {
    margin-bottom: 20px; }
  .first-sm {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1; }
  .last-sm {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1; } }

.gutters .column.push-left,
.push-left {
  margin-right: auto; }

.gutters .column.push-right,
.push-right {
  margin-left: auto; }

.gutters .column.push-center,
.push-center {
  margin-left: auto;
  margin-right: auto; }

.gutters .column.push-middle,
.push-middle {
  margin-top: auto;
  margin-bottom: auto; }

.push-bottom {
  margin-top: auto; }

@media (max-width: 670px) {
  .gutters .column.push-left-sm,
  .push-left-sm {
    margin-left: 0; }
  .gutters .column.push-center-sm,
  .push-center-sm {
    margin-left: auto;
    margin-right: auto; }
  .push-top-sm {
    margin-top: 0; } }

.align-middle {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.align-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.align-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.align-bottom {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }

.align-top {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }

@media (max-width: 670px) {
  .align-left-sm {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start; } }

.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%; }

/* ///////////// */
/* GLOBAL STYLES */
/* ///////////// */
/**
  Generates all available font-sizes as element and class
 */
.h0 {
  font-size: 72px;
  font-size: 4rem;
  line-height: 82px;
  line-height: 4.55556rem; }

.h1 {
  font-size: 54px;
  font-size: 3rem;
  line-height: 62px;
  line-height: 3.44444rem; }

.h2 {
  font-size: 36px;
  font-size: 2rem;
  line-height: 42px;
  line-height: 2.33333rem; }

.h3 {
  font-size: 24px;
  font-size: 1.33333rem;
  line-height: 32px;
  line-height: 1.77778rem; }

.h4 {
  font-size: 18px;
  font-size: 1rem;
  line-height: 24px;
  line-height: 1.33333rem; }

.h5 {
  font-size: 16px;
  font-size: 0.88889rem;
  line-height: 23px;
  line-height: 1.27778rem; }

.h6 {
  font-size: 16px;
  font-size: 0.88889rem;
  line-height: 23px;
  line-height: 1.27778rem; }

.copy {
  font-size: 18px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.55556rem; }

.meta {
  font-size: 16px;
  font-size: 0.88889rem;
  line-height: 22px;
  line-height: 1.22222rem; }

/**
  Sets the Font-Family for all headings inside a selector
 */
/**
  Sets the Font-Family for all buttons inside a selector
 */
a {
  color: #00f; }
  a:hover {
    color: #6666ff; }

strong, b {
  font-weight: 700; }

i, em {
  font-style: italic; }

.nostyle {
  font-size: inherit;
  font-weight: inherit;
  color: inherit; }

a.clear-links,
.clear-links a {
  text-decoration: none;
  color: inherit; }
  a.clear-links:hover,
  .clear-links a:hover {
    color: inherit;
    text-decoration: none; }

.p, .rte-content p, .icon-block__content p {
  font-size: 14px;
  font-size: 0.77778rem;
  line-height: 21px;
  line-height: 1.16667rem;
  letter-spacing: 0.1px; }
  @media (max-width: 670px) {
    .p, .rte-content p, .icon-block__content p {
      font-size: 12px;
      font-size: 0.66667rem;
      line-height: 18px;
      line-height: 1rem;
      letter-spacing: 0.1px; } }
  .p + .p, .rte-content p + .p, .icon-block__content p + .p, .rte-content .p + p, .rte-content p + p, .icon-block__content .p + p, .icon-block__content p + p {
    margin-top: 20px; }

.button, input[type="submit"] {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 18px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.55556rem;
  color: #fff;
  text-decoration: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 11px 30px 12px 30px;
  background: #00f;
  cursor: pointer; }
  @media (max-width: 1260px) {
    .button, input[type="submit"] {
      font-size: 18px;
      font-size: 1rem;
      line-height: 28px;
      line-height: 1.55556rem; } }
  @media (max-width: 1023px) {
    .button, input[type="submit"] {
      font-size: 18px;
      font-size: 1rem;
      line-height: 27px;
      line-height: 1.5rem; } }
  @media (max-width: 670px) {
    .button, input[type="submit"] {
      font-size: 17px;
      font-size: 0.94444rem;
      line-height: 27px;
      line-height: 1.5rem; } }
  @media (max-width: 480px) {
    .button, input[type="submit"] {
      font-size: 16px;
      font-size: 0.88889rem;
      line-height: 27px;
      line-height: 1.5rem; } }
  .button:hover, input:hover[type="submit"] {
    color: #fff;
    background: #6666ff; }
  .button.disabled, input.disabled[type="submit"], .button:disabled, input:disabled[type="submit"] {
    background: gray; }
  .button.button--ghost, input.button--ghost[type="submit"] {
    background: transparent;
    border: 1px solid #00f;
    color: #00f;
    padding: 10px 29px 11px 29px; }
    @media (max-width: 670px) {
      .button.button--ghost, input.button--ghost[type="submit"] {
        padding: 11px 29px 10px 29px; } }
    .button.button--ghost:hover, input.button--ghost:hover[type="submit"] {
      color: #fff;
      background: #00f; }
    .button.button--ghost.button--small, input.button--ghost.button--small[type="submit"] {
      padding: 7px 24px 7px 24px; }
  .button.button--small, input.button--small[type="submit"] {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 22px;
    line-height: 1.22222rem;
    padding: 8px 25px 8px 25px; }
    @media (max-width: 1260px) {
      .button.button--small, input.button--small[type="submit"] {
        font-size: 16px;
        font-size: 0.88889rem;
        line-height: 22px;
        line-height: 1.22222rem; } }
    @media (max-width: 1023px) {
      .button.button--small, input.button--small[type="submit"] {
        font-size: 16px;
        font-size: 0.88889rem;
        line-height: 26px;
        line-height: 1.44444rem; } }
    @media (max-width: 670px) {
      .button.button--small, input.button--small[type="submit"] {
        font-size: 16px;
        font-size: 0.88889rem;
        line-height: 26px;
        line-height: 1.44444rem; } }
    @media (max-width: 480px) {
      .button.button--small, input.button--small[type="submit"] {
        font-size: 14px;
        font-size: 0.77778rem;
        line-height: 24px;
        line-height: 1.33333rem; } }
  .button .icon, input[type="submit"] .icon {
    position: relative;
    margin-top: -4px;
    width: 24px;
    height: 24px; }
    .button .icon + span, input[type="submit"] .icon + span {
      margin-left: 15px; }
  .button span + .icon, input[type="submit"] span + .icon {
    margin-left: 15px; }

/**
  HELPER CLASSES
 */
.margin__bottom--none {
  margin-bottom: 0 !important; }

.margin__bottom--xsmall {
  margin-bottom: 0.55556rem !important; }

.margin__bottom--small,
.rte-content p,
.icon-block__content p,
.rte-content ul,
.icon-block__content ul,
.rte-content ol,
.icon-block__content ol,
.banner__title {
  margin-bottom: 1.11111rem !important; }

.margin__bottom--medium {
  margin-bottom: 2.22222rem !important; }

.margin__bottom--large {
  margin-bottom: 5rem !important; }
  @media (max-width: 1023px) {
    .margin__bottom--large {
      margin-bottom: 3.33333rem !important; } }

.margin__bottom--xlarge {
  margin-bottom: 6.66667rem !important; }
  @media (max-width: 1023px) {
    .margin__bottom--xlarge {
      margin-bottom: 5rem !important; } }

.text--right {
  text-align: right; }

.text--centered {
  text-align: center; }

.text--left {
  text-align: left; }

.text--justify {
  text-align: justify; }

.text--twocol {
  -webkit-column-count: 2;
     -moz-column-count: 2;
          column-count: 2; }
  @media (max-width: 480px) {
    .text--twocol {
      -webkit-column-count: 1;
         -moz-column-count: 1;
              column-count: 1; } }

.ttu--none {
  text-transform: none !important; }

.color--white {
  color: #fff; }

.color--black {
  color: #000; }

.font--headline {
  font-family: "Futura Condensed", Arial, sans-serif !important; }

.font--text {
  font-family: "Good Sans", Arial, sans-serif !important; }

.left {
  float: left; }

.right {
  float: right; }

.half {
  width: 50%; }

.third {
  width: calc(100% / 3); }

.two-third {
  width: calc(100% / 3 * 2); }

.w--10 {
  width: 10%; }

.w--20 {
  width: 20%; }

.w--25 {
  width: 25%; }

.w--30 {
  width: 30%; }

.w--40 {
  width: 40%; }

.w--45 {
  width: 45%; }

.w--50 {
  width: 50%; }

.w--55 {
  width: 55%; }

.w--60 {
  width: 60%; }

.w--70 {
  width: 70%; }

.w--75 {
  width: 75%; }

.w--80 {
  width: 80%; }

.w--90 {
  width: 90%; }

@media (max-width: 480px) {
  .hide--phone {
    display: none !important; } }

@media (max-width: 1023px) {
  .hide--tablet {
    display: none !important; } }

@media (max-width: 1260px) {
  .hide--lg {
    display: none !important; } }

@media (min-width: 1023px) and (max-width: 1260px) {
  .hide--lg-only {
    display: none !important; } }

@media (max-width: 1023px) {
  .hide--md {
    display: none !important; } }

@media (min-width: 670px) and (max-width: 1023px) {
  .hide--md-only {
    display: none !important; } }

@media (max-width: 670px) {
  .hide--sm {
    display: none !important; } }

@media (min-width: 480px) and (max-width: 670px) {
  .hide--sm-only {
    display: none !important; } }

@media (max-width: 480px) {
  .hide--xs {
    display: none !important; } }

@media (max-width: 330px) {
  .hide--xxs {
    display: none !important; } }

/* 
  Elemente auf denen die Schrift geglättet werden muss,
  können mit `@extend .fs;` in ihrer Klasse erweitert werden.
*/
.fs {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0); }
  *:after, *:before {
    -webkit-box-sizing: inherit;
            box-sizing: inherit; }

::-moz-focus-inner {
  bottom: 0;
  padding: 0; }

html, body {
  position: relative;
  height: 100%; }

html {
  font-size: 18px;
  overflow-x: hidden; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  font-display: swap;
  font-family: "Good Sans", Arial, sans-serif; }

section,
.section {
  position: relative; }

img, svg,
video, audio,
object {
  max-width: 100%; }

img, video {
  height: auto; }

svg {
  max-height: 100%; }

iframe {
  border: none; }

/**
  Klasse .clear für manuelle DOM-Clearfixes
  und .clearfix als ergänzende Klasse mit :after-Clearfix
*/
.clear {
  clear: both; }
  .clearfix:after {
    content: "";
    display: table;
    clear: both; }

.wow {
  visibility: hidden; }

.wrapper {
  width: 100%;
  overflow: hidden; }

.inner, .outer {
  margin: 0 auto; }

:root {
  --inner-width: calc(100vw - 80px); }
  @media (max-width: 1023px) {
    :root {
      --inner-width: calc(100vw - 40px); } }
  @media (max-width: 670px) {
    :root {
      --inner-width: calc(100vw - 40px); } }

.inner {
  max-width: var(--inner-width); }

.outer {
  max-width: 1800px; }

.inner-but-full {
  margin: 0 calc(-50vw + 50%); }

hr {
  border-color: #4d4d4d;
  border-style: solid;
  border-width: 0 0 1px 0; }

.page-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(255, 255, 255, 0.8);
  z-index: 14;
  cursor: pointer;
  pointer-events: none;
  opacity: 0; }

/*

  // Define Icon by .icon--NAME class
  .icon {
    &__close {
      @include icon( 'close' );

      &-red {
        @include icon( 'close' , 'red' );
      }
    }
  }

  // Define Icon-Size via .i--XX class
  .i {
    &--16 {
      width: 16px;
      height: 16px;
    }
    &--24 {
      width: 24px;
      height: 24px;
    }
    &--32 {
      width: 32px;
      height: 32px;
    }
  }

*/
.page__title, .rte-content h1, .icon-block__content h1 {
  font-family: "Futura Condensed", Arial, sans-serif;
  font-size: 80px;
  font-size: 4.44444rem;
  line-height: 85px;
  line-height: 4.72222rem;
  letter-spacing: 1.33px;
  font-style: italic;
  text-transform: uppercase; }
  @media (max-width: 1023px) {
    .page__title, .rte-content h1, .icon-block__content h1 {
      font-size: 72px;
      font-size: 4rem;
      line-height: 78px;
      line-height: 4.33333rem;
      letter-spacing: 1px; } }
  @media (max-width: 670px) {
    .page__title, .rte-content h1, .icon-block__content h1 {
      font-size: 52px;
      font-size: 2.88889rem;
      line-height: 64px;
      line-height: 3.55556rem;
      letter-spacing: 1px; } }

.section__title, .rte-content h3, .icon-block__content h3 {
  font-weight: 500;
  font-size: 32px;
  font-size: 1.77778rem;
  line-height: 46px;
  line-height: 2.55556rem;
  letter-spacing: 0px;
  text-transform: uppercase; }
  @media (max-width: 1023px) {
    .section__title, .rte-content h3, .icon-block__content h3 {
      font-size: 26px;
      font-size: 1.44444rem;
      line-height: 36px;
      line-height: 2rem;
      letter-spacing: 0px; } }
  @media (max-width: 670px) {
    .section__title, .rte-content h3, .icon-block__content h3 {
      font-size: 20px;
      font-size: 1.11111rem;
      line-height: 32px;
      line-height: 1.77778rem;
      letter-spacing: 0px; } }

.list--rect, .icon-block__content ul {
  list-style: none !important;
  margin-left: 0 !important; }
  .list--rect li, .icon-block__content ul li {
    position: relative; }
    .list--rect li:before, .icon-block__content ul li:before {
      content: '';
      display: block;
      position: absolute;
      top: 5px;
      left: -10px;
      width: 2px;
      height: 12px;
      background: var(--block-accent-color);
      -webkit-transform: skewX(-20deg);
              transform: skewX(-20deg);
      z-index: -1; }
      @media (max-width: 1023px) {
        .list--rect li:before, .icon-block__content ul li:before {
          top: 4px;
          height: 10px; } }

.rte-content, .icon-block__content {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale; }
  @media (max-width: 1023px) {
    .rte-content, .icon-block__content {
      font-size: .9rem; } }
  @media (max-width: 670px) {
    .rte-content, .icon-block__content {
      font-size: .8rem; } }
  .rte-content h1, .icon-block__content h1 {
    text-transform: uppercase; }
  .rte-content h1, .icon-block__content h1, .rte-content h2, .icon-block__content h2, .rte-content h3, .icon-block__content h3, .rte-content h4, .icon-block__content h4, .rte-content h5, .icon-block__content h5, .rte-content h6, .icon-block__content h6 {
    margin-bottom: .8em; }
  .rte-content p + h1, .icon-block__content p + h1, .rte-content p + h2, .icon-block__content p + h2, .rte-content p + h3, .icon-block__content p + h3, .rte-content p + h4, .icon-block__content p + h4, .rte-content p + h5, .icon-block__content p + h5, .rte-content p + h6, .icon-block__content p + h6, .rte-content ul + h1, .icon-block__content ul + h1, .rte-content ul + h2, .icon-block__content ul + h2, .rte-content ul + h3, .icon-block__content ul + h3, .rte-content ul + h4, .icon-block__content ul + h4, .rte-content ul + h5, .icon-block__content ul + h5, .rte-content ul + h6, .icon-block__content ul + h6, .rte-content ol + h1, .icon-block__content ol + h1, .rte-content ol + h2, .icon-block__content ol + h2, .rte-content ol + h3, .icon-block__content ol + h3, .rte-content ol + h4, .icon-block__content ol + h4, .rte-content ol + h5, .icon-block__content ol + h5, .rte-content ol + h6, .icon-block__content ol + h6 {
    margin-top: 2em; }
  .rte-content ul, .icon-block__content ul, .rte-content ol, .icon-block__content ol {
    padding-left: 1em; }
    .rte-content ul li, .icon-block__content ul li, .rte-content ol li, .icon-block__content ol li {
      margin-bottom: .5em; }
  .rte-content ul, .icon-block__content ul {
    list-style: disc; }
  .rte-content ol, .icon-block__content ol {
    list-style: decimal-leading-zero;
    padding-left: 1.7em; }
  .rte-content small, .icon-block__content small {
    font-size: 18px;
    font-size: 1rem;
    line-height: 28px;
    line-height: 1.55556rem; }
    @media (max-width: 1260px) {
      .rte-content small, .icon-block__content small {
        font-size: 18px;
        font-size: 1rem;
        line-height: 28px;
        line-height: 1.55556rem; } }
    @media (max-width: 1023px) {
      .rte-content small, .icon-block__content small {
        font-size: 18px;
        font-size: 1rem;
        line-height: 27px;
        line-height: 1.5rem; } }
    @media (max-width: 670px) {
      .rte-content small, .icon-block__content small {
        font-size: 17px;
        font-size: 0.94444rem;
        line-height: 27px;
        line-height: 1.5rem; } }
    @media (max-width: 480px) {
      .rte-content small, .icon-block__content small {
        font-size: 16px;
        font-size: 0.88889rem;
        line-height: 27px;
        line-height: 1.5rem; } }

/* //////////////////// */
/* HEADER / MOBILE MENU */
/* //////////////////// */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #fff;
  -webkit-transform: translateY(-110%);
          transform: translateY(-110%);
  -webkit-transition: 0.23s cubic-bezier(0.6, 0.04, 0.98, 0.335) -webkit-transform;
  transition: 0.23s cubic-bezier(0.6, 0.04, 0.98, 0.335) -webkit-transform;
  transition: 0.23s cubic-bezier(0.6, 0.04, 0.98, 0.335) transform;
  transition: 0.23s cubic-bezier(0.6, 0.04, 0.98, 0.335) transform, 0.23s cubic-bezier(0.6, 0.04, 0.98, 0.335) -webkit-transform; }
  .site-header.site-header--scrolled, .site-header.site-header--visible {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition: 0.23s cubic-bezier(0.075, 0.82, 0.165, 1) -webkit-transform;
    transition: 0.23s cubic-bezier(0.075, 0.82, 0.165, 1) -webkit-transform;
    transition: 0.23s cubic-bezier(0.075, 0.82, 0.165, 1) transform;
    transition: 0.23s cubic-bezier(0.075, 0.82, 0.165, 1) transform, 0.23s cubic-bezier(0.075, 0.82, 0.165, 1) -webkit-transform; }
  @media (max-width: 670px) {
    .site-header__logo-col {
      z-index: 11; } }
  .site-header__nav-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    .site-header__nav-col li {
      padding-top: 10px;
      padding-bottom: 10px; }
      @media (max-width: 1023px) {
        .site-header__nav-col li a[href] {
          padding-left: 10px;
          padding-right: 10px;
          font-size: 10px;
          font-size: 0.55556rem; } }
      @media (max-width: 670px) {
        .site-header__nav-col li a[href] {
          font-size: 24px;
          font-size: 1.33333rem;
          padding-left: 20px;
          padding-right: 20px;
          text-align: right; } }
      .site-header__nav-col li:hover .btt-icon {
        color: #fff; }
  .site-header__hamburger {
    display: none !important; }
    @media (max-width: 670px) {
      .site-header__hamburger {
        display: block !important;
        z-index: 11; } }
  @media (max-width: 670px) {
    .site-header__site-nav {
      display: none;
      position: fixed !important;
      top: 0;
      right: 0;
      width: 100vw;
      height: 100vh;
      max-width: none !important;
      overflow-y: auto;
      -webkit-transform: translateY(-110%) scaleY(0);
              transform: translateY(-110%) scaleY(0);
      pointer-events: none;
      padding-top: 40px;
      -webkit-box-orient: vertical !important;
      -webkit-box-direction: normal !important;
          -ms-flex-flow: column nowrap !important;
              flex-flow: column nowrap !important;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      will-change: transform;
      -webkit-transition: 0.23s cubic-bezier(0.6, 0.04, 0.98, 0.335) -webkit-transform;
      transition: 0.23s cubic-bezier(0.6, 0.04, 0.98, 0.335) -webkit-transform;
      transition: 0.23s cubic-bezier(0.6, 0.04, 0.98, 0.335) transform;
      transition: 0.23s cubic-bezier(0.6, 0.04, 0.98, 0.335) transform, 0.23s cubic-bezier(0.6, 0.04, 0.98, 0.335) -webkit-transform; }
      .menu-open .site-header__site-nav {
        -webkit-transform: translateY(0) scaleY(1);
                transform: translateY(0) scaleY(1);
        pointer-events: auto;
        z-index: 9;
        -webkit-transition: 0.23s cubic-bezier(0.075, 0.82, 0.165, 1) -webkit-transform;
        transition: 0.23s cubic-bezier(0.075, 0.82, 0.165, 1) -webkit-transform;
        transition: 0.23s cubic-bezier(0.075, 0.82, 0.165, 1) transform;
        transition: 0.23s cubic-bezier(0.075, 0.82, 0.165, 1) transform, 0.23s cubic-bezier(0.075, 0.82, 0.165, 1) -webkit-transform; } }
  @media (max-width: 670px) and (max-width: 480px) {
    .site-header__site-nav li {
      width: 100% !important; } }

.logo__type {
  font-family: "Futura Condensed", Arial, sans-serif;
  font-style: italic;
  text-transform: uppercase; }
  @media (max-width: 1023px) {
    .logo__type {
      font-size: 16px;
      font-size: 0.88889rem; } }

.btt-icon {
  width: 16px;
  display: block;
  color: #000; }
  @media (max-width: 1023px) {
    .btt-icon {
      width: 12px; } }
  .btt-icon svg {
    position: relative;
    top: -1px;
    width: 100%; }

.site-nav {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  background: #fff; }
  @media (max-width: 480px) {
    .site-nav {
      max-width: calc(100vw - 60px);
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      text-align: center; } }
  .site-nav li {
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 12px;
    font-size: 0.66667rem;
    line-height: 17px;
    line-height: 0.94444rem;
    overflow: hidden; }
    @media (max-width: 480px) {
      .site-nav li {
        width: 50%;
        white-space: nowrap; } }
    .site-nav li:after {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
      background: var(--li-accent-color);
      will-change: transform;
      -webkit-transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) -webkit-transform;
      transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) -webkit-transform;
      transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) transform;
      transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) transform, 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) -webkit-transform;
      z-index: 0; }
    .site-nav li:hover:after {
      -webkit-transform: translateY(0);
              transform: translateY(0); }
    .site-nav li:hover a {
      color: #fff; }
    .site-nav li a {
      position: relative;
      display: block;
      padding: 10px 27px;
      z-index: 1; }

.hamburger {
  display: block;
  width: 25px;
  padding: 15px 0;
  margin-bottom: -3px; }
  .hamburger .line {
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    margin-bottom: 3px;
    will-change: transform;
    -webkit-transition: 0.16s cubic-bezier(0.785, 0.135, 0.15, 0.86) -webkit-transform;
    transition: 0.16s cubic-bezier(0.785, 0.135, 0.15, 0.86) -webkit-transform;
    transition: 0.16s cubic-bezier(0.785, 0.135, 0.15, 0.86) transform;
    transition: 0.16s cubic-bezier(0.785, 0.135, 0.15, 0.86) transform, 0.16s cubic-bezier(0.785, 0.135, 0.15, 0.86) -webkit-transform; }
  .menu-open .hamburger .line:nth-child(1) {
    -webkit-transform: translate(0, 6px) rotate(45deg);
            transform: translate(0, 6px) rotate(45deg); }
  .menu-open .hamburger .line:nth-child(2) {
    -webkit-transform: scale(0);
            transform: scale(0); }
  .menu-open .hamburger .line:nth-child(3) {
    -webkit-transform: translate(0, -6px) rotate(-45deg);
            transform: translate(0, -6px) rotate(-45deg); }

/* /////// */
/* FOOTER */
/* /////// */
.site-footer {
  padding: 60px 0 40px; }

/* //////////////////////// */
/* MODULE / MODULAR CONTENT */
/* //////////////////////// */
/**
    Reset Inputs
 */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="phone"],
input[type="submit"],
input[type="checkbox"],
input[type="radio"],
textarea,
select {
  border: none;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  font-family: "Good Sans", Arial, sans-serif;
  font-size: 1rem;
  color: #000;
  padding: .5rem; }

label {
  display: block;
  font-family: "Good Sans", Arial, sans-serif;
  -webkit-appearance: none; }

/**
     Style Inputs
  */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="phone"],
textarea,
select {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  background: #fff;
  border: 1px solid #4d4d4d;
  font-size: 18px;
  font-size: 1rem;
  line-height: 28px;
  line-height: 1.55556rem;
  padding: 10px 20px;
  border-radius: 4px; }
  @media (max-width: 1260px) {
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="number"],
    input[type="phone"],
    textarea,
    select {
      font-size: 18px;
      font-size: 1rem;
      line-height: 28px;
      line-height: 1.55556rem; } }
  @media (max-width: 1023px) {
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="number"],
    input[type="phone"],
    textarea,
    select {
      font-size: 18px;
      font-size: 1rem;
      line-height: 27px;
      line-height: 1.5rem; } }
  @media (max-width: 670px) {
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="number"],
    input[type="phone"],
    textarea,
    select {
      font-size: 17px;
      font-size: 0.94444rem;
      line-height: 27px;
      line-height: 1.5rem; } }
  @media (max-width: 480px) {
    input[type="text"],
    input[type="password"],
    input[type="email"],
    input[type="number"],
    input[type="phone"],
    textarea,
    select {
      font-size: 16px;
      font-size: 0.88889rem;
      line-height: 27px;
      line-height: 1.5rem; } }
  input[type="text"]::-webkit-input-placeholder,
  input[type="password"]::-webkit-input-placeholder,
  input[type="email"]::-webkit-input-placeholder,
  input[type="number"]::-webkit-input-placeholder,
  input[type="phone"]::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder,
  select::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #4d4d4d; }
  input[type="text"]::-moz-placeholder,
  input[type="password"]::-moz-placeholder,
  input[type="email"]::-moz-placeholder,
  input[type="number"]::-moz-placeholder,
  input[type="phone"]::-moz-placeholder,
  textarea::-moz-placeholder,
  select::-moz-placeholder {
    /* Firefox 19+ */
    color: #4d4d4d; }
  input[type="text"]:-ms-input-placeholder,
  input[type="password"]:-ms-input-placeholder,
  input[type="email"]:-ms-input-placeholder,
  input[type="number"]:-ms-input-placeholder,
  input[type="phone"]:-ms-input-placeholder,
  textarea:-ms-input-placeholder,
  select:-ms-input-placeholder {
    /* IE 10+ */
    color: #4d4d4d; }
  input[type="text"]:-moz-placeholder,
  input[type="password"]:-moz-placeholder,
  input[type="email"]:-moz-placeholder,
  input[type="number"]:-moz-placeholder,
  input[type="phone"]:-moz-placeholder,
  textarea:-moz-placeholder,
  select:-moz-placeholder {
    /* Firefox 18- */
    color: #4d4d4d; }

.input-group {
  position: relative; }
  .input-group .input {
    width: 100%; }
    .input-group .input + label {
      font-size: 16px;
      font-size: 0.88889rem;
      line-height: 22px;
      line-height: 1.22222rem;
      position: absolute;
      top: 50%;
      left: 10px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      color: #4d4d4d;
      padding: 0 15px;
      background: #fff;
      will-change: top, color;
      -webkit-transition: 0.18s cubic-bezier(0.785, 0.135, 0.15, 0.86) all;
      transition: 0.18s cubic-bezier(0.785, 0.135, 0.15, 0.86) all;
      cursor: text; }
      @media (max-width: 1260px) {
        .input-group .input + label {
          font-size: 16px;
          font-size: 0.88889rem;
          line-height: 22px;
          line-height: 1.22222rem; } }
      @media (max-width: 1023px) {
        .input-group .input + label {
          font-size: 16px;
          font-size: 0.88889rem;
          line-height: 26px;
          line-height: 1.44444rem; } }
      @media (max-width: 670px) {
        .input-group .input + label {
          font-size: 16px;
          font-size: 0.88889rem;
          line-height: 26px;
          line-height: 1.44444rem; } }
      @media (max-width: 480px) {
        .input-group .input + label {
          font-size: 14px;
          font-size: 0.77778rem;
          line-height: 24px;
          line-height: 1.33333rem; } }
  .input-group.focus-within .input + label {
    top: 0;
    color: #000; }

/**
  Rendert einen Div mit gleichbleibendem Seitenverhältnis
 */
.ar--16-9 {
  position: relative;
  width: 100%; }
  .ar--16-9:after {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    padding-top: 56.25%;
    pointer-events: none; }

.ar--4-3 {
  position: relative;
  width: 100%; }
  .ar--4-3:after {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    padding-top: 75%;
    pointer-events: none; }

.ar--21-9 {
  position: relative;
  width: 100%; }
  .ar--21-9:after {
    content: '';
    position: relative;
    display: block;
    width: 100%;
    padding-top: 42.8571%;
    pointer-events: none; }

.ar__content {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%; }
  .ar__content iframe, .ar__content video {
    display: block;
    width: 100%;
    height: 100%; }

[class^="spacer"] {
  display: block;
  width: 100%; }

.spacer--xsmall {
  height: 0.55556rem !important; }

.spacer--small {
  height: 1.11111rem !important; }

.spacer--medium {
  height: 2.22222rem !important; }

.spacer--large {
  height: 5rem !important; }
  @media (max-width: 1023px) {
    .spacer--large {
      height: 3.33333rem !important; } }

.spacer--xlarge {
  height: 6.66667rem !important; }
  @media (max-width: 1023px) {
    .spacer--xlarge {
      height: 5rem !important; } }

.cookie-banner {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 11;
  width: 410px;
  padding: 1.11111rem 1.66667rem 0.55556rem;
  background: #fff;
  color: #2c2c2c;
  will-change: transform, opacity;
  -webkit-transition: 0.56s cubic-bezier(0.86, 0, 0.07, 1) all;
  transition: 0.56s cubic-bezier(0.86, 0, 0.07, 1) all; }
  @media (max-width: 1023px) {
    .cookie-banner {
      width: 340px; } }
  @media (max-width: 670px) {
    .cookie-banner {
      width: calc(100% - 40px);
      padding-left: 1.11111rem;
      padding-right: 1.11111rem;
      right: 20px;
      bottom: 20px; } }
  .cookie-banner--hidden {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0;
    pointer-events: none; }
  .cookie-banner__text p {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 22px;
    line-height: 1.22222rem;
    letter-spacing: .5px; }
    @media (max-width: 1260px) {
      .cookie-banner__text p {
        font-size: 16px;
        font-size: 0.88889rem;
        line-height: 22px;
        line-height: 1.22222rem; } }
    @media (max-width: 1023px) {
      .cookie-banner__text p {
        font-size: 16px;
        font-size: 0.88889rem;
        line-height: 26px;
        line-height: 1.44444rem; } }
    @media (max-width: 670px) {
      .cookie-banner__text p {
        font-size: 16px;
        font-size: 0.88889rem;
        line-height: 26px;
        line-height: 1.44444rem; } }
    @media (max-width: 480px) {
      .cookie-banner__text p {
        font-size: 14px;
        font-size: 0.77778rem;
        line-height: 24px;
        line-height: 1.33333rem; } }
    .cookie-banner__text p a {
      color: #000; }
  .cookie-banner__text .button, .cookie-banner__text input[type="submit"] {
    width: 100%; }

.pill {
  display: inline-block;
  --pill-accent-color: #000;
  --pill-bg-color: #fff;
  color: var(--pill-accent-color);
  background: var(--pill-bg-color);
  text-transform: uppercase;
  padding: 5px 10px; }
  .pill--large {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 35px;
    line-height: 1.94444rem;
    letter-spacing: 0.4px;
    padding: 10px 25px;
    font-weight: 500; }
    @media (max-width: 670px) {
      .pill--large {
        font-size: 20px;
        font-size: 1.11111rem;
        line-height: 32px;
        line-height: 1.77778rem;
        letter-spacing: 0.3px; } }
  .pill--small {
    font-size: 10px;
    font-size: 0.55556rem;
    line-height: 14px;
    line-height: 0.77778rem;
    letter-spacing: 2px; }

.banner {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media (max-width: 670px) {
    .banner {
      min-height: calc(100vh + 2px); } }
  .banner__media {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; }
    .banner__media img {
      display: block; }
      @supports ((-o-object-fit: cover) or (object-fit: cover)) {
        .banner__media img {
          width: 100%;
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover; } }
  .banner__title {
    font-size: 32px;
    font-size: 1.77778rem;
    line-height: 42px;
    line-height: 2.33333rem;
    letter-spacing: 0.053px;
    font-family: "Futura Condensed", Arial, sans-serif;
    font-style: italic;
    color: #fff;
    text-transform: uppercase; }
  .banner__content {
    position: relative;
    width: 100%;
    text-align: center; }
    @media (max-width: 670px) {
      .banner__content {
        padding: 100px 0; } }

.text-block {
  padding: 100px 0; }
  @media (max-width: 1023px) {
    .text-block {
      padding: 80px 0; } }
  @media (max-width: 670px) {
    .text-block {
      padding: 60px 0; } }
  .text-block__title {
    display: inline-block;
    padding: 5px 20px;
    color: #fff;
    background: #000; }
    @media (max-width: 1023px) {
      .text-block__title {
        padding-left: 15px;
        padding-right: 15px; } }
  .text-block__subline {
    font-size: 20px;
    font-size: 1.11111rem;
    line-height: 29px;
    line-height: 1.61111rem;
    letter-spacing: 0.14px;
    font-weight: 500; }
    @media (max-width: 1023px) {
      .text-block__subline {
        font-size: 18px;
        font-size: 1rem;
        line-height: 26px;
        line-height: 1.44444rem;
        letter-spacing: 0.12px; } }
    @media (max-width: 670px) {
      .text-block__subline {
        font-size: 16px;
        font-size: 0.88889rem;
        line-height: 24px;
        line-height: 1.33333rem;
        letter-spacing: 0.1px; } }

.icon-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  margin-bottom: 60px;
  --block-accent-color: #BB5B06; }
  .icon-block__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 80px;
    height: 80px;
    margin-bottom: 20px; }
    @media (max-width: 1260px) {
      .icon-block__icon {
        width: 60px;
        height: 60px; } }
    @media (max-width: 670px) {
      .icon-block__icon {
        width: 40px;
        height: 40px; } }
    .icon-block__icon svg {
      width: 100%;
      color: #2c2c2c; }
  .icon-block__title {
    font-weight: 500;
    margin-bottom: 20px;
    cursor: pointer;
    position: relative;
    padding-right: 20px; }
    @media (max-width: 1260px) {
      .icon-block__title {
        padding-right: 40px; } }
    @media (max-width: 1023px) {
      .icon-block__title {
        font-size: 14px;
        font-size: 0.77778rem;
        line-height: 20px;
        line-height: 1.11111rem; } }
    .icon-block__title:after, .icon-block__title:before {
      content: '';
      display: block;
      width: 15px;
      height: 2px;
      background: #2c2c2c;
      position: absolute;
      top: 8px;
      right: 20px;
      will-change: transform;
      -webkit-transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) -webkit-transform;
      transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) -webkit-transform;
      transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) transform;
      transition: 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) transform, 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955) -webkit-transform; }
      @media (max-width: 1023px) {
        .icon-block__title:after, .icon-block__title:before {
          width: 10px;
          top: 9px; } }
    .icon-block__title:after {
      -webkit-transform: rotate(90deg);
              transform: rotate(90deg); }
    .icon-block__title.current:after {
      -webkit-transform: rotate(0);
              transform: rotate(0); }
  .icon-block__content {
    display: none;
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 22px;
    line-height: 1.22222rem;
    letter-spacing: 0px; }
    @media (max-width: 1023px) {
      .icon-block__content {
        font-size: 12px;
        font-size: 0.66667rem;
        line-height: 18px;
        line-height: 1rem;
        letter-spacing: 0px; } }
  .icon-block__more {
    font-size: 12px;
    font-size: 0.66667rem;
    line-height: 12px;
    line-height: 0.66667rem;
    letter-spacing: 0.1px;
    cursor: pointer;
    color: #ff4f09; }

.js-split-words {
  opacity: 0;
  overflow: hidden; }
  .js-split-words.words--split {
    opacity: 1; }
  .js-split-words.animated .word span {
    -webkit-transform: translateY(0);
            transform: translateY(0); }
  .js-split-words .word {
    display: inline-block; }
    .js-split-words .word span {
      display: block;
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
      will-change: transform;
      -webkit-transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) -webkit-transform;
      transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) -webkit-transform;
      transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) transform;
      transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) transform, 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) -webkit-transform; }

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

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

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

/* ////////////////// */
/* PAGES / TEMPLATES */
/* ////////////////// */
/* ///////////////// */
/* PLUGIN OVERWRITES */
/* ///////////////// */

/*# sourceMappingURL=style.css.map */
