@charset "UTF-8";


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

Copyright (c) 2013 Daniel Eden

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

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

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

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

/* //////////////////// */
/* SETTINGS / VARIABLES */
/* //////////////////// */
/**
  @font-face Includes
  ...
 */
@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat/Montserrat-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat/Montserrat-Italic.ttf") format("truetype");
  font-style: italic;
  font-weight: normal; }

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

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat/Montserrat-LightItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 300; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat/Montserrat-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 500; }

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat/Montserrat-SemiBoldItalic.ttf") format("truetype");
  font-style: italic;
  font-weight: 500; }

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

@font-face {
  font-family: 'Montserrat';
  src: url("../fonts/Montserrat/Montserrat-BoldItalic.ttf") format("truetype");
  font-style: normal;
  font-weight: 700; }

/**
  Explicit Color-Variables

  $color_red: red;
  $color_red-dark: darkred;
  ...
 */
/**
  Readable Color-Variables
 */
/**
  Global Variables
 */
/**
  Mixins
 */
/**
  Use Describing Font-Weight Mixin
  Bsp: "@include fontweight(light)"
  @arg {*} $fontweight = light, regular, medium, bold
 */
/**
  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
*/
/**
  Gets font-size from array for a needed font-key
  @arg {*} $fontKey = h1, h2, h3, h4, h5, subline, copy, meta
 */
/**
  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
 */
/**
  Responsive Breakpoints
 */
