@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
  ...
 */
/**
  Crimson Text
 */
@font-face {
  font-family: 'Crimson Text';
  src: url("../fonts/CrimsonText/CrimsonText-Regular.ttf");
  font-style: normal;
  font-weight: 400; }

@font-face {
  font-family: 'Crimson Text';
  src: url("../fonts/CrimsonText/CrimsonText-SemiBold.ttf");
  font-style: normal;
  font-weight: 600; }

@font-face {
  font-family: 'Crimson Text';
  src: url("../fonts/CrimsonText/CrimsonText-Bold.ttf");
  font-style: normal;
  font-weight: 700; }

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

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

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans/OpenSans-SemiBold.ttf");
  font-style: normal;
  font-weight: 600; }

@font-face {
  font-family: 'Open Sans';
  src: url("../fonts/OpenSans/OpenSans-Bold.ttf");
  font-style: normal;
  font-weight: 700; }

/**
  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: 720px) {
    .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: 720px) {
      .row.gutters,
      .row.gutters > .row {
        margin-left: 0; } }
    .row.gutters > .col,
    .row.gutters > .row > .col {
      margin-left: 20px; }
      @media (max-width: 720px) {
        .row.gutters > .col,
        .row.gutters > .row > .col {
          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: 720px) {
  .col-sm-0 {
    width: 0%; }
  .offset-sm-0 {
    margin-left: 0%; } }

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 720px) {
  .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: 720px) {
  .gutters > .col-sm-0 {
    width: calc(0% - 20px); }
  .gutters > .offset-sm-0 {
    margin-left: calc(0% + 20px) !important; } }

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 720px) {
  .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: 720px) {
  .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: 720px) {
  .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: 720px) {
  .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: 720px) {
  .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: 42px;
  font-size: 2.33333rem;
  line-height: 54px;
  line-height: 3rem;
  letter-spacing: 1.75px; }

.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: 27px;
  line-height: 1.5rem;
  letter-spacing: 0.75px; }

.meta {
  font-size: 14px;
  font-size: 0.77778rem;
  line-height: 22px;
  line-height: 1.22222rem;
  letter-spacing: 0.58px; }

.subline {
  font-size: 20px;
  font-size: 1.11111rem;
  line-height: 31px;
  line-height: 1.72222rem;
  letter-spacing: 0.83px; }

@media (max-width: 1260px) {
  .h0 {
    font-size: 72px;
    font-size: 4rem;
    line-height: 82px;
    line-height: 4.55556rem; } }

@media (max-width: 1260px) {
  .h1 {
    font-size: 36px;
    font-size: 2rem;
    line-height: 42px;
    line-height: 2.33333rem;
    letter-spacing: 1.55px; } }

@media (max-width: 1260px) {
  .h2 {
    font-size: 32px;
    font-size: 1.77778rem;
    line-height: 36px;
    line-height: 2rem; } }

@media (max-width: 1260px) {
  .h3 {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 32px;
    line-height: 1.77778rem; } }

@media (max-width: 1260px) {
  .h4 {
    font-size: 18px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.33333rem; } }

@media (max-width: 1260px) {
  .h5 {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 23px;
    line-height: 1.27778rem; } }

@media (max-width: 1260px) {
  .h6 {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 23px;
    line-height: 1.27778rem; } }

@media (max-width: 1260px) {
  .copy {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 25px;
    line-height: 1.38889rem;
    letter-spacing: 0.55px; } }

@media (max-width: 1260px) {
  .meta {
    font-size: 14px;
    font-size: 0.77778rem;
    line-height: 22px;
    line-height: 1.22222rem;
    letter-spacing: 0.58px; } }

@media (max-width: 1260px) {
  .subline {
    font-size: 18px;
    font-size: 1rem;
    line-height: 28px;
    line-height: 1.55556rem;
    letter-spacing: 0.83px; } }

@media (max-width: 1023px) {
  .h0 {
    font-size: 72px;
    font-size: 4rem;
    line-height: 82px;
    line-height: 4.55556rem; } }

@media (max-width: 1023px) {
  .h1 {
    font-size: 32px;
    font-size: 1.77778rem;
    line-height: 41px;
    line-height: 2.27778rem;
    letter-spacing: 1.33px; } }

@media (max-width: 1023px) {
  .h2 {
    font-size: 28px;
    font-size: 1.55556rem;
    line-height: 36px;
    line-height: 2rem; } }

@media (max-width: 1023px) {
  .h3 {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 32px;
    line-height: 1.77778rem; } }

@media (max-width: 1023px) {
  .h4 {
    font-size: 18px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.33333rem; } }

@media (max-width: 1023px) {
  .h5 {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 23px;
    line-height: 1.27778rem; } }

@media (max-width: 1023px) {
  .h6 {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 23px;
    line-height: 1.27778rem; } }

@media (max-width: 1023px) {
  .copy {
    font-size: 14px;
    font-size: 0.77778rem;
    line-height: 25px;
    line-height: 1.38889rem;
    letter-spacing: 0.56px; } }

@media (max-width: 1023px) {
  .meta {
    font-size: 12px;
    font-size: 0.66667rem;
    line-height: 16px;
    line-height: 0.88889rem;
    letter-spacing: 0.58px; } }

@media (max-width: 1023px) {
  .subline {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 26px;
    line-height: 1.44444rem;
    letter-spacing: 0.67px; } }

@media (max-width: 720px) {
  .h0 {
    font-size: 72px;
    font-size: 4rem;
    line-height: 82px;
    line-height: 4.55556rem; } }

@media (max-width: 720px) {
  .h1 {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 31px;
    line-height: 1.72222rem;
    letter-spacing: 1px; } }

@media (max-width: 720px) {
  .h2 {
    font-size: 22px;
    font-size: 1.22222rem;
    line-height: 28px;
    line-height: 1.55556rem; } }

@media (max-width: 720px) {
  .h3 {
    font-size: 20px;
    font-size: 1.11111rem;
    line-height: 22px;
    line-height: 1.22222rem; } }

@media (max-width: 720px) {
  .h4 {
    font-size: 18px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.33333rem; } }

@media (max-width: 720px) {
  .h5 {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 23px;
    line-height: 1.27778rem; } }

@media (max-width: 720px) {
  .h6 {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 23px;
    line-height: 1.27778rem; } }

@media (max-width: 720px) {
  .copy {
    font-size: 14px;
    font-size: 0.77778rem;
    line-height: 25px;
    line-height: 1.38889rem;
    letter-spacing: 0.56px; } }

@media (max-width: 720px) {
  .meta {
    font-size: 12px;
    font-size: 0.66667rem;
    line-height: 16px;
    line-height: 0.88889rem;
    letter-spacing: 0.58px; } }

@media (max-width: 720px) {
  .subline {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 26px;
    line-height: 1.44444rem;
    letter-spacing: 0.67px; } }

@media (max-width: 480px) {
  .h0 {
    font-size: 72px;
    font-size: 4rem;
    line-height: 82px;
    line-height: 4.55556rem; } }

@media (max-width: 480px) {
  .h1 {
    font-size: 24px;
    font-size: 1.33333rem;
    line-height: 31px;
    line-height: 1.72222rem;
    letter-spacing: 1px; } }

@media (max-width: 480px) {
  .h2 {
    font-size: 22px;
    font-size: 1.22222rem;
    line-height: 28px;
    line-height: 1.55556rem; } }

@media (max-width: 480px) {
  .h3 {
    font-size: 20px;
    font-size: 1.11111rem;
    line-height: 22px;
    line-height: 1.22222rem; } }

@media (max-width: 480px) {
  .h4 {
    font-size: 18px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.33333rem; } }

@media (max-width: 480px) {
  .h5 {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 23px;
    line-height: 1.27778rem; } }

@media (max-width: 480px) {
  .h6 {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 23px;
    line-height: 1.27778rem; } }

@media (max-width: 480px) {
  .copy {
    font-size: 14px;
    font-size: 0.77778rem;
    line-height: 25px;
    line-height: 1.38889rem;
    letter-spacing: 0.56px; } }

@media (max-width: 480px) {
  .meta {
    font-size: 12px;
    font-size: 0.66667rem;
    line-height: 16px;
    line-height: 0.88889rem;
    letter-spacing: 0.58px; } }

@media (max-width: 480px) {
  .subline {
    font-size: 16px;
    font-size: 0.88889rem;
    line-height: 26px;
    line-height: 1.44444rem;
    letter-spacing: 0.67px; } }

/**
  Sets the Font-Family for all headings inside a selector
 */
