input, textarea, button {
  outline: none;
}

@font-face {
  font-family: OpenSansBold;
  src: url("../fonts/OpenSans/OpenSans-Bold.eot");
  src: url("../fonts/OpenSans/OpenSans-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans/OpenSans-Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSansRegular;
  src: url("../fonts/OpenSans/OpenSans-Regular.eot");
  src: url("../fonts/OpenSans/OpenSans-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans/OpenSans-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: OpenSansLight;
  src: url("../fonts/OpenSans/OpenSans-Light.eot");
  src: url("../fonts/OpenSans/OpenSans-Light.eot?#iefix") format("embedded-opentype"), url("../fonts/OpenSans/OpenSans-Light.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
body {
  position: relative;
  margin: 0;
  padding: 0;
}

.show {
  visibility: visible !important;
}

.hide {
  visibility: hidden;
}

.col {
  margin: 0 auto;
}

.col-grid-12 {
  width: 100%;
}

.col-grid-8 {
  width: calc(100% - 120px);
}

.col-grid-6 {
  width: calc(75% - 120px);
}

.col-grid-4 {
  width: calc(60% - 120px);
}

.col-grid-2 {
  width: calc(25% - 120px);
}

@media screen and (max-width: 1024px) {
  .col-grid-4 {
    width: calc(100% - 320px);
  }
}
/*!
 * animate.css -https://daneden.github.io/animate.css/
 * Version - 3.7.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2019 Daniel Eden
 */
@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  0%, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes rubberBand {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-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);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }
  to {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
@keyframes tada {
  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes wobble {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

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

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

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

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

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

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

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

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

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) 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;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(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(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(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(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(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(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(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;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

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

@-webkit-keyframes hinge {
  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%, 80% {
    -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;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  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%, 80% {
    -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;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

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

@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

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

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

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

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

@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

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

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

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

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

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

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

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

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

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

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

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

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
}

.animated.faster {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

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

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion: reduce), (print) {
  .animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }
}
html {
  min-height: 100%;
  height: auto;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  height: auto;
}

.loader {
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #FFF;
  z-index: 10;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.loader .spinner {
  width: auto;
  text-align: center;
}
.loader .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background-color: #89dc65;
}
.loader .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background-color: #e95ebe;
}
.loader .spinner .bounce3 {
  -webkit-animation-delay: -0.08s;
  animation-delay: -0.08s;
  background-color: #65b2e8;
}
.loader .spinner .bounce4 {
  background-color: #2d2a26;
}
.loader .spinner > div {
  width: 16px;
  height: 16px;
  margin: 0 2px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bounce 1.4s infinite ease-in-out both;
  animation: sk-bounce 1.4s infinite ease-in-out both;
}
.loader .loader-image {
  width: 60px;
  height: 60px;
  position: relative;
  margin: 100px auto;
}

@keyframes sk-bounce {
  0%, 100% {
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  50% {
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.not-found-page {
  height: 100vh;
  width: 100%;
  background: #FFFFFF;
  padding-top: 100px;
  box-sizing: border-box;
}
.not-found-page .container {
  width: 100%;
}
.not-found-page .container .text-holder {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding-right: 25px;
}
.not-found-page .container .text-holder h1 {
  width: 100%;
  text-align: right;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  color: #405364;
  font-size: 106px;
  margin: 0;
}
.not-found-page .container .text-holder .description {
  width: 100%;
  font-family: "acumin-pro", OpenSansLight;
  font-weight: 300;
  font-size: 20px;
}
.not-found-page .container .text-holder .description p {
  margin: 0;
  text-align: right;
}
.not-found-page .container .text-holder .description p a {
  color: #405364;
  text-decoration: none;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 20px;
}
.not-found-page .container .text-holder .description p a:before {
  content: "";
  background-image: url(../images/SETA4.svg);
  background-position: center;
  background-size: 30px;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 13px;
  width: 0;
  height: 11px;
  display: inline-block;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.not-found-page .container .text-holder .description p a:hover {
  opacity: 0.6;
}
.not-found-page .container .img-hoder {
  display: flex;
  justify-content: center;
  width: 100%;
}
.not-found-page .container .img-hoder img {
  margin-top: 50px;
  width: 100%;
  max-width: 700px;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    bottom: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 80%;
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    bottom: 0;
    height: 0;
  }
  100% {
    opacity: 1;
    height: 100%;
  }
}
@-webkit-keyframes bounce {
  0% {
    top: 5px;
  }
  25%, 75% {
    top: 10px;
  }
  50% {
    top: 15px;
  }
  100% {
    top: 0;
  }
}
@keyframes bounce {
  0% {
    top: 5px;
  }
  25%, 75% {
    top: 10px;
  }
  50% {
    top: 15px;
  }
  100% {
    top: 0;
  }
}
@keyframes slideUpParagraphs {
  from {
    -moz-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    -o-transform: translate3d(0, 100%, 0);
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
  100% {
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}
@keyframes text-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes text-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes bounceRight {
  0% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }
  10% {
    -webkit-transform: translateX(8px) scaleX(0.85);
    transform: translateX(8px) scaleX(0.85);
  }
  20% {
    -webkit-transform: translateX(-16px) scaleX(1);
    transform: translateX(-16px) scaleX(1);
  }
  30% {
    -webkit-transform: translateX(8px) scaleX(1);
    transform: translateX(8px) scaleX(1);
  }
  40% {
    -webkit-transform: translateX(-12px) scaleX(0.9);
    transform: translateX(-12px) scaleX(0.9);
  }
  50% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }
}
@keyframes bounceRight {
  0% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }
  10% {
    -webkit-transform: translateX(8px) scaleX(0.85);
    transform: translateX(8px) scaleX(0.85);
  }
  20% {
    -webkit-transform: translateX(-12px) scaleX(1);
    transform: translateX(-12px) scaleX(1);
  }
  30% {
    -webkit-transform: translateX(8px) scaleX(1);
    transform: translateX(8px) scaleX(1);
  }
  40% {
    -webkit-transform: translateX(-12px) scaleX(0.9);
    transform: translateX(-12px) scaleX(0.9);
  }
  50% {
    -webkit-transform: translateX(0) scaleX(1);
    transform: translateX(0) scaleX(1);
  }
}
@-webkit-keyframes BounceUp {
  0% {
    -webkit-transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(25px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@keyframes BounceUp {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(25px);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes BounceUpArrow {
  0% {
    -webkit-transform: translateY(0) rotate(90deg);
  }
  50% {
    -webkit-transform: translateY(25px) rotate(90deg);
  }
  100% {
    -webkit-transform: translateY(0) rotate(90deg);
  }
}
@keyframes BounceUpArrow {
  0% {
    transform: translateY(0) rotate(90deg);
  }
  50% {
    transform: translateY(25px) rotate(90deg);
  }
  100% {
    transform: translateY(0) rotate(90deg);
  }
}
@keyframes fadeTeamIn {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeCoorIn {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeTeamOut {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes fadeCoorOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes tradeTeamMember {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes teamOpacityOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes teamOpacityIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes closeForm {
  from {
    max-height: 1000px;
    background-color: #2d2a26;
  }
  to {
    max-height: 0;
    overflow: hidden;
    background-color: #2d2a26;
  }
}
@keyframes openForm {
  from {
    max-height: 0;
  }
  to {
    max-height: 1000px;
    overflow: unset;
    background-color: #2d2a26;
    animation-fill-mode: both;
  }
}
@keyframes paragraphs1By1 {
  from {
    transform: translateY(200%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.container-form .loader {
  background-color: rgba(45, 42, 38, 0.9);
}
.container-form .col {
  position: relative;
}
.container-form .col .loader {
  position: absolute;
}
.container-form .col.form {
  overflow: hidden;
}
.container-form .col.form-active {
  animation: openForm 0.5s;
}
.container-form .col.form-close {
  animation: closeForm 0.5s;
}
.container-form .col.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.container-form.top-form {
  margin-top: -42px;
  transition: max-height 1s ease;
}
.container-form.bottom-form {
  position: absolute;
  width: 100%;
  bottom: 0;
  z-index: 1;
  transition: max-height 1s ease;
}
.container-form .col-grid-6 {
  box-sizing: border-box;
}
@media screen and (max-width: 1128px) {
  .container-form .col-grid-6 {
    width: 100%;
  }
}
.container-form .contact-us {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  flex-wrap: wrap;
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  padding: 60px;
  min-height: 514px;
  align-content: baseline;
}
@media screen and (max-width: 852px) {
  .container-form .contact-us {
    min-height: 625px;
  }
}
@media screen and (max-width: 680px) {
  .container-form .contact-us {
    padding: 25px;
    min-height: 550px;
  }
}
.container-form .contact-us .btn-close {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: flex-end;
}
.container-form .contact-us .btn-close .icon-close:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.container-form .contact-us ul {
  list-style: none;
  padding: 0;
}
.container-form .contact-us ul .item {
  margin: 5px 0;
}
.container-form .contact-us .form-types {
  width: 35%;
  min-width: 250px;
  padding: 0;
}
.container-form .contact-us .form-types .item {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
@media screen and (min-width: 1000px) {
  .container-form .contact-us .form-types .item {
    font-size: 30.67px;
  }
}
@media screen and (max-width: 1000px) {
  .container-form .contact-us .form-types .item {
    font-size: 28px;
  }
}
@media screen and (max-width: 680px) {
  .container-form .contact-us .form-types .item {
    font-size: 25.333px;
  }
}
@media screen and (max-width: 425px) {
  .container-form .contact-us .form-types .item {
    font-size: 22.67px;
  }
}
.container-form .contact-us .form-types .item div {
  cursor: pointer;
}
.container-form .contact-us .form-types .item .arrow {
  width: 30px;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  align-items: center;
  margin-right: 20px;
}
.container-form .contact-us .form-types .item:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.container-form .contact-us .form-types .item:hover .icon-arrow-left {
  -webkit-animation: bounceRight;
  animation: bounceRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 850px) {
  .container-form .contact-us .form-types {
    width: 100%;
  }
}
.container-form .contact-us .talk-with-us {
  width: 65%;
}
@media screen and (max-width: 850px) {
  .container-form .contact-us .talk-with-us {
    width: 100%;
  }
}
.container-form .contact-us .default-form.ng-submitted .ng-empty,
.container-form .contact-us .default-form.ng-submitted .ng-invalid {
  border: 1px solid #e95ebe;
}
.container-form .contact-us .default-form ul {
  padding: 0;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  justify-content: center;
}
.container-form .contact-us .default-form .item {
  width: 100%;
  max-width: 540px;
  height: 40px;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}
@media screen and (max-width: 850px) {
  .container-form .contact-us .default-form .item {
    max-width: 100%;
  }
}
.container-form .contact-us .default-form .item label {
  min-width: 100px;
}
.container-form .contact-us .default-form .item .ng-touched.ng-empty {
  border: 2px solid #e95ebe;
}
.container-form .contact-us .default-form .item input, .container-form .contact-us .default-form .item textarea {
  resize: none;
  width: 100%;
  min-width: 250px;
  padding: 5px;
  height: 40px;
  box-sizing: border-box;
  color: #2d2a26;
  border: 0;
  padding: 5px 10px;
  font-size: 14px;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
}
.container-form .contact-us .default-form .item textarea {
  height: 100px;
  color: #2d2a26;
}
.container-form .contact-us .default-form .item .select-div {
  min-width: 30%;
  position: relative;
}
.container-form .contact-us .default-form .item .select-div:after {
  content: "";
  background-image: url(../images/SETA4.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 20pt;
  position: absolute;
  right: 15px;
  top: 11px;
  width: 10px;
  height: 9px;
  pointer-events: none;
}
.container-form .contact-us .default-form .item select {
  min-width: 125px;
  width: 100%;
  background-color: #FFFFFF;
  padding: 5px 10px;
  color: #2d2a26;
  background-color: #FFFFFF;
  border: 0;
  height: 30px;
  position: relative;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
}
.container-form .contact-us .default-form .item button.upload-file {
  background: #FFFFFF;
  min-width: 182px;
  width: 35%;
  height: 40px;
  padding: 10px 10px;
  border: none;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  text-align: left;
  position: relative;
  color: #2d2a26;
  font-size: 14px;
  cursor: pointer;
}
.container-form .contact-us .default-form .item button.upload-file:hover::after {
  opacity: 0.6;
}
.container-form .contact-us .default-form .item button.upload-file::after {
  content: "";
  background-image: url(../images/upload-icon.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 130px;
  position: absolute;
  right: 15px;
  top: 8px;
  width: 26px;
  height: 26px;
}
.container-form .contact-us .default-form .item input.upload-file {
  display: none;
}
.container-form .contact-us .default-form .item p.upload-file {
  margin-left: 20px;
}
.container-form .contact-us .default-form .submit-container {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: flex-end;
}
.container-form .contact-us .default-form .submit-container .submit:hover .icon-arrow-left {
  -webkit-animation: bounceRight;
  animation: bounceRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.container-form .contact-us .default-form .submit-container .submit:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.container-form .contact-us .default-form .submit-container .submit .btn-submit {
  font-size: 12pt;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  color: #FFFFFF;
}
.container-form .contact-us .default-form .submit-container .submit .icon-arrow-left:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.container-form .contact-us .default-form .item-textarea {
  height: unset;
}
.container-form .contact-us .default-form .align-center {
  align-items: center;
}
.container-form .alert-message-form {
  width: 100%;
  background-color: #e95ebe;
}
.container-form .alert-message-form.disableAlert {
  display: none;
}
.container-form .alert-message-form .container {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  margin: 0 auto;
}
.container-form .alert-message-form .container .box-messages {
  width: 80%;
  min-height: 0;
  padding: 0 60px;
}
.container-form .alert-message-form .container .box-messages p {
  width: 100%;
  padding: 5px 0;
}
.container-form .alert-message-form .container .box-messages p:first-child {
  padding-top: 20px;
}
.container-form .alert-message-form .container .box-messages p:last-child {
  padding-bottom: 20px;
}
@media screen and (max-width: 680px) {
  .container-form .alert-message-form .container .box-messages {
    padding: 0 25px;
    max-width: none !important;
    margin: 0 !important;
  }
}
.container-form .alert-message-form .container .btn {
  cursor: pointer;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  font-size: 16pt;
}
.container-form .alert-message-form .container p {
  margin: 0;
}

.talk-with-us-holder {
  z-index: 2;
  /*temporary untill fixing the emails not working */
  display: none;
}
.talk-with-us-holder .icon-talk-with-us {
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  cursor: pointer;
  background-color: #2d2a26;
  padding: 10px 20px;
  z-index: 0;
  text-align: center;
  width: 215px;
  box-sizing: border-box;
}
.talk-with-us-holder .icon-talk-with-us:hover span {
  color: #FFFFFF;
  opacity: 0.5;
}
.talk-with-us-holder .icon-talk-with-us img {
  margin-left: 15px;
}
@media screen and (max-width: 1480px) {
  .talk-with-us-holder .icon-talk-with-us {
    margin-left: 25px;
  }
}
@media screen and (max-width: 680px) {
  .talk-with-us-holder .icon-talk-with-us {
    position: unset;
    width: 100%;
    margin: 0;
  }
}
.talk-with-us-holder .icon-talk-with-us:hover .icon-arrow-left {
  -webkit-animation: bounceRight;
  animation: bounceRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0.5;
}
@media screen and (max-width: 1480px) {
  .talk-with-us-holder {
    margin: 0px !important;
  }
}
@media screen and (max-width: 680px) {
  .talk-with-us-holder {
    position: relative;
  }
}

.grecaptcha-badge {
  display: none !important;
}

.head-content-holder {
  position: relative;
}
.head-content-holder .menu-holder {
  background-color: #2d2a26;
  overflow: hidden;
  z-index: 4;
  top: 0;
  width: 0;
  height: 100vh;
  position: fixed;
  left: 0;
  transition: width 0.3s ease-in;
}
.head-content-holder .menu-holder.active {
  width: 50%;
}
@media screen and (max-width: 680px) {
  .head-content-holder .menu-holder.active {
    width: 100%;
  }
}
.head-content-holder .menu-holder .menu-list {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  flex-direction: row;
  margin: 110px 0 0 0;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 60px;
  opacity: 0;
  transition: opacity 0.3s 0.5s;
  width: 100%;
  float: right;
  height: calc(100% - 110px);
  max-width: 700px;
  padding: 0 60px 0 0;
  box-sizing: border-box;
}
.head-content-holder .menu-holder .menu-list-left {
  width: 100%;
  align-self: flex-end;
  font-size: 18px;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder {
  display: none;
  color: #FFFFFF;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder > div {
  position: relative;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  bottom: 0;
  height: 18px;
  width: 1px;
  background-color: #FFFFFF;
  margin: auto 0;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder > div:not(:last-child) a {
  padding-right: 10px;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder > div:not(:first-child) a {
  padding-left: 10px;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder a {
  text-decoration: none;
  color: #FFFFFF;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder a.active {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder a:hover {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder :first-child {
  margin: 0 2px 0 0;
  padding-right: 2px;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder :last-child {
  padding-left: 2px;
}
.head-content-holder .menu-holder .menu-list-left .languages-holder .bold {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  margin: 0 3px 0 0;
}
@media screen and (max-width: 680px) {
  .head-content-holder .menu-holder .menu-list-left .languages-holder {
    display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox; /* TWEENER - IE 10 */
    display: -webkit-flex; /* NEW - Chrome */
    display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  }
}
.head-content-holder .menu-holder .menu-list-right {
  width: 100%;
  align-self: flex-start;
  text-align: end;
  font-size: 32px;
}
.head-content-holder .menu-holder .menu-list .menu-list-item span, .head-content-holder .menu-holder .menu-list .menu-list-item a {
  display: inline-flex;
  cursor: pointer;
  color: white;
  text-decoration: none;
  -webkit-transition: 0.2s linear;
  -moz-transition: 0.2s linear;
  -ms-transition: 0.2s linear;
  -o-transition: 0.2s linear;
  transition: 0.2s linear;
}
.head-content-holder .menu-holder .menu-list .menu-list-item span:hover, .head-content-holder .menu-holder .menu-list .menu-list-item a:hover {
  color: #717171;
}
.head-content-holder .menu-holder .menu-list .menu-list-item span:focus, .head-content-holder .menu-holder .menu-list .menu-list-item a:focus {
  color: #717171;
}
.head-content-holder .menu-holder .menu-list .menu-list-item .menu-list-item-paragraph-holder {
  cursor: default;
  display: none;
  text-align: end;
  opacity: 1 !important;
}
.head-content-holder .menu-holder .menu-list .menu-list-item .menu-list-item-paragraph-holder .menu-list-item-paragraph {
  display: block;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
}
@media screen and (max-width: 1480px) {
  .head-content-holder .menu-holder .menu-list {
    padding-left: 25px;
  }
}
.head-content-holder .menu-holder .text-anim-in {
  opacity: 1;
}
.head-content-holder .menu-holder .text-anim-out {
  opacity: 0;
  transition-delay: 0s;
}
.head-content-holder .animated {
  -webkit-animation-duration: 0.3s !important;
  animation-duration: 0.3s !important;
}
.head-content-holder .mask-menu-main {
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 10000px;
  z-index: 9999;
  display: none;
}
@media screen and (max-width: 680px) {
  .head-content-holder .mask-menu-main {
    display: none !important;
  }
}
.head-content-holder .mask-menu-main.active {
  display: block;
}
.head-content-holder .menu-animated-config {
  z-index: 4;
  top: 0;
  width: 50%;
  height: 100vh;
  position: fixed;
  left: 0;
}
@media screen and (max-width: 680px) {
  .head-content-holder .menu-animated-config {
    width: 100%;
  }
}

.header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: white;
  transition: all 0.3s;
  z-index: 4;
}
.header .col {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.header .col .arrow-sticky {
  display: none;
}
.header.sticky {
  height: 100px;
  flex-wrap: nowrap;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 10;
}
.header.sticky .logo img {
  display: none;
}
.header.sticky .logo img.logo-small {
  display: initial !important;
  height: 65px;
}
.header.sticky .languages {
  display: none;
}
.header.sticky .arrow-sticky {
  display: initial;
  cursor: pointer;
  width: 30px;
  height: 30px;
}
.header.sticky .arrow-sticky img {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 680px) {
  .header {
    height: 90px;
  }
}

.header .nav-icon, .fixed-menu .nav-icon {
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
  position: relative;
  width: 32px;
}
.header .nav-icon div, .fixed-menu .nav-icon div {
  height: 3px;
  margin: 6px 0;
  background-color: #2d2a26;
  width: 32px;
  transition: all 0.1s ease-in-out;
  border-radius: 10px;
}
.header .nav-icon:before, .header .nav-icon:after, .fixed-menu .nav-icon:before, .fixed-menu .nav-icon:after {
  background-color: #2d2a26;
  content: "";
  display: block;
  height: 3px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 32px;
  border-radius: 10px;
}
.header .nav-icon.active:before, .fixed-menu .nav-icon.active:before {
  -webkit-transform: translateY(10px) rotate(135deg);
  transform: translateY(10px) rotate(135deg);
  background-color: #FFFFFF !important;
  position: relative;
  z-index: 101;
}
.header .nav-icon.active:after, .fixed-menu .nav-icon.active:after {
  -webkit-transform: translateY(-8px) rotate(-135deg);
  transform: translateY(-8px) rotate(-135deg);
  background-color: #FFFFFF !important;
  position: relative;
  z-index: 101;
}
.header .nav-icon.active:hover:before, .header .nav-icon.active:hover:after, .fixed-menu .nav-icon.active:hover:before, .fixed-menu .nav-icon.active:hover:after {
  background-color: #717171 !important;
}
.header .nav-icon.active div, .fixed-menu .nav-icon.active div {
  -webkit-transform: scale(0);
  transform: scale(0);
  background-color: #FFFFFF;
}
.header .header-icon-holder-active, .fixed-menu .header-icon-holder-active {
  transform: scale(1.2);
  z-index: 5;
}
.header .header-icon-holder-active .icons .icon-hover, .fixed-menu .header-icon-holder-active .icons .icon-hover {
  transform: rotate(0deg) scale(1);
  color: #FFFFFF;
  opacity: 1;
}
.header .header-icon-holder-active .icons .icon-default, .fixed-menu .header-icon-holder-active .icons .icon-default {
  transform: rotate(180deg) scale(0.5);
  opacity: 0;
}
.header .header-icon-holder-inactive, .fixed-menu .header-icon-holder-inactive {
  transform: scale(1.2);
  z-index: 2;
}
.header .header-icon-holder-inactive .icons .icon-hover, .fixed-menu .header-icon-holder-inactive .icons .icon-hover {
  transform: rotate(180deg) scale(0.5);
  opacity: 0;
}
.header .header-icon-holder-inactive .icons .icon-default, .fixed-menu .header-icon-holder-inactive .icons .icon-default {
  transform: rotate(0deg) scale(1);
  color: #2d2a26;
  opacity: 1;
}

.header .header-text-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  color: #2d2a26;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 16px;
  box-sizing: content-box;
}
.header .header-text-holder > div {
  position: relative;
}
.header .header-text-holder > div:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 2px;
  bottom: 0;
  height: 18px;
  width: 1px;
  background-color: #2d2a26;
  margin: auto 0;
}
.header .header-text-holder > div:not(:last-child) a {
  padding-right: 10px;
}
.header .header-text-holder > div:not(:first-child) a {
  padding-left: 10px;
}
.header .header-text-holder a {
  text-decoration: none;
  color: #2d2a26;
  padding-right: 2px;
  height: 22px;
}
.header .header-text-holder a.active, .header .header-text-holder a:hover {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}
.header .header-text-holder .bold {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  margin: 0 3px 0 0;
}
@media screen and (max-width: 680px) {
  .header .header-text-holder {
    display: none;
  }
}
.header .header-logo-holder {
  width: 190px;
  text-align: center;
  position: absolute;
  left: calc(50% - 95px);
}
.header .header-logo-holder .logo img {
  height: 135px;
}
.header .header-logo-holder .logo img.logo-small {
  display: none;
}
@media screen and (max-width: 680px) {
  .header .header-logo-holder .logo img {
    height: 95px;
  }
  .header .header-logo-holder .logo img.logo-small {
    height: 55px;
  }
}
.header .header-icon-holder-active {
  position: relative;
}

.slides-holder {
  width: 100%;
  position: relative;
  margin: auto;
}
.slides-holder .slide-viewer {
  overflow: hidden;
  position: relative;
  height: 750px;
}
@media only screen and (max-height: 1080px) {
  .slides-holder .slide-viewer {
    height: 500px;
  }
}
.slides-holder .slide-viewer .slide-group {
  height: 100%;
  position: relative;
  width: 100%;
}
.slides-holder .slide-viewer .slide {
  height: 100%;
  position: absolute;
  width: 100%;
}
.slides-holder .slide-viewer .slide:first-child {
  z-index: 1;
}
.slides-holder .slide-viewer .slide img {
  vertical-align: middle;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slides-holder .slide-viewer .slide .text {
  font-family: "acumin-pro", OpenSansLight;
  font-weight: 300;
  color: #f2f2f2;
  font-size: 35pt;
  position: absolute;
  top: 30%;
  max-height: 60%;
  overflow: hidden;
  left: 0;
  right: 0;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column;
}
.slides-holder .slide-viewer .slide .text-dark {
  color: #000;
}
.slides-holder .slide-viewer .slide .text p {
  margin: 0;
  line-height: 50px;
}
.slides-holder .slide-viewer .slide .text-dark {
  color: black;
}
.slides-holder .slide-viewer .slide:first-child {
  display: block;
}

.slider-buttons-holder {
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  bottom: 15px;
  width: 30%;
  margin: auto;
  z-index: 3;
}
.slider-buttons-holder .dot-btn {
  cursor: pointer;
  height: 10px;
  width: 10px;
  margin: 0 10px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
@media (hover: hover) {
  .slider-buttons-holder .dot-btn:hover {
    background-color: #65b2e8;
  }
}
.slider-buttons-holder .active {
  background-color: #65b2e8;
  cursor: default;
}

@media screen and (max-width: 1480px) {
  .header, .fixed-menu {
    padding: 0 25px;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box;
  }
  .slides-holder .slide-viewer {
    height: 450px;
  }
  .slides-holder .slide-viewer .slide-group .slide .text {
    font-size: 32pt;
    top: 30%;
    margin-left: 25px;
  }
  .slides-holder .slide-viewer .slide-group .slide .text p {
    line-height: 45px;
  }
}
@media screen and (max-width: 680px) {
  .slides-holder .slide-viewer {
    height: 290px;
  }
  .slides-holder .slide-viewer .slide-group .slide .text {
    font-size: 30px;
  }
  .slides-holder .slide-viewer .slide-group .slide .text p {
    line-height: 35px;
  }
  .slides-holder .slider-buttons-holder {
    bottom: 55px;
  }
}
@media screen and (max-width: 400px) {
  .slides-holder .slide-viewer {
    height: 250px;
  }
  .slides-holder .slide-viewer .slide-group .slide .text {
    font-size: 15pt;
  }
  .slides-holder .slide-viewer .slide-group .slide .text p {
    line-height: 25px;
  }
}
.slideOutLeft {
  animation-delay: 0.3s;
}

.light-grey {
  background-color: #EAEBED;
}

html {
  scroll-behavior: smooth;
}
html.non-overflow {
  overflow: hidden;
}

body > .container {
  padding-top: 150px;
}
@media screen and (max-width: 680px) {
  body > .container {
    padding-top: 90px;
  }
}

.slideUpParagraphs {
  -webkit-animation: fadeInUp;
  animation: fadeInUp;
  -webkit-animation-duration: 3s !important;
  animation-duration: 3s !important;
}

.svg {
  filter: invert(0.5);
  height: 25px;
  width: 25px;
  height: 10px;
}

.activeLink {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}

.portfolio-holder .links-holder {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin: 40px 0 40px 0;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 14px;
  color: #2d2a26;
}
.portfolio-holder .items-holder {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  animation: fadeInUp 0.5s;
}
.portfolio-holder .items-holder .item {
  border: unset;
  overflow: hidden;
  position: relative;
}
.portfolio-holder .items-holder .item .img-portfolio {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.portfolio-holder .items-holder .item .item-active {
  position: absolute;
  padding: 12.5%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  text-align: center;
  -moz-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  -webkit-transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  transition: top 0.3s, right 0.3s, bottom 0.3s, left 0.3s;
  font-size: 12px;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  align-items: center;
}
.portfolio-holder .items-holder .item .item-active .title {
  width: 100%;
  font-size: 28px;
  margin: 0;
  line-height: 1;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .portfolio-holder .items-holder .item .item-active .title {
    font-size: 18px;
  }
}
@media screen and (max-width: 375px) {
  .portfolio-holder .items-holder .item .item-active .title {
    font-size: 16px;
  }
}
.portfolio-holder .items-holder .item .item-active .subtitle {
  width: 100%;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  margin: 0;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .portfolio-holder .items-holder .item .item-active .subtitle {
    font-size: 13px;
  }
}
.portfolio-holder .items-holder .item .item-active .details {
  width: 100%;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  margin: 5px 0 0 0;
  cursor: pointer;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .portfolio-holder .items-holder .item .item-active .details {
    font-size: 13px;
  }
}
.portfolio-holder .items-holder .item .item-active .details a {
  text-decoration: none;
}
.portfolio-holder .items-holder .item .item-active .details a:hover {
  color: #EAEBED;
}
.portfolio-holder .items-holder .item .item-active .arrow {
  width: 100%;
  animation: BounceUp 1s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  -webkit-animation: BounceUp 1s;
  -webkit-animation-fill-mode: forwards;
  -webkit-animation-iteration-count: infinite;
}
.portfolio-holder .items-holder .item .item-active .arrow .icon-arrow-left {
  transform: rotate(90deg);
  cursor: unset;
  width: 35px;
  height: 45px;
}
.portfolio-holder .items-holder .item .item-active.top {
  top: 100%;
}
.portfolio-holder .items-holder .item .container-item:hover .item-active.top {
  top: 0;
}
.portfolio-holder .items-holder .item .item-active.animation {
  top: 0 !important;
}

.portfolio-holder .items-holder > div {
  display: -webkit-box; /* OLD - iOS 6-, Safari 3.1-6 */
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  width: 100%;
}

@keyframes showOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hideOpacity {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.team-holder .items-holder {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.team-holder .items-holder .row {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
}
.team-holder .items-holder .row.flex-end {
  justify-content: flex-end;
}
.team-holder .items-holder .row.align-flex-end {
  align-items: flex-end;
}
.team-holder .items-holder .item-text {
  width: 100%;
}
.team-holder .items-holder .item-text .item-text-paragraph {
  cursor: pointer;
  opacity: 1;
  margin: 5px 0 10px 0;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team {
    padding-bottom: 50% !important;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team {
    padding-bottom: 66.6% !important;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team {
    padding-bottom: 100% !important;
  }
}
@media screen and (max-width: 768px) {
  .team-holder .items-holder .item-team {
    padding-bottom: 100% !important;
  }
}
.team-holder .items-holder .item-team .container-item {
  align-items: flex-start !important;
}
@media screen and (max-width: 768px) {
  .team-holder .items-holder .item-team .container-item {
    padding: 0 55px;
    align-items: center !important;
  }
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .title-holder {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .title-holder {
    font-size: 12pt;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .title-holder {
    font-size: 11pt;
  }
}
@media screen and (max-width: 425px) {
  .team-holder .items-holder .title-holder {
    font-size: 9pt;
  }
}
.team-holder .items-holder .title-holder {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  margin-top: 10px;
}
.team-holder .items-holder .item-team-info {
  background: #EAEBED;
  opacity: 0;
  overflow: hidden;
}
.team-holder .items-holder .item-team-info .content-holder {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.7s;
  margin: auto 0;
}
.team-holder .items-holder .item-team-info .content-holder .picture-holder {
  text-align: center;
}
.team-holder .items-holder .item-team-info .content-holder .picture-holder img {
  border-radius: 50%;
  height: 120px;
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-info .content-holder .picture-holder img {
    height: 80px;
  }
}
.team-holder .items-holder .item-team-info .content-holder .subtitle-holder {
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-info .content-holder .subtitle-holder {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-info .content-holder .subtitle-holder {
    font-size: 11pt;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-info .content-holder .subtitle-holder {
    font-size: 10pt;
  }
}
@media screen and (max-width: 425px) {
  .team-holder .items-holder .item-team-info .content-holder .subtitle-holder {
    font-size: 8.5pt;
  }
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info {
    width: 50% !important;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info {
    width: 66.6% !important;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-coordinators-info {
    width: 50% !important;
  }
}
@media screen and (max-width: 425px) {
  .team-holder .items-holder .item-team-coordinators-info {
    width: 100% !important;
  }
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info {
    padding-bottom: 50% !important;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info {
    padding-bottom: 66.6% !important;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-coordinators-info {
    padding-bottom: 100% !important;
  }
}
.team-holder .items-holder .item-team-coordinators-info {
  margin-top: -25%;
}
.team-holder .items-holder .item-team-coordinators-info .btn-close {
  display: none;
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info {
    position: absolute !important;
    top: 25%;
    width: 100% !important;
    padding-bottom: 100% !important;
  }
  .team-holder .items-holder .item-team-coordinators-info .btn-close {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
  }
}
@media screen and (max-width: 768px) {
  .team-holder .items-holder .item-team-coordinators-info {
    margin-top: 0;
  }
}
.team-holder .items-holder .item-team-coordinators-info .content-holder .picture-holder {
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .title-holder {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .title-holder {
    font-size: 12pt;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .title-holder {
    font-size: 11pt;
  }
}
@media screen and (max-width: 425px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .title-holder {
    font-size: 9pt;
  }
}
.team-holder .items-holder .item-team-coordinators-info .content-holder .description-holder {
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .description-holder {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .description-holder {
    font-size: 11pt;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .description-holder {
    font-size: 10pt;
  }
}
@media screen and (max-width: 425px) {
  .team-holder .items-holder .item-team-coordinators-info .content-holder .description-holder {
    font-size: 8.5pt;
  }
}
.team-holder .items-holder .item-team-coordinators-info .content-holder .description-holder {
  margin: 10px 0 0 0;
}
@media screen and (min-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators {
    padding-bottom: 50% !important;
  }
}
@media screen and (max-width: 1000px) {
  .team-holder .items-holder .item-team-coordinators {
    padding-bottom: 66.6% !important;
  }
}
@media screen and (max-width: 680px) {
  .team-holder .items-holder .item-team-coordinators {
    padding-bottom: 100% !important;
  }
}
.team-holder .items-holder .item-team-coordinators {
  height: 0;
}
.team-holder .items-holder .item-team-coordinators .item-text .item-text-paragraph {
  cursor: pointer;
}
.team-holder .item-team-info-down {
  animation: slideInDown 0.5s;
  animation-fill-mode: forwards;
  opacity: 1 !important;
}
.team-holder .item-team-info-up {
  transition: all 0.5s 0.5s;
  padding-bottom: 0 !important;
}
.team-holder .item-team-info-show {
  opacity: 1 !important;
  transition-delay: 0.6s !important;
}
.team-holder .item-team-info-hide {
  opacity: 0 !important;
  transition-delay: 0s !important;
}
.team-holder .item-team-info-left {
  animation: slideInLeft 0.5s;
  animation-fill-mode: forwards;
  opacity: 1 !important;
}
.team-holder .item-team-info-right {
  animation: slideInRight 0.5s 0.5s;
  animation-fill-mode: forwards;
  opacity: 1 !important;
}

.clients-holder .items-holder {
  background: #EAEBED;
}
.clients-holder .items-holder .item {
  cursor: pointer;
  position: relative;
}
.clients-holder .items-holder .item .fixed {
  cursor: default;
}
.clients-holder .items-holder .item img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.3s ease-in;
}
.clients-holder .items-holder .item .second-image {
  opacity: 0;
}
.clients-holder .items-holder .item p {
  margin: 0;
}
.clients-holder .items-holder .item .container-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  box-sizing: border-box;
}
.clients-holder .items-holder .light-grey {
  background-color: #EAEBED;
}
.clients-holder .items-holder .item:hover .first-image {
  opacity: 0;
}
.clients-holder .items-holder .item:hover .second-image {
  opacity: 1;
}
.clients-holder .items-holder > div {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  width: 100%;
}

.landing-page {
  width: 100%;
  height: 100vh;
  justify-content: center;
  position: fixed;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #FFFFFF;
  z-index: 4;
}
.landing-page img {
  max-width: 400px;
  width: 100%;
  animation-duration: 5s;
}
.landing-page svg {
  width: 30%;
}
@media screen and (max-width: 1600px) {
  .landing-page svg {
    width: 40%;
  }
}
@media screen and (max-width: 1300px) {
  .landing-page svg {
    width: 50%;
  }
}
@media screen and (max-width: 1100px) {
  .landing-page svg {
    width: 60%;
  }
}
@media screen and (max-width: 900px) {
  .landing-page svg {
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  .landing-page svg {
    width: 100%;
  }
}
.landing-page.active {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.remove {
  -webkit-animation: backgroundResize 1.5s 3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation: backgroundResize 1.5s 3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  animation-fill-mode: forwards;
}

@keyframes backgroundResize {
  0% {
    width: 100%;
    height: 100%;
  }
  100% {
    width: 0;
    height: 0;
    top: 5%;
    left: 50%;
    display: none;
  }
}
.bottom-message {
  visibility: hidden;
  width: 100%;
  background: #2d2a26;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  bottom: 0;
  position: fixed;
  z-index: 5;
}
.bottom-message .container {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  align-items: center;
  align-content: center;
  justify-content: space-between;
}
.bottom-message .container .text-box {
  width: 80%;
  color: #FFFFFF;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  align-items: center;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 13pt;
  flex-wrap: wrap;
  align-content: center;
  padding: 20px 5%;
}
.bottom-message .container .text-box p {
  margin: 0;
}
.bottom-message .container .text-box p a {
  cursor: pointer;
  color: #FFFFFF;
  appearance: none;
  text-decoration: none;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}
.bottom-message .container .btn-accept {
  width: 14%;
  height: 100%;
  color: #FFFFFF;
  background-color: #e95ebe;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  align-items: center;
  justify-content: center;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  font-size: 13pt;
  cursor: pointer;
}
.bottom-message.active {
  visibility: visible;
}

@media screen and (max-width: 1280px) {
  .bottom-message .container .btn-accept {
    width: 20%;
  }
}
@media screen and (max-width: 770px) {
  .bottom-message .container {
    flex-direction: column;
    padding: 20px 25px;
    height: 100%;
  }
  .bottom-message .container .text-box {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  .bottom-message .container .btn-accept {
    width: 100%;
    padding: 12px 0;
  }
}
@media screen and (max-width: 400px) {
  .bottom-message .container {
    flex-direction: column;
    padding: 15px;
  }
  .bottom-message .container .text-box {
    font-size: 10pt;
    margin-bottom: 10px;
  }
  .bottom-message .container .btn-accept {
    width: 100%;
    padding: 12px 0;
  }
}
.white {
  background-color: #FFFFFF;
}

.dark-grey {
  background-color: #2d2a26;
}

.pink {
  background-color: #e95ebe;
}

.green {
  background-color: #89dc65;
}

.blue {
  background-color: #65b2e8;
}

.text-white {
  color: #FFFFFF;
}

.text-dark-grey {
  color: #2d2a26;
}

.text-pink {
  color: #e95ebe;
}

.text-green {
  color: #89dc65;
}

.text-blue {
  color: #65b2e8;
}

.col-grid-4 {
  width: 100%;
  box-sizing: border-box;
  min-width: 250px;
  max-width: 1400px;
}

.icon-arrow-left {
  width: 25px;
  cursor: pointer;
}

.icon-close {
  width: 25px;
  cursor: pointer;
}
.icon-close:hover {
  color: #FFFFFF;
  opacity: 0.5;
}

.default-holder {
  min-width: 250px;
  margin-bottom: 120px;
}
.default-holder .top-links {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}
@media screen and (max-width: 1450px) {
  .default-holder .top-links {
    padding: 0 25px;
  }
}
.default-holder .top-links .links-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  margin: 10px 0 40px 0;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  color: #2d2a26;
}
@media screen and (min-width: 1000px) {
  .default-holder .top-links .links-holder {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .default-holder .top-links .links-holder {
    font-size: 12pt;
  }
}
@media screen and (max-width: 680px) {
  .default-holder .top-links .links-holder {
    font-size: 11pt;
  }
}
@media screen and (max-width: 425px) {
  .default-holder .top-links .links-holder {
    font-size: 9pt;
  }
}
.default-holder .top-links .links-holder :active,
.default-holder .top-links .links-holder .active {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  background-color: transparent;
}
.default-holder .top-links .links-holder .link {
  margin: 0 30px 0 0;
  cursor: pointer;
}
.default-holder .top-links .title {
  color: #2d2a26;
}
@media screen and (min-width: 1000px) {
  .default-holder .top-links .title {
    font-size: 30.67px;
  }
}
@media screen and (max-width: 1000px) {
  .default-holder .top-links .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 680px) {
  .default-holder .top-links .title {
    font-size: 25.333px;
  }
}
@media screen and (max-width: 425px) {
  .default-holder .top-links .title {
    font-size: 22.67px;
  }
}
.default-holder .top-links .title {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  width: 100%;
  text-align: right;
  margin-bottom: 20px;
}
.default-holder .items-holder {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .default-holder .items-holder .item {
    width: 25%;
    padding-bottom: 25%;
  }
}
@media screen and (max-width: 1000px) {
  .default-holder .items-holder .item {
    width: 50%;
    padding-bottom: 50%;
  }
}
.default-holder .items-holder .item {
  height: 0;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.default-holder .items-holder .item .content-holder {
  transition: opacity 0.5s linear;
}
.default-holder .items-holder .item .content-holder.trade {
  transition: opacity 0.5s linear;
}
.default-holder .items-holder .item.team-in {
  animation: fadeTeamIn 0.4s linear forwards;
}
.default-holder .items-holder .item.team-in .content-holder {
  animation: teamOpacityIn 0.5s linear forwards;
  animation-delay: 0.4s;
}
.default-holder .items-holder .item.team-in .content-holder.trade {
  animation: tradeTeamMember 1s linear forwards;
}
.default-holder .items-holder .item.coor-in {
  display: flex;
  animation: fadeCoorIn 0.4s linear forwards;
}
.default-holder .items-holder .item.coor-in .content-holder {
  animation: teamOpacityIn 0.5s linear forwards;
  animation-delay: 0.4s;
}
.default-holder .items-holder .item.coor-in .content-holder.trade {
  animation: tradeTeamMember 1s linear forwards;
}
.default-holder .items-holder .item.team-out {
  opacity: 1;
  animation: fadeTeamOut 0.4s linear forwards;
  animation-delay: 0.5s;
}
.default-holder .items-holder .item.team-out .content-holder {
  animation: teamOpacityOut 0.5s linear forwards;
}
.default-holder .items-holder .item.coor-out {
  opacity: 1;
  animation: fadeCoorOut 0.4s linear forwards;
  animation-delay: 0.5s;
}
.default-holder .items-holder .item.coor-out .content-holder {
  animation: teamOpacityOut 0.5s linear forwards;
}
.default-holder .items-holder .item .container-item {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 12.5%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  box-sizing: border-box;
  background-size: cover;
  background-position: center;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  line-height: 2;
}
@media screen and (max-width: 680px) {
  .default-holder .items-holder .item .container-item {
    padding: 20px 15px;
  }
}
.default-holder .item-text {
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  .default-holder .item-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .default-holder .item-text {
    font-size: 11pt;
  }
}
@media screen and (max-width: 680px) {
  .default-holder .item-text {
    font-size: 10pt;
  }
}
@media screen and (max-width: 425px) {
  .default-holder .item-text {
    font-size: 8.5pt;
  }
}
.default-holder .item-text p {
  margin: 0;
}
.default-holder .item-title {
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  margin: auto;
}
@media screen and (min-width: 1000px) {
  .default-holder .item-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 1000px) {
  .default-holder .item-title {
    font-size: 12pt;
  }
}
@media screen and (max-width: 680px) {
  .default-holder .item-title {
    font-size: 11pt;
  }
}
@media screen and (max-width: 425px) {
  .default-holder .item-title {
    font-size: 9pt;
  }
}

.service-container {
  display: contents;
  position: relative;
}
.service-container .circles-holder {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: space-evenly;
}
.service-container .circles-holder .items-holder {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  justify-content: center;
}
.service-container .circles-holder .items-holder .item {
  height: 440px;
}
@media screen and (min-width: 1000px) {
  .service-container .circles-holder .items-holder .item {
    width: 25%;
    padding-bottom: 25%;
  }
}
@media screen and (max-width: 1000px) {
  .service-container .circles-holder .items-holder .item {
    width: 50%;
    padding-bottom: 50%;
  }
}
.service-container .circles-holder .items-holder .item {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding: 0 !important;
}
.service-container .circles-holder .items-holder .item p {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  width: 100%;
  font-size: 14pt;
  text-align: center;
  cursor: pointer;
}
.service-container .circles-holder .item-info {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  padding: 40px 20% 40px 20%;
  flex-direction: column;
  color: #ffffff;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  justify-content: center;
}
.service-container .circles-holder .item-info .title {
  font-size: 33px;
  margin-top: 0;
}
.service-container .circles-holder .item-info .btn-close {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: flex-end;
}
.service-container .circles-holder .item-info .btn-close .icon-close:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.service-container .circles-holder .item-info .info-holder {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column;
}
.service-container .circles-holder .item-info .info-holder .description-holder {
  width: 75%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: row;
  justify-content: space-between;
}
.service-container .circles-holder .item-info .info-holder .description-holder-column {
  width: 42%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column;
}
.service-container .circles-holder .item-info .info-holder .description-holder-column p {
  font-size: 13.5px;
  line-height: 27px;
  letter-spacing: 0.2px;
}
.service-container .circles-holder .item-info .portfolio-btn-container {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: flex-end;
}
.service-container .circles-holder .item-info .portfolio-btn-container .portfolio-btn {
  font-size: 13.5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}
.service-container .circles-holder .item-info .portfolio-btn-container .portfolio-btn:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.service-container .circles-holder .item-info .portfolio-btn-container .portfolio-btn .icon-arrow-left {
  margin-left: 10px;
}
.service-container .circles-holder .item-info .portfolio-btn-container .portfolio-btn .icon-arrow-left:hover {
  color: #FFFFFF;
  opacity: 0.5;
}

.about-holder .items-holder .row {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
}
.about-holder .items-holder .row-align-right {
  justify-content: flex-end;
}
.about-holder .items-holder.philosophy {
  background-image: url(./../images/balao.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-holder .items-holder.vision .item {
  width: 100%;
  min-height: 750px;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
}
.about-holder .items-holder.vision .item img {
  width: 100%;
  height: inherit;
}
.about-holder .items-holder.vision .item img.img-desktop {
  display: block;
}
@media screen and (max-width: 680px) {
  .about-holder .items-holder.vision .item img.img-desktop {
    display: none;
  }
}
.about-holder .items-holder.vision .item img.img-mobile {
  display: none;
  width: 80%;
}
@media screen and (max-width: 680px) {
  .about-holder .items-holder.vision .item img.img-mobile {
    display: block;
  }
}
.about-holder .items-holder.values {
  background-image: url(/images/group.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.about-holder .items-holder.hide {
  display: none;
}

.project-view .info-project {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: center;
  width: 100%;
  min-height: 450px;
  padding: 40px 80px;
  box-sizing: border-box;
  overflow: hidden;
}
@media screen and (max-width: 680px) {
  .project-view .info-project {
    padding: 40px 20px;
  }
}
.project-view .info-project .container-info {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
}
@media screen and (max-width: 680px) {
  .project-view .info-project .container-info {
    width: 100%;
  }
}
.project-view .info-project .container-info .btn-close,
.project-view .info-project .container-info .back-container {
  width: 100%;
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  justify-content: flex-end;
  opacity: 0;
  animation: paragraphs1By1 1s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}
.project-view .info-project .container-info .btn-close a,
.project-view .info-project .container-info .back-container a {
  text-decoration: none;
}
.project-view .info-project .container-info .btn-close i.icon-arrow-left,
.project-view .info-project .container-info .back-container i.icon-arrow-left {
  width: 25px;
  height: 25px;
  background-image: url("../images/arrow_left.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.project-view .info-project .container-info .btn-close:hover .icon-arrow-left,
.project-view .info-project .container-info .back-container:hover .icon-arrow-left {
  -webkit-animation: bounceRight;
  animation: bounceRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 840px) {
  .project-view .info-project .container-info .btn-close,
  .project-view .info-project .container-info .back-container {
    margin-top: 20px;
  }
}
.project-view .info-project .container-info .btn-back input {
  background: none;
  border: none;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
}
.project-view .info-project .container-info .btn-back:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.project-view .info-project .container-info h1 {
  margin: 0;
  height: 30px;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 20pt;
  margin-bottom: 20px;
  opacity: 0;
  animation: paragraphs1By1 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}
.project-view .info-project .container-info .container-description {
  width: 100%;
  column-count: 2;
  animation: paragraphs1By1 1s;
  animation-delay: 0.5s;
  opacity: 0;
  animation-fill-mode: forwards;
}
.project-view .info-project .container-info .container-description p {
  font-size: 10pt;
  width: 80%;
  min-width: 300px;
  margin: 0 30px 15px 0;
  font-size: 18px;
}
.project-view .info-project .container-info .container-description p a {
  color: #FFFFFF;
}
@media screen and (max-width: 840px) {
  .project-view .info-project .container-info .container-description p {
    width: 100%;
  }
}
@media screen and (max-width: 840px) {
  .project-view .info-project .container-info .container-description {
    column-count: 1;
  }
}
.project-view .gallery {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
}
.project-view .gallery .img-12 {
  width: 100%;
  object-fit: contain;
  height: 100%;
}
.project-view .gallery .img-6 {
  width: 50%;
  object-fit: contain;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .project-view .gallery .img-6 {
    width: 100%;
  }
}

@media screen and (max-width: 680px) {
  .default-holder {
    margin-bottom: 40px;
  }
  .default-holder .top-links .links-holder {
    margin-bottom: 15px;
  }
  .service-container .circles-holder .item-info {
    padding: 30px;
  }
  .service-container .circles-holder .item-info .info-holder {
    text-align: center;
  }
  .service-container .circles-holder .item-info .info-holder .title {
    font-size: 20px;
  }
  .service-container .circles-holder .item-info .info-holder .description-holder {
    width: 100%;
  }
  .service-container .circles-holder .item-info .info-holder .description-holder-column {
    justify-content: center;
  }
  .service-container .circles-holder .item-info .info-holder .description-holder-column p {
    font-size: 10px;
    line-height: 18px;
  }
  .service-container .circles-holder .item-info .portfolio-btn-container .portfolio-btn {
    font-size: 10px;
  }
}
.contact-holder .items-holder {
  overflow: hidden;
  position: relative;
  z-index: 0;
  height: 0;
  padding-bottom: 75%;
}
@media screen and (max-width: 1000px) {
  .contact-holder .items-holder {
    padding-bottom: 150%;
  }
}
@media screen and (max-width: 768px) {
  .contact-holder .items-holder {
    padding-bottom: 150%;
  }
}
.contact-holder .items-holder .map {
  height: 0;
  padding-bottom: 100%;
}
.contact-holder .items-holder .container-map .item {
  height: 0;
}
.contact-holder .items-holder .container-map .item .item-text p {
  margin: 0;
  line-height: 160%;
}
.contact-holder .items-holder .container-map .item-blue {
  background: #2d2a26;
  left: 0;
  top: 0;
  position: absolute !important;
}
.contact-holder .items-holder .container-map .item-blue .item-text {
  color: #FFFFFF;
}
.contact-holder .items-holder .container-map .item-blue .item-text .morada {
  margin-bottom: 20px;
  line-height: 1.3;
}
.contact-holder .items-holder .container-map .item-blue .item-text h4 {
  margin: 0 0 20px 0;
}
.contact-holder .items-holder .container-map .item-blue .item-text p a {
  color: #FFFFFF;
  text-decoration: none;
  cursor: pointer;
}
.contact-holder .items-holder .container-map .text-top {
  right: 0;
  top: 0;
  position: absolute !important;
  background: #FFFFFF;
}
@media screen and (max-width: 1000px) {
  .contact-holder .items-holder .container-map .text-top {
    display: none;
  }
}
.contact-holder .items-holder .container-map .text-bottom {
  background: #FFFFFF;
  bottom: 0;
  left: 50%;
  position: absolute !important;
}
.contact-holder .items-holder .container-map .text-bottom .item-text {
  font-family: "acumin-pro", OpenSansLight;
  font-weight: 300;
}
@media screen and (min-width: 1000px) {
  .contact-holder .items-holder .container-map .text-bottom .item-text {
    font-size: 30.67px;
  }
}
@media screen and (max-width: 1000px) {
  .contact-holder .items-holder .container-map .text-bottom .item-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 680px) {
  .contact-holder .items-holder .container-map .text-bottom .item-text {
    font-size: 25.333px;
  }
}
@media screen and (max-width: 425px) {
  .contact-holder .items-holder .container-map .text-bottom .item-text {
    font-size: 22.67px;
  }
}

.bold {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
}

.grid-footer {
  background-color: #EAEBED;
}

#footer {
  margin-top: auto;
}

.footer {
  display: -moz-box; /* OLD - Firefox 19- (buggy but mostly works) */
  display: -ms-flexbox; /* TWEENER - IE 10 */
  display: -webkit-flex; /* NEW - Chrome */
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  bottom: 0;
  min-height: 240px;
  background-color: #EAEBED;
  color: #2d2a26;
}
.footer .icon-talk-with-us {
  left: 0;
  bottom: 0;
  position: absolute;
  top: unset;
}
.footer .footer-left-holder {
  height: 100%;
  width: 25%;
  position: relative;
}
.footer .footer-left-holder .link-talk {
  text-align: center;
  background-color: #65b2e8;
  position: absolute;
  height: 30px;
  bottom: 0;
  width: 45%;
  right: 0;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  font-size: 12px;
  color: white;
}
.footer .footer-left-holder .link-talk .link-talk-text {
  margin: 5px auto;
}
.footer .footer-center-holder {
  height: 100%;
  width: 65%;
  display: flex;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 13px;
  flex-direction: row;
  justify-content: flex-end;
}
@media screen and (max-width: 680px) {
  .footer .footer-center-holder {
    width: 100%;
    justify-content: center;
  }
}
.footer .footer-center-holder .footer-item-tab {
  padding: 0 30px 0 30px;
  margin-top: 50px;
  box-sizing: content-box;
}
.footer .footer-center-holder .footer-item-tab div .item {
  margin-top: 5px;
}
.footer .footer-center-holder .footer-item-tab a {
  cursor: pointer;
  text-decoration: none;
  color: #2d2a26;
}
.footer .footer-center-holder .footer-item-tab a:hover {
  opacity: 0.6;
}
.footer .footer-right-holder {
  width: 35%;
  min-width: 180px;
  height: auto;
  padding: 50px 30px 0 30px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
}
@media screen and (max-width: 680px) {
  .footer .footer-right-holder {
    width: 100%;
    padding: 0;
    margin: 20px 0 60px 0;
    justify-content: center;
  }
}
.footer .footer-right-holder .social-media {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
@media screen and (max-width: 680px) {
  .footer .footer-right-holder .social-media {
    justify-content: center;
    padding: 20px 0;
  }
}
.footer .footer-right-holder .social-media a {
  margin: 0 0 0 15px;
}
.footer .footer-right-holder .social-media a img {
  height: 25px;
  width: 25px;
}
.footer .footer-right-holder .register {
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 13px;
  width: 100%;
  text-align: end;
}
@media screen and (max-width: 680px) {
  .footer .footer-right-holder .register {
    justify-content: center;
    text-align: center;
    padding: 15px;
  }
}

.service-container {
  position: relative;
}
.service-container .circles-holder {
  display: flex;
  justify-content: space-evenly;
  min-height: 470px;
  margin: 0 auto;
}
.service-container .circles-holder .items-holder {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.service-container .circles-holder .items-holder .item {
  height: auto;
  width: 20%;
}
@media screen and (min-width: 1000px) {
  .service-container .circles-holder .items-holder .item {
    width: 25%;
    padding-bottom: 25%;
  }
}
@media screen and (max-width: 1000px) {
  .service-container .circles-holder .items-holder .item {
    width: 50%;
    padding-bottom: 50%;
  }
}
.service-container .circles-holder .items-holder .item {
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 0 !important;
  transition: all 0.3s ease-in-out;
}
.service-container .circles-holder .items-holder .item .item-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  cursor: pointer;
}
.service-container .circles-holder .items-holder .item .item-container:hover {
  transform: scale(1.1);
}
.service-container .circles-holder .items-holder .item .item-container:hover img {
  transform: rotate(360deg);
}
.service-container .circles-holder .items-holder .item div {
  width: 100%;
  display: flex;
  justify-content: center;
}
.service-container .circles-holder .items-holder .item img {
  transition: all 0.5s cubic-bezier(0, 0, 0, 0.85);
  width: 190px;
  object-fit: contain;
}
.service-container .circles-holder .items-holder .item p {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  width: 52%;
  text-transform: uppercase;
  text-align: center;
  font-size: 18px;
}
@media only screen and (max-width: 1322px) {
  .service-container .circles-holder .items-holder .item p {
    width: 58%;
  }
}
@media only screen and (max-width: 1230px) {
  .service-container .circles-holder .items-holder .item p {
    width: 61%;
  }
}
@media only screen and (max-width: 1130px) {
  .service-container .circles-holder .items-holder .item p {
    width: 65%;
  }
}
@media only screen and (max-width: 1068px) {
  .service-container .circles-holder .items-holder .item p {
    width: 70%;
  }
}
@media only screen and (max-width: 1000px) {
  .service-container .circles-holder .items-holder .item p {
    width: 38%;
  }
}
@media only screen and (max-width: 910px) {
  .service-container .circles-holder .items-holder .item p {
    width: 41%;
  }
}
@media only screen and (max-width: 845px) {
  .service-container .circles-holder .items-holder .item p {
    width: 44%;
  }
}
@media only screen and (max-width: 788px) {
  .service-container .circles-holder .items-holder .item p {
    width: 48%;
  }
}
@media only screen and (max-width: 732px) {
  .service-container .circles-holder .items-holder .item p {
    width: 52%;
  }
}
@media only screen and (max-width: 670px) {
  .service-container .circles-holder .items-holder .item p {
    width: 56%;
  }
}
@media only screen and (max-width: 626px) {
  .service-container .circles-holder .items-holder .item p {
    width: 64%;
  }
}
@media only screen and (max-width: 544px) {
  .service-container .circles-holder .items-holder .item p {
    width: 70%;
  }
}
@media only screen and (max-width: 515px) {
  .service-container .circles-holder .items-holder .item p {
    width: 77%;
  }
}
@media only screen and (max-width: 450px) {
  .service-container .circles-holder .items-holder .item p {
    width: 85%;
  }
}
@media only screen and (max-width: 375px) {
  .service-container .circles-holder .items-holder .item p {
    width: 100%;
  }
}
.service-container .service-info-holder {
  display: flex;
  justify-content: center;
  height: auto;
  min-height: 290px;
  padding: 50px 30px;
  margin-bottom: 80px;
}
.service-container .service-info-holder .item-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-weight: 400;
}
@media screen and (min-width: 1000px) {
  .service-container .service-info-holder .item-info .title {
    font-size: 30.67px;
  }
}
@media screen and (max-width: 1000px) {
  .service-container .service-info-holder .item-info .title {
    font-size: 28px;
  }
}
@media screen and (max-width: 680px) {
  .service-container .service-info-holder .item-info .title {
    font-size: 25.333px;
  }
}
@media screen and (max-width: 425px) {
  .service-container .service-info-holder .item-info .title {
    font-size: 22.67px;
  }
}
.service-container .service-info-holder .item-info .title {
  margin-top: 0;
}
.service-container .service-info-holder .item-info .btn-close {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.service-container .service-info-holder .item-info .btn-close .icon-close:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.service-container .service-info-holder .item-info .info-holder {
  display: flex;
  flex-direction: column;
}
.service-container .service-info-holder .item-info .info-holder .description-holder {
  width: 80%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
.service-container .service-info-holder .item-info .info-holder .description-holder-column {
  width: 45%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column {
    width: 100%;
  }
}
@media screen and (min-width: 1000px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column p {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column p {
    font-size: 11pt;
  }
}
@media screen and (max-width: 680px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column p {
    font-size: 10pt;
  }
}
@media screen and (max-width: 425px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column p {
    font-size: 8.5pt;
  }
}
.service-container .service-info-holder .item-info .info-holder .description-holder-column p {
  line-height: 27px;
  letter-spacing: 0.2px;
}
@media screen and (max-width: 768px) {
  .service-container .service-info-holder .item-info .info-holder .description-holder-column p {
    width: 100%;
    text-align: left;
  }
}
.service-container .service-info-holder .item-info .portfolio-btn-container {
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 1000px) {
  .service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px) {
  .service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn {
    font-size: 11pt;
  }
}
@media screen and (max-width: 680px) {
  .service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn {
    font-size: 10pt;
  }
}
@media screen and (max-width: 425px) {
  .service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn {
    font-size: 8.5pt;
  }
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn {
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  font-weight: 700;
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn a {
  text-decoration: none;
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn:hover {
  color: #FFFFFF;
  opacity: 0.5;
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn:hover .icon-arrow-left {
  color: #FFFFFF;
  opacity: 0.5;
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn:hover .icon-arrow-left {
  -webkit-animation: bounceRight;
  animation: bounceRight;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  opacity: 0.5;
}
.service-container .service-info-holder .item-info .portfolio-btn-container .portfolio-btn .icon-arrow-left {
  margin-left: 10px;
}

@media screen and (max-width: 1000px) {
  .service-container .circles-holder {
    margin: 60px auto;
  }
  .service-container .service-info-holder {
    height: 450px;
    padding: 40px 25px;
    margin-bottom: 60px;
  }
  .service-container .service-info-holder .item-info {
    justify-content: space-between;
  }
}
@media screen and (max-width: 680px) {
  .item-info .info-holder {
    text-align: center;
  }
  .item-info .info-holder .description-holder {
    width: 100% !important;
  }
  .item-info .info-holder .description-holder-column {
    justify-content: center;
  }
  .item-info .info-holder .description-holder-column p {
    line-height: 18px;
  }
}
.privacy-container {
  max-width: 1400px;
  margin: 0 auto 50px;
  display: flex; /* NEW, Spec - Opera 12.1, Firefox 20+ */
  flex-direction: column;
  color: #2d2a26;
  padding: 0 30px;
}
.privacy-container h1, .privacy-container h2, .privacy-container h3, .privacy-container h4 {
  font-family: "acumin-pro", OpenSansBold;
  font-weight: 700;
  font-size: 25pt;
}
.privacy-container span {
  font-family: "acumin-pro", OpenSansRegular;
  font-weight: 400;
  font-size: 10pt;
  margin: 0 0 60px 0;
}

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