/* ///// */
/* GRID */
/* ///// */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (max-width: 670px) {
    .row:not(.keep-row) {
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap; }
      .row:not(.keep-row):not(.keep-row) {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column; } }
  .row.gutters,
  .row.gutters > .row {
    margin-left: -30px; }
    @media (max-width: 670px) {
      .row.gutters:not(.keep-row),
      .row.gutters > .row:not(.keep-row) {
        margin-left: 0; } }
    .row.gutters:not(.keep-row) > .col,
    .row.gutters > .row:not(.keep-row) > .col {
      margin-left: 30px; }
      @media (max-width: 670px) {
        .row.gutters:not(.keep-row) > .col,
        .row.gutters > .row:not(.keep-row) > .col {
          margin-left: 0; } }
    .row.gutters.keep-row > .col,
    .row.gutters > .row.keep-row > .col {
      margin-left: 30px; }
  .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-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-1 {
    width: 8.33333%; }
  .offset-md-1 {
    margin-left: 8.33333%; } }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 480px) {
  .col-xs-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-1 {
  width: calc(8.33333% - 30px); }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ///////////// */
/* GLOBAL STYLES */
/* ///////////// */
/*############*/
/* SVG Colors */
/*############*/
.svg-fill--empty {
  fill: none; }

.svg-fill--white, .icon--facebook__path,
.icon--instagram__path {
  fill: white; }

.svg-fill--red, .icon--facebook:hover .icon__path,
.icon--instagram:hover .icon__path {
  fill: #C6152B; }

.svg-fill--red-light {
  fill: #EC4650; }

.svg-fill--red-highlight {
  fill: #FFD9DB; }

.svg-fill--blue {
  fill: #13708C; }

.svg-fill--blue-light {
  fill: #17B8D5; }

.svg-fill--blue-dark {
  fill: #08323F; }

.svg-fill--blue-highlight {
  fill: #CFD7D9; }

.svg-fill--grey {
  fill: #4A4A4A; }

.svg-fill--grey-light {
  fill: #E1E1E1; }

.svg-fill--grey-highlight {
  fill: #F7F7F7; }

/**
  Generates all available font-sizes as element and class
 */
h1, .h1 {
  font-size: 48px;
  font-size: 2.66667rem; }

h2, .h2 {
  font-size: 36px;
  font-size: 2rem; }

h3, .h3 {
  font-size: 24px;
  font-size: 1.33333rem; }

h4, .h4 {
  font-size: 20px;
  font-size: 1.11111rem; }

subline, .subline {
  font-size: 22px;
  font-size: 1.22222rem; }

copy, .copy {
  font-size: 20px;
  font-size: 1.11111rem; }

meta, .meta {
  font-size: 14px;
  font-size: 0.77778rem; }

@media (max-width: 1260px) {
  h1, .h1 {
    font-size: 48px;
    font-size: 2.66667rem; } }

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

@media (max-width: 1260px) {
  h3, .h3 {
    font-size: 21px;
    font-size: 1.16667rem; } }

@media (max-width: 1260px) {
  h4, .h4 {
    font-size: 20px;
    font-size: 1.11111rem; } }

@media (max-width: 1260px) {
  subline, .subline {
    font-size: 20px;
    font-size: 1.11111rem; } }

@media (max-width: 1260px) {
  copy, .copy {
    font-size: 20px;
    font-size: 1.11111rem; } }

@media (max-width: 1260px) {
  meta, .meta {
    font-size: 14px;
    font-size: 0.77778rem; } }

@media (max-width: 1023px) {
  h1, .h1 {
    font-size: 38px;
    font-size: 2.11111rem; } }

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

@media (max-width: 1023px) {
  h3, .h3 {
    font-size: 18px;
    font-size: 1rem; } }

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

@media (max-width: 1023px) {
  subline, .subline {
    font-size: 20px;
    font-size: 1.11111rem; } }

@media (max-width: 1023px) {
  copy, .copy {
    font-size: 18px;
    font-size: 1rem; } }

@media (max-width: 1023px) {
  meta, .meta {
    font-size: 14px;
    font-size: 0.77778rem; } }

@media (max-width: 670px) {
  h1, .h1 {
    font-size: 28px;
    font-size: 1.55556rem; } }

@media (max-width: 670px) {
  h2, .h2 {
    font-size: 22px;
    font-size: 1.22222rem; } }

@media (max-width: 670px) {
  h3, .h3 {
    font-size: 20px;
    font-size: 1.11111rem; } }

@media (max-width: 670px) {
  h4, .h4 {
    font-size: 18px;
    font-size: 1rem; } }

@media (max-width: 670px) {
  subline, .subline {
    font-size: 16px;
    font-size: 0.88889rem; } }

@media (max-width: 670px) {
  copy, .copy {
    font-size: 18px;
    font-size: 1rem; } }

@media (max-width: 670px) {
  meta, .meta {
    font-size: 14px;
    font-size: 0.77778rem; } }

/**
  Sets the Font-Family for all headings inside a selector
 */
/**
  Sets the Font-Family for all buttons inside a selector
 */
body.styling--code h1, body.styling--code h2, body.styling--code h3, body.styling--code h4 {
  font-family: "Space Mono", monospace; }

body.styling--code .subline {
  font-family: "Space Mono", monospace; }

body.styling--code .button, body.styling--code input[type="submit"] {
  font-family: "Space Mono", monospace; }

body.styling--code a {
  font-family: "Space Mono", monospace; }

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
  display: block;
  font-weight: 400;
  color: #08323F; }

h1, .h1 {
  font-weight: 500;
  line-height: 1.25; }

h2, .h2 {
  font-weight: 500; }

h4, .h4 {
  font-weight: 500; }

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

.subline {
  font-size: 22px;
  font-size: 1.22222rem;
  font-weight: 300;
  line-height: 1.7; }
  @media (max-width: 1260px) {
    .subline {
      font-size: 20px;
      font-size: 1.11111rem; } }
  @media (max-width: 1023px) {
    .subline {
      font-size: 20px;
      font-size: 1.11111rem; } }
  @media (max-width: 670px) {
    .subline {
      font-size: 16px;
      font-size: 0.88889rem; } }

a.clear-links, .home a.footer-container, .single-angebot a.footer-container, .single-rechnung a.footer-container, .tax-client a.footer-container,
.clear-links a,
.home .footer-container a,
.single-angebot .footer-container a,
.single-rechnung .footer-container a,
.tax-client .footer-container a {
  text-decoration: none;
  color: inherit; }

p, .p {
  font-size: 20px;
  font-size: 1.11111rem;
  line-height: 1.7; }
  @media (max-width: 1260px) {
    p, .p {
      font-size: 20px;
      font-size: 1.11111rem; } }
  @media (max-width: 1023px) {
    p, .p {
      font-size: 18px;
      font-size: 1rem; } }
  @media (max-width: 670px) {
    p, .p {
      font-size: 18px;
      font-size: 1rem; } }

strong, .strong {
  font-weight: 500; }

a {
  color: #C6152B;
  text-decoration: none;
  cursor: pointer; }

.page-content a:hover, .link--line:hover {
  color: #EC4650;
  border-bottom: 2px solid; }
  .page-content a:hover.highlight, .link--line:hover.highlight {
    border-bottom: none; }
  .page-content a:hover.highlight--red, .link--line:hover.highlight--red {
    color: #FFD9DB; }

.button, input[type="submit"] {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 22px;
  font-size: 1.22222rem;
  display: inline-block;
  padding: 1rem 2.77rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  text-align: center;
  border-radius: 2px;
  cursor: pointer; }
  @media (max-width: 1260px) {
    .button, input[type="submit"] {
      font-size: 20px;
      font-size: 1.11111rem; } }
  @media (max-width: 1023px) {
    .button, input[type="submit"] {
      font-size: 20px;
      font-size: 1.11111rem; } }
  @media (max-width: 670px) {
    .button, input[type="submit"] {
      font-size: 16px;
      font-size: 0.88889rem; } }
  .button a, input[type="submit"] a {
    color: inherit; }
  .button.button--small, input.button--small[type="submit"] {
    font-size: 14px;
    font-size: 0.77778rem; }
    @media (max-width: 1260px) {
      .button.button--small, input.button--small[type="submit"] {
        font-size: 14px;
        font-size: 0.77778rem; } }
    @media (max-width: 1023px) {
      .button.button--small, input.button--small[type="submit"] {
        font-size: 14px;
        font-size: 0.77778rem; } }
    @media (max-width: 670px) {
      .button.button--small, input.button--small[type="submit"] {
        font-size: 14px;
        font-size: 0.77778rem; } }
  .button.disabled, input.disabled[type="submit"] {
    pointer-events: none;
    border-color: #E1E1E1 !important;
    opacity: .5; }

@media (max-width: 1023px) {
  .button--icon {
    font-size: 20px;
    font-size: 1.11111rem; } }
  @media (max-width: 1023px) and (max-width: 1260px) {
    .button--icon {
      font-size: 20px;
      font-size: 1.11111rem; } }
  @media (max-width: 1023px) and (max-width: 1023px) {
    .button--icon {
      font-size: 18px;
      font-size: 1rem; } }
  @media (max-width: 1023px) and (max-width: 670px) {
    .button--icon {
      font-size: 18px;
      font-size: 1rem; } }

.button--fill {
  border: none;
  will-change: box-shadow, transform, background;
  -webkit-transition: 0.1s ease background, 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-transform;
  transition: 0.1s ease background, 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-transform;
  transition: 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) transform, 0.1s ease background;
  transition: 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) transform, 0.1s ease background, 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-transform;
  -webkit-box-shadow: 0 5px 10px 0 rgba(95, 50, 50, 0.2);
          box-shadow: 0 5px 10px 0 rgba(95, 50, 50, 0.2); }
  .button--fill.button--small {
    padding: 0.66rem 1.2rem; }
    @media (max-width: 670px) {
      .button--fill.button--small {
        padding: .66rem .8rem; } }
  .button--fill.button--xsmall, .button--fill.button--icon {
    padding: 7px 12px; }
  .button--fill:hover {
    -webkit-box-shadow: 0 5px 15px 0 rgba(70, 50, 50, 0.3);
            box-shadow: 0 5px 15px 0 rgba(70, 50, 50, 0.3);
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px); }
  .button--fill:active {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
    -webkit-box-shadow: 0 3px 5px 0 rgba(70, 50, 50, 0.2) !important;
            box-shadow: 0 3px 5px 0 rgba(70, 50, 50, 0.2) !important; }
  .button--fill:focus {
    -webkit-box-shadow: 0 5px 10px 0 rgba(95, 50, 50, 0.2);
            box-shadow: 0 5px 10px 0 rgba(95, 50, 50, 0.2); }

.button--ghost {
  border: 2px solid;
  padding: .66rem 2.61rem;
  border-radius: 4px;
  will-change: box-shadow, transform, background;
  -webkit-transition: 0.1s ease background, 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-transform;
  transition: 0.1s ease background, 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-transform;
  transition: 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) transform, 0.1s ease background;
  transition: 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) transform, 0.1s ease background, 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-transform; }
  @media (max-width: 670px) {
    .button--ghost {
      padding: .66rem 1.22rem; } }
  .button--ghost.button--small {
    padding: .5rem 1.90rem; }
  .button--ghost.button--xsmall, .button--ghost.button--icon {
    padding: 5px 10px; }
  .button--ghost:hover {
    -webkit-box-shadow: 0 5px 15px 0 rgba(70, 50, 50, 0.3);
            box-shadow: 0 5px 15px 0 rgba(70, 50, 50, 0.3);
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px); }
  .button--ghost:active {
    -webkit-transform: translateY(1px);
            transform: translateY(1px);
    -webkit-box-shadow: 0 3px 5px 0 rgba(70, 50, 50, 0.2) !important;
            box-shadow: 0 3px 5px 0 rgba(70, 50, 50, 0.2) !important; }
  .button--ghost:focus {
    -webkit-box-shadow: 0 5px 10px 0 rgba(95, 50, 50, 0.2);
            box-shadow: 0 5px 10px 0 rgba(95, 50, 50, 0.2); }

.button--ghost[color="white"] {
  color: white;
  background: transparent; }
  .button--ghost[color="white"]:hover {
    background: white;
    color: #C6152B;
    border-color: white; }

.button--ghost[color="grey-light"] {
  background: transparent;
  color: #E1E1E1;
  border-color: #E1E1E1; }
  .button--ghost[color="grey-light"]:hover {
    background: #E1E1E1;
    color: white;
    -webkit-box-shadow: none;
            box-shadow: none; }

.button--ghost[color="red"] {
  background: transparent;
  color: #C6152B;
  border-color: #C6152B; }
  .button--ghost[color="red"]:hover {
    background: #C6152B;
    color: white; }

.button--ghost[color="green"] {
  background: transparent;
  color: #4B964F;
  border-color: #00DA5A; }
  .button--ghost[color="green"]:hover {
    background: #00DA5A;
    color: #f4f5f6;
    -webkit-box-shadow: 0 5px 10px rgba(50, 95, 50, 0.2);
            box-shadow: 0 5px 10px rgba(50, 95, 50, 0.2); }

.button--fill[color="red"] {
  color: white;
  background: #C6152B; }
  .button--fill[color="red"]:hover {
    background: #cf162d; }
  .button--fill[color="red"]:active {
    background: #C6152B; }

.button--fill[color="white"] {
  background: #f4f5f6;
  color: #C6152B; }

.button--fill[color="green"] {
  background: #00DA5A;
  color: #f4f5f6;
  -webkit-box-shadow: 0 5px 10px rgba(50, 95, 50, 0.2);
          box-shadow: 0 5px 10px rgba(50, 95, 50, 0.2); }

.button--attachment {
  position: relative; }
  .button--attachment:after {
    content: ' ';
    display: block;
    position: absolute;
    bottom: -3rem;
    right: 0;
    width: 3rem;
    height: 4.5rem;
    background: url("../img/pages/aboutme/attachment-clip-red.svg") no-repeat; }

.highlight {
  display: inline-block;
  padding: 0 .27rem;
  will-change: background, transform;
  -webkit-transition: 0.1s cubic-bezier(0.165, 0.84, 0.44, 1) background, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
  transition: 0.1s cubic-bezier(0.165, 0.84, 0.44, 1) background, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
  transition: 0.1s cubic-bezier(0.165, 0.84, 0.44, 1) background, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) transform;
  transition: 0.1s cubic-bezier(0.165, 0.84, 0.44, 1) background, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
  /* SIZES */
  /* COLORS */ }
  .highlight--big {
    padding: 2px .55rem; }
  .highlight--headline {
    padding: 2px .66rem; }
  .highlight--red {
    background: #C6152B;
    color: #FFD9DB;
    -webkit-box-decoration-break: slice;
            box-decoration-break: slice; }
    .highlight--red-light {
      background: #EC4650;
      color: #f4f5f6; }
  .highlight--inline {
    display: inline;
    padding: .33rem .55rem;
    -webkit-box-decoration-break: clone;
    -ms-box-decoration-break: clone;
    -o-box-decoration-break: clone;
    box-decoration-break: clone; }

a.highlight--red:hover {
  background: #EC4650; }

a.highlight:hover {
  -webkit-transform: translate(2px, -2px);
          transform: translate(2px, -2px); }

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

.margin__bottom--xsmall {
  margin-bottom: .75rem; }

.margin__bottom--small {
  margin-bottom: 1.25rem; }

.margin__bottom--medium {
  margin-bottom: 3rem; }
  @media (max-width: 670px) {
    .margin__bottom--medium {
      margin-bottom: 2rem; } }

.margin__bottom--large {
  margin-bottom: 5rem; }
  @media (max-width: 1023px) {
    .margin__bottom--large {
      margin-bottom: 4rem; } }
  @media (max-width: 670px) {
    .margin__bottom--large {
      margin-bottom: 3rem; } }

.margin__bottom--xlarge {
  margin-bottom: 8.3rem; }
  @media (max-width: 1023px) {
    .margin__bottom--xlarge {
      margin-bottom: 6rem; } }
  @media (max-width: 670px) {
    .margin__bottom--xlarge {
      margin-bottom: 4rem; } }

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

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

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

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

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

.color--red {
  color: #C6152B; }
  .color--red-light {
    color: #EC4650; }
  .color--red-hilight {
    color: #FFD9DB; }

.color--grey {
  color: #4A4A4A; }
  .color--grey-light {
    color: #E1E1E1; }

.font--headline {
  font-family: "Montserrat", sans-serif !important; }

.font--text {
  font-family: "Montserrat", sans-serif !important; }

.font--code {
  font-family: "Space Mono", monospace !important; }

.left {
  float: left; }

.right {
  float: right; }

.half {
  width: 50%; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg--red {
  background: #C6152B; }
  .bg--red-light {
    background: #EC4650; }
  .bg--red-hilight {
    background: #FFD9DB; }

.bg--blue {
  background: #13708C; }
  .bg--blue-light {
    background: #17B8D5; }
  .bg--blue-dark {
    background: #08323F; }
  .bg--blue-hilight {
    background: #CFD7D9; }

.bg--grey {
  background: #4A4A4A; }
  .bg--grey-light {
    background: #E1E1E1; }
  .bg--grey-bluehilight {
    background: #EEF0F3; }
  .bg--grey-redhilight {
    background: #F8F8F8; }
  .bg--grey-hilight {
    background: #F7F7F7; }

.bg--white {
  background: #f4f5f6; }

.bg--black {
  background: #222; }

/* 
  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-selection {
  background: #FFD9DB;
  color: #C6152B; }

::selection {
  background: #FFD9DB;
  color: #C6152B; }

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

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

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

body {
  font-family: "Montserrat", sans-serif;
  color: #4A4A4A;
  line-height: 1.6; }

section,
.section {
  position: relative; }

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

img {
  vertical-align: bottom; }

img, video {
  height: auto; }

svg {
  max-height: 100%; }

iframe {
  border: none; }

.inner {
  position: relative;
  max-width: 1180px;
  width: 95%;
  margin: 0 auto; }
  @media print {
    .inner {
      max-width: 100% !important; } }
  @media (min-width: 1700px) {
    .inner {
      max-width: 1650px; } }
  @media (max-width: 1260px) {
    .inner {
      max-width: 940px; } }
  @media (max-width: 1023px) {
    .inner {
      max-width: 700px; } }
  @media (max-width: 670px) {
    .inner {
      max-width: calc(100% - 40px); } }

.wrapper {
  overflow: hidden; }

.wow {
  visibility: hidden; }

pre {
  font-size: 14px;
  font-family: "Space Mono";
  background: lightgray;
  padding: 10px;
  overflow-x: scroll; }

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

i {
  display: inline-block;
  position: relative; }

.icon--washer {
  position: relative;
  top: 5px;
  width: 32px;
  height: 23px;
  background: url("../img/pages/aboutme/icon-washer.svg") no-repeat; }

.icon--wip {
  width: 32px;
  height: 32px;
  background: url("../img/pages/aboutme/icon-wip.svg") no-repeat; }

.icon--cert {
  width: 28px;
  height: 32px;
  background: url("../img/pages/aboutme/icon-diploma.svg") no-repeat; }

.icon--pig {
  width: 32px;
  height: 32px;
  background: url("../img/pages/aboutme/icon-pig.svg") no-repeat; }

.icon--caret-down {
  width: 16px;
  height: 9px;
  background: url("../img/icons/caret-down.svg") no-repeat; }

.debug {
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  border-bottom-right-radius: 8px;
  border: 2px solid white;
  border-width: 0 2px 2px 0;
  z-index: 999; }
  @media print {
    .debug {
      display: none; } }
  .debug > * {
    padding: 10px 30px; }
  .debug__d {
    background: purple;
    color: white; }
    @media (max-width: 1260px) {
      .debug__d {
        display: none; } }
  .debug__lg {
    background: blue;
    color: white;
    display: none; }
    @media (max-width: 1260px) {
      .debug__lg {
        display: block; } }
    @media (max-width: 1023px) {
      .debug__lg {
        display: none; } }
  .debug__md {
    background: orange;
    color: black;
    display: none; }
    @media (max-width: 1023px) {
      .debug__md {
        display: block; } }
    @media (max-width: 670px) {
      .debug__md {
        display: none; } }
  .debug__sm {
    background: red;
    color: white;
    display: none; }
    @media (max-width: 670px) {
      .debug__sm {
        display: block; } }
    @media (max-width: 480px) {
      .debug__sm {
        display: none; } }
  .debug__xs {
    display: none;
    background: green;
    color: white; }
    @media (max-width: 480px) {
      .debug__xs {
        display: block; } }

/* //////////////////// */
/* HEADER / MOBILE MENU */
/* //////////////////// */
.page-header {
  position: relative;
  margin-bottom: 5rem;
  width: 100%;
  z-index: 10;
  /**
    Logo
   */ }
  @media print {
    .page-header {
      margin-bottom: -3rem; } }
  .page-header > .inner.row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .page-header__logo {
    width: 3.33rem; }
    @media (max-width: 670px) {
      .page-header__logo {
        width: 41px; } }
    .page-header__logo #logo-svg__form {
      fill: white;
      will-change: fill;
      -webkit-transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) fill;
      transition: 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) fill; }
      @media print {
        .page-header__logo #logo-svg__form {
          fill: #222; } }

.logo__home-link {
  display: block; }
  .logo__home-link svg {
    vertical-align: middle; }
  .logo__home-link:hover #logo-svg__form {
    fill: #C6152B; }

/* Social Media Icons */
.navigation__socialmedia {
  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;
  margin-left: 5px; }

.icon--facebook,
.icon--instagram {
  width: 1.5rem;
  height: 1.5rem;
  margin-left: .66rem; }
  @media (max-width: 670px) {
    .icon--facebook,
    .icon--instagram {
      width: 1.2rem;
      height: 1.2rem;
      margin-top: .2rem; } }

.icon--facebook__path,
.icon--instagram__path {
  will-change: fill;
  -webkit-transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) fill;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) fill; }

.hamburger {
  display: none;
  position: relative;
  top: -5px;
  width: calc(1.22rem + 35px);
  margin-left: calc(1.22rem + 10px);
  cursor: pointer; }
  @media (max-width: 670px) {
    .hamburger {
      display: block;
      position: fixed;
      top: auto;
      bottom: 1.22rem;
      left: calc(-1 * 1.22rem * 1 + 13px);
      width: calc(1.22rem + 45px);
      z-index: 7;
      padding: 23px 15px 15px 15px;
      will-change: transform;
      -webkit-transition: 0.28s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
      transition: 0.28s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
      transition: 0.28s cubic-bezier(0.165, 0.84, 0.44, 1) transform;
      transition: 0.28s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 0.28s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform; }
      .hamburger:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        width: 100%;
        height: 100%;
        background: #EC4650;
        border-radius: 50px;
        z-index: -1; } }
  .hamburger .line {
    display: block;
    height: 3px;
    margin-bottom: 8px;
    background: white; }
    .hamburger .line--first {
      width: 100%; }
    .hamburger .line--middle {
      width: 80%;
      margin-left: 2px; }
    .hamburger .line--last {
      width: 60%;
      margin-left: 4px; }
  .hamburger:hover .line {
    background: #C6152B; }

.hamburger--pizza {
  -webkit-transform: rotate(-14deg);
          transform: rotate(-14deg); }
  @media (max-width: 1023px) {
    .hamburger--pizza {
      -webkit-transform: translate(-31px, 31px);
              transform: translate(-31px, 31px); } }

.hamburger--focus {
  -webkit-transform: rotate(-14deg) translate(-10px, 0);
          transform: rotate(-14deg) translate(-10px, 0); }

.hamburger__label {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 10px;
  color: #FFD9DB;
  text-transform: uppercase;
  font-weight: 500;
  margin-left: 4px; }
  @media (max-width: 670px) {
    .hamburger__label {
      color: white; } }

.page-header__navigation {
  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; }
  @media print {
    .page-header__navigation {
      display: none; } }
  @media (max-width: 670px) {
    .page-header__navigation {
      margin-right: .66rem; } }

.navigation__list {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  font-size: 0.77778rem;
  font-weight: 500;
  line-height: 30px;
  text-transform: uppercase; }
  @media (max-width: 1260px) {
    .navigation__list {
      font-size: 14px;
      font-size: 0.77778rem; } }
  @media (max-width: 1023px) {
    .navigation__list {
      font-size: 14px;
      font-size: 0.77778rem; } }
  @media (max-width: 670px) {
    .navigation__list {
      font-size: 14px;
      font-size: 0.77778rem; } }
  @media (max-width: 670px) {
    .navigation__list {
      display: block;
      width: 100%;
      position: fixed;
      bottom: 0;
      left: 0;
      padding: 1.22rem 2.44rem 1.22rem 4.55rem;
      text-align: right;
      background: #EC4650;
      -webkit-box-shadow: -4px 0 37px 0 rgba(95, 50, 50, 0.37);
              box-shadow: -4px 0 37px 0 rgba(95, 50, 50, 0.37);
      z-index: 5;
      -webkit-transform: translateY(100%);
              transform: translateY(100%);
      will-change: transform;
      -webkit-transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
      transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
      transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) transform;
      transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform; } }

.navigation__list li {
  display: inline-block;
  margin-left: 1.22rem;
  will-change: transform;
  -webkit-transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) transform;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform; }
  @media (max-width: 670px) {
    .navigation__list li {
      display: block;
      width: 100%;
      margin-left: 0;
      padding: 1.22rem 0;
      font-size: 20px; } }
  .navigation__list li:hover {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px); }
    .navigation__list li:hover a {
      color: #FFD9DB;
      border-bottom: 2px solid; }
  .navigation__list li a {
    color: white;
    will-change: color, transform;
    -webkit-transition: .1s ease-out color;
    transition: .1s ease-out color; }

.js-wfp-doc-print {
  opacity: 0; }
  .js-wfp-doc-print.active {
    opacity: 1; }

.menu-item--ghost {
  padding: 3px 25px;
  border: 2px solid #f4f5f6;
  border-radius: 3px; }
  @media (max-width: 670px) {
    .menu-item--ghost.menu-item--ghost {
      display: inline-block;
      width: auto;
      padding: 10px 25px;
      margin-right: -20px; } }

@media (max-width: 670px) {
  .navigation--opened .navigation__list {
    -webkit-transform: translateY(0);
            transform: translateY(0); } }

/* /////// */
/* FOOTER */
/* /////// */
.footer-container {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: .43px; }
  @media print {
    .footer-container {
      display: none; } }
  .home .footer-container {
    color: #EC4650;
    background: #810e1c; }
    .home .footer-container .site-footer__copyright {
      color: #EC4650; }
  .single-angebot .footer-container {
    color: #EC4650;
    background: #810e1c; }
    .single-angebot .footer-container .site-footer__copyright {
      color: #EC4650; }
  .single-rechnung .footer-container {
    color: #EC4650;
    background: #810e1c; }
    .single-rechnung .footer-container .site-footer__copyright {
      color: #EC4650; }
  .tax-client .footer-container {
    color: #EC4650;
    background: #810e1c; }
    .tax-client .footer-container .site-footer__copyright {
      color: #EC4650; }

.site-footer {
  width: 100%;
  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;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 30px 0 25px 0; }
  @media (max-width: 670px) {
    .site-footer {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-flow: column nowrap;
              flex-flow: column nowrap; } }
  .site-footer__copyright {
    font-size: 14px;
    font-size: 0.77778rem;
    font-weight: 500;
    color: #08323F; }
    @media (max-width: 1260px) {
      .site-footer__copyright {
        font-size: 14px;
        font-size: 0.77778rem; } }
    @media (max-width: 1023px) {
      .site-footer__copyright {
        font-size: 14px;
        font-size: 0.77778rem; } }
    @media (max-width: 670px) {
      .site-footer__copyright {
        font-size: 14px;
        font-size: 0.77778rem; } }
    @media (max-width: 670px) {
      .site-footer__copyright {
        margin-bottom: 15px; } }
  .site-footer__pizza {
    font-size: 14px;
    font-size: 0.77778rem;
    font-family: "Space Mono", monospace;
    color: #C6152B; }
    @media (max-width: 1260px) {
      .site-footer__pizza {
        font-size: 14px;
        font-size: 0.77778rem; } }
    @media (max-width: 1023px) {
      .site-footer__pizza {
        font-size: 14px;
        font-size: 0.77778rem; } }
    @media (max-width: 670px) {
      .site-footer__pizza {
        font-size: 14px;
        font-size: 0.77778rem; } }
    @media (max-width: 670px) {
      .site-footer__pizza {
        margin-bottom: 15px; } }

.features__links {
  font-size: 14px;
  font-size: 0.77778rem;
  font-weight: 400; }
  @media (max-width: 1260px) {
    .features__links {
      font-size: 14px;
      font-size: 0.77778rem; } }
  @media (max-width: 1023px) {
    .features__links {
      font-size: 14px;
      font-size: 0.77778rem; } }
  @media (max-width: 670px) {
    .features__links {
      font-size: 14px;
      font-size: 0.77778rem; } }
  .features__links li {
    display: inline-block;
    margin-left: 1.22rem; }
  .features__links a {
    color: #08323F; }
    .features__links a:hover {
      color: #EC4650; }

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

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

select {
  padding-left: 1rem;
  padding-right: 2.5rem;
  background: #eeeeee url("../img/icons/caret-down-black.svg") no-repeat center right;
  background-size: 15px;
  background-position-x: calc(100% - 1rem);
  background-position-y: calc(50% + 2px);
  border-radius: 3px; }

.checkbox-group {
  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; }
  .checkbox-group .input-container {
    margin-right: 20px;
    margin-bottom: 20px; }

.checkbox {
  position: absolute;
  visibility: hidden;
  left: -99999px; }
  .checkbox:hover + label:before {
    background-color: #E1E1E1 !important; }
  .checkbox + label {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    letter-spacing: .5px;
    color: #4A4A4A;
    cursor: pointer; }
    .checkbox + label:before {
      content: '';
      position: relative;
      top: -1px;
      display: block;
      width: 30px;
      height: 30px;
      background: #eeeeee;
      border-radius: 3px;
      margin-right: 10px; }
  .checkbox:checked + label:before {
    background: #eeeeee url("../img/icons/check-black.svg") no-repeat center center;
    background-size: 18px; }

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

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

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

.opener {
  position: relative;
  width: 100%;
  min-height: 500px;
  padding-top: 3rem;
  overflow: hidden; }
  @media print {
    .opener {
      padding-top: 1rem;
      background: none !important;
      color: #222;
      margin-bottom: 0 !important; } }
  @media (max-width: 1023px) {
    .opener {
      min-height: 0; } }

.page-opener__hero {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: white;
  margin-bottom: 5rem; }
  @media print {
    .page-opener__hero {
      color: #222;
      margin-bottom: 0;
      padding-bottom: 0; } }
  @media (max-width: 1023px) {
    .page-opener__hero {
      padding-bottom: 4.55rem; } }
  @media (max-width: 670px) {
    .page-opener__hero {
      padding-top: 150px; } }
  @media (max-width: 480px) {
    .page-opener__hero {
      padding-top: 20px; } }

.hero__headline {
  color: white;
  margin-bottom: 2.77rem; }
  @media print {
    .hero__headline {
      color: #222; } }
  @media (max-width: 670px) {
    .hero__headline {
      padding-right: 80px;
      margin-bottom: .66rem; }
      .hero__headline span:first-child {
        display: inline-block;
        margin-bottom: .66rem; } }

.hero__subline {
  display: inline-block;
  width: 95%;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto; }
  @media (max-width: 1260px) {
    .hero__subline {
      width: 100%; } }
  @media (max-width: 670px) {
    .hero__subline {
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      width: 100%; } }
  .hero__subline a {
    color: white;
    -webkit-transition: .1s ease-out color .05s .1s ease border;
    transition: .1s ease-out color .05s .1s ease border; }
    .hero__subline a:hover {
      color: #C6152B; }

@media (max-width: 1023px) {
  .hero__subline--frontpage {
    width: 75%; } }

@media (max-width: 670px) {
  .hero__subline--frontpage {
    margin-bottom: 2.77rem; } }

.ttemoji__line {
  white-space: nowrap; }

.hero__subline--pad {
  display: block; }
  @media (max-width: 670px) {
    .hero__subline--pad {
      display: none; } }

.hero__subline--phone {
  display: none;
  font-weight: 500; }
  @media (max-width: 670px) {
    .hero__subline--phone {
      display: block; } }

.ttemoji__line--phone {
  display: inline-block;
  margin-top: 1.22rem; }

.ttemoji {
  display: inline-block;
  position: relative;
  /**************/
  /* EMOJI ICON */
  /**************/
  /***********/
  /* TOOLTIP */
  /***********/
  /* Display Tooltip on Hover */
  /* Emojis shown at Pad-Viewport */
  /* Emojis, shown at Phone-Viewport */ }
  .ttemoji:after {
    display: none;
    content: ' ';
    position: relative;
    top: 5px;
    width: 31px;
    height: 31px;
    margin: 0 4px; }
  .ttemoji:before {
    display: inline-block;
    position: absolute;
    top: 5px;
    left: 50%;
    padding: 6px 8px 6px 8px;
    font-size: 16px;
    color: white;
    line-height: 1;
    background: rgba(198, 21, 43, 0.8);
    -webkit-transform: translate(-55%, 3px);
            transform: translate(-55%, 3px);
    opacity: 0;
    will-change: opacity, transform;
    -webkit-transition: .13s ease-out all;
    transition: .13s ease-out all;
    z-index: 3;
    pointer-events: none; }
  .ttemoji--desktop:after {
    display: inline-block; }
  .ttemoji--desktop:hover:before {
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    opacity: 1; }
  @media (max-width: 1023px) {
    .ttemoji--pad {
      line-height: 0;
      font-size: 0; }
      .ttemoji--pad:after {
        display: inline-block; }
      .ttemoji--pad:hover:before {
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
        opacity: 1; } }
  @media (max-width: 670px) {
    .ttemoji--phone {
      line-height: 0;
      font-size: 0; }
      .ttemoji--phone:after {
        display: inline-block; }
      .ttemoji--phone:hover:before {
        -webkit-transform: translate(-50%, 0);
                transform: translate(-50%, 0);
        opacity: 1; } }

/**************************/
/* EMOJI ICONS & TOOLTIPS */
/**************************/
.ttemoji--pizza:before {
  content: "Pizza"; }

.ttemoji--pizza:after {
  background: url("../img/ttemoji/emoji-pizza.png") no-repeat;
  background-size: contain; }

.ttemoji--design:before {
  content: "Design"; }

.ttemoji--design:after {
  background: url("../img/ttemoji/emoji-art.png") no-repeat;
  background-size: contain; }

.ttemoji--screen:before {
  content: "Bildschirm"; }

.ttemoji--screen:after {
  background: url("../img/ttemoji/emoji-screen.png") no-repeat;
  background-size: contain; }

.ttemoji--tv:before {
  content: "Serien"; }

.ttemoji--tv:after {
  background: url("../img/ttemoji/emoji-tv.png") no-repeat;
  background-size: contain; }

.ttemoji--heart:before {
  content: "Herz"; }

.ttemoji--heart:after {
  background: url("../img/ttemoji/emoji-heart.png") no-repeat;
  background-size: contain; }

.ttemoji--fire:before {
  content: "brennt"; }

.ttemoji--fire:after {
  background: url("../img/ttemoji/emoji-fire.png") no-repeat;
  background-size: contain; }

.ttemoji--me:before {
  content: "Mein"; }

.ttemoji--me:after {
  background: url("../img/ttemoji/emoji-me.png") no-repeat;
  background-size: contain; }

.ttemoji--fingerup:before {
  content: "Oben beantworten"; }

.ttemoji--fingerup:after {
  background: url("../img/ttemoji/emoji-fingerup.png") no-repeat;
  background-size: contain; }

.ttemoji--project:before {
  content: "Projekte"; }

.ttemoji--project:after {
  background: url("../img/ttemoji/emoji-project.png") no-repeat;
  background-size: contain; }

.ttemoji--me:before {
  content: "ich"; }

.ttemoji--me:after {
  background: url("../img/ttemoji/emoji-me.png") no-repeat;
  background-size: contain; }

.ttemoji--dollars:before {
  content: "Million"; }

.ttemoji--dollars:after {
  background: url("../img/ttemoji/emoji-dollars.png") no-repeat;
  background-size: contain; }

.ttemoji--nosign:before {
  content: "keine"; }

.ttemoji--nosign:after {
  background: url("../img/ttemoji/emoji-nosign.png") no-repeat;
  background-size: contain; }

.ttemoji--shrug:before {
  content: "aus unerklärlichen Gründen"; }

.ttemoji--shrug:after {
  background: url("../img/ttemoji/emoji-shrug.png") no-repeat;
  background-size: contain; }

/******************/
/* PHONE TOOLTIPS */
/******************/
.ttemoji--phone.ttemoji--me:before {
  content: 'Mein'; }

.ttemoji--phone.ttemoji--fire:before {
  content: 'brennt für'; }

.ttemoji--phone.ttemoji--design:before {
  content: 'Design für'; }

.ttemoji--phone.ttemoji--screen:before {
  content: 'Bildschirme'; }

.taglist {
  position: relative;
  width: 100%; }

.experiment__taglist__message {
  padding: 3.33rem 0 1.22rem 0; }
  @media (max-width: 670px) {
    .experiment__taglist__message {
      padding: 1.67rem 0 .66rem; } }

.taglist__list {
  font-size: 36px;
  font-size: 2rem;
  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; }
  @media (max-width: 1260px) {
    .taglist__list {
      font-size: 32px;
      font-size: 1.77778rem; } }
  @media (max-width: 1023px) {
    .taglist__list {
      font-size: 28px;
      font-size: 1.55556rem; } }
  @media (max-width: 670px) {
    .taglist__list {
      font-size: 22px;
      font-size: 1.22222rem; } }

.taglist__tag {
  margin: .66rem 0; }
  @media (max-width: 670px) {
    .taglist__tag {
      margin: .66rem .22rem; } }
  .taglist__tag a {
    padding-left: .66rem;
    padding-right: .66rem; }

.wfp-login-container {
  padding: 100px 0; }
  @media (max-width: 1023px) {
    .wfp-login-container {
      padding: 80px 0; } }
  @media (max-width: 670px) {
    .wfp-login-container {
      padding: 60px 0; } }

.wfp-login-form #loginform {
  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; }
  .wfp-login-form #loginform p {
    margin-bottom: 30px; }
  .wfp-login-form #loginform label {
    display: block;
    font-size: 14px;
    font-size: 0.77778rem;
    font-weight: 500;
    color: #08323F;
    margin-bottom: 10px; }
    @media (max-width: 1260px) {
      .wfp-login-form #loginform label {
        font-size: 14px;
        font-size: 0.77778rem; } }
    @media (max-width: 1023px) {
      .wfp-login-form #loginform label {
        font-size: 14px;
        font-size: 0.77778rem; } }
    @media (max-width: 670px) {
      .wfp-login-form #loginform label {
        font-size: 14px;
        font-size: 0.77778rem; } }
  .wfp-login-form #loginform .input {
    width: 100%;
    padding: 1rem 1.22rem;
    background: white !important; }
  .wfp-login-form #loginform .button, .wfp-login-form #loginform input[type="submit"] {
    padding: .66rem 2.61rem;
    border-radius: 4px;
    color: white;
    background: #C6152B; }
    @media (max-width: 670px) {
      .wfp-login-form #loginform .button, .wfp-login-form #loginform input[type="submit"] {
        padding: .66rem 1.22rem; } }
    .wfp-login-form #loginform .button:hover, .wfp-login-form #loginform input:hover[type="submit"] {
      background: #cf162d; }
    .wfp-login-form #loginform .button:active, .wfp-login-form #loginform input:active[type="submit"] {
      background: #C6152B; }

*::-webkit-scrollbar {
  width: 5px;
  background-color: #F8F8F8;
  -webkit-box-shadow: inset 2px 0px 5px 0 rgba(95, 50, 50, 0.1);
          box-shadow: inset 2px 0px 5px 0 rgba(95, 50, 50, 0.1); }

*::-webkit-scrollbar-thumb {
  background-color: #d01521; }
  *::-webkit-scrollbar-thumb:hover {
    background-color: #af1326; }

.kpi-row {
  padding: 60px 0;
  margin-bottom: -40px; }
  @media (max-width: 1023px) {
    .kpi-row {
      padding: 40px 0; } }
  @media (max-width: 670px) {
    .kpi-row {
      padding: 30px 0; } }

.kpi-col {
  width: calc(33.33333% - 30px);
  margin-bottom: 40px; }
  @media (max-width: 670px) {
    .kpi-col {
      width: calc(50% - 30px); } }
  @media (max-width: 480px) {
    .kpi-col {
      width: calc(50% - 30px) !important; } }
  .kpi-col__value {
    font-size: 52px;
    font-size: 2.88889rem;
    font-weight: 500;
    color: #08323F; }
    @media (max-width: 1023px) {
      .kpi-col__value {
        font-size: 42px;
        font-size: 2.33333rem; } }
    @media (max-width: 670px) {
      .kpi-col__value {
        font-size: 36px;
        font-size: 2rem; } }
  .kpi-col__subtitle p {
    font-size: 16px;
    font-size: 0.88889rem; }
    @media (max-width: 670px) {
      .kpi-col__subtitle p {
        font-size: 14px;
        font-size: 0.77778rem; } }

@media (min-width: 1023px) and (max-width: 1260px) {
  .intro-desc .subline {
    font-size: 18px;
    font-size: 1rem; } }

@media (max-width: 1023px) {
  .intro-desc .text--twocol {
    -webkit-column-count: 1;
            column-count: 1; } }

.cookie-consent {
  background: #C6152B;
  color: #FFD9DB;
  padding: 1rem 0; }
  .cookie-consent--hidden {
    display: none; }
  .cookie-consent .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .cookie-consent__title {
    color: #FFD9DB;
    font-weight: 500; }
  .cookie-consent__content {
    width: calc(83.33333% - 30px); }
    @media (max-width: 480px) {
      .cookie-consent__content {
        width: calc(100% - 30px); } }
  .cookie-consent__actions {
    width: calc(16.66667% - 30px);
    text-align: right; }
    @media (max-width: 480px) {
      .cookie-consent__actions {
        width: calc(100% - 30px);
        text-align: center; }
        .cookie-consent__actions .button, .cookie-consent__actions input[type="submit"] {
          width: 100%; } }

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 600px;
  max-width: calc(100vw - 30px);
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 80px;
  background: white;
  -webkit-box-shadow: 0 15px 40px 0 rgba(95, 50, 50, 0.2);
          box-shadow: 0 15px 40px 0 rgba(95, 50, 50, 0.2);
  text-align: center;
  -webkit-transform: translate(-50%, -40%) scale(0.95);
          transform: translate(-50%, -40%) scale(0.95);
  opacity: 0; }
  @media (max-width: 1023px) {
    .modal {
      padding: 60px; } }
  @media (max-width: 670px) {
    .modal {
      padding: 30px; } }
  .modal.modal--in.modal--alert {
    border-top: 6px solid orange;
    -webkit-animation: entranceAlert .22s ease forwards;
            animation: entranceAlert .22s ease forwards; }

@-webkit-keyframes entranceAlert {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -40%) scale(0.95);
            transform: translate(-50%, -40%) scale(0.95); }
  40% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
            transform: translate(-50%, -50%) scale(1.05); }
  80% {
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95); }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1; } }

@keyframes entranceAlert {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -40%) scale(0.95);
            transform: translate(-50%, -40%) scale(0.95); }
  40% {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
            transform: translate(-50%, -50%) scale(1.05); }
  80% {
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95); }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1; } }
  .modal.modal--in.modal--info {
    border-top: 10px solid #F8F8F8;
    -webkit-animation: entranceInfo .23s ease-out forwards;
            animation: entranceInfo .23s ease-out forwards; }

@-webkit-keyframes entranceInfo {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -40%) scale(0.95);
            transform: translate(-50%, -40%) scale(0.95); }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1; } }

@keyframes entranceInfo {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -40%) scale(0.95);
            transform: translate(-50%, -40%) scale(0.95); }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1; } }
  .modal.modal--in.modal--error {
    border-top: 6px solid #C6152B;
    -webkit-animation: entranceError .22s ease forwards;
            animation: entranceError .22s ease forwards; }

@-webkit-keyframes entranceError {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95); }
  40% {
    -webkit-transform: translate(-55%, -50%);
            transform: translate(-55%, -50%); }
  80% {
    -webkit-transform: translate(-45%, -50%);
            transform: translate(-45%, -50%); }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1; } }

@keyframes entranceError {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0.95);
            transform: translate(-50%, -50%) scale(0.95); }
  40% {
    -webkit-transform: translate(-55%, -50%);
            transform: translate(-55%, -50%); }
  80% {
    -webkit-transform: translate(-45%, -50%);
            transform: translate(-45%, -50%); }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    opacity: 1; } }
  .modal.modal--in.modal--success {
    border-top: 6px solid #00DA5A;
    -webkit-animation: entranceSuccess .34s ease-out forwards;
            animation: entranceSuccess .34s ease-out forwards; }

@-webkit-keyframes entranceSuccess {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -40%) scale(0.95);
            transform: translate(-50%, -40%) scale(0.95); }
  20% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1; }
  50% {
    -webkit-transform: translate(-50%, -51%) scale(1.02);
            transform: translate(-50%, -51%) scale(1.02);
    opacity: 1; }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1; } }

@keyframes entranceSuccess {
  0% {
    opacity: 0;
    -webkit-transform: translate(-50%, -40%) scale(0.95);
            transform: translate(-50%, -40%) scale(0.95); }
  20% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1; }
  50% {
    -webkit-transform: translate(-50%, -51%) scale(1.02);
            transform: translate(-50%, -51%) scale(1.02);
    opacity: 1; }
  100% {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1; } }
  .modal.modal--out {
    -webkit-animation: modalLeave 0.33s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards !important;
            animation: modalLeave 0.33s cubic-bezier(0.6, -0.28, 0.735, 0.045) forwards !important; }

@-webkit-keyframes modalLeave {
  from {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1; }
  to {
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
    opacity: 0; } }

@keyframes modalLeave {
  from {
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 1; }
  to {
    -webkit-transform: translate(-50%, -40%);
            transform: translate(-50%, -40%);
    opacity: 0; } }
  .modal__title {
    margin-bottom: 10px; }
  .modal__content {
    margin-bottom: 30px; }
  .modal__input {
    margin-top: 30px; }
    .modal__input input {
      width: 100%;
      text-align: center;
      padding: 1rem 1.22rem; }
  .modal__actions {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-left: -20px; }
    .modal__actions a {
      margin-left: 20px; }

/* ////////////////// */
/* PAGES / TEMPLATES */
/* ////////////////// */
.frontpage-content {
  padding: 80px 0 75px 0; }
  @media (max-width: 670px) {
    .frontpage-content {
      padding: 60px 0; } }
  @media (max-width: 480px) {
    .frontpage-content {
      padding: 60px 0 45px 0; } }

.hero--frontpage {
  background: #EC4650 url("../img/herobanner/herobanner-frontpage.png") no-repeat left center; }
  @media (max-width: 1023px) {
    .hero--frontpage {
      height: auto; } }
  @media (max-width: 670px) {
    .hero--frontpage {
      background-position-x: 15%; } }
  .hero--frontpage h1, .hero--frontpage .h1 {
    color: white; }

.linktext {
  width: 100%;
  line-height: 1.7; }
  @media (max-width: 1023px) {
    .linktext {
      font-size: 16px;
      font-size: 0.88889rem; } }
  @media (max-width: 670px) {
    .linktext {
      font-size: 20px;
      font-size: 1.11111rem; } }

.linktext__line {
  display: block;
  margin-bottom: 1.22rem; }

.contact-container {
  position: relative;
  padding: 100px 0 120px 0; }
  @media (max-width: 670px) {
    .contact-container {
      padding: 60px 0 80px 0; } }

.contact__action {
  position: relative; }

.contact__messagebuble {
  width: 25%; }
  @media (max-width: 1023px) {
    .contact__messagebuble {
      width: 41.66667%;
      margin-left: auto; } }
  @media (max-width: 670px) {
    .contact__messagebuble {
      width: 58.33333%;
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1;
      margin-bottom: 10px; } }

.frontpage-linkhub {
  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;
  padding: 100px 0; }
  @media (max-width: 1023px) {
    .frontpage-linkhub {
      padding: 80px 0 100px 0; } }
  @media (max-width: 480px) {
    .frontpage-linkhub {
      padding: 60px 0 80px 0; } }
  .frontpage-linkhub h2, .frontpage-linkhub .h2 {
    display: block;
    margin-bottom: 30px; }

.linkhub__tiles {
  width: 100%; }

.linkhub__tile {
  display: block;
  position: relative;
  width: calc(25% - 30px);
  border-radius: 5px;
  cursor: pointer;
  background: #F8F8F8;
  will-change: transform, box-shadow, background;
  -webkit-transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) all;
  transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) all; }
  @media (max-width: 1023px) {
    .linkhub__tile {
      width: calc(33.33333% - 30px); } }
  @media (max-width: 670px) {
    .linkhub__tile {
      width: calc(50% - 30px); } }
  .linkhub__tile:hover {
    background: #F8F8F8;
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px);
    -webkit-box-shadow: 0 15px 40px 0 rgba(95, 50, 50, 0.2);
            box-shadow: 0 15px 40px 0 rgba(95, 50, 50, 0.2); }
  .linkhub__tile:after {
    content: '';
    display: block;
    padding-top: 90%;
    width: 100%; }

.tile__content {
  position: absolute;
  top: 47%;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 0 1.22rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%); }

.tile__icon {
  display: inline-block;
  width: 4.55rem; }
  @media (max-width: 1023px) {
    .tile__icon {
      width: 3.33rem; } }

@media (max-width: 1023px) {
  .tile__label {
    font-size: 16px;
    font-size: 0.88889rem; } }

@media (max-width: 480px) {
  .tile__label {
    font-size: 12px;
    font-size: 0.66667rem; } }

.tile--codepen:hover {
  background: #13708C;
  color: #f4f5f6; }
  .tile--codepen:hover path {
    fill: #f4f5f6; }

.tile--instagram:hover {
  background: #d6249f;
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #f4f5f6; }
  .tile--instagram:hover path, .tile--instagram:hover circle {
    fill: #f4f5f6; }

.projekt-listing {
  display: none;
  width: 100%;
  margin: 0 0 8rem 0; }

.projekt-listing__projekt {
  position: relative;
  width: 100%;
  margin: 1.22rem 0; }
  .projekt-listing__projekt ~ .projekt__year {
    margin-top: 3.33rem; }

.projekt__year {
  width: 100%; }
  .projekt__year ~ .projekt-listing__projekt {
    margin-top: .66rem; }
    @media (max-width: 670px) {
      .projekt__year ~ .projekt-listing__projekt {
        padding-top: .8rem; } }

.projekt__thumbnail {
  position: fixed;
  top: 0;
  left: 0;
  max-width: 480px;
  pointer-events: none;
  z-index: 5;
  -webkit-box-shadow: 0 15px 40px 0 rgba(95, 50, 50, 0.2);
          box-shadow: 0 15px 40px 0 rgba(95, 50, 50, 0.2);
  opacity: 0;
  will-change: opacity;
  -webkit-transition: 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) opacity;
  transition: 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) opacity; }
  @media (max-width: 670px) {
    .projekt__thumbnail {
      position: relative;
      opacity: 1;
      margin: 1.22rem 0;
      -webkit-transform: none !important;
              transform: none !important; } }
  .projekt__thumbnail img {
    display: block;
    will-change: transform;
    -webkit-transition: 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
    transition: 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
    transition: 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) transform;
    transition: 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 0.25s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
    -webkit-transform: translateY(50px);
            transform: translateY(50px); }
    @media (max-width: 670px) {
      .projekt__thumbnail img {
        -webkit-transform: translateY(0);
                transform: translateY(0); } }
  .projekt__thumbnail.thumbnail--visible {
    opacity: 1; }
    .projekt__thumbnail.thumbnail--visible img {
      -webkit-transform: translateY(0);
              transform: translateY(0); }

.projekt__readmore {
  display: inline-block;
  will-change: transform;
  -webkit-transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) border, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) border, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) border;
  transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) border, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
  border-bottom: 2px solid transparent;
  margin-top: .5rem; }
  .projekt__readmore .emoji {
    top: 1px;
    margin-right: 5px; }
    .projekt__readmore .emoji .regular {
      display: inline-block; }
    .projekt__readmore .emoji .hover {
      display: none; }
  .projekt__readmore:hover {
    -webkit-transform: translate(2px, -2px);
            transform: translate(2px, -2px);
    color: #EC4650;
    border-bottom: 2px solid; }
    .projekt__readmore:hover .regular {
      display: none; }
    .projekt__readmore:hover .hover {
      display: inline-block; }

.hero--projekte, .hero--projekt-single {
  height: 450px;
  background: #EC4650 url("../img/herobanner/herobanner-projekte.jpg") no-repeat left center;
  background-size: cover; }
  @media (max-width: 1023px) {
    .hero--projekte, .hero--projekt-single {
      height: auto; } }
  @media (max-width: 1023px) {
    .hero--projekte .page-opener__hero, .hero--projekt-single .page-opener__hero {
      padding-bottom: 2.44rem; } }
  @media (max-width: 670px) {
    .hero--projekte .page-opener__hero, .hero--projekt-single .page-opener__hero {
      padding-bottom: 1.22rem; } }
  .hero--projekte .hero__headline, .hero--projekte .h1, .hero--projekt-single .hero__headline, .hero--projekt-single .h1 {
    width: 1050px; }
    @media (max-width: 1260px) {
      .hero--projekte .hero__headline, .hero--projekte .h1, .hero--projekt-single .hero__headline, .hero--projekt-single .h1 {
        width: 100%; } }
    @media (max-width: 670px) {
      .hero--projekte .hero__headline, .hero--projekte .h1, .hero--projekt-single .hero__headline, .hero--projekt-single .h1 {
        padding-right: 0; } }

.projekte__usermessage {
  width: 100%;
  padding: 60px 0 100px 0;
  background: #F8F8F8; }
  @media (max-width: 1023px) {
    .projekte__usermessage {
      padding: 50px 0 70px 0; } }
  @media (max-width: 670px) {
    .projekte__usermessage {
      padding-top: 60px; } }

.usermessage__headline {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4A4A4A; }
  @media (max-width: 1023px) {
    .usermessage__headline {
      padding-right: 1.22rem; } }
  @media (max-width: 670px) {
    .usermessage__headline {
      margin-top: -.5rem; } }
  .usermessage__headline .emoji {
    font-size: 1.5em;
    top: 1rem;
    line-height: 0; }
    @media (max-width: 670px) {
      .usermessage__headline .emoji {
        margin-top: -20px;
        top: 11px; } }

.projekte-auswahl {
  padding-top: 100px;
  margin-bottom: 150px; }
  @media (max-width: 1023px) {
    .projekte-auswahl {
      padding-top: 80px;
      margin-bottom: 100px; } }
  .projekte-auswahl .container {
    max-width: 1400px;
    margin: 0 auto; }

@media (max-width: 670px) {
  .auswahl-listing__projekt {
    margin-bottom: 2rem; } }

.auswahl__title {
  margin-bottom: 0;
  font-weight: 500; }
  .auswahl__title a {
    display: block;
    -webkit-transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
    transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
    transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) transform;
    transition: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
    color: #EC4650; }
    .auswahl__title a:hover {
      text-decoration: underline;
      -webkit-transform: translate(2px, -2px);
              transform: translate(2px, -2px); }
  .auswahl__title-suffix {
    display: none; }

.auswahl__thumbnail {
  position: relative;
  will-change: box-shadow, transform, background;
  -webkit-transition: 0.1s ease background, 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-transform;
  transition: 0.1s ease background, 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-transform;
  transition: 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) transform, 0.1s ease background;
  transition: 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) transform, 0.1s ease background, 0.2s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-box-shadow, 0.15s cubic-bezier(0.25, 0.25, 0.315, 1.35) -webkit-transform; }
  @media (max-width: 670px) {
    .auswahl__thumbnail img {
      width: 100%; } }
  .auswahl__thumbnail:hover img {
    -webkit-box-shadow: 0 5px 15px 0 rgba(70, 50, 50, 0.3);
            box-shadow: 0 5px 15px 0 rgba(70, 50, 50, 0.3); }
  .auswahl__thumbnail-link {
    cursor: pointer;
    display: block; }
    .auswahl__thumbnail-link:before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      z-index: 1;
      will-change: opacity, visibility;
      -webkit-transition: .23s ease all;
      transition: .23s ease all; }
    .auswahl__thumbnail-link:hover:before {
      opacity: 1;
      visibility: visible;
      background: rgba(236, 70, 80, 0.43); }

.the-content p + p, .the-content p .p, .the-content .p + p, .the-content .p .p {
  margin-top: 1.5rem; }

.the-content hr {
  border-color: #E1E1E1;
  border-style: solid;
  border-width: 0 0 1px 0; }

.image-stack {
  margin-top: -8rem; }
  @media (max-width: 1023px) {
    .image-stack {
      margin-top: -6rem; } }
  @media (max-width: 670px) {
    .image-stack {
      margin-top: -4rem; } }

.aligncenter {
  margin: 0 auto; }

.wp-block-embed-instagram iframe {
  margin: 0 auto !important; }

.fullwidth {
  width: 100vw;
  margin-left: calc(-1 * ((100vw - 100%) / 2));
  max-width: none; }
  .fullwidth img {
    width: 100%; }

@media (max-width: 670px) {
  .hero__headline--projekt-single {
    margin-bottom: 1.22rem; } }

.hero--projekt-single {
  background: #EC4650; }
  @media (max-width: 670px) {
    .hero--projekt-single .page-opener__hero {
      padding-bottom: 3.33rem; } }

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

.experiments__headline {
  margin-bottom: 60px; }
  @media (max-width: 1023px) {
    .experiments__headline {
      margin-bottom: 40px; } }
  @media (max-width: 670px) {
    .experiments__headline {
      line-height: 1.3; } }

.experiment {
  position: relative;
  margin-bottom: .66rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: calc(25% - 30px); }
  @media (max-width: 1260px) {
    .experiment {
      width: calc(33.33333% - 30px); } }
  @media (max-width: 1023px) {
    .experiment {
      width: calc(37.5% - 30px); } }
  @media (max-width: 670px) {
    .experiment {
      margin-bottom: .22rem; } }

.experiment--displaymeta {
  width: 50%; }
  @media (max-width: 1260px) {
    .experiment--displaymeta {
      width: 66.66667%; } }
  @media (max-width: 1023px) {
    .experiment--displaymeta {
      width: 100%; } }
  .experiment--displaymeta .experiment__thumb {
    width: calc(50% - 30px); }
    @media (max-width: 1023px) {
      .experiment--displaymeta .experiment__thumb {
        width: calc(33.33333% - 30px); } }
    @media (max-width: 670px) {
      .experiment--displaymeta .experiment__thumb {
        width: calc(33.33333% - 30px); } }
    @media (max-width: 480px) {
      .experiment--displaymeta .experiment__thumb {
        max-width: 63%;
        width: 100%; } }
  .experiment--displaymeta .experiment__meta {
    display: block; }

.experiment__thumb {
  position: relative;
  width: 100%;
  float: left;
  will-change: transform;
  -webkit-transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
  transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform;
  transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) transform;
  transition: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) transform, 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) -webkit-transform; }
  .experiment__thumb:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 0;
    height: 100%;
    background: #C6152B;
    z-index: 5; }