/**
  Sets the Font-Family for all buttons inside a selector
 */
a {
  color: #748cab; }
  a:hover {
    color: #b4c1d1; }

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; }

.button, input[type="submit"] {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  display: inline-block;
  background: #748cab;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  font-family: "Crimson Text";
  padding: 10px 25px 12px 25px; }
  .button:hover, input:hover[type="submit"] {
    color: #fff;
    background: #b4c1d1; }
  .button.disabled, input.disabled[type="submit"], .button:disabled, input:disabled[type="submit"] {
    background: #909090; }
  .button--large {
    font-size: 20px;
    font-size: 1.11111rem;
    line-height: 31px;
    line-height: 1.72222rem;
    letter-spacing: 0.83px;
    padding: 17px 37px 19px 37px; }
    @media (max-width: 1260px) {
      .button--large {
        font-size: 18px;
        font-size: 1rem;
        line-height: 28px;
        line-height: 1.55556rem;
        letter-spacing: 0.83px; } }
    @media (max-width: 1023px) {
      .button--large {
        font-size: 16px;
        font-size: 0.88889rem;
        line-height: 26px;
        line-height: 1.44444rem;
        letter-spacing: 0.67px; } }
    @media (max-width: 720px) {
      .button--large {
        font-size: 16px;
        font-size: 0.88889rem;
        line-height: 26px;
        line-height: 1.44444rem;
        letter-spacing: 0.67px; } }
    @media (max-width: 480px) {
      .button--large {
        font-size: 16px;
        font-size: 0.88889rem;
        line-height: 26px;
        line-height: 1.44444rem;
        letter-spacing: 0.67px; } }
    @media (max-width: 1023px) {
      .button--large {
        padding: 15px 30px 17px 30px; } }
    @media (max-width: 480px) {
      .button--large {
        padding: 12px 30px; } }
  .button--ghost {
    border: 2px solid #748cab;
    background: transparent; }
    .button--ghost:hover {
      color: #0d1321;
      border-color: #b4c1d1; }
    .button--ghost.button--white {
      border-color: #fff; }
      .button--ghost.button--white:hover {
        border-color: #b4c1d1; }

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

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

.margin__bottom--small {
  margin-bottom: 1.66667rem !important; }
  @media (max-width: 1023px) {
    .margin__bottom--small {
      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; } }

.padded {
  padding: 40px 0; }
  .padded--large {
    padding: 90px 0; }
    @media (max-width: 720px) {
      .padded--large {
        padding: 60px 0; } }

.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; } }

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

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

.color--blue {
  color: #0f2c5b; }
  .color--blue-light {
    color: #748cab; }
  .color--blue-light-2 {
    color: #e6fafc; }

.font--headline {
  font-family: "Crimson Text" !important; }

.font--text {
  font-family: "Open Sans" !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: 720px) and (max-width: 1023px) {
  .hide--md-only {
    display: none !important; } }

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

@media (min-width: 480px) and (max-width: 720px) {
  .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; }
  *: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 {
  font-family: "Open Sans";
  font-size: 18px;
  font-size: 1rem;
  line-height: 27px;
  line-height: 1.5rem;
  letter-spacing: 0.75px; }
  @media (max-width: 1260px) {
    body {
      font-size: 16px;
      font-size: 0.88889rem;
      line-height: 25px;
      line-height: 1.38889rem;
      letter-spacing: 0.55px; } }
  @media (max-width: 1023px) {
    body {
      font-size: 14px;
      font-size: 0.77778rem;
      line-height: 25px;
      line-height: 1.38889rem;
      letter-spacing: 0.56px; } }
  @media (max-width: 720px) {
    body {
      font-size: 14px;
      font-size: 0.77778rem;
      line-height: 25px;
      line-height: 1.38889rem;
      letter-spacing: 0.56px; } }
  @media (max-width: 480px) {
    body {
      font-size: 14px;
      font-size: 0.77778rem;
      line-height: 25px;
      line-height: 1.38889rem;
      letter-spacing: 0.56px; } }

section,
.section {
  position: relative; }

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

img, video {
  height: auto; }

svg {
  max-height: 100%; }

iframe {
  border: none; }

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

:root {
  --inner-width: 1200px; }
  @media (min-width: 1400px) {
    :root {
      --inner-width: 1400px; } }
  @media (max-width: 1260px) {
    :root {
      --inner-width: 960px; } }
  @media (max-width: 1023px) {
    :root {
      --inner-width: 700px; } }
  @media (max-width: 720px) {
    :root {
      --inner-width: calc(100vw - 50px); } }

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

/**
  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; }

/*

  // 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 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  font-size: 42px;
  font-size: 2.33333rem;
  line-height: 54px;
  line-height: 3rem;
  letter-spacing: 1.75px;
  font-family: "Crimson Text"; }
  @media (max-width: 1260px) {
    .page__title {
      font-size: 36px;
      font-size: 2rem;
      line-height: 42px;
      line-height: 2.33333rem;
      letter-spacing: 1.55px; } }
  @media (max-width: 1023px) {
    .page__title {
      font-size: 32px;
      font-size: 1.77778rem;
      line-height: 41px;
      line-height: 2.27778rem;
      letter-spacing: 1.33px; } }
  @media (max-width: 720px) {
    .page__title {
      font-size: 24px;
      font-size: 1.33333rem;
      line-height: 31px;
      line-height: 1.72222rem;
      letter-spacing: 1px; } }
  @media (max-width: 480px) {
    .page__title {
      font-size: 24px;
      font-size: 1.33333rem;
      line-height: 31px;
      line-height: 1.72222rem;
      letter-spacing: 1px; } }

.page__subtitle {
  font-family: "Crimson Text"; }

/* //////////////////// */
/* HEADER / MOBILE MENU */
/* //////////////////// */
.site-header {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  position: relative;
  color: #fff;
  z-index: 10; }
  .site-header__row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #70798c; }
    @media (max-width: 1023px) {
      .site-header__row {
        padding: 15px 0; } }
    @media (max-width: 720px) {
      .site-header__row {
        padding: 15px 0 12px 0; } }
  .site-header__logo {
    width: 62px; }
    @media (max-width: 1023px) {
      .site-header__logo {
        width: 40px; } }
  @media (max-width: 720px) {
    .site-header__nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: #0f2c5b;
      z-index: 20;
      -webkit-transform: translateY(-20px);
              transform: translateY(-20px);
      opacity: 0;
      pointer-events: none;
      will-change: transform, opacity;
      -webkit-transition: 0.3s cubic-bezier(0.86, 0, 0.07, 1) all;
      transition: 0.3s cubic-bezier(0.86, 0, 0.07, 1) all; }
      .menu--open .site-header__nav {
        -webkit-transform: translateY(0);
                transform: translateY(0);
        opacity: 1;
        pointer-events: auto; } }
  .site-header__nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    font-family: "Crimson Text";
    margin-right: -40px; }
    @media (max-width: 720px) {
      .site-header__nav-list {
        -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;
        height: 100%;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        margin-right: 0;
        font-size: 42px;
        font-size: 2.33333rem;
        line-height: 54px;
        line-height: 3rem;
        letter-spacing: 1.75px; } }
  @media (max-width: 720px) and (max-width: 1260px) {
    .site-header__nav-list {
      font-size: 36px;
      font-size: 2rem;
      line-height: 42px;
      line-height: 2.33333rem;
      letter-spacing: 1.55px; } }
  @media (max-width: 720px) and (max-width: 1023px) {
    .site-header__nav-list {
      font-size: 32px;
      font-size: 1.77778rem;
      line-height: 41px;
      line-height: 2.27778rem;
      letter-spacing: 1.33px; } }
  @media (max-width: 720px) and (max-width: 720px) {
    .site-header__nav-list {
      font-size: 24px;
      font-size: 1.33333rem;
      line-height: 31px;
      line-height: 1.72222rem;
      letter-spacing: 1px; } }
  @media (max-width: 720px) and (max-width: 480px) {
    .site-header__nav-list {
      font-size: 24px;
      font-size: 1.33333rem;
      line-height: 31px;
      line-height: 1.72222rem;
      letter-spacing: 1px; } }
    .site-header__nav-list li {
      margin-right: 40px; }
      @media (max-width: 720px) {
        .site-header__nav-list li {
          margin-right: 0;
          margin-bottom: 40px;
          -webkit-transform: translateY(-10px);
                  transform: translateY(-10px);
          opacity: 0;
          will-change: transition, opacity;
          -webkit-transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) all;
          transition: 0.2s cubic-bezier(0.075, 0.82, 0.165, 1) all; }
          .site-header__nav-list li:nth-child(0) {
            -webkit-transition-delay: 0s;
                    transition-delay: 0s; }
          .site-header__nav-list li:nth-child(1) {
            -webkit-transition-delay: 0.1s;
                    transition-delay: 0.1s; }
          .site-header__nav-list li:nth-child(2) {
            -webkit-transition-delay: 0.2s;
                    transition-delay: 0.2s; }
          .site-header__nav-list li:nth-child(3) {
            -webkit-transition-delay: 0.3s;
                    transition-delay: 0.3s; }
          .site-header__nav-list li:nth-child(4) {
            -webkit-transition-delay: 0.4s;
                    transition-delay: 0.4s; }
          .site-header__nav-list li:nth-child(5) {
            -webkit-transition-delay: 0.5s;
                    transition-delay: 0.5s; }
          .site-header__nav-list li:nth-child(6) {
            -webkit-transition-delay: 0.6s;
                    transition-delay: 0.6s; }
          .site-header__nav-list li:nth-child(7) {
            -webkit-transition-delay: 0.7s;
                    transition-delay: 0.7s; }
          .site-header__nav-list li:nth-child(8) {
            -webkit-transition-delay: 0.8s;
                    transition-delay: 0.8s; }
          .site-header__nav-list li:nth-child(9) {
            -webkit-transition-delay: 0.9s;
                    transition-delay: 0.9s; }
          .site-header__nav-list li:nth-child(10) {
            -webkit-transition-delay: 1s;
                    transition-delay: 1s; } }
      @media (max-width: 720px) {
        .menu--open .site-header__nav-list li {
          opacity: 1;
          -webkit-transform: translateY(0);
                  transform: translateY(0); } }
    .site-header__nav-list a:hover {
      color: #b4c1d1; }
  .site-header__hamburger {
    display: none;
    position: relative;
    z-index: 35; }
    @media (max-width: 720px) {
      .site-header__hamburger {
        display: block; } }

.hamburger {
  display: block;
  width: 30px; }
  .hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background: #748cab;
    margin-bottom: 7px;
    will-change: transform;
    -webkit-transition: 0.18s cubic-bezier(0.86, 0, 0.07, 1) -webkit-transform;
    transition: 0.18s cubic-bezier(0.86, 0, 0.07, 1) -webkit-transform;
    transition: 0.18s cubic-bezier(0.86, 0, 0.07, 1) transform;
    transition: 0.18s cubic-bezier(0.86, 0, 0.07, 1) transform, 0.18s cubic-bezier(0.86, 0, 0.07, 1) -webkit-transform; }
    .hamburger span:last-child {
      margin-bottom: 0; }
  .menu--open .hamburger span:nth-child(2) {
    -webkit-transform: scale(0);
            transform: scale(0); }
  .menu--open .hamburger span:first-child {
    -webkit-transform: translate(0, 8px) rotate(45deg);
            transform: translate(0, 8px) rotate(45deg); }
  .menu--open .hamburger span:last-child {
    -webkit-transform: translate(0, -8px) rotate(-45deg);
            transform: translate(0, -8px) rotate(-45deg); }

/* /////// */
/* FOOTER */
/* /////// */
.site-footer {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  background: #0f2c5b;
  color: #748cab;
  padding: 35px 0 30px 0;
  font-size: 14px;
  font-size: 0.77778rem;
  line-height: 22px;
  line-height: 1.22222rem;
  letter-spacing: 0.58px; }
  @media (max-width: 1260px) {
    .site-footer {
      font-size: 14px;
      font-size: 0.77778rem;
      line-height: 22px;
      line-height: 1.22222rem;
      letter-spacing: 0.58px; } }
  @media (max-width: 1023px) {
    .site-footer {
      font-size: 12px;
      font-size: 0.66667rem;
      line-height: 16px;
      line-height: 0.88889rem;
      letter-spacing: 0.58px; } }
  @media (max-width: 720px) {
    .site-footer {
      font-size: 12px;
      font-size: 0.66667rem;
      line-height: 16px;
      line-height: 0.88889rem;
      letter-spacing: 0.58px; } }
  @media (max-width: 480px) {
    .site-footer {
      font-size: 12px;
      font-size: 0.66667rem;
      line-height: 16px;
      line-height: 0.88889rem;
      letter-spacing: 0.58px; } }
  @media (max-width: 1023px) {
    .site-footer {
      padding: 20px 0 18px 0; } }
  @media (max-width: 720px) {
    .site-footer {
      text-align: center; } }
  .site-footer__row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .site-footer__links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -40px; }
    @media (max-width: 720px) {
      .site-footer__links {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
        margin-bottom: 20px; } }
    .site-footer__links li {
      margin-right: 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,
label {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  font-family: "Open Sans";
  font-size: 1rem;
  color: #0d1321;
  padding: .5rem; }

/**
    Style Inputs
 */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
input[type="phone"],
textarea,
select {
  background: #fff; }

/**
  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; } }

.page-hero {
  position: relative;
  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;
  min-height: 100vh; }
  .page-hero--small {
    min-height: 20vh; }
  .page-hero__main-col {
    width: 50%; }
    @media (max-width: 1260px) {
      .page-hero__main-col {
        width: 58.33333%; } }
    @media (max-width: 720px) {
      .page-hero__main-col {
        width: 100%; } }
  .page-hero__logo-col {
    width: 16.66667%;
    margin-left: 25%; }
    @media (max-width: 1260px) {
      .page-hero__logo-col {
        margin-left: 16.66667%; } }
    @media (max-width: 720px) {
      .page-hero__logo-col {
        width: 100%;
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
        margin-left: 0%; } }
  .page-hero__logo {
    width: 135px;
    margin-left: auto;
    margin-right: auto; }
    @media (max-width: 1023px) {
      .page-hero__logo {
        width: 110px; } }
    @media (max-width: 720px) {
      .page-hero__logo {
        width: 90px;
        margin-top: 70px;
        margin-bottom: 50px; } }
  .page-hero__content {
    position: relative;
    z-index: 1;
    margin: auto 0; }
    @media (max-width: 720px) {
      .page-hero__content {
        text-align: center;
        padding-bottom: 50px; } }
  @media (max-width: 720px) {
    .page-hero__title {
      font-size: 20px;
      font-size: 1.11111rem;
      line-height: 26px;
      line-height: 1.44444rem;
      letter-spacing: 0.83px; } }
  .page-hero__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: url("../img/pages/home/hero-background.jpg") no-repeat center center;
    background-size: cover; }

.media-row {
  background: #e6fafc; }
  .media-row__content {
    padding: 150px 0;
    padding-right: 30px;
    width: calc(41.66667% - 20px);
    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-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (max-width: 1023px) {
      .media-row__content {
        padding: 90px 0;
        width: calc(100% - 20px); } }
    @media (max-width: 720px) {
      .media-row__content {
        padding: 60px 0; } }
    .media-row--alternate .media-row__content {
      padding-right: 0;
      padding-left: 30px;
      text-align: right;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; }
      @media (max-width: 1023px) {
        .media-row--alternate .media-row__content {
          padding-left: 0; } }
      @media (max-width: 720px) {
        .media-row--alternate .media-row__content {
          text-align: left; } }
  @media (min-width: 1023px) and (max-width: 1260px) {
    .media-row__row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap; } }
  .media-row__icon {
    width: 90px;
    color: #0d1321; }
    @media (max-width: 1023px) {
      .media-row__icon {
        width: 62px; } }
  .media-row__media {
    width: calc(58.33333% - 20px);
    width: calc( calc(58.33333% - 20px) + ((calc(100vw + 20px) - 100%) / 2)) !important;
    margin-right: calc( -1 * ((calc(100vw + 20px) - 100%) / 2)) !important; }
    @media (min-width: 1023px) and (max-width: 1260px) {
      .media-row__media {
        position: relative; } }
    @media (max-width: 1023px) {
      .media-row__media {
        width: calc(100vw + 20px) !important;
        margin-left: calc(-1 * (100vw - 100%) / 2) !important;
        margin-right: calc(-1 * (100vw - 100%) / 2 - 20px) !important;
        margin-bottom: 0 !important; } }
    .media-row--alternate .media-row__media {
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1;
      width: calc( calc(58.33333% - 20px) + ((100vw - 100%) / 2)) !important;
      margin-left: calc( -1 * ((100vw - 100%) / 2)) !important;
      margin-right: 0 !important; }
      @media (min-width: 1023px) and (max-width: 1260px) {
        .media-row--alternate .media-row__media {
          margin-right: 20px !important; } }
      @media (max-width: 1023px) {
        .media-row--alternate .media-row__media {
          width: calc(100vw + 20px) !important;
          margin-left: calc(-1 * (100vw - 100%) / 2) !important;
          margin-right: calc(-1 * (100vw - 100%) / 2 - 20px) !important;
          -webkit-box-ordinal-group: 1;
              -ms-flex-order: 0;
                  order: 0; } }
  .media-row__image {
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover; }
    @media (max-width: 1023px) {
      .media-row__image {
        height: auto;
        -o-object-fit: unset;
           object-fit: unset; } }

.contact__row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px; }
  @media (max-width: 720px) {
    .contact__row {
      margin-bottom: 0; } }

.contact__content-col {
  width: calc(41.66667% - 20px); }
  @media (max-width: 720px) {
    .contact__content-col {
      margin-bottom: 50px !important; } }

.contact__contact-col {
  width: calc(41.66667% - 20px);
  margin-left: calc(16.66667% + 20px) !important; }
  @media (max-width: 1023px) {
    .contact__contact-col {
      margin-left: calc(8.33333% + 20px) !important;
      width: calc(50% - 20px); } }

.contact-info__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap; }
  .contact-info__info + .contact-info__info {
    margin-top: 45px; }
    @media (max-width: 1023px) {
      .contact-info__info + .contact-info__info {
        margin-top: 30px; } }

.contact-info__icon {
  width: 40px;
  color: #748cab;
  margin-right: 20px; }
  @media (max-width: 720px) {
    .contact-info__icon {
      width: 28px; } }

.contact-info__value {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: greyscale;
  position: relative;
  top: -6px;
  font-size: 36px;
  font-size: 2rem;
  line-height: 46px;
  line-height: 2.55556rem;
  letter-spacing: 0.15px;
  font-family: "Crimson Text";
  color: #0f2c5b; }
  @media (max-width: 1260px) {
    .contact-info__value {
      font-size: 32px;
      font-size: 1.77778rem;
      line-height: 37px;
      line-height: 2.05556rem;
      letter-spacing: 0.15px; } }
  @media (max-width: 1023px) {
    .contact-info__value {
      font-size: 28px;
      font-size: 1.55556rem;
      line-height: 36px;
      line-height: 2rem;
      letter-spacing: 1.17px; } }
  @media (max-width: 720px) {
    .contact-info__value {
      font-size: 24px;
      font-size: 1.33333rem;
      line-height: 31px;
      line-height: 1.72222rem;
      letter-spacing: 1px; } }
  .contact-info__value:hover {
    color: #748cab; }

.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: #748cab;
  color: #fff;
  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: 720px) {
    .cookie-banner {
      width: calc(100% - 40px);
      padding-left: 1.11111rem;
      padding-right: 1.11111rem;
      right: 20px;
      bottom: 20px; } }
  .cookie-banner .h4 {
    font-family: "Crimson Text"; }
  .cookie-banner--hidden {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    opacity: 0; }
  .cookie-banner__text p {
    font-size: 14px;
    font-size: 0.77778rem;
    line-height: 18px;
    line-height: 1rem; }
    .cookie-banner__text p a {
      font-weight: 500;
      color: #fff; }
  .cookie-banner__text .button, .cookie-banner__text input[type="submit"] {
    width: 100%;
    font-size: 16px;
    font-size: 0.88889rem; }
  .cookie-banner__text .meta {
    color: #fff;
    font-size: 12px;
    font-size: 0.66667rem; }

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

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