@import url(scss/bootstrap.css);
@keyframes reveal-up {
  from {
    opacity: 0;
    transform: translateY(18px); }
  to {
    opacity: 1;
    transform: translateY(0); } }

@keyframes reveal-back-up {
  from {
    opacity: 1;
    transform: translateY(0px); }
  to {
    opacity: 0.01;
    transform: translateY(-18p); } }

@keyframes reveal-back-down {
  from {
    opacity: 0.01;
    transform: translateY(-18px); }
  to {
    opacity: 1;
    transform: translateY(0px); } }

@keyframes zoom-in {
  from {
    transform: scale(1.05); }
  to {
    transform: scale(1); } }

@keyframes rotate180 {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(180deg); } }

@keyframes clipani {
  0% {
    clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%); }
  60% {
    clip-path: polygon(4% 0, 100% 0%, 100% 100%, 6% 100%); }
  100% {
    clip-path: polygon(15% 0, 100% 0%, 100% 100%, 0% 100%); } }

@keyframes fade-in {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@media (min-width: 768px) {
  /* line 75, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
  .animate {
    animation-duration: 0.3s;
    -webkit-animation-duration: 0.3s;
    animation-fill-mode: both;
    -webkit-animation-fill-mode: both; } }

@keyframes slideIn {
  0% {
    transform: translateY(1rem);
    opacity: 0; }
  100% {
    transform: translateY(0rem);
    opacity: 1; }
  0% {
    transform: translateY(1rem);
    opacity: 0; } }

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

/* line 116, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadein {
  animation-delay: 0.0s;
  opacity: 0;
  animation-name: fade-in;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; }

/* line 124, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.slideIn {
  -webkit-animation-name: slideIn;
  animation-name: slideIn; }

/* line 128, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rotate180 {
  animation-delay: 0s;
  animation-name: rotate180;
  animation-duration: 0.35s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; }

/* line 136, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.reveal-1 {
  animation-delay: 0.2s;
  opacity: 0;
  animation-name: reveal-up;
  animation-duration: 1.4s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; }

/* line 144, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.reveal-2 {
  opacity: 0;
  animation-delay: 0.4s;
  animation-name: reveal-up;
  animation-duration: 0.9s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; }

/* line 152, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.reveal-3 {
  opacity: 0;
  animation-delay: 0.5s;
  animation-name: reveal-up;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; }

/* line 161, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.reveal-back-1 {
  transform: translateY(-18px);
  animation-delay: 0s;
  animation-name: reveal-back-up;
  animation-duration: 1s;
  animation-timing-function: ease-out; }

/* line 170, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.reveal-back-2 {
  animation-delay: 0s;
  animation-name: reveal-back-down;
  animation-duration: 1s;
  animation-timing-function: ease-out; }
  /* line 177, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
  .reveal-back-2.timer-2 {
    animation-timing-function: ease-in-out; }

/* line 183, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.zoom-in {
  animation-delay: 0s;
  animation-name: zoom-in;
  animation-duration: 1.7s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; }

/* line 192, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fade-in-after-1 {
  opacity: 0 !important;
  animation-delay: 2.5s;
  animation-name: fade-in;
  animation-duration: 1s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; }

@keyframes wait-50ms {
  0% {
    opacity: 0;
    transform: scale(0); }
  50% {
    transform: scale(1); }
  100% {
    opacity: 1;
    transform: scale(1);
    visibility: visible; } }

/* line 218, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.wait-50ms {
  visibility: hidden;
  opacity: 0;
  animation-delay: 50ms;
  animation-name: wait-50ms;
  animation-duration: 0.25s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards; }

/* line 227, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.floating {
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: 5px; }

@keyframes floating {
  from {
    transform: translate(0, 0px); }
  65% {
    transform: translate(0, 15px); }
  to {
    transform: translate(0, 0px); } }

/* line 242, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.antifloating {
  animation-name: antifloating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
  margin-left: 30px;
  margin-top: -15px;
  opacity: 0.7; }

@keyframes antifloating {
  from {
    transform: scale(1);
    opacity: 0.5; }
  65% {
    transform: scale(0.65);
    opacity: 0.7; }
  to {
    transform: scale(1);
    opacity: 0.5; } }

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
/* line 268, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

/* line 273, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.animated.infinite {
  animation-iteration-count: infinite; }

/* line 277, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.animated.hinge {
  animation-duration: 2s; }

/* line 281, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s; }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0); }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0); }
  90% {
    transform: translate3d(0, -4px, 0); } }

/* line 309, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.bounce {
  animation-name: bounce;
  transform-origin: center bottom; }

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

/* line 324, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.flash {
  animation-name: flash; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    transform: scale3d(1, 1, 1); } }

/* line 344, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.pulse {
  animation-name: pulse; }

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1); }
  30% {
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    transform: scale3d(1.05, 0.95, 1); }
  to {
    transform: scale3d(1, 1, 1); } }

/* line 378, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rubberBand {
  animation-name: rubberBand; }

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

/* line 396, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.shake {
  animation-name: shake; }

@keyframes headShake {
  0% {
    transform: translateX(0); }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    transform: translateX(2px) rotateY(3deg); }
  50% {
    transform: translateX(0); } }

/* line 426, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake; }

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    transform: rotate3d(0, 0, 1, 0deg); } }

/* line 453, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.swing {
  transform-origin: top center;
  animation-name: swing; }

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    transform: scale3d(1, 1, 1); } }

/* line 480, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.tada {
  animation-name: tada; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    transform: none; } }

/* line 516, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.wobble {
  animation-name: wobble; }

@keyframes jello {
  from, 11.1%, to {
    transform: none; }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    transform: skewX(0.39062deg) skewY(0.39062deg); }
  88.8% {
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

/* line 554, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.jello {
  animation-name: jello;
  transform-origin: center; }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1); } }

/* line 592, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.bounceIn {
  animation-name: bounceIn; }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0); }
  75% {
    transform: translate3d(0, -10px, 0); }
  90% {
    transform: translate3d(0, 5px, 0); }
  to {
    transform: none; } }

/* line 624, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.bounceInDown {
  animation-name: bounceInDown; }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0); }
  75% {
    transform: translate3d(-10px, 0, 0); }
  90% {
    transform: translate3d(5px, 0, 0); }
  to {
    transform: none; } }

/* line 656, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.bounceInLeft {
  animation-name: bounceInLeft; }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0); }
  75% {
    transform: translate3d(10px, 0, 0); }
  90% {
    transform: translate3d(-5px, 0, 0); }
  to {
    transform: none; } }

/* line 688, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.bounceInRight {
  animation-name: bounceInRight; }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  75% {
    transform: translate3d(0, 10px, 0); }
  90% {
    transform: translate3d(0, -5px, 0); }
  to {
    transform: translate3d(0, 0, 0); } }

/* line 720, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.bounceInUp {
  animation-name: bounceInUp; }

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); } }

/* line 740, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.bounceOut {
  animation-name: bounceOut; }

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

/* line 760, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.bounceOutDown {
  animation-name: bounceOutDown; }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

/* line 776, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.bounceOutLeft {
  animation-name: bounceOutLeft; }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

/* line 792, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.bounceOutRight {
  animation-name: bounceOutRight; }

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

/* line 812, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.bounceOutUp {
  animation-name: bounceOutUp; }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

/* line 826, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeIn {
  animation-name: fadeIn; }

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

/* line 842, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeInDown {
  animation-name: fadeInDown; }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

/* line 858, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeInDownBig {
  animation-name: fadeInDownBig; }

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-50px, 0, 0); }
  50% {
    opacity: 0.3; }
  100% {
    opacity: 1;
    transform: none; } }

/* line 876, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(50px, 0, 0); }
  50% {
    opacity: 0.3; }
  100% {
    opacity: 1;
    transform: none; } }

/* line 897, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    transform: none; } }

/* line 914, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeInUp {
  animation-name: fadeInUp; }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    transform: none; } }

/* line 930, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeInUpBig {
  animation-name: fadeInUpBig; }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/* line 944, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeOut {
  animation-name: fadeOut; }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0); } }

/* line 959, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeOutDown {
  animation-name: fadeOutDown; }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0); } }

/* line 974, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0); } }

/* line 989, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeOutLeft {
  animation-name: fadeOutLeft; }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); } }

/* line 1004, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0); } }

/* line 1019, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeOutRight {
  animation-name: fadeOutRight; }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); } }

/* line 1034, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0); } }

/* line 1049, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeOutUp {
  animation-name: fadeOutUp; }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0); } }

/* line 1064, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

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

/* line 1095, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip; }

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

/* line 1127, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX; }

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

/* line 1159, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY; }

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

/* line 1181, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important; }

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

/* line 1203, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY; }

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

/* line 1231, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out; }

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

/* line 1247, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in; }

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1; } }

/* line 1266, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rotateIn {
  animation-name: rotateIn; }

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

/* line 1284, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

/* line 1302, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rotateInDownRight {
  animation-name: rotateInDownRight; }

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1; } }

/* line 1320, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1; } }

/* line 1338, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rotateInUpRight {
  animation-name: rotateInUpRight; }

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1; }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

/* line 1355, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rotateOut {
  animation-name: rotateOut; }

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

/* line 1372, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

/* line 1389, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1; }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

/* line 1406, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1; }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

/* line 1423, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

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

/* line 1452, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.hinge {
  animation-name: hinge; }

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom; }
  50% {
    transform: rotate(-10deg); }
  70% {
    transform: rotate(3deg); }
  to {
    opacity: 1;
    transform: scale(1); } }

/* line 1477, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.jackInTheBox {
  animation-name: jackInTheBox; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    transform: none; } }

/* line 1495, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rollIn {
  animation-name: rollIn; }

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

/* line 1512, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.rollOut {
  animation-name: rollOut; }

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

/* line 1527, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.zoomIn {
  animation-name: zoomIn; }

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

/* line 1545, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.zoomInDown {
  animation-name: zoomInDown; }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

/* line 1563, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.zoomInLeft {
  animation-name: zoomInLeft; }

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

/* line 1581, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.zoomInRight {
  animation-name: zoomInRight; }

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

/* line 1599, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.zoomInUp {
  animation-name: zoomInUp; }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

/* line 1618, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.zoomOut {
  animation-name: zoomOut; }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

/* line 1637, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.zoomOutDown {
  animation-name: zoomOutDown; }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center; } }

/* line 1654, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.zoomOutLeft {
  animation-name: zoomOutLeft; }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center; } }

/* line 1671, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.zoomOutRight {
  animation-name: zoomOutRight; }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

/* line 1690, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.zoomOutUp {
  animation-name: zoomOutUp; }

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

/* line 1705, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.slideInDown {
  animation-name: slideInDown; }

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

/* line 1720, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.slideInLeft {
  animation-name: slideInLeft; }

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    transform: translate3d(0, 0, 0); } }

/* line 1735, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.slideInRight {
  animation-name: slideInRight; }

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

/* line 1750, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.slideInUp {
  animation-name: slideInUp; }

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0); } }

/* line 1765, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.slideOutDown {
  animation-name: slideOutDown; }

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0); } }

/* line 1780, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.slideOutLeft {
  animation-name: slideOutLeft; }

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0); } }

/* line 1795, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.slideOutRight {
  animation-name: slideOutRight; }

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0); } }

/* line 1810, /Users/christianbinder/Desktop/Daniel Kuhagen/css/animations.scss */
.slideOutUp {
  animation-name: slideOutUp; }

/* line 11, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
body {
  overflow-x: hidden;
  font-family: "Futura Book";
  font-size: 18px;
  line-height: 1.5;
  word-wrap: break-word; }
  /* line 18, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  body a {
    color: inherit;
    text-decoration: underline; }
    /* line 21, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
    body a:hover {
      text-decoration: none;
      opacity: 0.6; }
  /* line 26, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  body strong {
    font-family: "Futura Std Heavy"; }

/* line 30, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.never-underline {
  text-decoration: none !important; }
  /* line 32, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .never-underline:hover {
    text-decoration: none !important; }

/* line 36, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.underline-on-hover {
  text-decoration: none !important; }
  /* line 38, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .underline-on-hover:hover {
    text-decoration: underline !important; }

/* line 43, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.link-light:hover {
  text-decoration: underline;
  color: white;
  opacity: 0.7; }

/* line 49, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
a {
  text-decoration: none; }
  /* line 51, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  a:hover {
    text-decoration: underline;
    color: inherit !important; }

/* line 57, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
h2 {
  font-family: "Futura Bold Oblique"; }

/* line 60, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
h3 {
  font-family: "Futura Bold Oblique";
  font-size: 22px; }

@font-face {
  font-family: "Futura Bold";
  src: url("../fonts/Futura-Bold.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: "Futura Bold Oblique";
  src: url("../fonts/FBoldOblique.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: "Futura XBold Condensed";
  src: url("../fonts/FXBoldCondensed.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: "Futura Book";
  src: url("../fonts/Futura-Book.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: "Futura Medium";
  src: url("../fonts/Futura-Medium.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: "Futura Std Medium";
  src: url("../fonts/Futura-Std-Medium.woff") format("woff");
  font-display: swap; }

@font-face {
  font-family: "Futura Std Heavy";
  src: url("../fonts/Futura-Std-Heavy.woff") format("woff");
  font-display: swap; }

/* line 107, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.futura-bold {
  font-family: "Futura Bold"; }

/* line 110, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.futura-bold-oblique {
  font-family: "Futura Bold Oblique"; }

/* line 113, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.text-standard {
  font-family: "Futura Book";
  font-size: 18px;
  line-height: 1.5; }
  /* line 117, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .text-standard a {
    color: inherit;
    text-decoration: underline; }
    /* line 120, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
    .text-standard a:hover {
      text-decoration: none;
      opacity: 0.6; }
  /* line 125, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .text-standard strong {
    font-family: "Futura Std Heavy"; }

/* line 129, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.text-bold {
  font-family: "Futura Std Heavy"; }

/* line 134, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.navbar-toggle {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  position: relative;
  opacity: 1;
  background-color: black;
  background-image: none;
  border: 1px solid transparent; }
  /* line 148, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .navbar-toggle:hover {
    transition: 0.4s ease all;
    cursor: pointer;
    opacity: 0.7; }
    /* line 153, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
    .navbar-toggle:hover .bottom-bar {
      width: 22px; }
    /* line 157, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
    .navbar-toggle:hover .top-bar {
      width: 18px;
      margin-left: 4px; }
    /* line 161, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
    .navbar-toggle:hover .icon-bar-title {
      margin-right: 15px; }

/* line 170, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.navbar-toggle:focus {
  outline: 0; }

/* line 174, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.navbar-toggle .icon-bar {
  display: block;
  width: 26px;
  height: 2px;
  border-radius: 0;
  background-color: white; }

/* line 182, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.navbar-toggle .top-bar {
  transition: 0.4s ease all; }

/* line 185, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.navbar-toggle .bottom-bar {
  transition: 0.4s ease all;
  width: 18px; }

/* line 191, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.navbar-toggle .icon-bar + .icon-bar {
  margin-top: 4px; }

/* line 194, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.navbar .nav-link {
  font-size: 2rem;
  line-height: 1;
  font-family: "Futura Bold Oblique";
  color: white; }
  @media (min-width: 768px) {
    /* line 194, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
    .navbar .nav-link {
      font-size: 1.8rem;
      line-height: 1; } }
  /* line 205, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .navbar .nav-link:hover {
    color: white !important;
    opacity: 1 !important;
    text-decoration: none; }
  /* line 210, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .navbar .nav-link:active {
    color: white !important;
    opacity: 1 !important; }
  /* line 214, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .navbar .nav-link:focus {
    color: white;
    opacity: 1 !important; }
  /* line 218, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .navbar .nav-link:hover:after {
    transform: scaleX(1); }
  /* line 221, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .navbar .nav-link:after {
    transition: transform .3s ease-out,border-color .3s ease-out;
    position: relative;
    display: block;
    bottom: -6px;
    left: 0;
    width: 100%;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    transform-origin: left;
    border-top: 2px solid white;
    content: '';
    padding-bottom: inherit;
    border-color: #fff; }

/* line 239, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.navbar .nav-link {
  transition: 0.2s ease all; }
  /* line 245, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .navbar .nav-link:hover {
    opacity: 0.8; }

/* line 255, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.navbar-brand:hover {
  transition: 0.3s ease all;
  color: #FF0078;
  opacity: 0.6;
  text-decoration: none; }

@media (max-width: 1200px) {
  /* line 264, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .bg-white-to-transparent {
    background: linear-gradient(180deg, #FFFFFF 35%, rgba(255, 255, 255, 0) 100%); } }

/* line 273, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
#navigation-button:hover {
  cursor: pointer; }

/* line 277, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.offcanvas {
  transition: all 0.6s cubic-bezier(0.345, 0.365, 0, 1.015);
  background-color: black;
  border: 0; }

/* line 286, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.offcanvas-header {
  display: flex; }

/* line 292, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.btn-close {
  background-color: white;
  border-radius: 50%;
  transition: 0.4s ease all; }
  /* line 296, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .btn-close:hover {
    animation-delay: 0s;
    animation-name: rotate180;
    animation-duration: 0.35s;
    animation-timing-function: ease-out;
    animation-fill-mode: forwards; }
  /* line 305, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0;
    opacity: 1; }

/* line 316, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
#hero {
  height: 100vh;
  background-size: cover;
  background-position: center center; }
  @media (min-width: 1400px) {
    /* line 316, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
    #hero {
      background-position: center; } }

/* line 327, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.slim {
  height: 78px !important; }
  @media (min-width: 576px) {
    /* line 327, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
    .slim {
      height: 100px !important; } }

/* line 337, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.slim_buero {
  height: 100% !important; }

/* line 342, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.slim-400 {
  height: 50vh !important;
  background-size: cover;
  background-position: center center; }
  @media (max-width: 500px) {
    /* line 342, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
    .slim-400 {
      height: 260px !important; } }
  @media (min-width: 1400px) {
    /* line 342, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
    .slim-400 {
      background-position: center; } }

/* line 358, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.middle {
  opacity: 0.8;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: mouse-move 2s infinite; }

/* line 367, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.mouse {
  width: 32px;
  height: 55px;
  border: 3px solid white;
  border-radius: 60px; }

/* line 374, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.mouse::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  top: 15px;
  background: white;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  opacity: 1;
  animation: mouse 2s infinite; }

@keyframes mouse {
  from {
    opacity: 1;
    top: 13px; }
  to {
    opacity: 0;
    top: 42px; } }

@keyframes mouse-move {
  0% {
    top: 90%; }
  50% {
    top: 91%; }
  100% {
    top: 90%; } }

/* line 413, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.zoomonhover img {
  transition: 0.3s ease all; }
  /* line 416, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .zoomonhover img:hover {
    transform: scale(1.1);
    cursor: pointer; }

/* line 421, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.shadowonhover img {
  transition: 0.3s ease all;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2); }
  /* line 425, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .shadowonhover img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.1);
    cursor: pointer; }

/* line 431, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.opacityonhover img {
  transition: 0.3s ease all;
  opacity: 0.75; }
  /* line 434, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .opacityonhover img:hover {
    opacity: 1; }

/* line 438, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.zoomonhover {
  transition: 0.3s ease all; }
  /* line 440, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .zoomonhover:hover {
    transform: scale(1.1); }

/*Bootstrap CSS element overwrite*/
/* line 449, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.border-end {
  border-width: 4px !important; }

/* line 453, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.intro-left, .intro-right {
  padding-right: 56px; }

/*END of Bootstrap CSS element overwrite*/
/* line 460, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
h4 {
  font-family: "Futura Bold Oblique";
  display: inline;
  position: relative;
  color: black;
  padding: 6px 12px;
  font-weight: bold;
  background-color: #ffd500;
  margin-right: -25px;
  line-height: 1.35;
  z-index: 999;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone; }

/* line 475, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
h4.left:after {
  position: absolute;
  content: '';
  right: -47px;
  /*padding-right: 3px;*/
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: white;
  border: 6px solid #ffd500; }

/* line 487, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
h4.right:after {
  position: absolute;
  content: '';
  left: -47px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: white;
  border: 6px solid #ffd500; }

/*edia queries */
@media only screen and (max-width: 767px) {
  /* line 503, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .anim-right {
    margin-right: 0; }
  /* line 506, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  h4.right:after {
    position: absolute;
    content: none;
    right: -47px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: white;
    border: 6px solid black; }
  /* line 516, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  h4.right:before {
    position: absolute;
    content: '';
    right: -47px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: white;
    border: 6px solid black; }
  /* line 526, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .intro-left {
    border-right: 4px solid #dee2e6; }
  /* line 529, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .intro-right {
    border-right: 4px solid #dee2e6; } }

@media only screen and (min-width: 768px) {
  /* line 538, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .block-left {
    margin-top: -150px !important; }
  /* line 541, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .empty-top-margin {
    margin-top: 0 !important; }
  /* line 544, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .intro-right.border-end {
    border-width: 0; }
  /* line 547, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .intro-left {
    border-right: 4px solid #dee2e6; }
  /* line 550, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .intro-right {
    border-left: 4px solid #dee2e6;
    margin-top: -250px;
    margin-left: 0; }
  /* line 556, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .intro-right h4 {
    margin-left: -25px; }
  /* line 559, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .intro-right {
    padding-right: 0;
    padding-left: 56px; } }

/* line 566, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.drop-shadow {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.53); }

/* line 570, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.box-shadow {
  box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.23);
  border-radius: 4px; }

/* line 574, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.position-fdp-logo {
  left: 30px;
  bottom: 30px; }

/* line 579, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.eye-catcher {
  right: 20%;
  top: 15%;
  position: absolute;
  transform: rotate(-3deg); }

@media (min-width: 1200px) {
  /* line 587, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .eye-catcher {
    transform: scale(1.4) rotate(-12deg);
    transform-origin: center; } }

/* line 592, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.bg-yellow {
  background-color: #ffd500 !important; }

/* line 595, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.bg-hase {
  top: 10%; }

/* line 598, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.bg-magenta {
  background-color: #E6007E !important; }

/* line 601, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.bg-lightdark {
  background-color: #1D1D1D; }

/* line 604, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.bg-darker {
  background-color: #141414; }

/* line 607, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.bg-gray {
  background-color: #F7F7F7 !important; }

/* line 610, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.pt-6 {
  padding-top: 6rem; }

/* line 614, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.pb-6 {
  padding-bottom: 6rem; }

/* line 620, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.headimage img {
  max-width: 100%;
  width: 100%; }

/* line 626, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.headimage {
  width: 100%;
  background-size: cover;
  height: 253px;
  background-position: center center; }

/* line 635, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.headimage-big {
  width: 100%;
  background-size: cover;
  background-position: center center;
  min-height: 350px; }

/* line 641, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.headimage-person {
  width: 100%;
  background-size: cover;
  background-position: center center;
  min-height: 380px; }

/* line 647, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.zoomonhover img {
  transition: 0.3s ease all; }
  /* line 649, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .zoomonhover img:hover {
    transform: scale(1.1); }

/* line 655, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.btn {
  font-family: "Futura Bold";
  text-transform: uppercase; }

/* line 659, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.btn-arrow {
  display: inline-block;
  font-family: "Futura Bold";
  font-size: 0.9rem !important;
  text-decoration: none;
  color: #E6007E !important;
  text-transform: uppercase;
  transition: 0.2s ease all; }
  /* line 668, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .btn-arrow:hover {
    opacity: 0.7;
    cursor: pointer; }
  /* line 673, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
  .btn-arrow:after {
    display: inline-block;
    margin-left: 0.4em;
    vertical-align: 0.125em;
    content: "";
    border-top: 0.3em solid transparent;
    border-right: 0 solid transparent;
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid; }

/* line 686, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.opacity-fader {
  opacity: 0; }

/* line 690, /Users/christianbinder/Desktop/Daniel Kuhagen/css/style.scss */
.opacity-fader-pre {
  transition: 0.8s ease all; }

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