.experiment__link:hover .experiment__thumb {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 15px 40px 0 rgba(95, 50, 50, 0.2);
          box-shadow: 0 15px 40px 0 rgba(95, 50, 50, 0.2); }
  @media (max-width: 480px) {
    .experiment__link:hover .experiment__thumb {
      -webkit-transform: none;
              transform: none; } }
  .experiment__link:hover .experiment__thumb:before {
    -webkit-animation: .4s swishShineRight;
            animation: .4s swishShineRight; }
    @media (max-width: 480px) {
      .experiment__link:hover .experiment__thumb:before {
        -webkit-animation: none;
                animation: none; } }

.experiment__link:hover ~ .experiment__meta .experiment__meta__title {
  -webkit-transform: translateX(0);
          transform: translateX(0); }

@-webkit-keyframes swishShineRight {
  0% {
    left: 0;
    right: auto;
    width: 0; }
  49% {
    left: 0;
    right: auto;
    width: 100%; }
  50% {
    left: auto;
    right: 0;
    width: 100%; }
  100% {
    left: auto;
    right: 0;
    width: 0; } }

@keyframes swishShineRight {
  0% {
    left: 0;
    right: auto;
    width: 0; }
  49% {
    left: 0;
    right: auto;
    width: 100%; }
  50% {
    left: auto;
    right: 0;
    width: 100%; }
  100% {
    left: auto;
    right: 0;
    width: 0; } }

.experiment--gif .experiment__img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0;
  will-change: opacity;
  -webkit-transition: .35s 0s ease opacity;
  transition: .35s 0s ease opacity; }

.experiment--gif:hover .experiment__img {
  opacity: 1; }

.experiment__still {
  position: relative;
  z-index: 0;
  pointer-events: none; }

.experiment__img {
  position: relative;
  z-index: 1;
  pointer-events: none; }

@media (max-width: 480px) {
  .experiment__img,
  .experiment__still {
    width: 100%; } }

.experiment__gifbadge {
  display: block;
  position: absolute;
  top: 1.22rem;
  right: 1.22rem;
  width: 60px;
  height: 30px;
  background: rgba(0, 0, 0, 0.17) url("../img/icons/gif-badge.gif") no-repeat center center;
  background-size: contain;
  opacity: .7;
  -webkit-box-shadow: 2px 0 17px 0 rgba(0, 0, 0, 0.17);
          box-shadow: 2px 0 17px 0 rgba(0, 0, 0, 0.17);
  z-index: 2; }
  @media (max-width: 670px) {
    .experiment__gifbadge {
      width: 30px;
      display: none; } }

.experiment__meta {
  position: relative;
  display: none;
  float: left;
  width: calc(50% - 30px);
  margin-left: 1.22rem;
  z-index: 3;
  padding-top: 1.22rem; }
  @media (max-width: 1023px) {
    .experiment__meta {
      width: calc(66.66667% - 30px); } }
  @media (max-width: 480px) {
    .experiment__meta {
      position: static;
      width: calc(100% - 30px);
      margin-left: 0;
      padding-top: .66rem; } }

.experiment__meta__title {
  font-size: 24px;
  font-size: 1.33333rem;
  -webkit-transform: translateX(-2rem);
          transform: translateX(-2rem);
  will-change: transform;
  -webkit-transition: 0.28s 0.04s cubic-bezier(0.165, 0.84, 0.44, 1) transform;
  transition: 0.28s 0.04s cubic-bezier(0.165, 0.84, 0.44, 1) transform;
  margin-bottom: .66rem; }
  @media (max-width: 1260px) {
    .experiment__meta__title {
      font-size: 21px;
      font-size: 1.16667rem; } }
  @media (max-width: 1023px) {
    .experiment__meta__title {
      font-size: 18px;
      font-size: 1rem; } }
  @media (max-width: 670px) {
    .experiment__meta__title {
      font-size: 20px;
      font-size: 1.11111rem; } }
  @media (max-width: 480px) {
    .experiment__meta__title {
      -webkit-transform: translateX(0);
              transform: translateX(0);
      position: absolute;
      top: 20px;
      left: 160px; } }
  .experiment__meta__title:hover {
    -webkit-transform: translate(calc(-2rem + 2px), -2px);
            transform: translate(calc(-2rem + 2px), -2px); }

.experiment__meta__excerpt {
  font-size: 18px;
  font-size: 1rem; }
  @media (max-width: 480px) {
    .experiment__meta__excerpt {
      font-size: 16px;
      font-size: 0.88889rem; } }

.hero--experimente {
  height: 450px;
  background: #EC4650 url("../img/herobanner/herobanner-experiments.jpg") no-repeat left center;
  background-size: cover; }
  @media (max-width: 1023px) {
    .hero--experimente {
      height: auto; } }
  @media (max-width: 1023px) {
    .hero--experimente .page-opener__hero {
      padding-bottom: 2.44rem; } }
  @media (max-width: 480px) {
    .hero--experimente .page-opener__hero {
      padding-bottom: 1.22rem; } }
  .hero--experimente .hero__headline, .hero--experimente .h1 {
    width: 950px; }
    @media (max-width: 1260px) {
      .hero--experimente .hero__headline, .hero--experimente .h1 {
        width: 100%; } }
    @media (max-width: 670px) {
      .hero--experimente .hero__headline, .hero--experimente .h1 {
        padding-right: 0; } }

.experiments-intro {
  padding: 3.33rem 0; }
  @media (max-width: 670px) {
    .experiments-intro {
      padding: 2.44rem 0; } }

.hero__subline.hero__subline--experiment {
  width: 80%; }
  @media (max-width: 1023px) {
    .hero__subline.hero__subline--experiment {
      width: 90%; } }

@media (max-width: 670px) {
  .hero--dokument .hero__headline {
    padding-right: 0; } }

.document-id {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  border: 2px solid #E1E1E1;
  padding: 5px 12px 4px 12px;
  border-radius: 4px;
  margin-right: -12px;
  margin-bottom: 10px; }
  .document-id__prefix {
    display: inline-block;
    margin-right: 20px; }

.document-meta__main-col {
  width: 75%; }
  @media (max-width: 670px) {
    .document-meta__main-col {
      width: 100%; } }

.document-meta__info-col {
  width: 25%;
  margin-top: 12px; }
  @media (max-width: 1023px) {
    .document-meta__info-col {
      margin-top: 5px;
      font-size: 14px;
      font-size: 0.77778rem; } }
  @media (max-width: 670px) {
    .document-meta__info-col {
      -webkit-box-ordinal-group: 0;
          -ms-flex-order: -1;
              order: -1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-flow: row-reverse wrap;
              flex-flow: row-reverse wrap;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%;
      margin-top: 0;
      margin-bottom: 20px; } }

.document-meta__title {
  font-weight: 500; }

.document-meta__date {
  letter-spacing: .3px; }

.document-meta__delivery-date {
  font-size: 14px;
  font-size: 0.77778rem; }
  @media (max-width: 1260px) {
    .document-meta__delivery-date {
      font-size: 14px;
      font-size: 0.77778rem; } }
  @media (max-width: 1023px) {
    .document-meta__delivery-date {
      font-size: 14px;
      font-size: 0.77778rem; } }
  @media (max-width: 670px) {
    .document-meta__delivery-date {
      font-size: 14px;
      font-size: 0.77778rem; } }
  @media (max-width: 670px) {
    .document-meta__delivery-date {
      width: 100%;
      text-align: left; } }

.document-meta__prefix {
  font-weight: 500;
  color: #E1E1E1; }
  @media (max-width: 480px) {
    .document-meta__prefix {
      display: block;
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      width: 100%; } }

.delivery-date__date {
  display: block; }
  @media (max-width: 670px) {
    .delivery-date__date {
      display: inline-block; } }

.document-positions {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #F8F8F8;
  padding: 95px 0 100px 0; }
  @media print {
    .document-positions {
      padding: 0; } }
  @media (max-width: 670px) {
    .document-positions {
      padding: 80px 0 85px 0; } }
  @media (max-width: 480px) {
    .document-positions {
      padding: 60px 0 40px 0; } }

.positions-table {
  width: 100%; }
  .positions-table__header {
    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;
    font-weight: 500;
    color: #EC4650; }
    @media (max-width: 670px) {
      .positions-table__header {
        font-size: 14px;
        font-size: 0.77778rem; } }
    @media (max-width: 480px) {
      .positions-table__header .td--desc {
        display: none; } }
  .positions-table__td {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    text-align: center; }
    @media (max-width: 480px) {
      .positions-table__td {
        text-align: left; } }
    .positions-table__td:first-child {
      text-align: left; }
    .positions-table__td:last-child {
      text-align: right; }

.positions-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;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  @media (max-width: 480px) {
    .positions-row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap; } }
  .positions-row__td {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    text-align: center; }
    @media (max-width: 480px) {
      .positions-row__td {
        text-align: left; } }
    .positions-row__td:first-child {
      text-align: left; }
    .positions-row__td:last-child {
      text-align: right; }
    @media (max-width: 1023px) {
      .positions-row__td {
        font-size: 17px;
        font-size: 0.94444rem; } }
    @media (max-width: 670px) {
      .positions-row__td {
        font-size: 16px;
        font-size: 0.88889rem; } }
    .meta .positions-row__td {
      font-size: 14px;
      font-size: 0.77778rem; }
      @media (max-width: 1260px) {
        .meta .positions-row__td {
          font-size: 14px;
          font-size: 0.77778rem; } }
      @media (max-width: 1023px) {
        .meta .positions-row__td {
          font-size: 14px;
          font-size: 0.77778rem; } }
      @media (max-width: 670px) {
        .meta .positions-row__td {
          font-size: 14px;
          font-size: 0.77778rem; } }
    .row--total .positions-row__td {
      font-size: 22px;
      font-size: 1.22222rem;
      font-weight: 500;
      color: #C6152B; }
      @media (max-width: 1023px) {
        .row--total .positions-row__td {
          font-size: 20px;
          font-size: 1.11111rem; } }
  .positions-row + .positions-row {
    margin-top: 40px; }
    @media (max-width: 1023px) {
      .positions-row + .positions-row {
        margin-top: 30px; } }

.positions-total {
  border-top: 2px solid #E1E1E1;
  padding-top: 40px; }
  @media (max-width: 480px) {
    .positions-total .total--compact .td--desc {
      width: 50%;
      margin-bottom: 0; } }
  @media (max-width: 480px) {
    .positions-total .total--compact .td--amount,
    .positions-total .total--compact .td--time {
      display: none; } }
  .positions-total .total--compact .td--price {
    width: 0; }
    @media (max-width: 480px) {
      .positions-total .total--compact .td--price {
        display: none; } }
  .positions-total .total--compact .td--total {
    width: 25%; }
    @media (max-width: 480px) {
      .positions-total .total--compact .td--total {
        width: 40%; } }

.td--desc {
  width: 55%;
  padding-right: 20px; }
  @media (max-width: 1023px) {
    .td--desc {
      width: 40%; } }
  @media (max-width: 670px) {
    .td--desc .desc {
      font-size: 14px;
      font-size: 0.77778rem; } }
  @media (max-width: 480px) {
    .td--desc {
      width: 100%;
      margin-bottom: 10px;
      padding: 0; } }

.td--amount, .td--time {
  padding: 0 5px; }
  @media (max-width: 480px) {
    .td--amount, .td--time {
      padding: 0; } }
  .td--amount.positions-row__td, .td--time.positions-row__td {
    font-weight: 500;
    font-family: "Space Mono", monospace; }

.td--amount {
  width: 8.3%; }
  @media (max-width: 1023px) {
    .td--amount {
      width: 13%; } }
  @media (max-width: 480px) {
    .td--amount {
      width: 25%; } }

.td--time {
  width: 8.3%; }
  @media (max-width: 1023px) {
    .td--time {
      width: 13%; } }
  @media (max-width: 480px) {
    .td--time {
      width: 25%; } }

.td--price {
  width: 13%;
  margin-left: auto; }
  @media (max-width: 1023px) {
    .td--price {
      width: 16%; } }
  @media (max-width: 480px) {
    .td--price {
      width: 25%; } }

.td--total {
  width: 10%;
  padding-left: 10px; }
  @media (max-width: 1023px) {
    .td--total {
      width: 16%; } }
  @media (max-width: 480px) {
    .td--total {
      margin-left: auto;
      width: 25%; } }

.signature-fw {
  position: relative;
  z-index: 1;
  width: 50%;
  margin-bottom: -25%;
  margin-left: -10%;
  mix-blend-mode: multiply; }
  @media (max-width: 670px) {
    .signature-fw {
      width: 30%;
      margin-left: -5%;
      margin-bottom: -13%; } }
  .signature-fw.animated path {
    stroke-dashoffset: 250;
    -webkit-animation: signatur-animation 1s cubic-bezier(0.355, 0.505, 0.69, 0.18) forwards;
            animation: signatur-animation 1s cubic-bezier(0.355, 0.505, 0.69, 0.18) forwards;
    -webkit-animation-delay: .2s;
            animation-delay: .2s; }
    @media print {
      .signature-fw.animated path {
        stroke-dashoffset: 0; } }

@-webkit-keyframes signatur-animation {
  from {
    stroke-dashoffset: 250; }
  to {
    stroke-dashoffset: 0; } }

@keyframes signatur-animation {
  from {
    stroke-dashoffset: 250; }
  to {
    stroke-dashoffset: 0; } }

.document-signature {
  background: #fafafa;
  padding: 100px 0; }
  @media (max-width: 670px) {
    .document-signature {
      padding: 60px 0; } }
  .document-signature .row {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    .document-signature .row .col-5 {
      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: end;
          -ms-flex-pack: end;
              justify-content: flex-end; }

.signature-field {
  width: 100%; }
  @media print {
    .signature-field {
      display: none; } }
  .signature-field input {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    background: transparent;
    padding: 20px 0;
    font-size: 24px;
    font-size: 1.33333rem; }
    @media (max-width: 1260px) {
      .signature-field input {
        font-size: 21px;
        font-size: 1.16667rem; } }
    @media (max-width: 1023px) {
      .signature-field input {
        font-size: 18px;
        font-size: 1rem; } }
    @media (max-width: 670px) {
      .signature-field input {
        font-size: 20px;
        font-size: 1.11111rem; } }
    .signature-field input::-webkit-input-placeholder {
      font-style: italic; }
    .signature-field input:-ms-input-placeholder {
      font-style: italic; }
    .signature-field input::-ms-input-placeholder {
      font-style: italic; }
    .signature-field input::placeholder {
      font-style: italic; }
    .signature-field input:focus {
      outline: 0; }
  .signature-field--accepted {
    pointer-events: none; }
    .signature-field--accepted input {
      font-family: "Daniel Black";
      font-style: italic;
      color: #C6152B;
      font-size: 36px;
      font-size: 2rem; }
      @media (max-width: 1260px) {
        .signature-field--accepted input {
          font-size: 32px;
          font-size: 1.77778rem; } }
      @media (max-width: 1023px) {
        .signature-field--accepted input {
          font-size: 28px;
          font-size: 1.55556rem; } }
      @media (max-width: 670px) {
        .signature-field--accepted input {
          font-size: 22px;
          font-size: 1.22222rem; } }
    .signature-field--accepted + .signature-label {
      font-size: 14px;
      font-size: 0.77778rem;
      line-height: 29px; }

.signature-label {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  display: block;
  width: 100%;
  border-top: 2px solid #E1E1E1;
  padding-top: 10px;
  z-index: 0;
  color: #4A4A4A; }

.document-actions {
  background: #C6152B;
  padding: 80px 0; }
  @media print {
    .document-actions {
      display: none; } }
  .document-actions .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .document-actions__left-col {
    position: relative;
    text-align: right;
    top: 1px;
    opacity: .5; }
    @media (max-width: 1023px) {
      .document-actions__left-col {
        text-align: center; } }
    .document-actions__left-col:hover {
      opacity: 1; }
  .document-actions__right-col {
    text-align: left; }
    @media (max-width: 1023px) {
      .document-actions__right-col {
        text-align: center;
        -webkit-box-ordinal-group: 0;
            -ms-flex-order: -1;
                order: -1;
        margin-bottom: 30px; } }

@media (max-width: 480px) {
  .proposal-intro__text p {
    font-size: 16px;
    font-size: 0.88889rem; } }

.specification__row {
  margin-bottom: 3rem; }
  @media (max-width: 670px) {
    .specification__row {
      margin-bottom: 2rem; } }

.specification__title {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto; }
  @media (max-width: 670px) {
    .specification__title {
      margin-bottom: 15px !important; } }

.specification__desc p + p {
  margin-top: 1rem; }

@media (max-width: 670px) {
  .specification__desc {
    margin-bottom: 0 !important; } }

@media (max-width: 480px) {
  .specification__desc {
    font-size: 16px;
    font-size: 0.88889rem; } }

.invoice__hero > .inner .row {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end; }
  @media (max-width: 670px) {
    .invoice__hero > .inner .row {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }

.single-angebot .invoice__fw-address-col {
  display: none; }
  @media print {
    .single-angebot .invoice__fw-address-col {
      display: block; } }

@media (max-width: 670px) {
  .invoice__fw-address-col {
    display: none; } }

@media print {
  .invoice-after {
    margin-bottom: 2rem; } }

@media (max-width: 480px) {
  .invoice-after p {
    font-size: 16px;
    font-size: 0.88889rem; } }

.invoice-after p + p {
  margin-top: 1.5rem; }

.client-intro {
  padding: 60px 0; }
  @media (max-width: 670px) {
    .client-intro {
      padding: 40px 0 20px 0; } }
  .client-intro__sort-options > .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: -5px; }
    @media (max-width: 480px) {
      .client-intro__sort-options > .row {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
  @media (max-width: 670px) {
    .client-intro__sort-options {
      margin-bottom: 40px; } }
  @media (max-width: 1260px) {
    .client-intro__sort-by {
      margin-bottom: 20px; } }
  .client-intro__sort-by > .row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .client-intro__sort-by > .row label {
      margin-right: 10px; }
    @media (max-width: 670px) {
      .client-intro__sort-by > .row {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; }
        .client-intro__sort-by > .row label {
          margin-bottom: 10px; } }

.document-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  border-bottom: 1px solid #F8F8F8; }
  @media (max-width: 480px) {
    .document-entry {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }
  .document-entry-container:hover {
    background: #fafafa; }
  .document-entry-container + .document-entry__seperator {
    margin-top: 60px; }
  .entries--grouped .document-entry__title .emoji {
    display: none; }
  @media (max-width: 1023px) {
    .document-entry__title:before {
      content: '';
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      display: inline-block;
      width: 10px;
      height: 10px;
      position: relative;
      top: -1px;
      margin-right: 10px;
      border-radius: 10px; }
    [data-status="0"] .document-entry__title:before {
      background: orange; }
    [data-status="1"] .document-entry__title:before {
      background: #00DA5A; }
    [data-status="2"] .document-entry__title:before {
      background: #C6152B; }
    [data-status="3"] .document-entry__title:before {
      background: rgba(75, 150, 79, 0.4); }
    [data-status="4"] .document-entry__title:before {
      background: #4B964F; } }
  .document-entry__seperator {
    background: #fafafa;
    border-bottom: 3px solid #F7F7F7;
    padding: 10px 0 8px 0; }
  .document-entry__content, .document-entry__actions {
    padding-top: 30px;
    padding-bottom: 30px; }
    @media (max-width: 480px) {
      .document-entry__content, .document-entry__actions {
        padding-top: 20px;
        padding-bottom: 20px; } }
  .document-entry__content {
    width: 83.33333%; }
    @media (max-width: 480px) {
      .document-entry__content {
        width: 100%;
        padding-bottom: 0; } }
  .document-entry__actions {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66667%;
    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;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    margin-bottom: 7px; }
    @media (max-width: 480px) {
      .document-entry__actions {
        width: 100%;
        margin-left: -10px; } }
    .document-entry__actions .button, .document-entry__actions input[type="submit"] {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 auto;
              flex: 0 0 auto;
      margin: 0 5px; }
      @media (max-width: 480px) {
        .document-entry__actions .button, .document-entry__actions input[type="submit"] {
          -webkit-box-flex: 1;
              -ms-flex-positive: 1;
                  flex-grow: 1;
          margin-left: 10px; } }
      .document-entry__actions .button .emoji, .document-entry__actions input[type="submit"] .emoji {
        position: relative;
        top: 1px; }
  @media (max-width: 1023px) {
    .document-entry__status {
      display: none; } }
  [data-status="0"] .document-entry__status .value {
    color: orange; }
  [data-status="1"] .document-entry__status .value {
    color: #00DA5A; }
  [data-status="2"] .document-entry__status .value {
    color: #C6152B; }
  [data-status="4"] .document-entry__status .value {
    color: #4B964F; }
  @media (max-width: 670px) {
    .document-entry__data {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row wrap;
              flex-flow: row wrap; } }
  @media (max-width: 480px) {
    .document-entry__data {
      margin-left: -30px; } }
  .document-entry__data .col {
    width: 25%; }
    @media (max-width: 670px) {
      .document-entry__data .col {
        width: 120px;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto; } }
    @media (max-width: 480px) {
      .document-entry__data .col {
        width: auto;
        margin-left: 30px; } }
  .document-entry__data .label {
    color: #c8c8c8;
    letter-spacing: 1px; }
  .document-entry__data .value {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 20px;
    font-size: 1.11111rem;
    font-weight: 500;
    letter-spacing: 0.23px;
    color: #08323F; }
    @media (max-width: 1260px) {
      .document-entry__data .value {
        font-size: 20px;
        font-size: 1.11111rem; } }
    @media (max-width: 1023px) {
      .document-entry__data .value {
        font-size: 18px;
        font-size: 1rem; } }
    @media (max-width: 670px) {
      .document-entry__data .value {
        font-size: 18px;
        font-size: 1rem; } }

/* ///////////////// */
/* PLUGIN OVERWRITES */
/* ///////////////// */

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