@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2016 Daniel Eden
 */

.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.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
}

@-webkit-keyframes bounce {
  from,
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from,
  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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from,
  50%,
  to {
    opacity: 1;
  }

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

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

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

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

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

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%,
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }

  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%,
  60%,
  80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

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

@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes jello {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

  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 {
  from,
  11.1%,
  to {
    -webkit-transform: none;
    transform: none;
  }

  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 bounceIn {
  from,
  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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

@keyframes bounceIn {
  from,
  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: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}

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

@-webkit-keyframes bounceInDown {
  from,
  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: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  from,
  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: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  from,
  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: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  from,
  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: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {
  from,
  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);
  }

  from {
    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: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  from,
  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);
  }

  from {
    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: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {
  from,
  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);
  }

  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bounceInUp {
  from,
  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);
  }

  from {
    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: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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-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 {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

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

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes fadeOutDown {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}

@keyframes fadeOutDownBig {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes fadeOutLeft {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}

@keyframes fadeOutLeftBig {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes fadeOutRight {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}

@keyframes fadeOutRightBig {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes fadeOutUp {
  from {
    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 {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}

@keyframes fadeOutUpBig {
  from {
    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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px)
      rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -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 {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -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 {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes lightSpeedIn {
  from {
    -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);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  from {
    -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);
    opacity: 1;
  }

  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

@keyframes lightSpeedOut {
  from {
    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 {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 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: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 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: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 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-name: hinge;
  animation-name: hinge;
}

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

@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

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

@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    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 {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 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 {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}
/*
 * Axis Framework
 */
/*
 * Stanfy Panda Global-Reset
 */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: inherit;
  font-style: inherit;
  font-family: inherit;
  font-size: 100%;
  vertical-align: baseline;
}
body {
  line-height: 1;
  color: #222;
  background: #fff;
}
ol,
ul {
  list-style: none;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  vertical-align: middle;
}
caption,
th,
td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}
a img {
  border: none;
}
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html *,
html *:before,
html *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit;
}
/*
 * Stanfy Panda Others
 */
/*
 * Stanfy Panda Base
 */
@font-face {
  font-family: GothaProLig;
  font-style: lighten;
  src: url(/assets/fonts/GothaProLig.otf);
}
@font-face {
  font-family: GothaProReg;
  font-style: regular;
  src: url(/assets/fonts/GothaProReg.otf);
}
@font-face {
  font-family: GothaProBol;
  font-style: bold;
  src: url(/assets/fonts/GothaProBol.otf);
}
@font-face {
  font-family: FontAwesome;
  src: url(/assets/fonts/fa-brands-400.ttf);
  font-style: normal;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Thin.ttf);
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Light.ttf);
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Regular.ttf);
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: Roboto;
  src: url(/assets/fonts/Roboto-Medium.ttf);
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: Icomoon;
  src: url(/assets/fonts/icomoon.eot);
  src: url(/assets/fonts/icomoon.eot) format("embedded-opentype"),
    url(/assets/fonts/icomoon.ttf) format("truetype"),
    url(/assets/fonts/icomoon.woff) format("woff"),
    url(/assets/images/icomoon.svg) format("svg");
  font-weight: normal;
  font-style: normal;
}
body {
  font: 1em Roboto, Helvetica, Arial, sans-serif;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}
.home {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
  -o-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.05);
  background-color: #ffdc00;
  padding: 15px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  margin: 20px 0;
}
.hello {
  padding-top: 100px;
  margin: 0px;
  height: 600px;
  background-color: #3d9970;
}
.about {
  padding-top: 100px;
  height: 600px;
  background-color: #80ccaa;
}
.wrapper-desktop {
  *zoom: 1;
  width: auto;
  max-width: 960px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.wrapper-desktop:before,
.wrapper-desktop:after {
  content: "";
  display: table;
}
.wrapper-desktop:after {
  clear: both;
}
.centerAlign {
  text-align: center;
}
.overlay-box {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 8010;
}
.overlay-box .overlay-wrapper {
  position: relative;
  max-width: 800px;
  max-height: 415px;
  width: 80%;
  height: 80%;
  margin: 0 auto;
  background-color: #fff;
  top: 0;
  transition: top 0.3s;
}
.overlay-box .overlay-wrapper .close-btn {
  position: absolute;
  right: -9px;
  top: -13px;
  background-color: #000;
  font-size: 16px;
  line-height: 24px;
  width: 25px;
  height: 25px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  border: 2px solid #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  text-decoration: none;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
}
.panda-btn {
  color: #ffc100;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.563rem;
  border: 2px solid #ffc100;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  padding: 13px 30px 9px 30px;
  text-decoration: none !important;
  display: inline-block;
  transition: all 0.2s ease-in-out;
}
.panda-btn.white {
  color: #fff;
  border-color: #fff;
  font-size: 1.188rem;
  font-weight: 700;
}
.panda-btn.white .ico {
  font-weight: bold;
  margin-right: 5px;
  font-size: 23px;
  vertical-align: top;
  display: inline-block;
}
.panda-btn.white:hover {
  border-color: #fff;
  background-color: #fff;
}
.panda-btn:hover {
  background-color: #ffc100;
  color: #545453;
}
.panda-btn-yellow {
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 1.313rem;
  padding: 20px 42px;
  text-decoration: none;
  background-color: #ffe20a;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  color: #000;
  border: 0px;
}
.panda-btn-yellow:hover {
  background-color: #efc703;
}
.ico {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: Icomoon !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.ico.ico-48 {
  font-size: 48px !important;
}
.ico.icon-chat:before {
  content: "\E900";
}
.ico.icon-flash:before {
  content: "\E901";
}
.ico.icon-group:before {
  content: "\E902";
}
.ico.icon-pan:before {
  content: "\E903";
}
.ico.icon-phone:before {
  content: "\E904";
}
.ico.icon-play-out:before {
  content: "\E905";
}
.ico.icon-arrow-right:before {
  content: "\F105";
}
.ico.icon-arrow-left:before {
  content: "\F104";
}
.ico.icon-talk:before {
  content: "\E906";
}
.ico.icon-envelope:before {
  content: "\E907";
}
.clear {
  clear: both;
}
.set-background-yellow {
  background-color: #ffe20a !important;
}
.set-background-blue {
  background-color: #208ac9 !important;
}
.services-block-title {
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 1.2;
  max-width: 950px;
  margin: 0 auto;
  padding: 100px 0 70px;
  color: #545453;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .services-block-title {
    font-size: 2.5rem;
    padding: 70px 0 30px;
  }
}
.wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.wrapper:before,
.wrapper:after {
  content: "";
  display: table;
}
.wrapper:after {
  clear: both;
}
/*
 * Stanfy Panda End of styles
 */
/* .panda_braker { } */
/*  background-image url('../images/panda-back.jpg') */
/*
 *  Test styles
 */
.super-styles {
  border: 5px solid #222;
}
.anotherSuper {
  color: #000;
}
.locaStyle {
  background-color: #808080;
}
/*
 * This is the changes needed to show the project info
 */
/* Markup was inspired from http://jsfiddle.net/PpdzE/ */
.sp-portfolio-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 29px 120px;
}
@media only screen and (max-width: 768px) {
  .sp-portfolio-wrapper {
    padding-bottom: 70px;
  }
}
.sp-portfolio-wrapper .block-header {
  font-size: 3.75em;
  font-weight: 300;
  line-height: 1em;
  margin-bottom: 60px;
  text-align: center;
  color: #545453;
}
@media only screen and (max-width: 768px) {
  .sp-portfolio-wrapper .block-header {
    font-size: 2.5rem;
  }
}
.sp-portfolio-wrapper .more-link {
  margin-top: 33px;
  font-size: 1.375rem;
  line-height: 2.25rem;
  display: inline-block;
  color: #2c8bc9;
  position: relative;
  text-decoration: none;
}
.sp-portfolio-wrapper .more-link:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #0087c8;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.sp-portfolio-wrapper .more-link:hover:after,
.sp-portfolio-wrapper .more-link.hovered:after {
  height: 2px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}
.sp-portfolio-wrapper .more-link.hovered:hover:after {
  height: 2px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.sp-portfolio-wrapper .more-link .ico {
  vertical-align: top;
  font-size: 1.9rem;
  display: inline-block;
}
.sp-portfolio {
  height: 610px;
  color: #fff;
}
.sp-portfolio:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .sp-portfolio {
    height: auto;
  }
}
.sp-portfolio .proj {
  position: relative;
  border-radius: 6px;
  border: 3px solid #fff;
  background: rgba(0, 0, 0, 0.1);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
  cursor: pointer;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-backface-visibility: hidden;
  -moz-transform: translate3d(0, 0, 0);
}
.sp-portfolio .proj .hover-block {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease-out, top 0.3s ease-out, bottom 0.3s ease-out,
    left 0.3s ease-out, right 0.3s ease-out;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-backface-visibility: hidden;
  -moz-transform: translate3d(0, 0, 0);
}
.sp-portfolio .proj .hover-block .title {
  color: #fff;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -o-transform: translateY(-10%);
  transform: translateY(-10%);
}
.sp-portfolio .proj .hover-block .desc {
  text-align: left;
  color: #fff;
  transition: transform 0.3s, opacity 0.3s;
  -webkit-transform: translateY(10%);
  -moz-transform: translateY(10%);
  -o-transform: translateY(10%);
  transform: translateY(10%);
}
.sp-portfolio .proj .hover-block .panda-btn {
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -o-transform: translateY(-10%);
  transform: translateY(-10%);
}
.sp-portfolio .proj:hover .hover-block {
  opacity: 1;
}
.sp-portfolio .proj:hover .hover-block .title,
.sp-portfolio .proj:hover .hover-block .desc,
.sp-portfolio .proj:hover .hover-block .panda-btn {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
@media only screen and (max-width: 768px) {
  .sp-portfolio .proj .hover-block {
    opacity: 1;
  }
  .sp-portfolio .proj .hover-block .title,
  .sp-portfolio .proj .hover-block .desc,
  .sp-portfolio .proj .hover-block .panda-btn {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
  }
}
.sp-portfolio .proj:nth-of-type(2) .inner {
  padding: 20px 5%;
}
@media only screen and (max-width: 768px) {
  .sp-portfolio .proj:nth-of-type(2) .inner {
    padding: 60px 8% 21px 8%;
  }
}
.sp-portfolio .proj:nth-of-type(2) .inner .title {
  font-size: 1.65rem;
}
@media only screen and (max-width: 768px) {
  .sp-portfolio .proj:nth-of-type(2) .inner .title {
    font-size: 1.375rem;
  }
}
.sp-portfolio .large {
  float: left;
  width: 50%;
  height: 100%;
}
.sp-portfolio .large .inner {
  padding: 135px 10% 0 10%;
}
.sp-portfolio .large .title {
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 3.313rem;
  padding: 0 0 21px 0;
}
.sp-portfolio .large .desc {
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 2.1rem;
  padding: 0 0 67px 0;
}
.sp-portfolio .small {
  float: left;
  width: 25%;
  height: 50%;
}
.sp-portfolio .small .panda-btn {
  font-size: 1.375rem;
  line-height: 1.313rem;
}
.sp-portfolio .small .inner {
  padding: 36px 8% 21px 8%;
}
.sp-portfolio .small .title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 2.188rem;
  padding: 0 0 8px 0;
}
.sp-portfolio .small .desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  padding: 0 0 20px 0;
}
@media only screen and (max-width: 768px) {
  .sp-portfolio .large,
  .sp-portfolio .small {
    float: none;
    width: 100%;
    height: 300px;
  }
  .sp-portfolio .large .inner,
  .sp-portfolio .small .inner {
    padding: 60px 8% 21px 8%;
  }
  .sp-portfolio .large .inner .title,
  .sp-portfolio .small .inner .title {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.563rem;
    padding: 0 0 13px 0;
  }
  .sp-portfolio .large .inner .desc,
  .sp-portfolio .small .inner .desc {
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.363rem;
    padding: 0 0 29px 0;
  }
  .sp-portfolio .large .inner .panda-btn,
  .sp-portfolio .small .inner .panda-btn {
    display: block;
    max-width: 200px;
    font-size: 1.063rem;
    font-weight: 400;
    line-height: 1rem;
    text-align: center;
  }
}
.touchDevice .sp-portfolio {
  height: 610px;
  color: #fff;
}
.touchDevice .sp-portfolio:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .touchDevice .sp-portfolio {
    height: auto;
  }
}
.touchDevice .sp-portfolio .proj .hover-block {
  opacity: 1;
}
.touchDevice .sp-portfolio .proj .hover-block .title,
.touchDevice .sp-portfolio .proj .hover-block .desc,
.touchDevice .sp-portfolio .proj .hover-block .panda-btn {
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
}
.homePage .sp-contact-form,
.workPage .sp-contact-form,
.industrial .sp-contact-form,
.android .sp-contact-form,
.embedded .sp-contact-form,
.hardware .sp-contact-form {
  background: #006cc1;
  color: #fff;
  padding: 80px 0 60px 0;
  text-align: center;
}
.homePage .sp-contact-form .wrapper,
.workPage .sp-contact-form .wrapper,
.industrial .sp-contact-form .wrapper,
.android .sp-contact-form .wrapper,
.embedded .sp-contact-form .wrapper,
.hardware .sp-contact-form .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.homePage .sp-contact-form .wrapper:before,
.workPage .sp-contact-form .wrapper:before,
.industrial .sp-contact-form .wrapper:before,
.android .sp-contact-form .wrapper:before,
.embedded .sp-contact-form .wrapper:before,
.hardware .sp-contact-form .wrapper:before,
.homePage .sp-contact-form .wrapper:after,
.workPage .sp-contact-form .wrapper:after,
.industrial .sp-contact-form .wrapper:after,
.android .sp-contact-form .wrapper:after,
.embedded .sp-contact-form .wrapper:after,
.hardware .sp-contact-form .wrapper:after {
  content: "";
  display: table;
}
.homePage .sp-contact-form .wrapper:after,
.workPage .sp-contact-form .wrapper:after,
.industrial .sp-contact-form .wrapper:after,
.android .sp-contact-form .wrapper:after,
.embedded .sp-contact-form .wrapper:after,
.hardware .sp-contact-form .wrapper:after {
  clear: both;
}
@media only screen and (max-width: 768px) {
  .homePage .sp-contact-form .wrapper,
  .workPage .sp-contact-form .wrapper,
  .industrial .sp-contact-form .wrapper,
  .android .sp-contact-form .wrapper,
  .embedded .sp-contact-form .wrapper,
  .hardware .sp-contact-form .wrapper {
    padding: 0 17px;
  }
}
.homePage .sp-contact-form .wrapper .title,
.workPage .sp-contact-form .wrapper .title,
.industrial .sp-contact-form .wrapper .title,
.android .sp-contact-form .wrapper .title,
.embedded .sp-contact-form .wrapper .title,
.hardware .sp-contact-form .wrapper .title {
  font-size: 3.75rem;
  font-weight: 300;
  padding-bottom: 65px;
}
@media only screen and (max-width: 768px) {
  .homePage .sp-contact-form .wrapper .title,
  .workPage .sp-contact-form .wrapper .title,
  .industrial .sp-contact-form .wrapper .title,
  .android .sp-contact-form .wrapper .title,
  .embedded .sp-contact-form .wrapper .title,
  .hardware .sp-contact-form .wrapper .title {
    font-size: 2.3rem;
    padding-bottom: 40px;
  }
}
.homePage .sp-contact-form .wrapper .contactForm,
.workPage .sp-contact-form .wrapper .contactForm,
.industrial .sp-contact-form .wrapper .contactForm,
.android .sp-contact-form .wrapper .contactForm,
.embedded .sp-contact-form .wrapper .contactForm,
.hardware .sp-contact-form .wrapper .contactForm {
  max-width: 550px;
  margin: 0 auto;
}
.homePage .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
.workPage .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
.industrial .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
.android .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
.embedded .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
.hardware .sp-contact-form .wrapper .contactForm .nameFieldsWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .homePage .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
  .workPage .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
  .industrial .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
  .android .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
  .embedded .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
  .hardware .sp-contact-form .wrapper .contactForm .nameFieldsWrapper {
    grid-template-columns: 1fr;
  }
}
.homePage .sp-contact-form .wrapper .contactForm .fieldsWrapper,
.workPage .sp-contact-form .wrapper .contactForm .fieldsWrapper,
.industrial .sp-contact-form .wrapper .contactForm .fieldsWrapper,
.android .sp-contact-form .wrapper .contactForm .fieldsWrapper,
.embedded .sp-contact-form .wrapper .contactForm .fieldsWrapper,
.hardware .sp-contact-form .wrapper .contactForm .fieldsWrapper {
  display: grid;
  grid-template-columns: 100%;
}
.homePage .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .field,
.workPage .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .field,
.industrial .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .field,
.android .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .field,
.embedded .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .field,
.hardware .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .field,
.homePage .sp-contact-form .wrapper .contactForm .fieldsWrapper .field,
.workPage .sp-contact-form .wrapper .contactForm .fieldsWrapper .field,
.industrial .sp-contact-form .wrapper .contactForm .fieldsWrapper .field,
.android .sp-contact-form .wrapper .contactForm .fieldsWrapper .field,
.embedded .sp-contact-form .wrapper .contactForm .fieldsWrapper .field,
.hardware .sp-contact-form .wrapper .contactForm .fieldsWrapper .field,
.homePage .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.workPage .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.industrial .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.android .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.embedded .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.hardware .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field {
  position: relative;
  display: flex;
  flex-flow: column-reverse;
  margin-bottom: 1em;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel {
  transition: all 0.2s;
  touch-action: manipulation;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput {
  font-size: 1.25em;
  -webkit-font-smoothing: antialiased;
  border: 0;
  border-bottom: 1px solid #7bb8df;
  font-family: inherit;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0;
  cursor: text;
  background-color: #006cc1;
  color: #fff;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus {
  outline: 0;
  border-bottom: 1px solid #fff;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel {
  letter-spacing: 0.05em;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel {
  cursor: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  -webkit-transform: translate(0, 1.25rem) scale(1);
  -moz-transform: translate(0, 1.25rem) scale(1);
  -o-transform: translate(0, 1.25rem) scale(1);
  transform: translate(0, 1.25rem) scale(1);
  text-align: left;
  text-transform: capitalize;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  ::-webkit-input-placeholder,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  ::-webkit-input-placeholder,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  ::-webkit-input-placeholder,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  ::-webkit-input-placeholder,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  ::-webkit-input-placeholder,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  ::-webkit-input-placeholder,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  ::-webkit-input-placeholder,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  ::-webkit-input-placeholder,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  ::-webkit-input-placeholder,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  ::-webkit-input-placeholder,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  ::-webkit-input-placeholder,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  ::-webkit-input-placeholder,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  ::-webkit-input-placeholder,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  ::-webkit-input-placeholder,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  ::-webkit-input-placeholder,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  ::-webkit-input-placeholder,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  ::-webkit-input-placeholder,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  ::-webkit-input-placeholder {
  opacity: 0;
  transition: inherit;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder {
  opacity: 1;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus
  + .contactLabel {
  -webkit-transform: translate(0, 0) scale(1);
  -moz-transform: translate(0, 0) scale(1);
  -o-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
  cursor: pointer;
  opacity: 0.5;
  text-align: left;
  text-transform: capitalize;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token,
.android .sp-contact-form .wrapper .contactForm .fieldsWrapper .field #id_token,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token
  + label,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token
  + label,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token
  + label,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token
  + label,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token
  + label,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token
  + label,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token
  + label,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token
  + label,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token
  + label,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token
  + label,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token
  + label,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token
  + label,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token
  + label,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token
  + label,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token
  + label,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token
  + label,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token
  + label,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token
  + label {
  display: none;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  textarea,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  textarea,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  textarea,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  textarea,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  textarea,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  textarea,
.homePage .sp-contact-form .wrapper .contactForm .fieldsWrapper .field textarea,
.workPage .sp-contact-form .wrapper .contactForm .fieldsWrapper .field textarea,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  textarea,
.android .sp-contact-form .wrapper .contactForm .fieldsWrapper .field textarea,
.embedded .sp-contact-form .wrapper .contactForm .fieldsWrapper .field textarea,
.hardware .sp-contact-form .wrapper .contactForm .fieldsWrapper .field textarea,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  textarea,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  textarea,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  textarea,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  textarea,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  textarea,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  textarea {
  resize: none;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  select.contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  select.contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  select.contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  select.contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  select.contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  select.contactInput,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  select.contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  select.contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  select.contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  select.contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  select.contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  select.contactInput,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  select.contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  select.contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  select.contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  select.contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  select.contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  select.contactInput {
  cursor: pointer;
  background-color: transparent;
}
.homePage .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .has-error,
.workPage .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .has-error,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error,
.android .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .has-error,
.embedded .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .has-error,
.hardware .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .has-error,
.homePage .sp-contact-form .wrapper .contactForm .fieldsWrapper .has-error,
.workPage .sp-contact-form .wrapper .contactForm .fieldsWrapper .has-error,
.industrial .sp-contact-form .wrapper .contactForm .fieldsWrapper .has-error,
.android .sp-contact-form .wrapper .contactForm .fieldsWrapper .has-error,
.embedded .sp-contact-form .wrapper .contactForm .fieldsWrapper .has-error,
.hardware .sp-contact-form .wrapper .contactForm .fieldsWrapper .has-error,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error {
  position: relative;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error:after,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error:after,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error:after,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error:after,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error:after,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error:after,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error:after,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error:after,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error:after,
.android .sp-contact-form .wrapper .contactForm .fieldsWrapper .has-error:after,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error:after,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error:after,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error:after,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error:after,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error:after,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error:after,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error:after,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error:after {
  content: "!";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #e86262;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactLabel,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder {
  color: #ffd007;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput {
  border-bottom: 1px solid #ffd007;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput:focus,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput:focus,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput:focus,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput:focus,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput:focus,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput:focus,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput:focus,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput:focus,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput:focus,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput:focus,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput:focus,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput:focus,
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput:focus,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput:focus,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput:focus,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput:focus,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput:focus,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput:focus {
  outline: 0;
  border-bottom: 1px solid #ffd007;
}
.homePage .sp-contact-form .wrapper .contactForm .selectCountry,
.workPage .sp-contact-form .wrapper .contactForm .selectCountry,
.industrial .sp-contact-form .wrapper .contactForm .selectCountry,
.android .sp-contact-form .wrapper .contactForm .selectCountry,
.embedded .sp-contact-form .wrapper .contactForm .selectCountry,
.hardware .sp-contact-form .wrapper .contactForm .selectCountry {
  position: relative;
}
.homePage .sp-contact-form .wrapper .contactForm .selectCountry:before,
.workPage .sp-contact-form .wrapper .contactForm .selectCountry:before,
.industrial .sp-contact-form .wrapper .contactForm .selectCountry:before,
.android .sp-contact-form .wrapper .contactForm .selectCountry:before,
.embedded .sp-contact-form .wrapper .contactForm .selectCountry:before,
.hardware .sp-contact-form .wrapper .contactForm .selectCountry:before {
  content: "";
  position: absolute;
  top: 25px;
  right: 5px;
  width: 11px;
  height: 11px;
  cursor: pointer;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.homePage .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
.workPage .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
.industrial .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
.android .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
.embedded .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
.hardware .sp-contact-form .wrapper .contactForm .otherElementsWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: start;
  font-size: 1rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .homePage .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
  .workPage .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
  .industrial .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
  .android .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
  .embedded .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
  .hardware .sp-contact-form .wrapper .contactForm .otherElementsWrapper {
    grid-template-columns: 50% 50%;
  }
}
.homePage .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.workPage .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.industrial .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.android .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.embedded .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.hardware .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field {
  padding-top: 10px;
}
@media only screen and (max-width: 768px) {
  .homePage .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
  .workPage .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
  .industrial
    .sp-contact-form
    .wrapper
    .contactForm
    .otherElementsWrapper
    .field,
  .android .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
  .embedded .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
  .hardware
    .sp-contact-form
    .wrapper
    .contactForm
    .otherElementsWrapper
    .field {
    padding-top: 0;
  }
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper {
  align-self: flex-start;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox {
  width: 20px;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  opacity: 0;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox:checked
  + .contactLabel:after,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox:checked
  + .contactLabel:after,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox:checked
  + .contactLabel:after,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox:checked
  + .contactLabel:after,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox:checked
  + .contactLabel:after,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox:checked
  + .contactLabel:after {
  content: "";
  position: absolute;
  top: 2px;
  left: -18px;
  width: 6px;
  height: 12px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel {
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
  margin-left: 25px;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel:before,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel:before,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel:before,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel:before,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel:before,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel:before {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  border: solid 2px #7bb8df;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper {
  text-align: left;
  padding-right: 5px;
}
@media only screen and (max-width: 768px) {
  .homePage
    .sp-contact-form
    .wrapper
    .contactForm
    .otherElementsWrapper
    .ndaAttachWrapper,
  .workPage
    .sp-contact-form
    .wrapper
    .contactForm
    .otherElementsWrapper
    .ndaAttachWrapper,
  .industrial
    .sp-contact-form
    .wrapper
    .contactForm
    .otherElementsWrapper
    .ndaAttachWrapper,
  .android
    .sp-contact-form
    .wrapper
    .contactForm
    .otherElementsWrapper
    .ndaAttachWrapper,
  .embedded
    .sp-contact-form
    .wrapper
    .contactForm
    .otherElementsWrapper
    .ndaAttachWrapper,
  .hardware
    .sp-contact-form
    .wrapper
    .contactForm
    .otherElementsWrapper
    .ndaAttachWrapper {
    justify-self: end;
  }
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  .attachInput,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  .attachInput,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  .attachInput,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  .attachInput,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  .attachInput,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  .attachInput {
  width: 20px;
  height: 18px;
  opacity: 0;
  margin-right: 5px;
  display: none;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel {
  position: relative;
  cursor: pointer;
  margin-bottom: 18px;
}
.homePage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel:before,
.workPage
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel:before,
.industrial
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel:before,
.android
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel:before,
.embedded
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel:before,
.hardware
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel:before {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAAAXNSR0IArs4c6QAAAgVJREFUOBGVlL9rU1EYhr3xV2giISUSW6Fa0Qzp0EIgiKiDUxANCBlsoDRbhoAIQRAXQejQpZQOiiLqoji4FIqGOGQotihKaTW1WUq7FPwjJD7v8dzLTXIj8cKT7/2+854v995zznUO/cfVbrdvYZ+FcQjBAazAY8dxfhMHu2g0DO/gDVwARzOJIzAHa3B+oG4YE/AFbvebwNhl2IZYP4+pYzgF3+CmCsRjkIEpMHfpNiB/BA/dvCcyeBo2IKdB4lVowSt4C18h5U5En4Wmm3dEBsZgC65pgJgDNT/jGtFZ+OTm1vfLnxuN6Rx8hyvWlEfrsZPdZmqf4aT1nUDvd3gopOAHXLSmAloLkugwklALwQ5ErfcG+rnnI0lDEzLWUESvQ9wz+QT1+2AaECPwE7LGgpgENZu0zUroVQjcBtSr8AHCoJVfhorbTJtWj5m2zcroBphHMSbfD/UHoAbHQQ3fwz3PQvIMpm2zGfRHGPIMPkFde00n5qg8IO8dn8W8XN3dEdswgQ53GGxCfR5ew2GIQgPKPV6KrZ5iVwHPIrwErWwM9H5LXba/KQN1mAgapO7AE3hqdZyolS8G+U2NwUugf4z4TeRavRewBGqs16E9WfD7AjUmbZNNuAs6ZhXQ6ahqAjFp83xgA1/R+2IwYZT6ddCB34UaH809ohouEOrkNeX/uv4AF+Yl9LCkQ7IAAAAASUVORK5CYII=);
  width: 20px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: -25px;
}
@media only screen and (max-width: 768px) {
  .homePage .sp-contact-form .btnWrapper,
  .workPage .sp-contact-form .btnWrapper,
  .industrial .sp-contact-form .btnWrapper,
  .android .sp-contact-form .btnWrapper,
  .embedded .sp-contact-form .btnWrapper,
  .hardware .sp-contact-form .btnWrapper {
    justify-self: center;
    grid-column-start: 1;
    grid-column-end: div;
    width: 100%;
  }
}
.homePage .sp-contact-form .btnWrapper .submitBtn,
.workPage .sp-contact-form .btnWrapper .submitBtn,
.industrial .sp-contact-form .btnWrapper .submitBtn,
.android .sp-contact-form .btnWrapper .submitBtn,
.embedded .sp-contact-form .btnWrapper .submitBtn,
.hardware .sp-contact-form .btnWrapper .submitBtn {
  width: 190px;
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0;
  color: #121212;
  background-color: #ffd007;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  justify-self: end;
  border: none;
  -webkit-transition: background-color 0.2s ease-in-out,
    opacity 0.7s ease-in-out;
  transition: background-color 0.2s ease-in-out, opacity 0.7s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.homePage .sp-contact-form .btnWrapper .submitBtn a{
  display: block;
  width: 100%;
  height: 100%;
  padding: 10px 20px;
  color: #121212;
  text-decoration:none;
}
.homePage .sp-contact-form .btnWrapper .submitBtn:hover,
.workPage .sp-contact-form .btnWrapper .submitBtn:hover,
.industrial .sp-contact-form .btnWrapper .submitBtn:hover,
.android .sp-contact-form .btnWrapper .submitBtn:hover,
.embedded .sp-contact-form .btnWrapper .submitBtn:hover,
.hardware .sp-contact-form .btnWrapper .submitBtn:hover {
  background-color: #ffc100;
}
.homePage .sp-contact-form .btnWrapper .submitBtn:focus,
.workPage .sp-contact-form .btnWrapper .submitBtn:focus,
.industrial .sp-contact-form .btnWrapper .submitBtn:focus,
.android .sp-contact-form .btnWrapper .submitBtn:focus,
.embedded .sp-contact-form .btnWrapper .submitBtn:focus,
.hardware .sp-contact-form .btnWrapper .submitBtn:focus {
  outline: none;
}
.homePage .sp-contact-form .notification,
.workPage .sp-contact-form .notification,
.industrial .sp-contact-form .notification,
.android .sp-contact-form .notification,
.embedded .sp-contact-form .notification,
.hardware .sp-contact-form .notification {
  display: none;
  max-width: 550px;
  margin: 25px auto 0;
  padding: 12px 0;
  font-size: 1.25rem;
  background-color: transparent;
  color: #ffd007;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .homePage .sp-contact-form .notification,
  .workPage .sp-contact-form .notification,
  .industrial .sp-contact-form .notification,
  .android .sp-contact-form .notification,
  .embedded .sp-contact-form .notification,
  .hardware .sp-contact-form .notification {
    border-radius: 40px;
  }
}
.homePage .sp-contact-form .show-notification,
.workPage .sp-contact-form .show-notification,
.industrial .sp-contact-form .show-notification,
.android .sp-contact-form .show-notification,
.embedded .sp-contact-form .show-notification,
.hardware .sp-contact-form .show-notification {
  display: block;
}
.GetInTouch .sp-portfolio-wrapper,
.project .sp-portfolio-wrapper {
  padding-bottom: 0;
}
.GetInTouch .sp-contact-form,
.project .sp-contact-form {
  padding: 50px 0 75px 0;
  background: #fff;
  color: #545453;
  text-align: center;
}
.GetInTouch .sp-contact-form .wrapper,
.project .sp-contact-form .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.GetInTouch .sp-contact-form .wrapper:before,
.project .sp-contact-form .wrapper:before,
.GetInTouch .sp-contact-form .wrapper:after,
.project .sp-contact-form .wrapper:after {
  content: "";
  display: table;
}
.GetInTouch .sp-contact-form .wrapper:after,
.project .sp-contact-form .wrapper:after {
  clear: both;
}
@media only screen and (max-width: 768px) {
  .GetInTouch .sp-contact-form .wrapper,
  .project .sp-contact-form .wrapper {
    padding: 0 17px;
  }
}
.GetInTouch .sp-contact-form .wrapper .title,
.project .sp-contact-form .wrapper .title {
  display: none;
}
.GetInTouch .sp-contact-form .wrapper .contactForm,
.project .sp-contact-form .wrapper .contactForm {
  max-width: 550px;
  margin: 0 auto;
}
.GetInTouch .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
.project .sp-contact-form .wrapper .contactForm .nameFieldsWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .GetInTouch .sp-contact-form .wrapper .contactForm .nameFieldsWrapper,
  .project .sp-contact-form .wrapper .contactForm .nameFieldsWrapper {
    grid-template-columns: 1fr;
  }
}
.GetInTouch .sp-contact-form .wrapper .contactForm .fieldsWrapper,
.project .sp-contact-form .wrapper .contactForm .fieldsWrapper {
  display: grid;
  grid-template-columns: 100%;
}
.GetInTouch .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .field,
.project .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .field,
.GetInTouch .sp-contact-form .wrapper .contactForm .fieldsWrapper .field,
.project .sp-contact-form .wrapper .contactForm .fieldsWrapper .field,
.GetInTouch .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.project .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field {
  position: relative;
  display: flex;
  flex-flow: column-reverse;
  margin-bottom: 1em;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel {
  transition: all 0.2s;
  touch-action: manipulation;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput {
  font-size: 1.25em;
  -webkit-font-smoothing: antialiased;
  border: 0;
  border-bottom: 1px solid rgba(84, 84, 83, 0.3);
  font-family: inherit;
  -webkit-appearance: none;
  border-radius: 0;
  padding: 0;
  cursor: text;
  background-color: #fff;
  color: #2585c4;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus {
  outline: 0;
  border-bottom: 1px solid rgba(84, 84, 83, 0.3);
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactLabel {
  letter-spacing: 0.05em;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:placeholder-shown
  + .contactLabel {
  cursor: text;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transform-origin: left bottom;
  -webkit-transform: translate(0, 1.25rem) scale(1);
  -moz-transform: translate(0, 1.25rem) scale(1);
  -o-transform: translate(0, 1.25rem) scale(1);
  transform: translate(0, 1.25rem) scale(1);
  text-align: left;
  text-transform: capitalize;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  ::-webkit-input-placeholder,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  ::-webkit-input-placeholder,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  ::-webkit-input-placeholder,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  ::-webkit-input-placeholder,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  ::-webkit-input-placeholder,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  ::-webkit-input-placeholder {
  opacity: 0;
  transition: inherit;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus::-webkit-input-placeholder {
  opacity: 1;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:not(:placeholder-shown)
  + .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus
  + .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  .contactInput:focus
  + .contactLabel {
  -webkit-transform: translate(0, 0) scale(1);
  -moz-transform: translate(0, 0) scale(1);
  -o-transform: translate(0, 0) scale(1);
  transform: translate(0, 0) scale(1);
  cursor: pointer;
  opacity: 0.5;
  text-align: left;
  text-transform: capitalize;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token,
.project .sp-contact-form .wrapper .contactForm .fieldsWrapper .field #id_token,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token
  + label,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  #id_token
  + label,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token
  + label,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  #id_token
  + label,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token
  + label,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  #id_token
  + label {
  display: none;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  textarea,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  textarea,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  textarea,
.project .sp-contact-form .wrapper .contactForm .fieldsWrapper .field textarea,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  textarea,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  textarea {
  resize: none;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  select.contactInput,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .field
  select.contactInput,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  select.contactInput,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .field
  select.contactInput,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  select.contactInput,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .field
  select.contactInput {
  cursor: pointer;
  background-color: transparent;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error,
.project .sp-contact-form .wrapper .contactForm .nameFieldsWrapper .has-error,
.GetInTouch .sp-contact-form .wrapper .contactForm .fieldsWrapper .has-error,
.project .sp-contact-form .wrapper .contactForm .fieldsWrapper .has-error,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error {
  position: relative;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error:after,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error:after,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error:after,
.project .sp-contact-form .wrapper .contactForm .fieldsWrapper .has-error:after,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error:after,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error:after {
  content: "!";
  position: absolute;
  bottom: 5px;
  right: 0;
  width: 20px;
  height: 20px;
  border-radius: 10px;
  background-color: #e86262;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactLabel,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .nameFieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .fieldsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .has-error
  .contactInput::-webkit-input-placeholder {
  color: #f00;
}
.GetInTouch .sp-contact-form .wrapper .contactForm .selectCountry,
.project .sp-contact-form .wrapper .contactForm .selectCountry {
  position: relative;
}
.GetInTouch .sp-contact-form .wrapper .contactForm .selectCountry:before,
.project .sp-contact-form .wrapper .contactForm .selectCountry:before {
  content: "";
  position: absolute;
  top: 25px;
  right: 5px;
  width: 11px;
  height: 11px;
  cursor: pointer;
  border: solid rgba(84, 84, 83, 0.3);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.GetInTouch .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
.project .sp-contact-form .wrapper .contactForm .otherElementsWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-items: start;
  font-size: 1rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .GetInTouch .sp-contact-form .wrapper .contactForm .otherElementsWrapper,
  .project .sp-contact-form .wrapper .contactForm .otherElementsWrapper {
    grid-template-columns: 50% 50%;
  }
}
.GetInTouch .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field,
.project .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field {
  padding-top: 10px;
}
@media only screen and (max-width: 768px) {
  .GetInTouch
    .sp-contact-form
    .wrapper
    .contactForm
    .otherElementsWrapper
    .field,
  .project .sp-contact-form .wrapper .contactForm .otherElementsWrapper .field {
    padding-top: 0;
  }
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper {
  align-self: flex-start;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox {
  width: 20px;
  -webkit-transform: scale(1.6);
  -moz-transform: scale(1.6);
  -o-transform: scale(1.6);
  transform: scale(1.6);
  opacity: 0;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox:checked
  + .contactLabel:after,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  .ndaCheckbox:checked
  + .contactLabel:after {
  content: "";
  position: absolute;
  top: 2px;
  left: -18px;
  width: 6px;
  height: 12px;
  border: solid #545453;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel {
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
  margin-left: 25px;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel:before,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaCheckWrapper
  input[type="checkbox"]
  + .contactLabel:before {
  content: "";
  position: absolute;
  top: 0;
  left: -25px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background-color: rgba(84, 84, 83, 0.1);
  border: solid 2px #545453;
  opacity: 0.3;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper {
  text-align: left;
  padding-right: 5px;
}
@media only screen and (max-width: 768px) {
  .GetInTouch
    .sp-contact-form
    .wrapper
    .contactForm
    .otherElementsWrapper
    .ndaAttachWrapper,
  .project
    .sp-contact-form
    .wrapper
    .contactForm
    .otherElementsWrapper
    .ndaAttachWrapper {
    justify-self: end;
  }
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  .attachInput,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  .attachInput {
  width: 20px;
  height: 18px;
  opacity: 0;
  margin-right: 5px;
  display: none;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel {
  position: relative;
  cursor: pointer;
  margin-bottom: 18px;
}
.GetInTouch
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel:before,
.project
  .sp-contact-form
  .wrapper
  .contactForm
  .otherElementsWrapper
  .ndaAttachWrapper
  span
  + .contactLabel:before {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAASCAYAAABb0P4QAAAAAXNSR0IArs4c6QAAAxpJREFUOBGVlE1oE0EUx3dmN6kSS2lssEUQtaLQUgRvilQU0RY/sDTfNLakiKIelB7EL4xCQZGKClqJlHpJmma3IP2wVcGLgqCnHioaerAXwUuK2miSze74f61LY6wWB5LZN/N/v3lv3ttl0n8Mj8fTIoRoh8sGxgQXgn3C8yhj7L6qqgahGP0tNwBySpIZBSBvt9uvxGKxaUBEW1tbTTabPc2YtBuoo4BOLwsMBAJVhUL+CWC3NE1LLHU4DtxJB0oS3/5PIITVEI4xJkeSyeQIbDuADfgZsCcpSusAt9t9jdb/CoTzWkkSo0jlPFKZ8Hq9jUIYDxHpa3BWYH0T53JwcHAwRVC/37/eMApj3DqheAZsHWDjcOoiGOwmIcw7NlvZPqTdoapDfuydNAyj3/JLJBIfUbCqP4DBYHAjpSnL0inAXgB2GHa3otia4vH4jAXA3hsUQ8G+i9bC4XA5riD7G9Dn823O5/PDnCvHEgntJcRuwC4pin3/wMDAZwtGcyQSId8K/H6Qncl83YWsnstk0IBzHdIawintuPC3sIOAnUGazYClF1SL/y6X6xwAc6qqaaFQyJHP6xpj/PJ8URDZVtM04r8ueRKwDog7cU8HkdqXRczCEyrahXT3OhyrWjKZjAmtikI9SyaH7nE4O3G5MTh7ULFJiI8vvA2seSmY1+u+AFhjdXXNEcJD+xi+rwhGNl4fcZ1z0Q3nd4CHcJLb6XQegD1HguJBvQb9tspKpzuXy8mZzLcR+E5Ae9PS0cXuqKtrUGlBUZRxh6P8UDQa/W4JrBmR3cBhtYjBNzs7W5ZOp8fQkxoiu2tpaGYeT+sH9NWW4sXSZ2huY62ivr6hc2pqqhyJUsP3IbJHpVpEyGYCgdb60g2ykR5Dmr14XJlMauFUKoU2MSfg07sUjHw4GjhSKLAHVHpasAbu0+7zefo4l3TATqDhV+t67ilcegCLW7rSeb5tqE0QzVls9qMP3zNm1gohhRFgHK9aD744a+iLA9hVwIZLIcX2/JtC4aMgzdhAZc09mA1ZtrUSjMS6rqOJ+cXlYKT9CXXJaA9lA/hqAAAAAElFTkSuQmCC);
  width: 20px;
  height: 18px;
  cursor: pointer;
  position: absolute;
  top: 0;
  left: -25px;
}
@media only screen and (max-width: 768px) {
  .GetInTouch .sp-contact-form .btnWrapper,
  .project .sp-contact-form .btnWrapper {
    justify-self: center;
    grid-column-start: 1;
    grid-column-end: div;
    width: 100%;
  }
}
.GetInTouch .sp-contact-form .btnWrapper .submitBtn,
.project .sp-contact-form .btnWrapper .submitBtn {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 10px 20px;
  color: #545453;
  background-color: #ffd007;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  justify-self: end;
  border: none;
  -webkit-transition: background-color 0.2s ease-in-out,
    opacity 0.7s ease-in-out;
  transition: background-color 0.2s ease-in-out, opacity 0.7s ease-in-out;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.GetInTouch .sp-contact-form .btnWrapper .submitBtn:hover,
.project .sp-contact-form .btnWrapper .submitBtn:hover {
  background-color: #ffc100;
}
.GetInTouch .sp-contact-form .btnWrapper .submitBtn:focus,
.project .sp-contact-form .btnWrapper .submitBtn:focus {
  outline: none;
}
.GetInTouch .sp-contact-form .notification,
.project .sp-contact-form .notification {
  display: none;
  max-width: 550px;
  margin: 25px auto 0;
  padding: 12px 0;
  font-size: 1.25rem;
  background-color: transparent;
  color: #545453;
  border-radius: 24px;
  border: 1px solid #ffd007;
  vertical-align: middle;
  cursor: pointer;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .GetInTouch .sp-contact-form .notification,
  .project .sp-contact-form .notification {
    border-radius: 40px;
  }
}
.GetInTouch .sp-contact-form .show-notification,
.project .sp-contact-form .show-notification {
  display: block;
}
.GetInTouch .privacy-link,
.project .privacy-link {
  color: rgba(84, 84, 83, 0.6);
}
.GetInTouch .privacy-link:hover,
.project .privacy-link:hover {
  color: #545453;
}
.privacy {
  text-align: left;
  line-height: 1.25;
}
@media only screen and (max-width: 768px) {
  .privacy {
    padding-top: 20px;
  }
}
.privacy-link {
  color: rgba(255, 255, 255, 0.6);
}
.privacy-link:hover {
  color: #fff;
}
.sp-featuresBlock {
  padding: 60px 0 0 0;
  background-color: #121212;
}
.sp-featuresBlock .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 960px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.sp-featuresBlock .wrapper:before,
.sp-featuresBlock .wrapper:after {
  content: "";
  display: table;
}
.sp-featuresBlock .wrapper:after {
  clear: both;
}
@media only screen and (min-width: 1960px) {
  .sp-featuresBlock .wrapper {
    *zoom: 1;
    width: auto;
    max-width: 1590px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .sp-featuresBlock .wrapper:before,
  .sp-featuresBlock .wrapper:after {
    content: "";
    display: table;
  }
  .sp-featuresBlock .wrapper:after {
    clear: both;
  }
}
.sp-featuresBlock .wrapper .feature {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 20.5%;
  margin-left: 0%;
  margin-right: 6%;
  text-align: center;
  color: #535353;
}
.sp-featuresBlock .wrapper .feature:before,
.sp-featuresBlock .wrapper .feature:after {
  content: "";
  display: table;
}
.sp-featuresBlock .wrapper .feature:after {
  clear: both;
}
.sp-featuresBlock .wrapper .feature:last-child {
  margin-right: 0%;
}
.sp-featuresBlock .wrapper .feature:nth-of-type(2) {
  position: relative;
  left: -2.06%;
}
.sp-featuresBlock .wrapper .feature:nth-of-type(3) {
  position: relative;
  left: -4.12%;
}
.sp-featuresBlock .wrapper .feature .symbol {
  font-size: 4em;
  line-height: 1em;
}
.sp-featuresBlock .wrapper .feature .icon-1 {
  background: url(/assets/d3aa10f/img/about-icon-1.svg) no-repeat;
  height: 80px;
  margin-top: 2px;
  margin-bottom: -2px;
  width: auto;
  max-width: 80px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  width: auto;
  max-width: 75px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.sp-featuresBlock .wrapper .feature .icon-1:before,
.sp-featuresBlock .wrapper .feature .icon-1:after {
  content: "";
  display: table;
}
.sp-featuresBlock .wrapper .feature .icon-1:after {
  clear: both;
}
.sp-featuresBlock .wrapper .feature .icon-1:before,
.sp-featuresBlock .wrapper .feature .icon-1:after {
  content: "";
  display: table;
}
.sp-featuresBlock .wrapper .feature .icon-1:after {
  clear: both;
}
.sp-featuresBlock .wrapper .feature .icon-2 {
  background: url(/assets/d3aa10f/img/about-icon-2.svg) no-repeat;
  height: 80px;
  margin-top: 12px;
  margin-bottom: -12px;
  width: auto;
  max-width: 80px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  width: auto;
  max-width: 100px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.sp-featuresBlock .wrapper .feature .icon-2:before,
.sp-featuresBlock .wrapper .feature .icon-2:after {
  content: "";
  display: table;
}
.sp-featuresBlock .wrapper .feature .icon-2:after {
  clear: both;
}
.sp-featuresBlock .wrapper .feature .icon-2:before,
.sp-featuresBlock .wrapper .feature .icon-2:after {
  content: "";
  display: table;
}
.sp-featuresBlock .wrapper .feature .icon-2:after {
  clear: both;
}
.sp-featuresBlock .wrapper .feature .icon-3 {
  background: url(/assets/d3aa10f/img/about-icon-3.svg) no-repeat;
  height: 80px;
  margin-top: 26px;
  margin-bottom: -26px;
  width: auto;
  max-width: 80px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}
.sp-featuresBlock .wrapper .feature .icon-3:before,
.sp-featuresBlock .wrapper .feature .icon-3:after {
  content: "";
  display: table;
}
.sp-featuresBlock .wrapper .feature .icon-3:after {
  clear: both;
}
.sp-featuresBlock .wrapper .feature .icon-4 {
  background: url(/assets/d3aa10f/img/about-icon-4.svg) no-repeat;
  height: 80px;
  margin-top: 26px;
  margin-bottom: -26px;
  width: auto;
  max-width: 80px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
  *zoom: 1;
  width: auto;
  max-width: 90px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.sp-featuresBlock .wrapper .feature .icon-4:before,
.sp-featuresBlock .wrapper .feature .icon-4:after {
  content: "";
  display: table;
}
.sp-featuresBlock .wrapper .feature .icon-4:after {
  clear: both;
}
.sp-featuresBlock .wrapper .feature .icon-4:before,
.sp-featuresBlock .wrapper .feature .icon-4:after {
  content: "";
  display: table;
}
.sp-featuresBlock .wrapper .feature .icon-4:after {
  clear: both;
}
.sp-featuresBlock .wrapper .feature .description {
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 30px 0 76px 0;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .sp-featuresBlock .wrapper .feature .description {
    font-size: 0.93em;
  }
}
.sp-featuresBlock .wrapper .feature:nth-of-type(4) {
  position: relative;
  left: -2.575%;
}
.sp-featuresBlock .wrapper .feature:nth-of-type(4) .description {
  margin-left: -32px;
  margin-right: -13px;
}
@media only screen and (max-width: 768px) {
  .sp-featuresBlock .wrapper .feature {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    clear: none;
    float: left;
    width: 50%;
    padding: 50px 0 30px;
    border-top: 4px solid #fff;
    border-left: 4px solid #fff;
  }
  .sp-featuresBlock .wrapper .feature:first-child {
    margin-left: auto;
  }
  .sp-featuresBlock .wrapper .feature:last-child {
    margin-right: auto;
  }
  .sp-featuresBlock .wrapper .feature:nth-of-type(1n + 2) {
    position: static;
    left: 0;
  }
  .sp-featuresBlock .wrapper .feature:nth-of-type(2) {
    margin-bottom: 0;
    border-right: 4px solid #fff;
  }
  .sp-featuresBlock .wrapper .feature:nth-of-type(3) {
    border-bottom: 4px solid #fff;
  }
  .sp-featuresBlock .wrapper .feature:nth-of-type(4) {
    margin-bottom: 0;
    border-right: 4px solid #fff;
    border-bottom: 4px solid #fff;
  }
  .sp-featuresBlock .wrapper .feature:nth-of-type(4) .description {
    margin: 20px 0 0 0;
  }
  .sp-featuresBlock .wrapper .feature .icon-4 {
    *zoom: 1;
    width: auto;
    max-width: 80px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .sp-featuresBlock .wrapper .feature .icon-4:before,
  .sp-featuresBlock .wrapper .feature .icon-4:after {
    content: "";
    display: table;
  }
  .sp-featuresBlock .wrapper .feature .icon-4:after {
    clear: both;
  }
  .sp-featuresBlock .wrapper .feature .description {
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .sp-featuresBlock {
    padding: 0;
  }
}
.sp-footer {
  background-color: #1d487c;
  padding: 75px 0 50px;
}
@media only screen and (max-width: 768px) {
  .sp-footer {
    padding: 30px 0;
  }
}
.sp-footer .wrapper {
  position: relative;
  text-align: left;
  color: #fff;
  padding: 0 50px;
}
.sp-footer .wrapper .placeWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .sp-footer .wrapper .placeWrapper {
    grid-template-columns: 1fr;
    padding-bottom: 25px;
  }
  .sp-footer .wrapper .placeWrapper:first-child {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .sp-footer .wrapper .placeWrapper .place {
    min-width: 240px;
    justify-self: center;
    padding-bottom: 25px;
  }
}
.sp-footer .wrapper .placeWrapper .place .name {
  font-size: 1.25rem;
  font-weight: 500;
  padding-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .sp-footer .wrapper .placeWrapper .place .name {
    font-size: 1.125rem;
  }
}
.sp-footer .wrapper .placeWrapper .place .details {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.25;
}
.sp-footer .wrapper .linkWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
  padding-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .sp-footer .wrapper .linkWrapper {
    grid-template-columns: 1fr;
    padding-top: 90px;
    padding-bottom: 20px;
  }
}
.sp-footer .wrapper .linkWrapper .link {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  transition: 0.3s color;
}
.sp-footer .wrapper .linkWrapper .link:hover {
  color: rgba(255, 255, 255, 0.78);
}
@media only screen and (max-width: 768px) {
  .sp-footer .wrapper .linkWrapper .link {
    justify-self: center;
    margin-bottom: 20px;
    width: 240px;
  }
}
.sp-footer .wrapper .contactWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 20px;
}
@media only screen and (max-width: 768px) {
  .sp-footer .wrapper .contactWrapper {
    grid-template-columns: 1fr;
    position: relative;
  }
}
.sp-footer .wrapper .contactWrapper .logo {
  position: absolute;
  bottom: -5px;
  width: 85px;
  height: 42px;
  background: url(/assets/images/logo-footer.svg) no-repeat;
}
@media only screen and (max-width: 768px) {
  .sp-footer .wrapper .contactWrapper .logo {
    background-image: url(/assets/images/iot-lab-logo-footer.svg);
    height: 50px;
    width: 233px;
    bottom: 860px;
    left: -25px;
    right: 0;
    margin: 0 auto;
  }
}
.sp-footer .wrapper .contactWrapper .email__link {
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  color: #7bb8df;
  transition: font-weight 0.1s linear;
}
.sp-footer .wrapper .contactWrapper .email__link:hover {
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .sp-footer .wrapper .contactWrapper .email__link {
    text-align: center;
    font-size: 1.25rem;
    padding-bottom: 90px;
    display: block;
  }
}
.sp-footer .wrapper .contactWrapper .copyright {
  font-size: 0.75rem;
  font-weight: 400;
  color: #7bb8df;
}
@media only screen and (max-width: 768px) {
  .sp-footer .wrapper .contactWrapper .copyright {
    text-align: center;
    font-size: 0.875rem;
  }
}
.sp-footer .wrapper .contactWrapper .copyright__privacy {
  color: #7bb8df;
}
.sp-footer .wrapper .contactWrapper .copyright__privacy:hover {
  text-decoration: none;
}
.sp-footer .wrapper .contactWrapper .social {
  font-family: FontAwesome;
  font-size: 1.4em;
  text-align: left;
}
.sp-footer .wrapper .contactWrapper .social:after {
  content: "";
  display: block;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .sp-footer .wrapper .contactWrapper .social {
    text-align: center;
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.sp-footer .wrapper .contactWrapper .social a {
  display: inline-block;
  margin: 4px 13px 4px 0;
  color: #7bb8df;
  opacity: 0.4;
  transition: opacity 0.3s ease-in-out;
  text-decoration: none;
}
.sp-footer .wrapper .contactWrapper .social a:last-child {
  margin-right: 0;
}
.sp-footer .wrapper .contactWrapper .social a:hover {
  opacity: 1;
}
.sp-footer .wrapper .contactWrapper .social .fb {
  width: 21px;
  height: 21px;
}
.sp-footer .wrapper .contactWrapper .social .twitter {
  width: 23px;
  height: 18px;
}
.sp-footer .wrapper .contactWrapper .social .linkedin {
  width: 22px;
  height: 21px;
}
.sp-footer .wrapper .contactWrapper .social .youtube {
  width: 27px;
  height: 18px;
}
.sp-footer .wrapper .contactWrapper .social .flickr {
  width: 20px;
  height: 20px;
}
.sp-footer .wrapper .contactWrapper .social .flickr path {
  fill: #7bb8df;
}
.newsletter {
  position: fixed;
  bottom: 0;
  height: 100px;
  display: flex;
  flex-direction: row;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  transition: all 0.3s ease;
  z-index: 99;
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -o-transform: translateY(100%);
  transform: translateY(100%);
}
@media screen and (max-width: 767px) {
  .newsletter {
    flex-direction: column;
    height: 120px;
  }
}
@media screen and (max-width: 330px) {
  .newsletter {
    height: 140px;
  }
}
.newsletter--show {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.newsletter--show .newsletter-title {
  width: 70%;
  padding: 10px 31px 30px 40px;
  opacity: 0.8;
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.43;
  letter-spacing: normal;
  color: #fff;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .newsletter--show .newsletter-title {
    width: 100%;
    padding: 10px 31px 5px 40px;
    font-size: 11px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) and (max-width: 480px) {
  .newsletter--show .newsletter-title {
    font-size: 10px;
    padding: 7px 10px 3px 10px;
  }
}
.newsletter--show .newsletter-link {
  color: #fff;
}
.newsletter--show .newsletter-link:hover {
  color: #1b7fc2;
  text-decoration: none;
}
.newsletter--show .newsletter-button {
  width: 30%;
  justify-content: center;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 767px) {
  .newsletter--show .newsletter-button {
    width: 100%;
  }
}
.newsletter--show .newsletter-button .popup-ok {
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 140px;
  font-size: 14px;
  padding: 0 20px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s;
  white-space: nowrap;
  font-family: Montserrat, Arial, sans-serif !important;
  color: #fff;
  line-height: 0.93;
  letter-spacing: normal;
  text-align: right;
  border: solid 1px #fff;
  text-decoration: none;
  font-style: normal;
  font-stretch: normal;
  cursor: pointer;
}
.newsletter--show .newsletter-button .popup-ok:hover {
  background: #fff;
  color: #323232;
}
.sp-main-title {
  position: relative;
}
.sp-main-title .sp-video {
  position: relative;
  height: 96vh;
  overflow: hidden;
  min-height: 350px;
}
.sp-main-title .sp-video .videoInsert {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: auto;
  height: auto;
  background-size: cover;
}
.sp-main-title .sp-video:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background:url(/assets/d3aa10f/img/img12.jpg)no-repeat center center/cover;
}
.sp-main-title .down-arrow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 46px;
  height: 23px;
  background-color: #fff;
  -webkit-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NS45IDIyLjYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjkgMjIuNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KDQoJIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJIAkuc3Qwe2ZpbGw6I2ZmZmZmZjt9DQoJIDwvc3R5bGU+DQoNCg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTIyLjcsMjIuMWMtMC40LDAtMC44LTAuMS0xLjEtMC40TDMsMy4xQzIuNCwyLjUsMi40LDEuNSwzLDAuOWMwLjYtMC42LDEuNS0wLjYsMi4xLDBsMTcuNSwxNy41TDQwLjgsMC40DQoJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCg0KPGRlZnM+DQoNCgk8bWFzayBpZD0ibWFzayI+DQoJCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMi43LDIyLjFjLTAuNCwwLTAuOC0wLjEtMS4xLTAuNEwzLDMuMUMyLjQsMi41LDIuNCwxLjUsMywwLjljMC42LTAuNiwxLjUtMC42LDIuMSwwbDE3LjUsMTcuNUw0MC44LDAuNA0KCQkJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCgk8L21hc2s+DQoNCjwvZGVmcz4NCg0KPC9zdmc+DQo=)
    no-repeat;
  mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NS45IDIyLjYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjkgMjIuNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KDQoJIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJIAkuc3Qwe2ZpbGw6I2ZmZmZmZjt9DQoJIDwvc3R5bGU+DQoNCg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTIyLjcsMjIuMWMtMC40LDAtMC44LTAuMS0xLjEtMC40TDMsMy4xQzIuNCwyLjUsMi40LDEuNSwzLDAuOWMwLjYtMC42LDEuNS0wLjYsMi4xLDBsMTcuNSwxNy41TDQwLjgsMC40DQoJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCg0KPGRlZnM+DQoNCgk8bWFzayBpZD0ibWFzayI+DQoJCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMi43LDIyLjFjLTAuNCwwLTAuOC0wLjEtMS4xLTAuNEwzLDMuMUMyLjQsMi41LDIuNCwxLjUsMywwLjljMC42LTAuNiwxLjUtMC42LDIuMSwwbDE3LjUsMTcuNUw0MC44LDAuNA0KCQkJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCgk8L21hc2s+DQoNCjwvZGVmcz4NCg0KPC9zdmc+DQo=#mask);
  -webkit-animation: bouncing 0.5s ease-in-out infinite alternate;
  -moz-animation: bouncing 0.5s ease-in-out infinite alternate;
  -o-animation: bouncing 0.5s ease-in-out infinite alternate;
  animation: bouncing 0.5s ease-in-out infinite alternate;
}
@media only screen and (max-width: 768px) {
  .sp-main-title .down-arrow {
    left: 50.5%;
  }
}
@-moz-keyframes bouncing {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
@-webkit-keyframes bouncing {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
@-o-keyframes bouncing {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
@keyframes bouncing {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
.sp-main-title .center-block {
  position: absolute;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.sp-main-title .center-block .title {
  font-size: 3.75em;
  font-weight: 500;
  line-height: 120%;
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
  text-shadow: 0px 0px 5px #121212;
}
@media only screen and (max-width: 768px) {
  .sp-main-title .center-block .title {
    font-size: 1.875em;
    font-weight: 500;
  }
}
.sp-main-title .center-block .description {
  text-align: center;
  color: #fff;
  padding-top: 25px;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto;
  -webkit-font-smoothing: antialiased;
  text-shadow:0px 0px 5px #121212;
}
.sp-main-title .center-block .contactBtn {
  width: 300px;
  height: 60px;
  position: relative;
  float: left;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1.25em;
  font-weight: 500;
  margin-top: 40px;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 0;
  color: #545453;
  background-color: #ffd007;
  text-decoration: none;
  border-radius: 6px;
  line-height: 1;
  -webkit-transition: background-color 0.2s ease-in-out,
    opacity 0.7s ease-in-out;
  transition: background-color 0.2s ease-in-out, opacity 0.7s ease-in-out;
}
.sp-main-title .center-block .contactBtn:after {
  content: "";
  display: block;
  clear: both;
}
.sp-main-title .center-block .contactBtn:hover {
  background-color: #ffc100;
}
@media only screen and (max-width: 768px) {
  .sp-main-title .center-block .contactBtn {
    display: none;
  }
}
@media only screen and (max-width: 896px) and (orientation: landscape) {
  .sp-main-title .center-block .title {
    font-size: 1.875em;
    padding-top: 30px;
  }
  .sp-main-title .center-block .description {
    padding-top: 15px;
  }
  .sp-main-title .center-block .contactBtn {
    height: initial;
    margin-top: 15px;
    padding: 10px 0;
  }
}
/*
 * Stanfy Panda - Navigation Styles
 */
.sp-nav {
  position: relative;
  z-index: 20;
  /*
   * White and small version of navigation
   */
}
.sp-nav .mainNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
  margin-top: 0;
  padding-right: 0px;
  background-color: #121212;
  transition: margin-top 0.5s, background-color 0.5s, top 0.5s;
  position: fixed;
  top: 0px;
}
.sp-nav .logo {
  position: relative;
  float: left;
  margin: 10px 0 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  padding: 10px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .sp-nav .logo {
    margin: 8px 0 0 15px;
  }
}

.sp-nav .logo:hover .next-logos {
  display: block;
  padding: 5px 0;
  transition: max-height 0.4s, padding 0.4s;
}
.sp-nav .logo:hover .next-logos li a {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.sp-nav .logo:hover .next-logos li ~ li {
  border-top: 1px solid;
  border-top-color: rgba(216, 216, 216, 0.49);
}
.sp-nav .logo .logoLink {
  display: block;
  width: 130px;
  height: 40px;
  transition: background-color 0.5s;
}
.sp-nav .logo .logoLink .logoImg {
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 768px) {
  .sp-nav .logo .logoLink {
    /* width: 190px; */
  }
}
.sp-nav .logo .next-logos {
  display: none;
  position: absolute;
  top: 45px;
  right: 0;
  left: 0;
  background: #fff;
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.3);
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  transition: max-height 0s, padding 0s;
  padding: 0;
}
.sp-nav .logo .next-logos li {
  width: 100%;
  padding: 13px 15px;
  font-family: Arial, Helvetica, sans-serif;
}
.sp-nav .logo .next-logos li a {
  -webkit-mask: none;
  mask: none;
  display: flex;
  opacity: 0;
  -webkit-transform: translateY(-30px);
  -moz-transform: translateY(-30px);
  -o-transform: translateY(-30px);
  transform: translateY(-30px);
  transition: opacity 0.3s 0.15s, transform 0.3s 0.15s;
}
.sp-nav .logo .next-logos li a img {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  margin-right: 15px;
}
.sp-nav .logo .next-logos li a .name-site {
  text-align: left;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.43;
  text-transform: uppercase;
  color: #323232;
  transition: color 0.3s;
}
.sp-nav .logo .next-logos li a .name-site span {
  display: block;
  font-size: 12px;
  line-height: 1.67;
  font-weight: 400;
  text-transform: none;
  color: #323232;
  opacity: 0.5;
}
.sp-nav .logo .next-logos li a:hover .name-site {
  color: #1476f2;
}
.sp-nav .logo .next-logos li a:hover .name-site span {
  color: #323232;
}
.sp-nav .logo .next-logos li ~ li {
  border-top: 1px solid;
  border-top-color: rgba(216, 216, 216, 0);
  transition: border-top-color 0.25s 0.25s;
}
.sp-nav .logo .next-logos li ~ li a {
  transition: opacity 0.3s 0.2s, transform 0.3s 0.2s;
}
.sp-nav .contact-us-link {
  border: 2px solid #fff;
  color: #fff;
  font-weight: 500;
  padding: 12px 40px;
  border-radius: 6px;
  transition: background-color 0.5s ease, color 0.5s ease, border 0.5s ease;
}
.sp-nav .contact-us-link:hover {
  background-color: #fff;
  color: #1d487c;
}
.sp-nav .contact-us-link:hover:after,
.sp-nav .contact-us-link:focus:after {
  height: 0;
  opacity: 0;
}
.sp-nav ul {
  float: right;
  margin: 0;
  padding-right: 0px;
  padding-top: 25px;
  padding-bottom: 25px;

}
.sp-nav ul li {
  list-style-type: none;
  padding-right: 22px;
  float: left;
}
.sp-nav ul li a {
  color: #fff;
  font-size: 1.25em;
  font-weight: 400;
  border: none;
  cursor: pointer;
  transition: color 0.5s ease;
  position: relative;
  text-decoration: none;
}
.sp-nav ul li a:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #fff;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.sp-nav ul li a:hover:after,
.sp-nav ul li a.hovered:after {
  height: 2px;
  opacity: 1;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -o-transform: translateY(5px);
  transform: translateY(5px);
}
.sp-nav ul li a.hovered:hover:after {
  height: 2px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
@media only screen and (max-width: 768px) {
  .sp-nav ul {
    display: none;
  }
}
.sp-nav--small .mainNav {
  height: 67px;
}
.sp-nav--small .logo {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.sp-nav--small ul {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.sp-nav--small .bm-burger-button {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.sp-nav--white .mainNav {
  background-color: rgba(255, 255, 255, 0.9);
}
.sp-nav--white .logo .next-logos {
  background-color: rgba(255, 255, 255, 0.9);
}
.sp-nav--white .logo .next-logos--links {
  background-color: initial;
}
.sp-nav--white .logoImg {
  filter: invert(0.5) sepia(1) saturate(70) hue-rotate(210deg);
}
.sp-nav--white .contact-us-link {
  border: 2px solid #666;
  color: #666;
}
.sp-nav--white .contact-us-link:hover {
  background-color: #ffd007;
  border: 2px solid #ffd007;
  color: #545453;
}
.sp-nav--white .contact-us-link:hover:after,
.sp-nav--white .contact-us-link:focus:after {
  height: 0;
  opacity: 0;
}
.sp-nav--white .bm-burger-bars {
  background-color: #666;
}
.sp-nav--white ul li a {
  color: #666;
}
.sp-nav--white ul li a:after {
  background: #999;
  opacity: 0 !important;
}
/* Position and sizing of burger button */
.bm-burger-button {
  position: fixed;
  width: 34px;
  height: 24px;
  right: 20px;
  top: 21px;
  transition: top 0.5s;
  fill: #00f;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  transition: transform 0.5s;
  display: none;
}
.bm-burger-button .bm-icon {
  fill: #00f;
}
@media only screen and (max-width: 768px) {
  .bm-burger-button {
    display: block;
  }
}
.bm-burger-button button {
  cursor: pointer;
}
/* Color/shape of burger icon bars */
.bm-burger-bars {
  background-color: #fff;
  transition: background-color 0.5s;
}
/* Color of close button cross */
.bm-cross {
  height: 32px;
  background: #4e4e4e;
}
.bm-cross-button {
  width: 24px;
  top: 17px;
}
/* Morph shape necessary with bubble or elastic */
.bm-morph-shape {
  fill: #fff;
}
/* General menu styles */
/* Background color of sidebar */
.mobile_navbtn{
  position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    border: none;
    font-size: 12px;
    color: transparent;
    background: transparent;
    outline: none;
}
.bm-overlay{
  position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
    transition: opacity 0.3s, transform 0s 0.3s;
}
.bm-menu-wrap{
  position: fixed;
  right: 0;
  z-index: 2;
  width: 300px;
  height: 100%;
  transform: translate3d(100%, 0, 0);
  transition: all 0.5s;
}
.bm-menu-wrap.active{
  transform: translate3d(0, 0, 0);
}
.bm-menu-wrap button {
  cursor: pointer;
}
/* Wrapper for item list */
.bm-item-list {
  color: #000;
  padding: 150px 40px 0;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .bm-item-list {
    padding: 20px 40px 0 45px;
  }
}
.bm-item-list .menu-item {
  color: #4e4e4e;
  text-decoration: none;
  font-size: 1.5em;
  display: block;
  float: left;
  clear: left;
  margin: 15px 0;
  position: relative;
  text-decoration: none;
}
.bm-item-list .menu-item:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #4e4e4e;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.bm-item-list .menu-item:hover:after,
.bm-item-list .menu-item.hovered:after {
  height: 2px;
  opacity: 1;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -o-transform: translateY(5px);
  transform: translateY(5px);
}
.bm-item-list .menu-item.hovered:hover:after {
  height: 2px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
@media only screen and (max-width: 768px) {
  .bm-item-list .menu-item {
    margin: 10px 0;
  }
}
.bm-item-list .menu-bottom {
  position: absolute;
  display: block;
  bottom: 20px;
  padding-right: 10px;
}
.bm-item-list .menu-bottom .address span {
  display: block;
  color: #646464;
  margin: 15px 0 10px 0;
  font-size: 1.1em;
  font-weight: 500;
}
.bm-item-list .menu-bottom .address a {
  color: #646464;
  position: relative;
  text-decoration: none;
}
.bm-item-list .menu-bottom .address a:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #4e4e4e;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.bm-item-list .menu-bottom .address a:hover:after,
.bm-item-list .menu-bottom .address a.hovered:after {
  height: 2px;
  opacity: 1;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -o-transform: translateY(5px);
  transform: translateY(5px);
}
.bm-item-list .menu-bottom .address a.hovered:hover:after {
  height: 2px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.labBlock {
  margin: 0 0 80px 0;
  text-align: center;
}
.labBlock .mainBlock {
  background: url(/assets/images/lab-main.jpg) no-repeat 0 0;
  background-size: 1440px auto;
  height: 680px;
  width: 1440px;
  background-size: cover;
  height: 680px;
  margin: 0 0 90px;
  width: 100%;
  color: #fff;
}
.labBlock .mainBlock .fade {
  background-color: rgba(0, 0, 0, 0.35);
  height: 680px;
}
.labBlock .mainBlock .fade .block-header {
  padding: 164px 0 8px 0;
}
.labBlock .mainBlock .fade .block-header h1 {
  font-size: 4.75rem;
  font-weight: 700;
}
.labBlock .mainBlock .fade .block-description {
  *zoom: 1;
  width: auto;
  max-width: 960px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 1.88rem;
  padding: 20px 10px 44px;
}
.labBlock .mainBlock .fade .block-description:before,
.labBlock .mainBlock .fade .block-description:after {
  content: "";
  display: table;
}
.labBlock .mainBlock .fade .block-description:after {
  clear: both;
}
.labBlock .mainBlock .fade .vertical {
  display: block;
  height: 0;
}
.labBlock .block-projects {
  *zoom: 1;
  width: auto;
  max-width: 960px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.labBlock .block-projects:before,
.labBlock .block-projects:after {
  content: "";
  display: table;
}
.labBlock .block-projects:after {
  clear: both;
}
.labBlock .block-projects .lab-description {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 46%;
  margin-left: 0%;
  margin-right: 8%;
  padding: 40px 0 60px 0;
  font-size: 1.13rem;
  font-weight: 400;
  line-height: 1.65rem;
}
.labBlock .block-projects .lab-description:before,
.labBlock .block-projects .lab-description:after {
  content: "";
  display: table;
}
.labBlock .block-projects .lab-description:after {
  clear: both;
}
.labBlock .block-projects .lab-description:nth-child(2n) {
  margin-right: 0%;
  float: right;
}
.labBlock .block-projects .lab-description:nth-child(2n + 1) {
  clear: both;
}
.labBlock .block-projects .lab-description a {
  text-decoration: none;
}
.labBlock .block-projects .lab-description .lab-symbol {
  margin-bottom: 30px;
  font-size: 1.9em;
  font-weight: 600;
  line-height: 1.1em;
}
.labBlock .block-projects .lab-description .lab-symbol span {
  color: #000;
  position: relative;
  text-decoration: none;
}
.labBlock .block-projects .lab-description .lab-symbol span:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #000;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.labBlock .block-projects .lab-description .lab-symbol span:hover:after,
.labBlock .block-projects .lab-description .lab-symbol span.hovered:after {
  height: 2px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}
.labBlock
  .block-projects
  .lab-description
  .lab-symbol
  span.hovered:hover:after {
  height: 2px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.labBlock .block-projects .lab-description .lab-symbol .ico {
  height: 150px;
  *zoom: 1;
  width: auto;
  max-width: 46%;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  max-width: 100% !important;
}
.labBlock .block-projects .lab-description .lab-symbol .ico:before,
.labBlock .block-projects .lab-description .lab-symbol .ico:after {
  content: "";
  display: table;
}
.labBlock .block-projects .lab-description .lab-symbol .ico:after {
  clear: both;
}
.labBlock .block-projects .lab-description .lab-symbol .ico-dyci {
  width: 174px;
  background-color: #3e5f75;
  -webkit-mask: url(/assets/images/ico_dyci.svg) no-repeat;
  mask: url(/assets/images/ico_dyci.svg#mask);
}
.labBlock .block-projects .lab-description .lab-symbol .ico-enroscar {
  width: 182px;
  background-color: #3e5f75;
  -webkit-mask: url(/assets/images/ico_enroscar.svg) no-repeat;
  mask: url(/assets/images/ico_enroscar.svg#mask);
}
.labBlock .block-projects .lab-description .lab-symbol .ico-helium {
  width: 178px;
  background-color: #3e5f75;
  -webkit-mask: url(/assets/images/ico_helium.svg) no-repeat;
  mask: url(/assets/images/ico_helium.svg#mask);
}
.labBlock .block-projects .lab-description .lab-symbol .ico-objc {
  width: 170px;
  height: 160px;
  margin-top: -10px;
  -webkit-transform: translateY(-10%);
  -moz-transform: translateY(-10%);
  -o-transform: translateY(-10%);
  transform: translateY(-10%);
  background-color: #3e5f75;
  -webkit-mask: url(/assets/images/ico_objc.svg) no-repeat;
  mask: url(/assets/images/ico_objc.svg#mask);
}
@media only screen and (max-width: 960px) {
  .labBlock .block-projects .lab-description {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 60px 30px;
    max-width: 100%;
  }
  .labBlock .block-projects .lab-description:first-child {
    margin-left: auto;
  }
  .labBlock .block-projects .lab-description:last-child {
    margin-right: auto;
  }
  .labBlock .mainBlock {
    height: 100%;
  }
  .labBlock .mainBlock .fade {
    height: 100%;
  }
  .labBlock .mainBlock .fade .vertical {
    height: 60px;
  }
  .labBlock .mainBlock .fade a .subscribeButton {
    width: 290px;
  }
  .labBlock .mainBlock .fade a .subscribeButton span {
    font-size: 1.2em;
  }
}
.sliderBlock {
  padding: 0 29px;
  position: relative;
  height: 340px;
  background-color: #f7f7f7;
}
.sliderBlock .slide {
  position: relative;
  height: 340px;
}
.sliderBlock .sliderTitle {
  position: absolute;
  top: 90px;
  color: #aaa;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2rem;
}
@media only screen and (max-width: 520px) {
  .sliderBlock .sliderTitle {
    top: 35px;
    font-size: 1.375rem;
    font-weight: 500;
  }
}
.sliderBlock .avatar {
  height: 115px;
  width: 115px;
  background-repeat: no-repeat;
  background-size: 118px;
  background-position: -5px;
  border-radius: 50%;
  border: 4px solid #ffde01;
  margin-top: -57px;
}
.sliderBlock .desc-table {
  height: 190px;
  width: 100%;
}
.sliderBlock .desc-table tr:first-child {
  height: 10%;
}
.sliderBlock .persone {
  padding: 40px 0 10px 0;
  line-height: 2.313rem;
}
.sliderBlock .persone .persone-name {
  font-size: 2rem;
  font-weight: 700;
}
.sliderBlock .persone .persone-position {
  font-size: 1.688rem;
}
.sliderBlock .feedback-desc {
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 2.125rem;
  margin: 0 0 30px 0;
}
.sliderBlock .btn-holder {
  margin-top: 10px;
  text-align: left;
}
.sliderBlock .videoButton {
  color: #0f84c9;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.438rem;
  border: 2px solid #0a82ca;
  border-radius: 4px;
  padding: 16px 34px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
}
.sliderBlock .videoButton .ico {
  vertical-align: middle;
}
.sliderBlock .videoButton:hover {
  background-color: #0b82ca;
  color: #fff;
}
.sliderBlock .miniBlock {
  position: absolute;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.4s linear;
  -webkit-transition: opacity 0.4s linear;
}
.sliderBlock .bar {
  position: absolute;
  bottom: 70px;
  left: 0;
  width: 100%;
  white-space: nowrap;
}
.sliderBlock .bar .dot {
  font-weight: 100;
  display: inline-block;
  width: 14px;
  height: 14px;
  text-indent: -3000px;
  background-color: #d8d8d8;
  margin: 0 30px 0 0;
  border-radius: 50%;
  border: 2px solid #f7f7f7;
  box-sizing: content-box;
  transition: border 0.3s ease-in-out;
  cursor: pointer;
}
.sliderBlock .bar .active {
  border: 2px solid #208ac9;
  background-color: #208ac9;
}
.sliderBlock .activeBlock {
  opacity: 1;
}
@media only screen and (max-width: 768px) {
  .sliderBlock .bar {
    bottom: 50px;
  }
}
@media only screen and (max-width: 520px) {
  .sliderBlock .avatar {
    height: 43px;
    width: 43px;
    background-repeat: no-repeat;
    background-size: 43px;
    margin-top: -21px;
  }
  .sliderBlock .persone {
    padding: 24px 0 12px 0;
    line-height: 1.813rem;
  }
  .sliderBlock .persone .persone-name {
    font-size: 1.375rem;
    font-weight: 500;
  }
  .sliderBlock .persone .persone-position {
    font-size: 1.375rem;
    font-weight: 300;
  }
  .sliderBlock .feedback-desc {
    font-size: 1rem;
    line-height: 1.625rem;
  }
  .sliderBlock .videoButton {
    width: 100%;
    max-width: 270px;
  }
  .sliderBlock .bar {
    text-align: center;
  }
  .sliderBlock .bar .dot {
    width: 11px;
    height: 11px;
    margin: 0 20px 0 0;
  }
}
.homePage .sliderBlock {
  height: 470px;
}
.homePage .sliderBlock .slide {
  height: 470px;
}
.homePage .sliderBlock .slide .desc-table {
  height: 325px;
}
@media only screen and (max-width: 960px) {
  .homePage .sliderBlock {
    height: 520px;
  }
  .homePage .sliderBlock .slide {
    height: 520px;
  }
  .homePage .sliderBlock .slide .desc-table {
    height: 374px;
  }
}
@media only screen and (max-width: 768px) {
  .homePage .sliderBlock {
    height: 555px;
  }
  .homePage .sliderBlock .slide {
    height: 555px;
  }
  .homePage .sliderBlock .slide .desc-table {
    height: 423px;
  }
}
@media only screen and (max-width: 670px) {
  .homePage .sliderBlock {
    height: 645px;
  }
  .homePage .sliderBlock .slide {
    height: 645px;
  }
  .homePage .sliderBlock .slide .desc-table {
    height: 520px;
  }
}
@media only screen and (max-width: 520px) {
  .homePage .sliderBlock {
    height: 490px;
  }
  .homePage .sliderBlock .slide {
    height: 490px;
  }
  .homePage .sliderBlock .slide .desc-table {
    height: 402px;
  }
}
@media only screen and (max-width: 450px) {
  .homePage .sliderBlock {
    height: 560px;
  }
  .homePage .sliderBlock .slide {
    height: 560px;
  }
  .homePage .sliderBlock .slide .desc-table {
    height: 474px;
  }
  .homePage .sliderBlock .videoButton {
    padding: 14px 30px;
    font-size: 1.25rem;
    line-height: 1.125rem;
  }
}
@media only screen and (max-width: 320px) {
  .homePage .sliderBlock {
    height: 600px;
  }
  .homePage .sliderBlock .slide {
    height: 600px;
  }
  .homePage .sliderBlock .slide .desc-table {
    height: 513px;
  }
}
@media only screen and (max-width: 600px) {
  .services .sliderBlock {
    height: 380px;
  }
}
@media only screen and (max-width: 520px) {
  .services .sliderBlock {
    height: 340px;
  }
}
@media only screen and (max-width: 440px) {
  .services .sliderBlock {
    height: 380px;
  }
}
@media only screen and (max-width: 380px) {
  .services .sliderBlock {
    height: 430px;
  }
}
@media only screen and (max-width: 340px) {
  .services .sliderBlock {
    height: 460px;
  }
}
#commits {
  background: #fff none repeat scroll 0 0;
  margin: 100px 0;
  padding-bottom: 20px;
}
#commits .commitsList {
  display: block;
  margin: 0 auto;
  padding-bottom: 20px;
}
#commits .commitsList h2 {
  padding-top: 40px;
  display: block;
  font-size: 3em;
  font-weight: 300;
  text-align: center;
}
#commits .commitsList .commit {
  float: left;
  margin: 6px 0 10px 4px;
}
#commits .commitsList .commiters-appear {
  opacity: 0.01;
  transition: opacity 0.5s ease-in;
}
#commits .commitsList .commiters-appear.commiters-appear-active {
  opacity: 1;
}
#commits .commitsList .commiters-enter {
  opacity: 0.01;
}
#commits .commitsList .commiters-enter .commiters-enter-active {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}
#commits .commitsList .commiters-leave {
  opacity: 1;
}
#commits .commitsList .commiters-leave .commiters-leave-active {
  opacity: 0.01;
  transition: opacity 0.5s ease-in;
}
.eventsBlock .sliderBlock {
  height: 370px;
  margin: 31px 0 65px 0;
  padding: 0;
}
.eventsBlock .sliderBlock .wrapper-desktop {
  padding: 0 29px;
}
.eventsBlock .sliderBlock .slide {
  height: 370px;
}
.eventsBlock .sliderBlock .slide .desc-table {
  height: 300px;
}
.eventsBlock .sliderBlock .slide .desc-table .persone {
  padding-top: 76px;
}
@media only screen and (max-width: 960px) {
  .eventsBlock .sliderBlock {
    height: 380px;
  }
  .eventsBlock .sliderBlock .slide {
    height: 380px;
  }
  .eventsBlock .sliderBlock .slide .desc-table {
    height: 290px;
  }
}
@media only screen and (max-width: 768px) {
  .eventsBlock .sliderBlock {
    height: 440px;
  }
  .eventsBlock .sliderBlock .slide {
    height: 440px;
  }
  .eventsBlock .sliderBlock .slide .desc-table {
    height: 365px;
  }
  .eventsBlock .sliderBlock .slide .desc-table .persone {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 520px) {
  .eventsBlock .sliderBlock {
    height: 410px;
  }
  .eventsBlock .sliderBlock .slide {
    height: 410px;
  }
  .eventsBlock .sliderBlock .slide .desc-table {
    height: 340px;
  }
}
.eventsBlock .ColleaguesBlock {
  padding: 28px 0;
}
.eventsBlock .eventsHeader {
  background: url(/assets/images/events.jpg) no-repeat 0 0;
  background-size: 720px auto;
  height: 339.5px;
  width: 720px;
  background-size: cover;
  height: 640px;
  margin: 0;
  width: 100%;
  text-align: center;
  padding: 0 29px;
}
.eventsBlock .eventsHeader .vertical {
  height: 640px;
  vertical-align: middle;
  display: table-cell;
  width: 10000px;
}
.eventsBlock .eventsHeader .upcomingEvent {
  margin-bottom: 30px;
}
.eventsBlock .eventsHeader .upcomingEvent h2 {
  color: #fff;
  font-size: 4.75rem;
  font-weight: 700;
  line-height: 5.063rem;
}
.eventsBlock .eventsHeader .upcomingEvent .event {
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 1.963rem;
  color: #fff;
}
.eventsBlock .eventsHeader .upcomingEvent .event .date {
  padding: 0 0 15px 0;
}
.eventsBlock .eventsHeader .upcomingEvent .event a {
  color: #fff;
  text-decoration: none;
}
.eventsBlock .eventsHeader .upcomingEvent .event .eventLocation {
  color: #fff;
  padding: 15px 0 20px 0;
}
.eventsBlock h2 {
  color: #222;
  font-size: 2.125rem;
  font-weight: 400;
  line-height: 2.5rem;
  padding: 0 0 20px 0;
}
.eventsBlock h2.bold {
  font-weight: 700;
}
.eventsBlock .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 960px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  padding: 0 29px;
}
.eventsBlock .wrapper:before,
.eventsBlock .wrapper:after {
  content: "";
  display: table;
}
.eventsBlock .wrapper:after {
  clear: both;
}
.eventsBlock .description {
  color: #222;
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 2.313rem;
}
.eventsBlock .speakers {
  height: 180px;
}
.eventsBlock .speakers .speaker {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 22.75%;
  margin-left: 0%;
  margin-right: 3%;
  display: inline-block;
}
.eventsBlock .speakers .speaker:before,
.eventsBlock .speakers .speaker:after {
  content: "";
  display: table;
}
.eventsBlock .speakers .speaker:after {
  clear: both;
}
.eventsBlock .speakers .speaker:last-child {
  margin-right: 0%;
}
.eventsBlock .speakers .avatar {
  *zoom: 1;
  width: auto;
  max-width: 115px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  height: 115px;
  background-repeat: no-repeat;
  background-size: 115px;
  margin-bottom: 8px;
}
.eventsBlock .speakers .avatar:before,
.eventsBlock .speakers .avatar:after {
  content: "";
  display: table;
}
.eventsBlock .speakers .avatar:after {
  clear: both;
}
.eventsBlock .speakers .rounded {
  border-radius: 100%;
}
.eventsBlock .speakers .jobTitle {
  display: block;
  color: #8594a2;
  padding-top: 6px;
}
@media only screen and (max-width: 768px) {
  .eventsBlock .speakers {
    height: 1320px;
    font-size: 1.3em;
  }
  .eventsBlock .speakers .speaker {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .eventsBlock .speakers .speaker:first-child {
    margin-left: auto;
  }
  .eventsBlock .speakers .speaker:last-child {
    margin-right: auto;
  }
  .eventsBlock .speakers .avatar {
    *zoom: 1;
    width: auto;
    max-width: 240px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
    height: 240px;
    background-size: 240px;
  }
  .eventsBlock .speakers .avatar:before,
  .eventsBlock .speakers .avatar:after {
    content: "";
    display: table;
  }
  .eventsBlock .speakers .avatar:after {
    clear: both;
  }
}
.eventsBlock .madCodeBlock {
  padding: 0 0 70px 0;
}
.eventsBlock .madCodeBlock h2 {
  padding-top: 60px;
}
.eventsBlock .meetupsBlock {
  position: relative;
  display: block;
  border-top: 1px solid #dadada;
}
.eventsBlock .meetupsBlock h2 {
  padding-top: 60px;
}
.eventsBlock .meetupsBlock .meetupLogo {
  margin-top: 10px;
  margin-bottom: 30px;
  max-width: 100%;
}
.eventsBlock .meetupsBlock .reviewsBlock {
  position: relative;
  padding-bottom: 30px;
}
.eventsBlock .meetupsBlock .reviewsBlock .review::before {
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  border-width: 15px 25px 15px 0;
  content: "";
  height: 0;
  left: 1px;
  position: absolute;
  width: 0;
}
.eventsBlock .meetupsBlock .reviewsBlock .review {
  background: #fff none repeat scroll 0 0;
  font-weight: 300;
  margin: 0 0 10px 26px;
  padding: 20px;
  text-align: left;
  font-size: 1.1em;
  line-height: 1.4em;
}
.eventsBlock .meetupsBlock .reviewsBlock .review .author {
  margin-top: 20px;
  text-align: right;
}
.eventsBlock .meetupsBlock .reviewsBlock .review .author .jobTitle {
  color: #8594a2;
}
.eventsBlock .linksBox {
  margin-bottom: 50px;
}
.eventsBlock .linksBox a {
  color: #208ac9;
  font-size: 1.625rem;
  font-weight: 400;
  line-height: 2.5rem;
  display: inline-block;
  margin-right: 40px;
  text-decoration: none;
  position: relative;
  text-decoration: none;
}
.eventsBlock .linksBox a:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #208ac9;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.eventsBlock .linksBox a:hover:after,
.eventsBlock .linksBox a.hovered:after {
  height: 1px;
  opacity: 1;
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.eventsBlock .linksBox a.hovered:hover:after {
  height: 1px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
@media only screen and (max-width: 960px) {
  .eventsBlock .mobile {
    padding: 0;
  }
}
@media only screen and (max-width: 520px) {
  .eventsBlock .eventsHeader .upcomingEvent h2 {
    font-size: 3rem;
    line-height: 4rem;
  }
  .eventsBlock .eventsHeader .upcomingEvent .panda-btn-yellow {
    font-size: 1rem;
  }
  .eventsBlock .linksBox {
    text-align: center;
  }
  .eventsBlock .linksBox a {
    font-size: 1.2rem;
    margin-right: 10px;
  }
  .eventsBlock .linksBox a:firs-child {
    margin-bottom: 20px;
  }
}
.persone-item {
  width: 49%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 54px;
  transition: opacity 0.5s ease-in-out;
  border-radius: 50%;
}
.persone-avatar {
  height: 135px;
  width: 135px;
  background-size: contain;
  float: left;
  border-radius: 50%;
}
.persone-details {
  padding: 0px 20px 0 15px;
  height: 135px;
  display: table-cell;
  vertical-align: middle;
}
.persone-details .persone-name {
  color: #1a1a1a;
  line-height: 1.625rem;
  font-size: 1.563rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.persone-details .persone-position {
  font-size: 1.25em;
  font-weight: 300;
  color: #1a1a1a;
  line-height: 1.5rem;
}
.persone-details .persone-social .social-icons {
  margin: 5px 0 0 0;
  font-family: FontAwesome;
  font-size: 1.375rem;
  line-height: 1.375rem;
}
.persone-details .persone-social .social-icons:after {
  content: "";
  display: block;
  clear: both;
}
.persone-details .persone-social .social-icons a {
  display: inline-block;
  width: 30px;
  margin: 0px 6px;
  color: #ccc;
  transition: color 0.3s ease-in-out;
  text-decoration: none;
}
.persone-details .persone-social .social-icons a:hover {
  color: #8d8b8b;
}
@media only screen and (max-width: 768px) {
  .persone-item {
    width: 100%;
    display: block;
  }
  .persone-avatar {
    float: none;
    margin: 0 auto 15px;
  }
  .persone-details {
    padding: 0;
    text-align: center;
    display: block;
    height: auto;
  }
}
.yellAfisha {
  background: #e34b42;
  background: -moz-linear-gradient(
    45deg,
    #e34b42 0%,
    #e34c43 35%,
    #e4534a 35%,
    #e24339 58%,
    #e34f46 58%,
    #e4534a 100%,
    #e24339 100%
  );
  background: -webkit-linear-gradient(
    45deg,
    #e34b42 0%,
    #e34c43 35%,
    #e4534a 35%,
    #e24339 58%,
    #e34f46 58%,
    #e4534a 100%,
    #e24339 100%
  );
  background: linear-gradient(
    45deg,
    #e34b42 0%,
    #e34c43 35%,
    #e4534a 35%,
    #e24339 58%,
    #e34f46 58%,
    #e4534a 100%,
    #e24339 100%
  );
  height: 780px;
}
.yellAfisha .wrapper-desktop {
  position: relative;
  height: 780px;
}
.yellAfisha .text-holder {
  color: #fff;
  padding: 145px 0 0 29px;
}
.yellAfisha .text-holder .title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.375rem;
  color: #fff;
  padding: 0 0 17px 0;
  text-transform: uppercase;
  max-width: 60%;
}
.yellAfisha .text-holder .desc {
  font-size: 1.438rem;
  font-weight: 700;
  line-height: 1.875rem;
  color: #fff;
  max-width: 65%;
}
.yellAfisha .text-holder .desc .divider {
  padding-top: 40px;
}
.yellAfisha .text-holder .desc .divider.no-bold {
  font-weight: 400;
}
@media only screen and (max-width: 640px) {
  .yellAfisha {
    height: 580px;
  }
  .yellAfisha .wrapper-desktop {
    height: 580px;
  }
  .yellAfisha .text-holder {
    padding-top: 100px;
  }
  .yellAfisha .text-holder .title {
    font-size: 3.2rem;
    font-weight: 500;
  }
  .yellAfisha .text-holder .desc {
    max-width: 80%;
  }
  .yellAfisha .text-holder .desc .divider {
    padding-top: 25px;
  }
}
.yellAfisha .image-holder {
  position: absolute;
  z-index: 10;
  width: 90%;
  bottom: -100px;
  right: 0;
}
.yellAfisha .image-holder img {
  display: block;
  width: 100%;
}
.yellAfisha-details {
  padding: 140px 0 0 0;
  overflow: hidden;
}
.yellAfisha-details .projectDetails {
  padding: 0 29px;
}
.yellAfisha-details .desc-title {
  color: #222;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.5rem;
  padding: 0 0 31px;
}
.yellAfisha-details .desc-title.centered {
  text-align: center;
}
.yellAfisha-details .desc-title.no-bold {
  font-weight: 400;
}
.yellAfisha-details p {
  color: #222;
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 2.313rem;
  padding: 0 0 31px;
}
.yellAfisha-details .image-container {
  margin: 0 0 31px 0;
}
.yellAfisha-details .image-container.no-margin {
  margin-bottom: 0;
}
.yellAfisha-details .image-container .wrapGif {
  overflow: hidden;
  max-width: 329px;
  margin: 0 auto;
}
.yellAfisha-details .image-container .wrapGif img {
  margin-left: -1px;
  width: 102%;
}
.yellAfisha-details .image-container img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.yellAfisha-details .image-container img.small {
  max-width: 280px;
}
.yellAfisha-details .image-container .max-width img {
  max-width: 50%;
}
.yellAfisha-details .principles {
  margin: 70px 0 70px 0;
}
.yellAfisha-details .principles .principle-item {
  margin: 0 0 30px 0;
  position: relative;
}
.yellAfisha-details .principles .principle-item .text {
  float: left;
  width: 60%;
}
.yellAfisha-details .principles .principle-item .text .principle-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.8rem;
}
.yellAfisha-details .principles .principle-item .step {
  float: right;
  width: 20%;
  color: #e2e8f2;
  font-size: 250px;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .yellAfisha-details .principles .principle-item .text {
    float: none;
    width: 100%;
  }
  .yellAfisha-details .principles .principle-item .step {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 125px;
  }
}
.yellAfisha-details .grayPicture {
  background-color: #f9fafa;
  padding: 78px 29px 50px 29px;
}
.yellAfisha-details .redBlock {
  background-color: #e24339;
  padding: 50px 29px 50px 29px;
}
.yellAfisha-details .footerThanks {
  padding: 0px 29px 50px 29px;
}
.yellAfisha-details .screensBlock table tr td {
  width: 50%;
  padding: 60px 0;
}
.yellAfisha-details .screensBlock .screen-item {
  margin-bottom: 50px;
}
.yellAfisha-details .screensBlock .screen-item .desc {
  text-align: center;
  color: #fff;
}
.yellAfisha-details .screensBlock .screen-item .icon {
  display: inline-block;
  margin-bottom: 12px;
}
@media only screen and (max-width: 768px) {
  .yellAfisha-details .screensBlock .screen-item .icon img {
    max-width: 52px;
  }
}
.yellAfisha-details .screensBlock .screen-item .text {
  color: #fff;
  font-size: 1.8rem;
  line-height: 2.15rem;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .yellAfisha-details .screensBlock .screen-item .text {
    font-size: 1.313rem;
    line-height: 1.5rem;
  }
}
.yellAfisha-details .screensBlock .screen-item .screen-image img {
  width: 100%;
  display: block;
}
.yellAfisha-details .TeamBlock {
  padding: 60px 29px 30px 29px;
}
.yellAfisha-details .TeamBlock .persone-item {
  width: 20%;
}
@media only screen and (max-width: 768px) {
  .yellAfisha-details .TeamBlock .persone-item {
    width: 100%;
  }
}
.yellAfisha-details .TeamBlock .persone-item .persone-avatar {
  float: none;
  margin: 0 auto 15px auto;
}
.yellAfisha-details .TeamBlock .persone-item .persone-details {
  display: block;
  text-align: center;
}
.first-column {
  width: 33%;
  float: left;
}
.first-column .gallery-item {
  width: 100%;
}
.first-column .gallery-item .inner {
  height: 250px;
}
.second-column {
  width: 33%;
  float: left;
}
.second-column .gallery-item {
  width: 100%;
}
.second-column .gallery-item .inner {
  height: 350px;
}
.second-column .gallery-item:first-child .inner {
  height: 150px;
  background-position: top;
}
.third-column {
  width: 33%;
  float: left;
}
.third-column .gallery-item {
  width: 100%;
}
.third-column .gallery-item .inner {
  height: 150px;
}
.third-column .gallery-item:first-child .inner {
  height: 350px;
  background-position: top;
}
@media only screen and (max-width: 768px) {
  .first-column,
  .second-column {
    width: 50%;
  }
  .third-column {
    width: 100%;
  }
}
.dailycamWrap {
  overflow: hidden;
}
.dailyCam {
  height: 780px;
  position: relative;
}
.dailyCam #title-hover-layout {
  display: block;
  position: absolute;
  overflow: hidden;
  top: 0;
  opacity: 0.9;
}
.dailyCam .video-holder {
  height: 780px;
  overflow: hidden;
  position: relative;
}
.dailyCam .video-holder video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: auto;
  height: auto;
  background-size: cover;
}
.dailyCam .fade-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.dailyCam .fade-image .phone {
  width: 350px;
  height: 731px;
  position: absolute;
  z-index: 10;
  bottom: -100px;
  padding: 0 26px;
  right: 0;
}
.dailyCam .fade-image .phone .video-inner {
  height: 539px;
  position: relative;
  top: 91px;
  margin: 0 auto;
  overflow: hidden;
}
.dailyCam .fade-image .phone .video-inner video {
  width: 1905px;
  height: auto;
  margin-left: -1104px;
  margin-top: -388px;
}
.dailyCam .fade-image .phone .image-holder {
  width: 350px;
  height: 731px;
  position: absolute;
  background: url(/assets/images/phone@2x.png) top center no-repeat;
  background-size: 350px;
  z-index: 24;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 640px) {
  .dailyCam .fade-image .phone {
    width: 200px;
    height: 420px;
    bottom: -50px;
  }
  .dailyCam .fade-image .phone .image-holder {
    width: 200px;
    height: 420px;
    background-size: 200px;
  }
}
@media only screen and (max-width: 450px) {
  .dailyCam .fade-image .phone {
    right: -70px;
  }
}
.dailyCam .fade-image .text-holder {
  padding-right: 350px;
  text-align: center;
}
.dailyCam .fade-image .logo-container {
  width: 200px;
  margin: 134px 0 20px 0;
  display: inline-block;
}
.dailyCam .fade-image .logo-container img {
  display: block;
  width: 100%;
}
.dailyCam .wrapper-desktop {
  position: relative;
  height: 780px;
}
.dailyCam .text-holder {
  color: #fff;
  padding: 145px 0 0 29px;
}
.dailyCam .text-holder .title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.375rem;
  color: #fff;
  padding: 0 0 17px 0;
  text-transform: uppercase;
  max-width: 60%;
}
.dailyCam .text-holder .desc {
  font-size: 1.638rem;
  font-weight: 400;
  line-height: 1.925rem;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .dailyCam {
    height: 580px;
  }
  .dailyCam .wrapper-desktop,
  .dailyCam .video-holder {
    height: 580px;
  }
  .dailyCam .fade-image .logo-container {
    margin-top: 65px;
    width: 150px;
  }
  .dailyCam .text-holder {
    padding-top: 100px;
    padding-right: 225px !important;
  }
  .dailyCam .text-holder .desc {
    font-size: 1.3rem;
  }
}
@media only screen and (max-width: 450px) {
  .dailyCam .text-holder {
    padding-right: 155px !important;
  }
}
.dailyCamDetails {
  padding: 140px 0 0 0;
  overflow: hidden;
}
.dailyCamDetails img {
  width: 100%;
  display: block;
}
.dailyCamDetails .video-holder {
  position: relative;
}
.dailyCamDetails .video-holder video {
  width: 100%;
  height: auto;
}
.dailyCamDetails .fade-video {
  background-color: rgba(0, 0, 0, 0.26);
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAMCAYAAABBV8wuAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH4AcBCiEgamq6qgAAABdJREFUGNNjZGBgCGLAApgYqAYYh4kdAMP2AQAqQ9PNAAAAAElFTkSuQmCC);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  top: 0;
}
.dailyCamDetails .projectDetails {
  padding: 0 29px;
}
.dailyCamDetails .desc-title {
  color: #222;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.5rem;
  padding: 0 0 31px;
}
.dailyCamDetails .desc-title.centered {
  text-align: center;
}
.dailyCamDetails .desc-title.no-bold {
  font-weight: 400;
}
.dailyCamDetails p {
  color: #222;
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 2.313rem;
  padding: 0 0 31px;
}
.dailyCamDetails .image-container {
  margin: 0 0 51px 0;
}
.dailyCamDetails .image-container.no-margin {
  margin-bottom: 0;
}
.dailyCamDetails .image-container.small-margin {
  margin-bottom: 10px;
}
.dailyCamDetails .image-container .wrapGif {
  overflow: hidden;
  max-width: 329px;
  margin: 0 auto;
}
.dailyCamDetails .image-container .wrapGif img {
  margin-left: -1px;
  width: 102%;
}
.dailyCamDetails .image-container img {
  margin: 0 auto;
}
.dailyCamDetails .image-container img.small {
  max-width: 280px;
}
.dailyCamDetails .image-container .max-width img {
  max-width: 50%;
}
.dailyCamDetails .principles {
  margin: 0 0 51px 0;
}
.dailyCamDetails .principles .principle-item .info-container,
.dailyCamDetails .principles .principle-item .image-container {
  display: inline-block;
  vertical-align: middle;
}
.dailyCamDetails .principles .principle-item .info-container {
  width: 57%;
  margin-left: 2%;
  padding-bottom: 50px;
}
@media only screen and (max-width: 640px) {
  .dailyCamDetails .principles .principle-item .info-container {
    padding-bottom: 5px;
  }
}
.dailyCamDetails .principles .principle-item .info-container .principle-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 20px 0;
  line-height: 1.8rem;
}
.dailyCamDetails .principles .principle-item .image-container {
  width: 30%;
}
.dailyCamDetails .principles .principle-item .image-container .inner {
  padding: 0 15px;
}
.dailyCamDetails .principles .principle-item .image-container .inner img {
  display: block;
  max-width: 220px;
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
  .dailyCamDetails .principles .principle-item .info-container,
  .dailyCamDetails .principles .principle-item .image-container {
    width: 100%;
    margin-left: 0;
  }
  .dailyCamDetails .principles .principle-item .image-container {
    margin-bottom: 10px;
  }
  .dailyCamDetails .principles .principle-item .image-container .inner {
    padding: 0;
  }
  .dailyCamDetails .principles .principle-item .image-container .inner img {
    margin-left: 0;
  }
}
.dailyCamDetails .onboarding {
  text-align: center;
}
.dailyCamDetails .onboarding .image-container {
  max-width: 1270px;
  margin: 0 auto 51px auto;
}
@media only screen and (max-width: 960px) {
  .dailyCamDetails .onboarding .image-container {
    margin-left: -5px;
    margin-right: -5px;
  }
}
.dailyCamDetails .onboarding .img-item {
  float: left;
  width: 25%;
  max-width: 320px;
}
.dailyCamDetails .onboarding .img-item .inner {
  padding: 5px;
}
.dailyCamDetails .onboarding .img-item .inner img {
  max-width: 300px;
  margin: 0 auto;
}
@media only screen and (max-width: 600px) {
  .dailyCamDetails .onboarding .img-item {
    width: 100%;
    margin-bottom: 20px;
    max-width: none;
  }
}
.dailyCamDetails .girl {
  background: url(/assets/images/girl-bg@2x.jpg) top center no-repeat;
  background-size: cover;
  margin-bottom: 220px;
  padding: 0 29px;
}
.dailyCamDetails .girl .styles {
  text-align: center;
  padding-top: 150px;
}
.dailyCamDetails .girl .styles .style-item {
  display: inline-block;
  vertical-align: top;
  margin: 0 20px 20px;
}
.dailyCamDetails .girl .styles .style-item .round {
  width: 92px;
  height: 92px;
  border: 4px solid #fff;
  border-radius: 50%;
  margin-bottom: 18px;
  display: inline-block;
}
.dailyCamDetails .girl .styles .style-item .label {
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-weight: 300;
  text-align: center;
  color: #fff;
}
.dailyCamDetails .girl .phone-logo {
  max-width: 435px;
  height: auto;
  margin: -80px auto 0;
  position: relative;
  top: 160px;
}
.dailyCamDetails .design {
  margin-bottom: 41px;
}
.dailyCamDetails .design .design-column {
  width: 50%;
}
.dailyCamDetails .design .design-column.left {
  float: left;
}
.dailyCamDetails .design .design-column.left .design-item {
  margin-right: 10px;
}
.dailyCamDetails .design .design-column.left .design-item.small .desc {
  padding: 65px 0 34px 0;
}
.dailyCamDetails .design .design-column.right {
  float: right;
}
.dailyCamDetails .design .design-column.right .design-item {
  margin-left: 10px;
}
.dailyCamDetails .design .design-column.right .design-item.small .desc {
  padding: 66px 0 100px 0;
}
.dailyCamDetails .design .design-column .design-item {
  padding: 0 86px;
  margin-bottom: 19px;
}
.dailyCamDetails .design .design-column .design-item .image {
  max-width: 400px;
  margin: 0 auto;
}
.dailyCamDetails .design .design-column .design-item .desc {
  color: rgba(154, 162, 210, 0.9);
  font-size: 1.8rem;
  line-height: 2.15rem;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.dailyCamDetails .design .design-column .design-item.large {
  padding-top: 85px !important;
}
.dailyCamDetails .design .design-column .design-item.large .desc {
  padding: 40px 0 100px 0;
}
@media only screen and (max-width: 700px) {
  .dailyCamDetails .design .design-column {
    width: 100%;
  }
  .dailyCamDetails .design .design-column.left .design-item,
  .dailyCamDetails .design .design-column.right .design-item {
    padding: 0 40px;
    margin-right: 0;
    margin-left: 0;
  }
}
.dailyCamDetails .atom {
  background-color: rgba(53, 26, 98, 0.9);
  padding: 60px 0 95px 0;
  margin-bottom: 91px;
  position: relative;
}
.dailyCamDetails .atom .atom-icons .atom-icons-item {
  display: inline-block;
  vertical-align: middle;
  margin: 0 70px 30px 0;
}
.dailyCamDetails .atom .atom-icons .atom-icons-item .icon {
  background: url(/assets/images/icon-sprite.png) no-repeat;
  background-size: 548px;
  height: 79px;
  width: 85px;
}
.dailyCamDetails .atom .atom-icons .atom-icons-item .icon.camera {
  background-position: -7px 0;
}
.dailyCamDetails .atom .atom-icons .atom-icons-item .icon.eye {
  background-position: -99px 0;
}
.dailyCamDetails .atom .atom-icons .atom-icons-item .icon.like {
  background-position: -192px 0;
}
.dailyCamDetails .atom .atom-icons .atom-icons-item .icon.record {
  background-position: -284px 0;
}
.dailyCamDetails .atom .atom-icons .atom-icons-item .icon.progress {
  background-position: -377px 0;
}
.dailyCamDetails .atom .atom-icons .atom-icons-item .icon.arrow {
  background-position: -467px 0;
}
.dailyCamDetails .atom .atom-icons .atom-icons-item .label {
  color: rgba(255, 255, 255, 0.41);
  padding-top: 15px;
  font-weight: 400;
  font-size: 1.313rem;
  text-align: center;
}
@media only screen and (max-width: 640px) {
  .dailyCamDetails .atom .atom-icons {
    text-align: center;
  }
  .dailyCamDetails .atom .atom-icons .atom-icons-item {
    margin: 0 20px 20px 20px;
  }
}
.dailyCamDetails .atom .img-container {
  width: 227px;
  margin: 50px 0 70px 0;
}
@media only screen and (max-width: 640px) {
  .dailyCamDetails .atom .img-container {
    margin-left: auto;
    margin-right: auto;
  }
}
.dailyCamDetails .atom p,
.dailyCamDetails .atom h2 {
  color: #fff;
}
.dailyCamDetails .atom .atom-collection {
  position: absolute;
  height: 147px;
  bottom: -69px;
  width: 100%;
  left: 0;
  right: 0;
}
.dailyCamDetails .atom .atom-collection .inner {
  height: 147px;
  width: 3000px;
  display: table-cell;
  vertical-align: middle;
}
.dailyCamDetails .atom .atom-collection .inner img {
  max-width: 700px;
  margin: 0 auto;
  width: 80%;
}
.dailyCamDetails .atom .gifs-container {
  margin-bottom: 61px;
}
.dailyCamDetails .atom .gifs-container .gif-item {
  width: 33%;
  float: left;
  text-align: center;
  color: #959191;
}
@media only screen and (max-width: 640px) {
  .dailyCamDetails .atom .gifs-container .gif-item {
    width: 100%;
  }
}
.dailyCamDetails .atom .gifs-container .gif-item .gif-item-img {
  max-width: 200px;
  margin: 0 auto;
  margin-bottom: 10px;
}
.dailyCamDetails .atom .gifs-container .gif-item .label {
  font-size: 1.3rem;
  line-height: 1.6rem;
  font-weight: 400;
  color: #fff;
}
.dailyCamDetails .gray-block {
  background-color: #f5f7fa;
  padding: 73px 0 35px 0;
  text-align: center;
  margin-bottom: 51px;
}
.dailyCamDetails .gray-block .div-exp {
  display: inline-block;
  max-width: 400px;
  margin: 0 30px;
  text-align: center;
}
.dailyCamDetails .gray-block .div-exp .image {
  width: 140px;
  margin: 0 auto 50px;
}
.dailyCamDetails .sliderBlock {
  margin-top: 70px !important;
}
.dailyCamDetails .dailyCamFooter {
  background: rgba(86, 199, 251, 0.41);
  background: -moz-linear-gradient(
    90deg,
    rgba(86, 199, 251, 0.91) 0%,
    rgba(143, 98, 240, 0.98) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(86, 199, 251, 0.91) 0%,
    rgba(143, 98, 240, 0.98) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(86, 199, 251, 0.91) 0%,
    rgba(143, 98, 240, 0.98) 100%
  );
  padding: 100px 0 40px 0;
  margin-bottom: 51px;
}
.dailyCamDetails .dailyCamFooter p {
  color: #fff;
}
.dailyCamDetails .dailyCamFooter .img-container {
  width: 250px;
  margin-top: -40px;
}
.dailyCamDetails .galleryBlock {
  margin-bottom: 51px;
}
.dailyCamDetails .galleryBlock .column {
  width: 50%;
  float: left;
}
@media only screen and (max-width: 600px) {
  .dailyCamDetails .galleryBlock .column {
    width: 100%;
  }
}
.dailyCamDetails .galleryBlock .column .gallery-item {
  width: 100%;
}
.dailyCamDetails .galleryBlock .column.one .inner {
  height: 450px;
}
.dailyCamDetails .galleryBlock .column.two .inner {
  height: 225px;
}
.contact-btn {
  background-color: #208ac9;
  padding: 84px 0;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin: 0 0 80px 0;
  text-align: center;
  display: block;
  text-decoration: none;
  color: #fff;
  height: 526px;
}
.contact-btn .title {
  margin-bottom: 60px;
}
.contact-btn .title .ico {
  vertical-align: middle;
  font-size: 55px;
  margin-right: 34px;
}
@media only screen and (max-width: 768px) {
  .contact-btn {
    padding-top: 44px;
  }
  .contact-btn .title {
    margin-bottom: 30px;
  }
  .contact-btn .title .titleText {
    display: block;
    margin-top: 24px;
    font-weight: 500;
    font-size: 1.8rem;
  }
  .contact-btn .title .titleText:before {
    content: " ";
    display: block;
  }
  .contact-btn .title .ico {
    margin-right: 0;
  }
}
.contact-btn .buttonMain {
  background-color: #fed823;
  border-radius: 10px;
  padding: 22px 66px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  cursor: pointer;
  color: #000;
  font-weight: 500;
  font-size: 2.1rem;
}
.contact-btn .buttonMain:hover {
  background-color: #f9c61f;
}
@media only screen and (max-width: 768px) {
  .contact-btn .buttonMain {
    font-weight: 500;
    font-size: 1.6rem;
    padding: 20px 25px;
    line-height: 1.9rem;
    margin: 0 20px;
  }
}
.contact-btn .colleagues {
  margin: 55px auto;
}
.contact-btn .colleagues .person {
  display: block;
  height: 115px;
  width: 115px;
  background-size: 118px;
  background-position: -5px;
  float: left;
  margin-right: 55px;
  border-radius: 50%;
  border: 4px solid #87bdde;
}
@media only screen and (max-width: 768px) {
  .contact-btn .colleagues {
    margin: 35px auto;
  }
  .contact-btn .colleagues .person {
    margin-right: 10px;
    height: 95px;
    width: 95px;
    background-size: 98px;
  }
}
.withoutColleagues {
  padding-top: 140px;
}
@media only screen and (max-width: 768px) {
  .withoutColleagues {
    padding-top: 96px;
  }
}
.services {
  text-align: center;
}
.services .servicesNavigation {
  height: 527px;
  border-bottom: 2px solid #dae2e7;
  overflow: visible;
  background-position: top;
  background-size: cover;
}
.services .servicesNavigation .fade {
  background-color: rgba(0, 0, 0, 0.35);
  height: 526px;
  position: absolute;
  top: 0;
}
.services .servicesNavigation .staticHeader {
  display: table-cell;
  height: 400px;
  width: 10000px;
  vertical-align: middle;
  padding-top: 65px;
}
.services .servicesNavigation .video-holder {
  height: 525px;
  overflow: hidden;
  position: relative;
}
.services .servicesNavigation .video-holder video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: auto;
  height: auto;
  background-size: cover;
}
.services .servicesNavigation .title {
  color: #fff;
  font-size: 4.75rem;
  font-weight: 700;
  line-height: 7rem;
}
@media only screen and (max-width: 768px) {
  .services .servicesNavigation .title {
    padding: 107px 0 87px 0;
    font-size: 1.875rem;
    font-weight: 500;
    line-height: 2.125rem;
  }
}
.services .servicesNavigation ul {
  margin: 0 auto;
  max-width: 960px;
  margin-bottom: 3px;
  position: relative;
  background-color: #fff;
  padding: 47px 63px 13px 63px;
}
.services .servicesNavigation ul:after {
  content: "";
  display: block;
  clear: both;
}
.services .servicesNavigation ul li {
  cursor: pointer;
  float: left;
  display: block;
  position: relative;
  width: 33.33%;
  margin-bottom: 46px;
  text-align: left;
}
.services .servicesNavigation ul li:hover p,
.services .servicesNavigation ul li.active p {
  font-weight: 700;
}
.services .servicesNavigation ul li img {
  height: 36px;
  width: 36px;
  vertical-align: middle;
  float: left;
  margin-right: 15px;
}
.services .servicesNavigation ul li a {
  color: #3272b7;
  text-decoration: none;
  display: block;
}
.services .servicesNavigation ul li p {
  color: #4d4d4d;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.063rem;
  height: 39px;
  display: table-cell;
  vertical-align: middle;
  max-width: 30px;
}
@media only screen and (max-width: 768px) {
  .services .servicesNavigation ul li {
    width: 50%;
    text-align: center;
  }
  .services .servicesNavigation ul li img {
    float: none;
    margin: 0 0 10px 0;
  }
  .services .servicesNavigation ul li p {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 0.875rem;
    text-align: center;
    max-width: 100%;
    display: block;
  }
}
.services .noPadding {
  padding: 0 !important;
}
.services .noMargin {
  margin: 0 !important;
}
.services .serviceDetails {
  padding: 144px 0 0 0;
  text-align: left;
  margin-bottom: 140px;
}
.services .serviceDetails .serviceInner {
  padding: 0 29px;
}
.services .serviceDetails .serviceInner .bottomPadding {
  padding-bottom: 44px;
}
.services .serviceDetails .wrapper-image {
  *zoom: 1;
  width: auto;
  max-width: 1158px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  margin-top: 30px;
  margin-bottom: 110px;
}
.services .serviceDetails .wrapper-image:before,
.services .serviceDetails .wrapper-image:after {
  content: "";
  display: table;
}
.services .serviceDetails .wrapper-image:after {
  clear: both;
}
@media only screen and (max-width: 768px) {
  .services .serviceDetails .wrapper-image {
    margin-top: 20px;
    margin-bottom: 60px;
  }
}
.services .serviceDetails .desc-title {
  color: #222;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.5rem;
  padding: 0 0 31px;
}
.services .serviceDetails .desc-title.no-margin {
  padding: 0;
  margin-bottom: -14px;
}
.services .serviceDetails .desc-h3 {
  color: #222;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 3rem;
  padding: 46px 70px;
  text-align: center;
}
.services .serviceDetails .chatbot {
  color: #222;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 3rem;
  padding: 60px 70px;
  text-align: center;
  opacity: 0.6;
}
.services .serviceDetails .aospBlock {
  text-align: center;
  margin-bottom: 40px;
}
.services .serviceDetails .aospBlock img {
  width: 334px;
  margin-left: -40px;
}
.services .serviceDetails .btn {
  text-align: center;
  margin: 40px auto;
}
.services .serviceDetails .btn .downloadButton {
  color: #0093ff;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 3.2rem;
  border: 3px solid #0093ff;
  border-radius: 10px;
  padding: 16px 60px;
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.services .serviceDetails .btn .downloadButton:hover {
  background-color: #edf4fb;
}
.services .serviceDetails .btn .downloadButton .link {
  text-decoration: none;
  color: #0093ff;
}
.services .serviceDetails .comment {
  padding: 16px 90px 0 100px;
}
.services .serviceDetails .comment .feedback {
  font-style: italic;
  font-family: "Times New Roman", Georgia, Serif;
  color: #605f60;
  font-size: 1.6rem;
}
.services .serviceDetails .comment .feedbackSign {
  display: block;
  float: right;
  text-align: right;
  margin-bottom: 40px;
}
.services .serviceDetails .comment .feedbackSign .feedbackOwner,
.services .serviceDetails .comment .feedbackSign .feedbackDate {
  color: #9b9b9b;
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 300;
  padding: 0;
}
.services .serviceDetails .comment .feedbackSign .feedbackDate {
  font-size: 1.1rem;
}
.services .serviceDetails .toolkit .tool {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  height: 174px;
}
.services .serviceDetails .toolkit .tool:before,
.services .serviceDetails .toolkit .tool:after {
  content: "";
  display: table;
}
.services .serviceDetails .toolkit .tool:after {
  clear: both;
}
.services .serviceDetails .toolkit .tool:last-child {
  margin-right: 0%;
}
.services .serviceDetails .toolkit .tool img {
  width: 105px;
  padding-top: 38px;
  float: left;
}
.services .serviceDetails .toolkit .tool .table {
  max-width: 300px;
  display: table;
  padding-left: 20px;
}
.services .serviceDetails .toolkit .tool .table .tableBlock {
  display: table-cell;
  vertical-align: middle;
  height: 174px;
}
.services .serviceDetails .toolkit .tool .table .tableBlock p {
  padding: 0;
  line-height: 2.1rem;
}
.services .serviceDetails .toolkit .tool .table .tableBlock a {
  color: #222;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.7rem;
  position: relative;
  text-decoration: none;
}
.services .serviceDetails .toolkit .tool .table .tableBlock a:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #222;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.services .serviceDetails .toolkit .tool .table .tableBlock a:hover:after,
.services .serviceDetails .toolkit .tool .table .tableBlock a.hovered:after {
  height: 1px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}
.services
  .serviceDetails
  .toolkit
  .tool
  .table
  .tableBlock
  a.hovered:hover:after {
  height: 1px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.services .serviceDetails .socialBlock {
  *zoom: 1;
  width: auto;
  max-width: 600px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  height: 270px;
}
.services .serviceDetails .socialBlock:before,
.services .serviceDetails .socialBlock:after {
  content: "";
  display: table;
}
.services .serviceDetails .socialBlock:after {
  clear: both;
}
.services .serviceDetails .socialBlock .fbIcon {
  background: url(/assets/images/facebook-messenger.png) no-repeat 0 0;
  background-size: 80px auto;
  height: 81px;
  width: 80px;
}
.services .serviceDetails .socialBlock .slackIcon {
  background: url(/assets/images/slack.png) no-repeat 0 0;
  background-size: 80px auto;
  height: 79px;
  width: 80px;
}
.services .serviceDetails .socialBlock .smsIcon {
  background: url(/assets/images/sms.png) no-repeat 0 0;
  background-size: 84px auto;
  height: 85px;
  width: 84px;
}
.services .serviceDetails .socialBlock .fbIcon,
.services .serviceDetails .socialBlock .slackIcon,
.services .serviceDetails .socialBlock .smsIcon {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 31.33333333333333%;
  margin-left: 0%;
  margin-right: 3%;
  background-position: center;
}
.services .serviceDetails .socialBlock .fbIcon:before,
.services .serviceDetails .socialBlock .slackIcon:before,
.services .serviceDetails .socialBlock .smsIcon:before,
.services .serviceDetails .socialBlock .fbIcon:after,
.services .serviceDetails .socialBlock .slackIcon:after,
.services .serviceDetails .socialBlock .smsIcon:after {
  content: "";
  display: table;
}
.services .serviceDetails .socialBlock .fbIcon:after,
.services .serviceDetails .socialBlock .slackIcon:after,
.services .serviceDetails .socialBlock .smsIcon:after {
  clear: both;
}
.services .serviceDetails .socialBlock .fbIcon:last-child,
.services .serviceDetails .socialBlock .slackIcon:last-child,
.services .serviceDetails .socialBlock .smsIcon:last-child {
  margin-right: 0%;
}
.services .serviceDetails .socialBlock .fbIcon .iconSign,
.services .serviceDetails .socialBlock .slackIcon .iconSign,
.services .serviceDetails .socialBlock .smsIcon .iconSign {
  display: table;
  width: 100%;
  padding-top: 120px;
}
.services .serviceDetails .socialBlock .fbIcon .iconSign p,
.services .serviceDetails .socialBlock .slackIcon .iconSign p,
.services .serviceDetails .socialBlock .smsIcon .iconSign p {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  font-weight: 500;
  line-height: 1.7rem;
}
.services .serviceDetails .row35,
.services .serviceDetails .row65 {
  float: left;
}
.services .serviceDetails .row35 {
  width: 35%;
}
.services .serviceDetails .row35 .image-container {
  margin-right: 80px;
}
.services .serviceDetails .row65 {
  width: 65%;
}
.services .serviceDetails ul {
  padding: 0 0 31px;
}
.services .serviceDetails ul li {
  padding: 0 15px 6px;
  list-style-type: none;
  font-size: 1.313rem;
  color: #222;
  line-height: 2.313rem;
  position: relative;
}
.services .serviceDetails ul li:before {
  color: #0b82c9;
  content: "\2022";
  position: absolute;
  left: 0px;
}
.services .serviceDetails p {
  color: #222;
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 2.313rem;
  padding: 0 0 12px;
}
.services .serviceDetails p .link {
  text-decoration: none;
  color: #4a90e2;
  position: relative;
  text-decoration: none;
}
.services .serviceDetails p .link:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #4a90e2;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.services .serviceDetails p .link:hover:after,
.services .serviceDetails p .link.hovered:after {
  height: 2px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}
.services .serviceDetails p .link.hovered:hover:after {
  height: 2px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.services .serviceDetails .image-container {
  margin: 0 0 31px 0;
}
.services .serviceDetails .image-container img {
  width: 100%;
  display: block;
  margin: 0 auto;
}
.services .serviceDetails .image-container img.small {
  max-width: 280px;
}
@media only screen and (max-width: 768px) {
  .services .serviceDetails {
    padding: 335px 0 0 0;
  }
  .services .serviceDetails .desc-h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.875rem;
    padding: 20px 15px;
  }
  .services .serviceDetails .chatbot {
    font-size: 1.313rem;
    padding: 40px 20px 30px 20px;
  }
  .services .serviceDetails .aospBlock img {
    width: 260px;
    margin-left: -30px;
  }
  .services .serviceDetails .btn .downloadButton {
    font-size: 1.5rem;
    padding: 10px 12px;
  }
  .services .serviceDetails .comment {
    padding: 0px 40px 0 50px;
  }
  .services .serviceDetails .comment .feedback {
    font-size: 1.4rem;
    line-height: 2.1rem;
  }
  .services .serviceDetails .comment .feedbackSign .feedbackOwner {
    font-size: 0.8rem;
    line-height: 1rem;
  }
  .services .serviceDetails .comment .feedbackSign .feedbackDate {
    font-size: 0.7rem;
    line-height: 1rem;
  }
  .services .serviceDetails .toolkit .tool {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
  }
  .services .serviceDetails .toolkit .tool:first-child {
    margin-left: auto;
  }
  .services .serviceDetails .toolkit .tool:last-child {
    margin-right: auto;
  }
  .services .serviceDetails .toolkit .tool img {
    float: none;
    padding: 0;
    margin: auto;
    display: block;
  }
  .services .serviceDetails .toolkit .tool .table {
    margin: auto;
    text-align: center;
    padding: 0;
  }
  .services .serviceDetails .toolkit .tool .table .tableBlock {
    height: 100%;
    padding: 22px 0 40px 0;
  }
  .services .serviceDetails .toolkit .tool .table .tableBlock a {
    font-size: 1rem;
  }
  .services .serviceDetails .socialBlock {
    height: 100%;
  }
  .services .serviceDetails .socialBlock .fbIcon,
  .services .serviceDetails .socialBlock .slackIcon,
  .services .serviceDetails .socialBlock .smsIcon {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-position: center top;
    height: 190px;
  }
  .services .serviceDetails .socialBlock .fbIcon:first-child,
  .services .serviceDetails .socialBlock .slackIcon:first-child,
  .services .serviceDetails .socialBlock .smsIcon:first-child {
    margin-left: auto;
  }
  .services .serviceDetails .socialBlock .fbIcon:last-child,
  .services .serviceDetails .socialBlock .slackIcon:last-child,
  .services .serviceDetails .socialBlock .smsIcon:last-child {
    margin-right: auto;
  }
  .services .serviceDetails .socialBlock .fbIcon .iconSign,
  .services .serviceDetails .socialBlock .slackIcon .iconSign,
  .services .serviceDetails .socialBlock .smsIcon .iconSign {
    padding-top: 100px;
  }
  .services .serviceDetails .socialBlock .fbIcon .iconSign p,
  .services .serviceDetails .socialBlock .slackIcon .iconSign p,
  .services .serviceDetails .socialBlock .smsIcon .iconSign p {
    line-height: 1.5rem;
    font-size: 1.1rem;
  }
  .services .serviceDetails .row35,
  .services .serviceDetails .row65 {
    width: 100%;
    float: none;
  }
  .services .serviceDetails .row35 .image-container,
  .services .serviceDetails .row65 .image-container {
    margin-right: 0;
    text-align: center;
  }
  .services .serviceDetails .row35 .image-container img,
  .services .serviceDetails .row65 .image-container img {
    max-width: 150px;
  }
  .services .serviceDetails .desc-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.875rem;
  }
  .services .serviceDetails .talk-block {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.875rem;
  }
  .services .serviceDetails .talk-block .ico {
    display: block;
    margin: 0 0 14px 0;
  }
  .services .serviceDetails p,
  .services .serviceDetails ul li {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
  }
}
.serviceTypes {
  padding: 20px 0 0 0;
  text-align: left;
  margin-bottom: 46px;
}
.serviceTypes .serviceOverflow {
  padding: 0 29px;
  overflow-x: hidden;
}
.serviceTypes .serviceOverflow .desc-title {
  color: #222;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.5rem;
  padding: 0 0 31px;
}
.serviceTypes .serviceOverflow hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 2px solid #ddf1f9;
  margin: 1em 0;
  padding: 0;
}
.serviceTypes .serviceOverflow p {
  font-size: 1.313rem;
  line-height: 1.9rem;
  padding-bottom: 8px;
}
.serviceTypes .serviceOverflow .miniBlock {
  position: relative;
  margin: 60px 0;
  height: 438px;
  clear: both;
}
.serviceTypes .serviceOverflow .miniBlock .leftBlock {
  float: left;
}
.serviceTypes .serviceOverflow .miniBlock .rightBlock {
  float: right;
}
.serviceTypes .serviceOverflow .miniBlock .leftMargin {
  margin-left: -140px;
}
.serviceTypes .serviceOverflow .miniBlock .rightMargin {
  margin-right: -140px;
}
.serviceTypes .serviceOverflow .miniBlock .imgBlock {
  position: relative;
  height: 438px;
  width: 100%;
  max-width: 500px;
  background-repeat: no-repeat;
}
.serviceTypes .serviceOverflow .miniBlock .textBlock {
  max-width: 550px;
  display: table;
}
.serviceTypes .serviceOverflow .miniBlock .textBlock .tableBlock {
  display: table-cell;
  vertical-align: middle;
  height: 438px;
}
.serviceTypes .serviceOverflow .miniBlock .textBlock .tableBlock h3 {
  font-size: 2.2rem;
  margin-bottom: 30px;
  line-height: 2.7rem;
}
@media only screen and (max-width: 960px) {
  .serviceTypes .serviceOverflow .miniBlock {
    height: 100%;
    margin: 10px 0;
  }
  .serviceTypes .serviceOverflow .miniBlock .leftBlock,
  .serviceTypes .serviceOverflow .miniBlock .rightBlock {
    float: none;
  }
  .serviceTypes .serviceOverflow .miniBlock .leftMargin,
  .serviceTypes .serviceOverflow .miniBlock .rightMargin {
    margin: auto;
  }
  .serviceTypes .serviceOverflow .miniBlock .imgBlock {
    height: 100%;
    display: block;
  }
  .serviceTypes .serviceOverflow .miniBlock .textBlock {
    padding-top: 50px;
    margin: auto;
  }
  .serviceTypes .serviceOverflow .miniBlock .textBlock .tableBlock {
    height: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .serviceTypes .serviceOverflow {
    padding: 0;
  }
  .serviceTypes .serviceOverflow p {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
  }
  .serviceTypes .serviceOverflow .desc-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.875rem;
    padding: 20px 15px;
  }
  .serviceTypes .serviceOverflow .miniBlock .textBlock .tableBlock {
    padding: 0 29px;
  }
  .serviceTypes .serviceOverflow .miniBlock .textBlock .tableBlock h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 2rem;
  }
}
.approach {
  padding: 0 29px;
  background-color: #f3f6f8;
  margin-top: 140px;
  padding-bottom: 60px;
}
.approach .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 960px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.approach .wrapper:before,
.approach .wrapper:after {
  content: "";
  display: table;
}
.approach .wrapper:after {
  clear: both;
}
.approach .wrapper h3 {
  color: #222;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.5rem;
  padding: 0 0 118px 0;
  text-align: left;
  margin-top: -67px;
}
@media only screen and (max-width: 768px) {
  .approach .wrapper h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.875rem;
    margin-top: -56px;
  }
}
.approach .wrapper .approachContainer .approach-item {
  float: left;
  width: 25%;
  text-align: center;
}
.approach .wrapper .approachContainer .apprch_i {
  max-width: 140px;
  margin: 0 auto;
  margin-bottom: 25px;
}
.approach .wrapper .approachContainer .apprch_i img {
  width: 100%;
}
.approach .wrapper .approachContainer .apprch_ttl {
  color: #222;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 2.125rem;
}
@media only screen and (max-width: 768px) {
  .approach .wrapper .approachContainer .approach-item {
    width: 100%;
    text-align: left;
    float: none;
    margin-bottom: 25px;
  }
  .approach .wrapper .approachContainer .approach-item:after {
    content: "";
    display: block;
    clear: both;
  }
  .approach .wrapper .approachContainer .approach-item .apprch_i,
  .approach .wrapper .approachContainer .approach-item .apprch_ttl {
    display: inline-block;
    vertical-align: middle;
  }
  .approach .wrapper .approachContainer .approach-item .apprch_i {
    width: 30%;
    margin-bottom: 0;
  }
  .approach .wrapper .approachContainer .approach-item .apprch_ttl {
    padding: 0 0 0 10px;
    position: relative;
    height: 100%;
    width: 65%;
  }
}
.projectLinks {
  padding-bottom: 130px;
}
.projectLinks .projectLinksTitle {
  padding: 0 29px;
}
.projectLinks .projectLinksTitle .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 960px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.projectLinks .projectLinksTitle .wrapper:before,
.projectLinks .projectLinksTitle .wrapper:after {
  content: "";
  display: table;
}
.projectLinks .projectLinksTitle .wrapper:after {
  clear: both;
}
.projectLinks .projectLinksTitle .wrapper h3 {
  color: #222;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.5rem;
  padding: 0 0 26px 0;
  text-align: left;
  margin-top: -67px;
}
@media only screen and (max-width: 768px) {
  .projectLinks .projectLinksTitle .wrapper h3 {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.875rem;
    margin-top: -56px;
  }
}
.talk-block {
  background-color: #208ac9;
  padding: 73px 0;
  font-size: 2.375rem;
  font-weight: 700;
  line-height: 2.5rem;
  margin: 40px 0 80px 0;
  text-align: center;
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #fff;
}
.talk-block:hover {
  background-color: #076eab;
}
.talk-block a {
  text-decoration: none;
  color: #fff;
}
.talk-block .ico {
  vertical-align: middle;
  font-size: 55px;
  margin-right: 34px;
}
@media only screen and (max-width: 768px) {
  .talk-block {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.875rem;
    padding: 48px 0;
  }
  .talk-block .ico {
    display: block;
    margin: 0 0 14px 0;
    font-size: 35px !important;
  }
}
@media only screen and (min-width: 520px) and (max-width: 860px) {
  .additionalLaying {
    background-color: #f7f7f7;
    height: 120px;
  }
}
.notFound {
  position: relative;
  height: 96vh;
  background: url(/assets/images/404.jpg) bottom center no-repeat;
  background-size: cover;
  min-height: 350px;
  padding-bottom: 700px;
}
.notFound .wrapper {
  position: absolute;
  width: 100%;
  padding: 0 25px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.notFound .wrapper .title {
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1.17;
  margin: 0 5px;
}
@media only screen and (max-width: 768px) {
  .notFound .wrapper .title {
    font-size: 2.3rem;
  }
}
.notFound .wrapper .description {
  padding-top: 25px;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.25;
  max-width: 525px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .notFound .wrapper .description {
    font-size: 1rem;
  }
}
.notFound .wrapper .contactBtn {
  width: 230px;
  height: 60px;
  position: relative;
  float: left;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  font-size: 1.25em;
  font-weight: 400;
  margin: 60px 0 0;
  padding: 20px 0;
  color: #545453;
  background-color: #ffd007;
  text-decoration: none;
  border-radius: 6px;
  line-height: 1;
  -webkit-transition: background-color 0.2s ease-in-out,
    opacity 0.7s ease-in-out;
  transition: background-color 0.2s ease-in-out, opacity 0.7s ease-in-out;
}
.notFound .wrapper .contactBtn:after {
  content: "";
  display: block;
  clear: both;
}
.notFound .wrapper .contactBtn:hover {
  background-color: #ffc100;
}
.ColleaguesBlock {
  padding: 98px 40px;
}
.ColleaguesBlock .persone-item.new {
  opacity: 0;
}
.ColleaguesBlock .max .persone-item.new {
  opacity: 1;
}
.ColleaguesBlock .btn-container {
  text-align: center;
}
.ColleaguesBlock .btn-container .staff-btn {
  color: #4a90e2;
  font-size: 1.375rem;
  font-weight: 400;
  line-height: 3.313rem;
  text-decoration: none;
  vertical-align: middle;
}
.ColleaguesBlock .btn-container .staff-btn:hover {
  color: #69a9f4;
}
.ColleaguesBlock .aw-ico {
  font-family: FontAwesome;
  text-rendering: auto;
  margin: 0 0 0 5px;
  font-style: normal;
  font-size: 1.75rem;
  line-height: 1.75rem;
}
.ColleaguesBlock .aw-ico.up:before {
  content: "\F106";
}
.ColleaguesBlock .aw-ico.down:before {
  content: "\F107";
}
@media only screen and (max-width: 960px) {
  .ColleaguesBlock {
    padding: 37px 20px;
  }
}
@media only screen and (max-width: 768px) {
  .ColleaguesBlock {
    padding: 37px 40px;
  }
  .ColleaguesBlock .colleague-item {
    width: 100%;
    display: block;
  }
  .ColleaguesBlock .colleague-avatar {
    float: none;
    margin: 0 auto 15px;
  }
  .ColleaguesBlock .colleague-details {
    padding: 0;
    text-align: center;
    display: block;
    height: auto;
  }
}
.galleryBlock {
  text-align: center;
  position: relative;
}
.galleryBlock .clear {
  height: 0;
  padding: 0;
  margin: 0;
}
.galleryBlock .gallery-item {
  float: left;
}
.galleryBlock .gallery-item .inner {
  background-size: cover;
  background-position: center;
  margin: 2px;
}
.galleryBlock .first-line .gallery-item {
  width: 20%;
  height: 217px;
}
.galleryBlock .first-line .gallery-item .inner {
  height: 213px;
}
.galleryBlock .second-line .gallery-item {
  width: 30%;
  height: 348px;
}
.galleryBlock .second-line .gallery-item .inner {
  height: 344px;
}
.galleryBlock .second-line .gallery-item:first-child {
  width: 10%;
}
@media only screen and (max-width: 1440px) {
  .galleryBlock .first-line .gallery-item {
    width: 25%;
  }
  .galleryBlock .first-line .gallery-item:last-child {
    display: none;
  }
}
@media only screen and (max-width: 1440px) {
  .galleryBlock .second-line .gallery-item {
    width: 40%;
  }
  .galleryBlock .second-line .gallery-item:first-child {
    width: 20%;
  }
  .galleryBlock .second-line .gallery-item:last-child {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .galleryBlock .first-line .gallery-item {
    width: 50%;
  }
}
@media only screen and (max-width: 768px) {
  .galleryBlock .second-line .gallery-item {
    width: 70%;
  }
  .galleryBlock .second-line .gallery-item:first-child {
    width: 30%;
  }
  .galleryBlock .second-line .gallery-item:nth-child(3) {
    width: 100%;
  }
}
@media only screen and (max-width: 320px) {
  .galleryBlock .first-line .gallery-item {
    height: 120px;
  }
  .galleryBlock .first-line .gallery-item .inner {
    height: 116px;
  }
}
@media only screen and (max-width: 320px) {
  .galleryBlock .second-line .gallery-item {
    height: 160px;
  }
  .galleryBlock .second-line .gallery-item .inner {
    height: 156px;
  }
}
.OurWorkBlock {
  color: #fff;
}
.OurWorkBlock .header {
  background: url(/assets/images/works-bg.jpg) bottom center no-repeat;
  background-size: cover;
  min-height: 350px;
}
.OurWorkBlock .header__title {
  text-align: center;
  font-size: 3.75rem;
  font-weight: 500;
  padding-top: 165px;
}
@media only screen and (max-width: 768px) {
  .OurWorkBlock .header__title {
    font-size: 1.875rem;
  }
}
.OurWorkBlock .worksWrapper {
  padding: 60px 10px 130px;
  background-color: #fafafa;
}
@media only screen and (max-width: 768px) {
  .OurWorkBlock .worksWrapper {
    padding: 30px 10px;
  }
}
.OurWorkBlock .work {
  max-width: 1040px;
  margin: 0 auto 30px;
  height: 360px;
  background: bottom center no-repeat;
  background-size: cover;
  cursor: pointer;
  border-radius: 6px;
}
.OurWorkBlock .work:hover {
  -webkit-box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 0px 10px 1px rgba(0, 0, 0, 0.3);
}
.OurWorkBlock .work:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .OurWorkBlock .work {
    margin-bottom: 15px;
    height: 250px;
  }
}
.OurWorkBlock .work .text-wrapper {
  position: relative;
  padding: 80px 10px 45px 53%;
}
@media only screen and (max-width: 768px) {
  .OurWorkBlock .work .text-wrapper {
    padding: 45px 10px 25px 53%;
    font-size: 1.5rem;
    width: 100px;
  }
}
.OurWorkBlock .work .text-wrapper .title {
  font-size: 3.125rem;
  font-weight: 100;
  line-height: 1;
  width: 290px;
}
@media only screen and (max-width: 768px) {
  .OurWorkBlock .work .text-wrapper .title {
    font-size: 1.4rem;
    width: 100px;
  }
}
.OurWorkBlock .work .text-wrapper .description {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.25;
  padding-top: 90px;
  width: 290px;
}
@media only screen and (max-width: 768px) {
  .OurWorkBlock .work .text-wrapper .description {
    font-size: 1rem;
  }
}
.OurWorkBlock .work .text-wrapper .description:after {
  content: "";
  position: absolute;
  bottom: 57px;
  right: 5%;
  width: 12px;
  height: 28px;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz4KPHN2ZyB3aWR0aD0iMTJweCIgaGVpZ2h0PSIyOHB4IiB2aWV3Qm94PSIwIDAgMTIgMjgiIHZlcnNpb249IjEuMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+CiAgICA8IS0tIEdlbmVyYXRvcjogU2tldGNoIDUxLjMgKDU3NTQ0KSAtIGh0dHA6Ly93d3cuYm9oZW1pYW5jb2RpbmcuY29tL3NrZXRjaCAtLT4KICAgIDx0aXRsZT5QYXRoIDM8L3RpdGxlPgogICAgPGRlc2M+Q3JlYXRlZCB3aXRoIFNrZXRjaC48L2Rlc2M+CiAgICA8ZGVmcz48L2RlZnM+CiAgICA8ZyBpZD0iUGFnZS0xIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIj4KICAgICAgICA8ZyBpZD0iVUNTLTM0NDYtd29ya3MtdG91Y2giIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xMDU0LjAwMDAwMCwgLTE0NjcuMDAwMDAwKSIgc3Ryb2tlPSIjRkZGRkZGIj4KICAgICAgICAgICAgPGcgaWQ9ImRyb3Bkb3duLWNvcHktOCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTA2MC4wMDAwMDAsIDE0ODAuNTAwMDAwKSByb3RhdGUoLTkwLjAwMDAwMCkgdHJhbnNsYXRlKC0xMDYwLjAwMDAwMCwgLTE0ODAuNTAwMDAwKSB0cmFuc2xhdGUoMTA0Ni4wMDAwMDAsIDE0NzUuMDAwMDAwKSI+CiAgICAgICAgICAgICAgICA8cG9seWxpbmUgaWQ9IlBhdGgtMyIgcG9pbnRzPSIyNy41IDAgMTMuNzUgMTAuNzUgLTEuMjA2ODEyNDNlLTEzIDAiPjwvcG9seWxpbmU+CiAgICAgICAgICAgIDwvZz4KICAgICAgICA8L2c+CiAgICA8L2c+Cjwvc3ZnPg==);
  transition: right 0.5s, left 0.5s;
}
@media only screen and (max-width: 768px) {
  .OurWorkBlock .work .text-wrapper .description:after {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .OurWorkBlock .work .text-wrapper .description {
    padding-top: 20px;
    width: 135px;
    font-size: 14px;
  }
}
.OurWorkBlock .work:nth-of-type(even) .text-wrapper {
  padding: 80px 10px 45px 3%;
}
@media only screen and (max-width: 768px) {
  .OurWorkBlock .work:nth-of-type(even) .text-wrapper {
    padding: 45px 10px 25px 3%;
    width: inherit;
  }
}
.OurWorkBlock .work:hover .description:after {
  right: 4%;
}
.OurWorkBlock .work:nth-of-type(even) .description:after {
  right: initial;
  left: 43%;
}
.OurWorkBlock .work:nth-of-type(even):hover .description:after {
  left: 44%;
}
.OurWorkBlock .work:nth-of-type(2) .title {
  width: 305px;
}
@media only screen and (max-width: 768px) {
  .OurWorkBlock .work:nth-of-type(2) .title {
    width: 100px;
  }
}
.projectBlock .sliderBlock {
  padding: 0 29px;
  height: auto;
  margin-top: 41px;
  margin-bottom: 55px;
}
.projectBlock .sliderBlock .slide {
  height: auto;
}
.projectBlock .sliderBlock .miniBlock {
  display: none;
  position: relative;
}
.projectBlock .sliderBlock .activeBlock {
  display: block;
}
.projectBlock .mainBlock {
  background-size: cover;
  color: #fff;
  background-position: center bottom;
  background-color: #000;
}
.projectBlock .mainBlock .fade {
  height: 680px;
  background-color: rgba(0, 0, 0, 0.35);
  padding: 0 29px;
}
.projectBlock .mainBlock .back {
  padding: 140px 0 0 0;
}
.projectBlock .mainBlock .vertical {
  display: table-cell;
  width: 12000px;
  height: 449px;
  vertical-align: middle;
}
.projectBlock .mainBlock .title {
  font-size: 3.75rem;
  font-weight: 700;
  line-height: 4.375rem;
  color: #fff;
  padding: 0 0 17px 0;
  text-transform: uppercase;
  max-width: 60%;
}
.projectBlock .mainBlock .desc {
  font-size: 1.438rem;
  font-weight: 700;
  line-height: 1.875rem;
  color: #fff;
  max-width: 65%;
}
@media only screen and (max-width: 768px) {
  .projectBlock .mainBlock .fade {
    height: 470px;
  }
  .projectBlock .mainBlock .vertical {
    height: 319px;
  }
  .projectBlock .mainBlock .back {
    padding: 100px 0 0 0;
  }
  .projectBlock .mainBlock .title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 2.9rem;
    padding: 0 0 12px 0;
  }
  .projectBlock .mainBlock .desc {
    font-size: 1.375rem;
    font-weight: 500;
    line-height: 1.625rem;
  }
}
@media only screen and (max-width: 600px) {
  .projectBlock .mainBlock {
    text-align: center;
  }
  .projectBlock .mainBlock .title {
    max-width: 100%;
  }
  .projectBlock .mainBlock .desc {
    max-width: 90%;
  }
}
.projectBlock .project-description {
  padding: 0 29px;
}
.projectBlock .project-description .goal .title,
.projectBlock .project-description .solution .title {
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.5rem;
  color: #222;
  padding: 0 0 23px 0;
}
.projectBlock .project-description .goal p,
.projectBlock .project-description .solution p {
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 2.313rem;
  color: #222;
  padding: 0 0 10px 0;
}
.projectBlock .project-description .goal ul ul,
.projectBlock .project-description .solution ul ul {
  padding: 10px 20px;
}
.projectBlock .project-description .goal ul li,
.projectBlock .project-description .solution ul li {
  padding: 0 15px 6px;
  list-style-type: none;
  font-size: 1.313rem;
  color: #222;
  line-height: 2.313rem;
  position: relative;
}
.projectBlock .project-description .goal ul li:before,
.projectBlock .project-description .solution ul li:before {
  color: #0b82c9;
  content: "\2022";
  position: absolute;
  left: 0px;
}
.projectBlock .project-description .goal {
  padding: 67px 0 40px 0;
}
.projectBlock .project-description .solution {
  padding: 0 0 50px 0;
}
.projectBlock .project-description .mainImage {
  padding: 40px 0 80px 0;
}
.projectBlock .project-description .descImage {
  padding: 40px 0 0 0;
}
.LinksBlock {
  padding: 0 29px 40px 29px;
}
@media only screen and (max-width: 768px) {
  .LinksBlock {
    text-align: center;
  }
}
.LinksBlock .link-item {
  display: inline-block;
  color: #208ac9;
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.688rem;
  vertical-align: top;
  margin-right: 14px;
  background: url(/assets/images/socials.png) no-repeat;
  background-size: 597px;
  width: 194px;
  height: 65px;
  margin: 0 11px 10px 0;
}
.LinksBlock .link-item.webSite {
  background: none;
  float: right;
  text-decoration: none;
  height: auto;
  width: auto;
  padding: 20px 0 0 0;
  width: 100%;
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  position: relative;
  text-decoration: none;
}
.LinksBlock .link-item.webSite:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #208ac9;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.LinksBlock .link-item.webSite:hover:after,
.LinksBlock .link-item.webSite.hovered:after {
  height: 2px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}
.LinksBlock .link-item.webSite.hovered:hover:after {
  height: 2px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
@media only screen and (max-width: 768px) {
  .LinksBlock .link-item.webSite {
    float: none;
    padding: 20px 0 0 0;
  }
}
.LinksBlock .link-item.google {
  background-position: -203px -75px;
}
.LinksBlock .link-item.google:hover {
  background-position: -203px 1px;
}
.LinksBlock .link-item.appStore {
  background-position: 0 -75px;
}
.LinksBlock .link-item.appStore:hover {
  background-position: 0 1px;
}
.LinksBlock .link-item.pebble {
  background-position: -405px -75px;
}
.LinksBlock .link-item.pebble:hover {
  background-position: -405px 1px;
}
.EmbeddedAndroid .mainBlock {
  position: relative;
  background: url(/assets/images/cover-embedded-android.jpg) no-repeat 0 0;
  background-size: 1440px auto;
  height: 527px;
  width: 1440px;
  background-size: cover;
  height: 680px;
  max-height: 96vh;
  min-height: 400px;
  margin: 0 0 70px;
  width: 100%;
  color: #fff;
  text-align: center;
}
.EmbeddedAndroid .mainBlock .fade {
  background-color: rgba(32, 138, 255, 0.55);
  height: 680px;
  max-height: 96vh;
  min-height: 400px;
}
.EmbeddedAndroid .mainBlock .fade .center-block {
  position: absolute;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.EmbeddedAndroid .mainBlock .fade .center-block h1 {
  font-size: 3.75em;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .EmbeddedAndroid .mainBlock .fade .center-block h1 {
    font-size: 2.5em;
    font-weight: 700;
  }
}
.EmbeddedAndroid .mainBlock .down-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 46px;
  height: 23px;
  background-color: #fff;
  -webkit-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NS45IDIyLjYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjkgMjIuNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KDQoJIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJIAkuc3Qwe2ZpbGw6I2ZmZmZmZjt9DQoJIDwvc3R5bGU+DQoNCg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTIyLjcsMjIuMWMtMC40LDAtMC44LTAuMS0xLjEtMC40TDMsMy4xQzIuNCwyLjUsMi40LDEuNSwzLDAuOWMwLjYtMC42LDEuNS0wLjYsMi4xLDBsMTcuNSwxNy41TDQwLjgsMC40DQoJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCg0KPGRlZnM+DQoNCgk8bWFzayBpZD0ibWFzayI+DQoJCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMi43LDIyLjFjLTAuNCwwLTAuOC0wLjEtMS4xLTAuNEwzLDMuMUMyLjQsMi41LDIuNCwxLjUsMywwLjljMC42LTAuNiwxLjUtMC42LDIuMSwwbDE3LjUsMTcuNUw0MC44LDAuNA0KCQkJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCgk8L21hc2s+DQoNCjwvZGVmcz4NCg0KPC9zdmc+DQo=)
    no-repeat;
  mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NS45IDIyLjYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjkgMjIuNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KDQoJIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJIAkuc3Qwe2ZpbGw6I2ZmZmZmZjt9DQoJIDwvc3R5bGU+DQoNCg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTIyLjcsMjIuMWMtMC40LDAtMC44LTAuMS0xLjEtMC40TDMsMy4xQzIuNCwyLjUsMi40LDEuNSwzLDAuOWMwLjYtMC42LDEuNS0wLjYsMi4xLDBsMTcuNSwxNy41TDQwLjgsMC40DQoJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCg0KPGRlZnM+DQoNCgk8bWFzayBpZD0ibWFzayI+DQoJCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMi43LDIyLjFjLTAuNCwwLTAuOC0wLjEtMS4xLTAuNEwzLDMuMUMyLjQsMi41LDIuNCwxLjUsMywwLjljMC42LTAuNiwxLjUtMC42LDIuMSwwbDE3LjUsMTcuNUw0MC44LDAuNA0KCQkJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCgk8L21hc2s+DQoNCjwvZGVmcz4NCg0KPC9zdmc+DQo=#mask);
  animation-duration: 2s;
}
.EmbeddedAndroid .mainBlock .down-arrow.bounce-arrow {
  -webkit-animation: bounce-arrow 0.5s ease-in-out infinite alternate;
  -moz-animation: bounce-arrow 0.5s ease-in-out infinite alternate;
  -o-animation: bounce-arrow 0.5s ease-in-out infinite alternate;
  animation: bounce-arrow 0.5s ease-in-out infinite alternate;
}
@-moz-keyframes bounce-arrow {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
@-webkit-keyframes bounce-arrow {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
@-o-keyframes bounce-arrow {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
@keyframes bounce-arrow {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
.EmbeddedAndroid .EmbeddedAndroidInner {
  padding: 0 29px;
}
.EmbeddedAndroid .EmbeddedAndroidInner a {
  color: #208ac9;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4rem;
  display: inline-block;
  text-decoration: none;
  position: relative;
  text-decoration: none;
}
.EmbeddedAndroid .EmbeddedAndroidInner a:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #40a5e1;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.EmbeddedAndroid .EmbeddedAndroidInner a:hover:after,
.EmbeddedAndroid .EmbeddedAndroidInner a.hovered:after {
  height: 2px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}
.EmbeddedAndroid .EmbeddedAndroidInner a.hovered:hover:after {
  height: 2px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
@media only screen and (max-width: 768px) {
  .EmbeddedAndroid .EmbeddedAndroidInner a {
    line-height: 1.6rem;
  }
}
.EmbeddedAndroid .EmbeddedAndroidInner p {
  color: #222;
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 2.313rem;
  padding: 0 0 35px;
}
.EmbeddedAndroid .EmbeddedAndroidInner h3 {
  color: #222;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.6rem;
  padding: 10px 29px 30px 0;
}
.EmbeddedAndroid .EmbeddedAndroidInner ul {
  padding: 0 0 35px 14px;
}
.EmbeddedAndroid .EmbeddedAndroidInner ul li {
  padding: 0 15px 6px 20px;
  list-style-type: none;
  font-size: 1.313rem;
  color: #222;
  line-height: 2.313rem;
  position: relative;
}
.EmbeddedAndroid .EmbeddedAndroidInner ul li:before {
  color: #0b82c9;
  content: "\2022";
  position: absolute;
  left: 0px;
}
.ChatBotsGuide .mainBlock {
  position: relative;
  background: url(/assets/images/chat-bots-main.jpg) no-repeat 0 0;
  background-size: 1440px auto;
  height: 527px;
  width: 1440px;
  background-size: cover;
  height: 680px;
  max-height: 96vh;
  min-height: 400px;
  margin: 0 0 70px;
  width: 100%;
  color: #fff;
  text-align: center;
}
.ChatBotsGuide .mainBlock .fade {
  background-color: rgba(32, 138, 255, 0.55);
  height: 680px;
  max-height: 96vh;
  min-height: 400px;
}
.ChatBotsGuide .mainBlock .fade .center-block {
  position: absolute;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  top: 55%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.ChatBotsGuide .mainBlock .fade .center-block h1 {
  font-size: 3.75em;
  font-weight: 700;
  line-height: 120%;
  color: #fff;
  margin-left: 5px;
  margin-right: 5px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .ChatBotsGuide .mainBlock .fade .center-block h1 {
    font-size: 2.5em;
    font-weight: 700;
  }
}
.ChatBotsGuide .mainBlock .down-arrow {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 46px;
  height: 23px;
  background-color: #fff;
  -webkit-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NS45IDIyLjYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjkgMjIuNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KDQoJIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJIAkuc3Qwe2ZpbGw6I2ZmZmZmZjt9DQoJIDwvc3R5bGU+DQoNCg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTIyLjcsMjIuMWMtMC40LDAtMC44LTAuMS0xLjEtMC40TDMsMy4xQzIuNCwyLjUsMi40LDEuNSwzLDAuOWMwLjYtMC42LDEuNS0wLjYsMi4xLDBsMTcuNSwxNy41TDQwLjgsMC40DQoJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCg0KPGRlZnM+DQoNCgk8bWFzayBpZD0ibWFzayI+DQoJCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMi43LDIyLjFjLTAuNCwwLTAuOC0wLjEtMS4xLTAuNEwzLDMuMUMyLjQsMi41LDIuNCwxLjUsMywwLjljMC42LTAuNiwxLjUtMC42LDIuMSwwbDE3LjUsMTcuNUw0MC44LDAuNA0KCQkJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCgk8L21hc2s+DQoNCjwvZGVmcz4NCg0KPC9zdmc+DQo=)
    no-repeat;
  mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NS45IDIyLjYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjkgMjIuNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KDQoJIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJIAkuc3Qwe2ZpbGw6I2ZmZmZmZjt9DQoJIDwvc3R5bGU+DQoNCg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTIyLjcsMjIuMWMtMC40LDAtMC44LTAuMS0xLjEtMC40TDMsMy4xQzIuNCwyLjUsMi40LDEuNSwzLDAuOWMwLjYtMC42LDEuNS0wLjYsMi4xLDBsMTcuNSwxNy41TDQwLjgsMC40DQoJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCg0KPGRlZnM+DQoNCgk8bWFzayBpZD0ibWFzayI+DQoJCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMi43LDIyLjFjLTAuNCwwLTAuOC0wLjEtMS4xLTAuNEwzLDMuMUMyLjQsMi41LDIuNCwxLjUsMywwLjljMC42LTAuNiwxLjUtMC42LDIuMSwwbDE3LjUsMTcuNUw0MC44LDAuNA0KCQkJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCgk8L21hc2s+DQoNCjwvZGVmcz4NCg0KPC9zdmc+DQo=#mask);
  animation-duration: 2s;
}
.ChatBotsGuide .mainBlock .down-arrow.bounce-arrow {
  -webkit-animation: bounce-arrow 0.5s ease-in-out infinite alternate;
  -moz-animation: bounce-arrow 0.5s ease-in-out infinite alternate;
  -o-animation: bounce-arrow 0.5s ease-in-out infinite alternate;
  animation: bounce-arrow 0.5s ease-in-out infinite alternate;
}
@-moz-keyframes bounce-arrow {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
@-webkit-keyframes bounce-arrow {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
@-o-keyframes bounce-arrow {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
@keyframes bounce-arrow {
  0% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
.ChatBotsGuide .ChatBotsGuideInner {
  padding: 0 29px;
}
.ChatBotsGuide .ChatBotsGuideInner a {
  color: #208ac9;
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4rem;
  display: inline-block;
  text-decoration: none;
  position: relative;
  text-decoration: none;
}
.ChatBotsGuide .ChatBotsGuideInner a:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #40a5e1;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.ChatBotsGuide .ChatBotsGuideInner a:hover:after,
.ChatBotsGuide .ChatBotsGuideInner a.hovered:after {
  height: 2px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}
.ChatBotsGuide .ChatBotsGuideInner a.hovered:hover:after {
  height: 2px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
@media only screen and (max-width: 768px) {
  .ChatBotsGuide .ChatBotsGuideInner a {
    line-height: 1.6rem;
  }
}
.ChatBotsGuide .ChatBotsGuideInner p {
  color: #222;
  font-size: 1.313rem;
  font-weight: 400;
  line-height: 2.313rem;
  padding: 0 0 35px;
}
.ChatBotsGuide .ChatBotsGuideInner h3 {
  color: #222;
  font-size: 2.125rem;
  font-weight: 700;
  line-height: 2.6rem;
  padding: 10px 29px 30px 0;
}
.ChatBotsGuide .ChatBotsGuideInner ul {
  padding: 0 0 35px 14px;
}
.ChatBotsGuide .ChatBotsGuideInner ul li {
  padding: 0 15px 6px 20px;
  list-style-type: none;
  font-size: 1.313rem;
  color: #222;
  line-height: 2.313rem;
  position: relative;
}
.ChatBotsGuide .ChatBotsGuideInner ul li:before {
  color: #0b82c9;
  content: "\2022";
  position: absolute;
  left: 0px;
}
.letsTalk {
  background-image: url(/assets/d3aa10f/img/office-hours.jpg);
  background-size: cover;
  min-height: 520px;
  width: 100%;
  margin: 0 0 100px 0;
}
@media only screen and (max-width: 768px) {
  .letsTalk {
    min-height: initial;
  }
}
.letsTalk--service {
  background-image: url(/assets/images/office-hours-service.jpg);
  min-height: 380px;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .letsTalk--service {
    min-height: initial;
  }
}
.letsTalk--service .wrapper .title {
  padding-top: 95px;
}
.letsTalk .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  color: #fff;
  text-align: center;
}
.letsTalk .wrapper:before,
.letsTalk .wrapper:after {
  content: "";
  display: table;
}
.letsTalk .wrapper:after {
  clear: both;
}
.letsTalk .wrapper .title {
  font-size: 3.75rem;
  font-weight: 500;
  padding-top: 100px;
  max-width: 950px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .letsTalk .wrapper .title {
    padding-top: 50px;
    font-size: 2.5rem;
  }
}
.letsTalk .wrapper .applyButton {
  border-radius: 10px;
  font-size: 1.25rem;
  font-weight: 500;
  display: inline-block;
  padding: 20px 35px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  line-height: 0.7;
  margin: 45px 0 50px;
  color: #545453;
  background-color: #ffd007;
  border: none;
  width: 290px;
}
@media only screen and (max-width: 768px) {
  .letsTalk .wrapper .applyButton {
    margin-bottom: 50px;
    padding: 20px 30px;
    width: auto;
  }
}
.letsTalk .wrapper .applyButton:hover {
  background-color: #ffc100;
}
@media only screen and (max-width: 1200px) {
  .letsTalk .wrapper {
    padding: 0 20px;
  }
}
.GetInTouchBlock {
  background: url(/assets/images/get-in-touch-bg.jpg) bottom center no-repeat;
  background-size: cover;
  min-height: 350px;
  color: #fff;
}
.GetInTouchBlock .title {
  text-align: center;
  font-size: 3.75rem;
  font-weight: 500;
  padding: 230px 0 50px;
  line-height: 1.17;
}
@media only screen and (max-width: 768px) {
  .GetInTouchBlock .title {
    font-size: 1.875rem;
  }
}
.contactUs {
  background-image: url(/assets/images/contact-us.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 890px;
  width: 100%;
  color: #fff;
  text-align: center;
}
.contactUs h3 {
  font-size: 2.5rem;
  font-weight: 800;
  padding: 110px 0 20px 0;
}
.contactUs p {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 2.1rem;
}
.contactUs .desc {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 2.3rem;
  *zoom: 1;
  width: auto;
  max-width: 550px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.contactUs .desc:before,
.contactUs .desc:after {
  content: "";
  display: table;
}
.contactUs .desc:after {
  clear: both;
}
.contactUs .googleMap {
  *zoom: 1;
  width: auto;
  max-width: 942px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  height: 384px;
  margin: 40px auto;
}
.contactUs .googleMap:before,
.contactUs .googleMap:after {
  content: "";
  display: table;
}
.contactUs .googleMap:after {
  clear: both;
}
@media only screen and (max-width: 768px) {
  .contactUs {
    height: 784px;
  }
  .contactUs h3 {
    font-size: 1.8rem;
    padding: 70px 0 16px 0;
  }
  .contactUs p {
    font-size: 1rem;
    line-height: 1.4rem;
  }
  .contactUs .desc {
    font-size: 1.1rem;
    line-height: 1.7rem;
    padding: 0 40px;
  }
}
.tilesBlock {
  *zoom: 1;
  width: auto;
  max-width: 1110px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  padding: 0 30px 40px 30px;
}
.tilesBlock:before,
.tilesBlock:after {
  content: "";
  display: table;
}
.tilesBlock:after {
  clear: both;
}
.tilesBlock .tile {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
}
.tilesBlock .tile:before,
.tilesBlock .tile:after {
  content: "";
  display: table;
}
.tilesBlock .tile:after {
  clear: both;
}
.tilesBlock .tile:last-child {
  margin-right: 0%;
}
.tilesBlock .tile h4 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 300;
  line-height: 2.8rem;
  padding: 106px 0 10px 0;
}
.tilesBlock .tile .link {
  display: inline-block;
  *zoom: 1;
  width: auto;
  max-width: 417px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
}
.tilesBlock .tile .link:before,
.tilesBlock .tile .link:after {
  content: "";
  display: table;
}
.tilesBlock .tile .link:after {
  clear: both;
}
.tilesBlock .tile .link .tileImg {
  margin: auto;
  width: 417px;
  height: 365px;
  display: block;
  background-size: 417px auto;
}
.tilesBlock .tile .link .tileImg:hover {
  background-position: bottom;
}
@media only screen and (max-width: 900px) {
  .tilesBlock .tile {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .tilesBlock .tile:first-child {
    margin-left: auto;
  }
  .tilesBlock .tile:last-child {
    margin-right: auto;
  }
  .tilesBlock .tile h4 {
    font-size: 2rem;
    padding: 76px 0 0 0;
  }
  .tilesBlock .tile .link {
    *zoom: 1;
    width: auto;
    max-width: 320px;
    float: none;
    display: block;
    margin-right: auto;
    margin-left: auto;
    padding-left: 0;
    padding-right: 0;
  }
  .tilesBlock .tile .link:before,
  .tilesBlock .tile .link:after {
    content: "";
    display: table;
  }
  .tilesBlock .tile .link:after {
    clear: both;
  }
  .tilesBlock .tile .link .tileImg {
    width: 320px;
    height: 280px;
    background-size: 320px auto;
  }
}
.tilesBlock .linkBlock {
  text-align: center;
}
.tilesBlock .linkBlock .more-link {
  margin-top: 14px;
  font-size: 1.375rem;
  line-height: 2.25rem;
  display: inline-block;
  text-align: center;
  color: #2c8bc9;
  position: relative;
  text-decoration: none;
}
.tilesBlock .linkBlock .more-link:after {
  content: "";
  position: absolute;
  height: 1px;
  opacity: 0;
  background: #0087c8;
  top: 100%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
  transition: height 0.3s, opacity 0.3s, transform 0.3s, background 0.3s;
}
.tilesBlock .linkBlock .more-link:hover:after,
.tilesBlock .linkBlock .more-link.hovered:after {
  height: 2px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  -moz-transform: translateY(2px);
  -o-transform: translateY(2px);
  transform: translateY(2px);
}
.tilesBlock .linkBlock .more-link.hovered:hover:after {
  height: 2px;
  opacity: 0;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.tilesBlock .linkBlock .more-link .ico {
  vertical-align: top;
  font-size: 1.9rem;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .tilesBlock .linkBlock {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .tilesBlock {
    padding: 0;
  }
}
.AboutLab {
  padding: 80px 0 60px;
}
@media only screen and (max-width: 768px) {
  .AboutLab {
    padding: 50px 0 20px;
  }
}
.AboutLab .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  justify-content: space-evenly;
  color: #fff;
  text-align: center;
  padding: 0 50px;
}
.AboutLab .wrapper:before,
.AboutLab .wrapper:after {
  content: "";
  display: table;
}
.AboutLab .wrapper:after {
  clear: both;
}
.AboutLab .wrapper .aboutWrapper {
  width: 50%;
  text-align: left;
}
.AboutLab .wrapper .aboutWrapper .title {
  font-size: 3.75rem;
  font-weight: 300;
  padding-top: 70px;
  color: #545453;
}
.AboutLab .wrapper .aboutWrapper .text {
  font-size: 1.25rem;
  line-height: 1.75;
  font-weight: 300;
  padding: 55px 0;
  color: #555;
}
.AboutLab .wrapper .aboutLogo {
  width: 450px;
  padding-top: 130px;
  align-self: center;
}
@media only screen and (max-width: 768px) {
  .AboutLab .wrapper .aboutLogo {
    padding-top: 10px;
  }
}
.AboutLab .wrapper .aboutLogo .logo {
  max-width: 100%;
  max-height: 100%;
}
@media only screen and (max-width: 768px) {
  .AboutLab .wrapper {
    flex-wrap: wrap;
  }
  .AboutLab .wrapper .aboutWrapper {
    width: initial;
  }
  .AboutLab .wrapper .aboutWrapper .title {
    padding-top: 0;
    font-size: 2.5rem;
  }
  .AboutLab .wrapper .aboutWrapper .text {
    font-size: 1rem;
    padding: 30px 0;
  }
}
.system {
  background-color: #121212;
}
.system .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  padding-bottom: 70px;
}
.system .wrapper:before,
.system .wrapper:after {
  content: "";
  display: table;
}
.system .wrapper:after {
  clear: both;
}
@media only screen and (max-width: 768px) {
  .system .wrapper {
    padding-bottom: 45px;
  }
}
.system .wrapper .title {
  font-size: 3.75rem;
  font-weight: 300;
  padding: 120px 0 30px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  .system .wrapper .title {
    font-size: 2.5rem;
    padding: 45px 0 24px;
  }
}
.system .wrapper .imgWrapper {
  max-width: 950px;
  max-height: 545px;
  margin: 0 auto;
}
.system .wrapper .imgWrapper .systemScheme {
  max-width: 100%;
  max-height: 100%;
}
.solutionBlock {
  padding-top: 120px;
}
@media only screen and (max-width: 768px) {
  .solutionBlock {
    padding-top: 60px;
  }
}
.solutionBlock .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: left;
  color: #545453;
  padding: 0 50px;
}
.solutionBlock .wrapper:before,
.solutionBlock .wrapper:after {
  content: "";
  display: table;
}
.solutionBlock .wrapper:after {
  clear: both;
}
@media only screen and (max-width: 768px) {
  .solutionBlock .wrapper {
    padding: 0 25px;
  }
}
.solutionBlock .wrapper .title {
  font-size: 3.75rem;
  font-weight: 300;
  padding-bottom: 70px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .solutionBlock .wrapper .title {
    font-size: 2.5rem;
    padding-bottom: 40px;
  }
}
.solutionBlock .wrapper .solutionsWrapper {
  max-width: 740px;
  margin: 0 auto;
}
.solutionBlock .wrapper .solutionsWrapper .solution {
  position: relative;
  padding-bottom: 35px;
  border-bottom: 1px solid rgba(137, 138, 141, 0.21);
  margin-bottom: 25px;
  cursor: pointer;
}
.solutionBlock .wrapper .solutionsWrapper .solution:last-child {
  border-bottom: none;
}
@media only screen and (max-width: 768px) {
  .solutionBlock .wrapper .solutionsWrapper .solution {
    padding: 0 10px 35px;
  }
}
.solutionBlock .wrapper .solutionsWrapper .solution .toggleText {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  right: -1px;
  z-index: 1;
  -webkit-transform: scale(1.4);
  -moz-transform: scale(1.4);
  -o-transform: scale(1.4);
  transform: scale(1.4);
  opacity: 0;
  cursor: pointer;
}
.solutionBlock
  .wrapper
  .solutionsWrapper
  .solution
  .toggleText:checked
  + .dropdown {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  color: #1b7fc2;
}
.solutionBlock .wrapper .solutionsWrapper .solution .dropdown {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 15px;
}
.solutionBlock
  .wrapper
  .solutionsWrapper
  .solution
  .toggleText:checked
  ~ .solutionTitle {
  color: #1b7fc2;
}
.solutionBlock
  .wrapper
  .solutionsWrapper
  .solution
  .toggleText:checked
  ~ .solutionText {
  white-space: normal;
  cursor: text;
}
.solutionBlock .wrapper .solutionsWrapper .solution .solutionTitle {
  padding-bottom: 30px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .solutionBlock .wrapper .solutionsWrapper .solution .solutionTitle {
    font-size: 1.25rem;
    padding-bottom: 20px;
  }
}
.solutionBlock .wrapper .solutionsWrapper .solution .solutionText {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .solutionBlock .wrapper .solutionsWrapper .solution .solutionText {
    font-size: 1rem;
    line-height: 1.88;
  }
}
.Platforms {
  padding: 95px 0 95px;
}
@media only screen and (max-width: 768px) {
  .Platforms {
    padding: 0 0 50px;
  }
}
.Platforms--service {
  padding-top: 75px;
  background-color: rgba(213, 231, 240, 0.14);
}
@media only screen and (max-width: 768px) {
  .Platforms--service {
    padding-top: 70px;
  }
}
.Platforms .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  color: #545453;
  padding: 0 50px;
}
.Platforms .wrapper:before,
.Platforms .wrapper:after {
  content: "";
  display: table;
}
.Platforms .text{
  font-size: 18px;
}
.Platforms .platforms_item{
  width: 100%;
  display: flex;
  margin-top: 30px;
  text-align: left;
}
.Platforms .platforms_item > li{
  width: calc(100% / 3);
}
.Platforms .platforms_item>li + li {
  margin-left: 10px;
}
.Platforms .platforms_item h3{
  display: flex;
  font-size: 20px;
  font-weight: bold;
}
.Platforms .platforms_item h3::before{
  content:'';
  display: block;
  width: 20px;
  height: 20px;
  background: url(/assets/d3aa10f/img/icon_gear.svg)no-repeat center center/contain;
  margin-right: 2px;
}
.Platforms .platforms_item li.--partb h3::before{
  background: url(/assets/d3aa10f/img/icon_bell.svg)no-repeat center center/contain;
}
.Platforms .platforms_item li.--partc h3::before {
  background: url(/assets/d3aa10f/img/icon_mobile.svg)no-repeat center center/contain;
}
.Platforms .platforms_item .platforms_item_list{
  list-style: disc;
  padding-left: 20px;
}
.Platforms .platforms_item .platforms_item_list li{
  margin-top: 5px;
}
@media only screen and (max-width: 768px) {
  .Platforms .platforms_item{
    flex-direction: column;
  }
  .Platforms .platforms_item li + li{
    margin-top: 20px;
  }
  .Platforms .wrapper {
    padding: 0 25px;
  }
}
.Platforms .wrapper .title {
  font-size: 3.75rem;
  font-weight: 300;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
}
.Platforms .wrapper .title .icon_globe{
  display: block;
  width: 50px;
  height: 50px;
  background: url(/assets/d3aa10f/img/icon_globe.svg)no-repeat center center/cover;
  margin-right: 5px;
}
@media only screen and (max-width: 768px) {
  .Platforms .wrapper .title {
    font-size: 2.5rem;
    margin-top: 20px;
    padding-bottom: 60px;
  }
}
.Platforms .wrapper .platformsWrapper {
  display: grid;
  grid-template-columns: 14.275% 14.275% 14.275% 14.275% 14.275% 14.275% 14.275%;
  grid-row-gap: 85px;
  justify-items: center;
}
@media only screen and (max-width: 768px) {
  .Platforms .wrapper .platformsWrapper {
    grid-template-columns: 50% 50%;
  }
}
.Platforms .wrapper .platformsWrapper .platform .platformImgWrapper {
  margin: 0 auto;
  width: 80px;
  height: 40px;
}
.Platforms .wrapper .platformsWrapper .platform .platformImgWrapper .iconImg {
  max-width: 100%;
  max-height: 100%;
}
.Platforms .wrapper .platformsWrapper .platform .iconTitle {
  padding-top: 20px;
}
.Platforms .wrapper .platformsWrapper .platform:nth-of-type(10) img {
  padding-top: 15px;
}
.Platforms .wrapper .platformsWrapper .platform:nth-of-type(13) img {
  padding-top: 9px;
}
.Platforms .wrapper .platformsWrapper .platform:nth-of-type(14) img {
  padding-top: 6px;
}
@media only screen and (max-width: 768px) {
  .servicesBlock {
    padding-top: 40px;
  }
}
.servicesBlock{
  background: #121212;
}
.servicesBlock .wrapper {
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  color: #545453;
  padding: 0 50px;
}
.servicesBlock .wrapper:before,
.servicesBlock .wrapper:after {
  content: "";
  display: table;
}
.servicesBlock .wrapper:after {
  clear: both;
}
@media only screen and (max-width: 768px) {
  .servicesBlock .wrapper {
    padding: 0 25px;
  }
}
.servicesBlock .wrapper .title {
  font-size: 3.75rem;
  font-weight: 300;
  padding-bottom: 100px;
  color:#ffffff;
}
@media only screen and (max-width: 768px) {
  .servicesBlock .wrapper .title {
    font-size: 2.5rem;
    padding-bottom: 65px;
  }
}
.servicesBlock .wrapper .servicesWrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 50px;
  justify-items: center;
  padding-bottom: 150px;
}
@media only screen and (max-width: 960px) {
  .servicesBlock .wrapper .servicesWrapper {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 50px;
  }

    .Platforms .wrapper .title{
      text-align: left;
      font-size: 50px;
    }
}

@media only screen and (max-width: 768px) {
  .servicesBlock .wrapper .servicesWrapper {
    grid-template-columns: 1fr;
    grid-row-gap: 50px;
    padding-bottom: 50px;
  }
    .Platforms .wrapper .title{
      font-size: 40px;
    }
    .Platforms .platforms_item > li{
      width: 100%;
    }
    .Platforms .platforms_item li+li{
      margin-left: 0;
    }
}
.servicesBlock .wrapper .servicesWrapper .service .serviceLink {
  text-decoration: none;
  color: rgba(84, 84, 83, 0.5);
}
.servicesBlock .wrapper .servicesWrapper .service .serviceLink:hover {
  color: #545453;
  font-weight: 500;
}
.servicesBlock
  .wrapper
  .servicesWrapper
  .service
  .serviceLink:hover
  .svg-circle {
  fill: #ffd007;
}
.servicesBlock .wrapper .servicesWrapper .service .serviceLink--active {
  color: #545453;
  font-weight: 500;
}
.servicesBlock
  .wrapper
  .servicesWrapper
  .service
  .serviceLink--active
  .svg-circle {
  fill: #ffd007;
}
.servicesBlock .wrapper .servicesWrapper .service .serviceImgWrapper svg {
  max-width: 100%;
  max-height: 100%;
}
.servicesBlock .wrapper .servicesWrapper .service .serviceTitle {
  padding-top: 0;
  font-size: 1.25rem;
  color:#ffffff;
}
@media only screen and (max-width: 960px) {
  .servicesBlock .wrapper .servicesWrapper .service .serviceTitle {
    padding-top: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .servicesBlock .wrapper .servicesWrapper .service .serviceTitle {
    padding-top: 15px;
  }
}
.serviceWrapper {
  position: relative;
  padding-bottom: 215px;
}
@media only screen and (max-width: 768px) {
  .serviceWrapper {
    padding-bottom: 30px;
  }
}
.serviceWrapper .serviceHeader {
  background: bottom center no-repeat;
  background-size: cover;
  min-height: 460px;
  color: #fff;
}
.serviceWrapper .serviceHeader--industrial {
  background-image: url(/assets/images/bg-industrial.jpg);
}
.serviceWrapper .serviceHeader--embedded {
  background-image: url(/assets/images/bg-embedded.jpg);
}
.serviceWrapper .serviceHeader--android {
  background-image: url(/assets/images/bg-android.jpg);
}
.serviceWrapper .serviceHeader--hardware {
  background-image: url(/assets/images/bg-hardware.jpg);
}
.serviceWrapper .serviceHeader .title {
  text-align: center;
  font-size: 3.75rem;
  font-weight: 500;
  padding: 205px 0 25px;
  line-height: 1.17;
}
@media only screen and (max-width: 1200px) {
  .serviceWrapper .serviceHeader .title {
    font-size: 3rem;
  }
}
@media only screen and (max-width: 960px) {
  .serviceWrapper .serviceHeader .title {
    font-size: 2.6rem;
  }
}
@media only screen and (max-width: 768px) {
  .serviceWrapper .serviceHeader .title {
    font-size: 1.875rem;
    padding: 155px 10px 25px;
  }
}
.serviceWrapper .serviceHeader .descr {
  font-size: 1.25rem;
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  max-width: 775px;
  padding-bottom: 100px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .serviceWrapper .serviceHeader .descr {
    padding: 0 10px 50px;
  }
}
.serviceWrapper .servicesBlock {
  max-width: 850px;
  position: absolute;
  top: 395px;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-radius: 6px;
  box-shadow: 0 2px 15px 0 rgba(30, 118, 178, 0.29);
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  .serviceWrapper .servicesBlock {
    position: initial;
  }
}
.serviceWrapper .servicesBlock .wrapper .servicesWrapper {
  padding-bottom: 0;
}
@media only screen and (max-width: 960px) {
  .serviceWrapper .servicesBlock .wrapper .servicesWrapper {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .serviceWrapper .servicesBlock .wrapper .servicesWrapper {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }
}
.serviceWrapper .servicesBlock .wrapper .servicesWrapper .service {
  padding: 20px 0 30px;
}
@media only screen and (max-width: 768px) {
  .serviceWrapper .servicesBlock .wrapper .servicesWrapper .service {
    padding: 0;
  }
}
.serviceWrapper .servicesBlock .wrapper .servicesWrapper .serviceImgWrapper {
  width: 100px;
  height: 100px;
  margin: auto;
}
.serviceWrapper .servicesBlock .wrapper .servicesWrapper .serviceTitle {
  padding-top: 20px;
  max-width: 120px;
  text-align: center;
  margin: auto;
}
.serviceWrapper .down-arrow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 45px;
  height: 20px;
  background-color: #008fff;
  -webkit-mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NS45IDIyLjYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjkgMjIuNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KDQoJIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJIAkuc3Qwe2ZpbGw6I2ZmZmZmZjt9DQoJIDwvc3R5bGU+DQoNCg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTIyLjcsMjIuMWMtMC40LDAtMC44LTAuMS0xLjEtMC40TDMsMy4xQzIuNCwyLjUsMi40LDEuNSwzLDAuOWMwLjYtMC42LDEuNS0wLjYsMi4xLDBsMTcuNSwxNy41TDQwLjgsMC40DQoJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCg0KPGRlZnM+DQoNCgk8bWFzayBpZD0ibWFzayI+DQoJCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMi43LDIyLjFjLTAuNCwwLTAuOC0wLjEtMS4xLTAuNEwzLDMuMUMyLjQsMi41LDIuNCwxLjUsMywwLjljMC42LTAuNiwxLjUtMC42LDIuMSwwbDE3LjUsMTcuNUw0MC44LDAuNA0KCQkJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCgk8L21hc2s+DQoNCjwvZGVmcz4NCg0KPC9zdmc+DQo=)
    no-repeat;
  mask: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0gR2VuZXJhdG9yOiBBZG9iZSBJbGx1c3RyYXRvciAxOS4xLjAsIFNWRyBFeHBvcnQgUGx1Zy1JbiAuIFNWRyBWZXJzaW9uOiA2LjAwIEJ1aWxkIDApICAtLT4NCjxzdmcgdmVyc2lvbj0iMS4xIiBpZD0iTGF5ZXJfMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgeD0iMHB4IiB5PSIwcHgiDQoJIHZpZXdCb3g9IjAgMCA0NS45IDIyLjYiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDQ1LjkgMjIuNjsiIHhtbDpzcGFjZT0icHJlc2VydmUiPg0KDQoJIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQoJIAkuc3Qwe2ZpbGw6I2ZmZmZmZjt9DQoJIDwvc3R5bGU+DQoNCg0KPHBhdGggY2xhc3M9InN0MCIgZD0iTTIyLjcsMjIuMWMtMC40LDAtMC44LTAuMS0xLjEtMC40TDMsMy4xQzIuNCwyLjUsMi40LDEuNSwzLDAuOWMwLjYtMC42LDEuNS0wLjYsMi4xLDBsMTcuNSwxNy41TDQwLjgsMC40DQoJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCg0KPGRlZnM+DQoNCgk8bWFzayBpZD0ibWFzayI+DQoJCTxwYXRoIGNsYXNzPSJzdDAiIGQ9Ik0yMi43LDIyLjFjLTAuNCwwLTAuOC0wLjEtMS4xLTAuNEwzLDMuMUMyLjQsMi41LDIuNCwxLjUsMywwLjljMC42LTAuNiwxLjUtMC42LDIuMSwwbDE3LjUsMTcuNUw0MC44LDAuNA0KCQkJYzAuNi0wLjYsMS41LTAuNiwyLjEsMGMwLjYsMC42LDAuNiwxLjUsMCwyLjFMMjMuNywyMS43QzIzLjQsMjIsMjMuMSwyMi4xLDIyLjcsMjIuMXoiLz4NCgk8L21hc2s+DQoNCjwvZGVmcz4NCg0KPC9zdmc+DQo=#mask);
  -webkit-animation: service-bounce 0.5s ease-in-out infinite alternate;
  -moz-animation: service-bounce 0.5s ease-in-out infinite alternate;
  -o-animation: service-bounce 0.5s ease-in-out infinite alternate;
  animation: service-bounce 0.5s ease-in-out infinite alternate;
}
@media only screen and (max-width: 768px) {
  .serviceWrapper .down-arrow {
    animation-name: service-bounce-mobile;
  }
  @-moz-keyframes service-bounce-mobile {
    0% {
      bottom: 0;
    }
    100% {
      bottom: -10px;
    }
  }
  @-webkit-keyframes service-bounce-mobile {
    0% {
      bottom: 0;
    }
    100% {
      bottom: -10px;
    }
  }
  @-o-keyframes service-bounce-mobile {
    0% {
      bottom: 0;
    }
    100% {
      bottom: -10px;
    }
  }
  @keyframes service-bounce-mobile {
    0% {
      bottom: 0;
    }
    100% {
      bottom: -10px;
    }
  }
}
@-moz-keyframes service-bounce {
  0% {
    bottom: 15px;
  }
  100% {
    bottom: 25px;
  }
}
@-webkit-keyframes service-bounce {
  0% {
    bottom: 15px;
  }
  100% {
    bottom: 25px;
  }
}
@-o-keyframes service-bounce {
  0% {
    bottom: 15px;
  }
  100% {
    bottom: 25px;
  }
}
@keyframes service-bounce {
  0% {
    bottom: 15px;
  }
  100% {
    bottom: 25px;
  }
}
.serviceWrapper + div .services-block-title {
  padding-top: 70px;
}
.industrialSolutions .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.industrialSolutions .wrapper:before,
.industrialSolutions .wrapper:after {
  content: "";
  display: table;
}
.industrialSolutions .wrapper:after {
  clear: both;
}
.industrialSolutions__container {
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .industrialSolutions__container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
}
@media only screen and (max-width: 896px) and (orientation: landscape) {
  .industrialSolutions__container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
  .industrialSolutions__container .industrialSolutions__img-wrapper {
    justify-self: center;
  }
}
.industrialSolutions__list {
  text-align: left;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: #545453;
}
.industrialSolutions__item {
  position: relative;
  padding: 0 0 5px 30px;
}
.industrialSolutions__item:last-child {
  padding-bottom: 0;
}
.industrialSolutions__item:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  border-bottom: 2px solid #008fff;
}
.industrialSolutions__img-wrapper {
  max-width: 510px;
  max-height: 272px;
}
@media only screen and (max-width: 768px) {
  .industrialSolutions__img-wrapper {
    justify-self: center;
  }
}
.industrialSolutions__img {
  width: 100%;
  height: 100%;
}
.industrialAreas__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 80px;
  grid-row-gap: 30px;
  padding: 0 20px;
}
@media only screen and (max-width: 960px) {
  .industrialAreas__container {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .industrialAreas__container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}
.industrialAreas .area {
  display: grid;
  grid-template-columns: 60px auto;
  grid-column-gap: 20px;
}
.industrialAreas .area__img-wrapper {
  height: 60px;
}
.industrialAreas .area__img {
  height: 100%;
  width: 100%;
}
.industrialAreas .area__name {
  color: #008fff;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25;
  align-self: center;
}
.industrialCases {
  padding-bottom: 95px;
}
@media only screen and (max-width: 768px) {
  .industrialCases {
    padding-bottom: 30px;
  }
}
.industrialCases__container {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .industrialCases__container {
    padding: 0 20px;
  }
}
.industrialCases .case {
  display: grid;
  grid-template-columns: 42% 50%;
  grid-column-gap: 8%;
  align-items: center;
  padding-bottom: 100px;
}
.industrialCases .case:last-child {
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .industrialCases .case {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
    grid-row-gap: 20px;
  }
}
.industrialCases .case__img-wrapper {
  max-width: 450px;
  max-height: 360px;
  justify-self: center;
}
.industrialCases .case__img {
  width: 100%;
  height: 100%;
}
.industrialCases .case__title {
  color: #008fff;
  font-size: 1.875rem;
  padding-bottom: 10px;
  line-height: 1.33;
  font-weight: normal;
}
.industrialCases .case__descr {
  color: #545453;
  font-size: 1.25rem;
  line-height: 1.5;
  padding-bottom: 30px;
}
.industrialCases .case__list {
  color: #555;
  line-height: 1.5;
  font-weight: 300;
  font-size: 1.25rem;
}
.industrialCases .case__item {
  position: relative;
  padding: 0 0 5px 30px;
}
.industrialCases .case__item:last-child {
  padding-bottom: 0;
}
.industrialCases .case__item:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  border-bottom: 2px solid #008fff;
}
.clients {
  padding: 75px 0 95px;
  margin-bottom: 90px;
  background-color: rgba(213, 231, 240, 0.14);
  /**
     * Owl Carousel v2.3.4
     * Copyright 2013-2018 David Deutsch
     * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
     */
  /*
     *  Owl Carousel - Core
     */
  /*
     * 	Owl Carousel - Auto Height Plugin
     */
}
@media only screen and (max-width: 768px) {
  .clients {
    padding: 60px 0;
    margin-bottom: 70px;
  }
}
.clients--marginTop {
  margin-top: 100px;
}
@media only screen and (max-width: 768px) {
  .clients--marginTop {
    margin-top: 70px;
  }
}
.clients__title {
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 1.2;
  max-width: 950px;
  margin: 0 auto;
  color: #545453;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .clients__title {
    font-size: 2.5rem;
  }
}
.clients__descr {
  padding: 5px 20px 60px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.75;
  color: #555;
  text-align: center;
  max-width: 768px;
}
@media only screen and (max-width: 768px) {
  .clients__descr {
    padding-bottom: 30px;
  }
}
.clients .client {
  margin: auto;
  max-width: 170px;
  max-height: 70px;
}
.clients .client__img {
  width: 100%;
  height: 100%;
}
.clients .owl-prev,
.clients .owl-next {
  position: absolute;
  top: 23px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  border: solid rgba(29, 72, 124, 0.2);
}
.clients .owl-prev:hover,
.clients .owl-next:hover {
  border-color: rgba(29, 72, 124, 0.8);
}
.clients .owl-prev {
  left: 20px;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.clients .owl-next {
  right: 20px;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.clients .owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.clients .owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.clients .owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.clients .owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0, 0, 0);
}
.clients .owl-carousel .owl-wrapper,
.clients .owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.clients .owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.clients .owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.clients .owl-carousel .owl-nav.disabled,
.clients .owl-carousel .owl-dots.disabled {
  display: none;
}
.clients .owl-carousel .owl-nav .owl-prev,
.clients .owl-carousel .owl-nav .owl-next,
.clients .owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.clients .owl-carousel .owl-nav button.owl-prev,
.clients .owl-carousel .owl-nav button.owl-next,
.clients .owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.clients .owl-carousel.owl-loaded {
  display: block;
}
.clients .owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.clients .owl-carousel.owl-hidden {
  opacity: 0;
}
.clients .owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.clients .owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.clients .owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.clients .owl-carousel.owl-rtl {
  direction: rtl;
}
.clients .owl-carousel.owl-rtl .owl-item {
  float: right;
}
.clients .owl-height {
  transition: height 500ms ease-in-out;
}
.embeddedSolutions .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.embeddedSolutions .wrapper:before,
.embeddedSolutions .wrapper:after {
  content: "";
  display: table;
}
.embeddedSolutions .wrapper:after {
  clear: both;
}
.embeddedSolutions__container {
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 768px) {
  .embeddedSolutions__container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
}
@media only screen and (max-width: 896px) and (orientation: landscape) {
  .embeddedSolutions__container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
  .embeddedSolutions__container .embeddedSolutions__img-wrapper {
    justify-self: center;
  }
}
.embeddedSolutions__list {
  align-self: center;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: #545453;
}
.embeddedSolutions__item {
  position: relative;
  padding: 0 0 5px 30px;
}
.embeddedSolutions__item:last-child {
  padding-bottom: 0;
}
.embeddedSolutions__item:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  border-bottom: 2px solid #008fff;
}
.embeddedSolutions__img-wrapper {
  max-width: 420px;
  max-height: 355px;
  justify-self: right;
}
@media only screen and (max-width: 768px) {
  .embeddedSolutions__img-wrapper {
    justify-self: center;
  }
}
.embeddedSolutions__img {
  width: 100%;
  height: 100%;
}
.embeddedAreas__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 20px;
  grid-row-gap: 30px;
  padding: 0 20px;
}
@media only screen and (max-width: 960px) {
  .embeddedAreas__container {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 768px) {
  .embeddedAreas__container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
}
.embeddedAreas .area {
  display: grid;
  grid-template-columns: 60px auto;
  grid-column-gap: 20px;
}
.embeddedAreas .area__img-wrapper {
  height: 60px;
}
.embeddedAreas .area__img {
  height: 100%;
  width: 100%;
}
.embeddedAreas .area__name {
  color: #008fff;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25;
  align-self: center;
}
.androidSolutions .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.androidSolutions .wrapper:before,
.androidSolutions .wrapper:after {
  content: "";
  display: table;
}
.androidSolutions .wrapper:after {
  clear: both;
}
.androidSolutions__container {
  padding: 0 50px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
}
@media only screen and (max-width: 768px) {
  .androidSolutions__container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    padding: 0 20px 0;
  }
}
@media only screen and (max-width: 896px) and (orientation: landscape) {
  .androidSolutions__container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    padding: 0 20px 0;
  }
}
.androidSolutions__text {
  align-self: center;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}
.androidSolutions__img-wrapper {
  max-width: 475px;
  max-height: 370px;
  justify-self: center;
}
.androidSolutions__img {
  width: 100%;
  height: 100%;
}
.androidCases {
  padding: 0 50px 0;
}
@media only screen and (max-width: 768px) {
  .androidCases {
    padding: 0 20px 0;
  }
}
.androidCases .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.androidCases .wrapper:before,
.androidCases .wrapper:after {
  content: "";
  display: table;
}
.androidCases .wrapper:after {
  clear: both;
}
.androidCases__container {
  padding: 90px 20px 50px;
  display: grid;
  grid-template-columns: 43% 53%;
  grid-column-gap: 80px;
}
@media only screen and (max-width: 768px) {
  .androidCases__container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    padding-top: 30px;
  }
}
.androidCases__container:first-of-type {
  padding-top: 0;
}
.androidCases__container:last-child {
  padding-bottom: 105px;
}
@media only screen and (max-width: 768px) {
  .androidCases__container:last-child {
    padding-bottom: 30px;
  }
}
.androidCases__container:nth-child(odd) .androidCases__img-wrapper {
  grid-column: 2;
}
@media only screen and (max-width: 768px) {
  .androidCases__container:nth-child(odd) .androidCases__img-wrapper {
    grid-column: initial;
  }
}
.androidCases__container:nth-child(odd) .androidCases__description {
  grid-column: 1;
}
@media only screen and (max-width: 768px) {
  .androidCases__container:nth-child(odd) .androidCases__description {
    grid-column: initial;
  }
}
.androidCases__img-wrapper {
  grid-column: 1;
  max-width: 450px;
  max-height: 350px;
  justify-self: center;
  align-self: center;
}
@media only screen and (max-width: 768px) {
  .androidCases__img-wrapper {
    grid-column: initial;
  }
}
.androidCases__img {
  width: 100%;
  height: 100%;
}
.androidCases .description {
  grid-column: 2;
  grid-row: 1;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .androidCases .description {
    grid-column: initial;
    grid-row: initial;
  }
}
.androidCases .description__title {
  font-size: 1.875rem;
  line-height: 1.33;
  color: #008fff;
  padding-bottom: 20px;
}
.androidCases .description__list {
  text-align: left;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
  color: #545453;
}
.androidCases .description__item {
  position: relative;
  padding: 0 0 5px 30px;
}
.androidCases .description__item:last-child {
  padding-bottom: 0;
}
.androidCases .description__item:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  border-bottom: 2px solid #008fff;
}
.androidCases .description__benefits-wrapper {
  padding-top: 35px;
}
.androidCases .description__benefits-title {
  padding-bottom: 30px;
  font-size: 1.5rem;
  line-height: 1.46;
  color: #008fff;
}
.androidCases .description__benefits-list {
  list-style: decimal;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #008fff;
  font-weight: 500;
  padding-left: 20px;
}
.androidCases .description__benefits-item {
  padding: 0 0 15px 10px;
}
.androidCases .description__benefits-item:last-child {
  padding-bottom: 0;
}
.androidCases .description__benefits-text {
  font-weight: 300;
  color: #555;
}
.hardwareSolutions .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.hardwareSolutions .wrapper:before,
.hardwareSolutions .wrapper:after {
  content: "";
  display: table;
}
.hardwareSolutions .wrapper:after {
  clear: both;
}
.hardwareSolutions__container {
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
}
@media only screen and (max-width: 768px) {
  .hardwareSolutions__container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 896px) and (orientation: landscape) {
  .hardwareSolutions__container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
    padding: 0 20px;
  }
}
.hardwareSolutions__text {
  align-self: center;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555;
}
.hardwareSolutions__img-wrapper {
  max-width: 510px;
  max-height: 270px;
}
.hardwareSolutions__img {
  width: 100%;
  height: 100%;
}
.hardwareServices .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.hardwareServices .wrapper:before,
.hardwareServices .wrapper:after {
  content: "";
  display: table;
}
.hardwareServices .wrapper:after {
  clear: both;
}
.hardwareServices__container {
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 60px;
}
@media only screen and (max-width: 768px) {
  .hardwareServices__container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
}
@media only screen and (max-width: 896px) and (orientation: landscape) {
  .hardwareServices__container {
    grid-template-columns: 1fr;
    grid-row-gap: 40px;
  }
  .hardwareServices__container .hardwareServices__img-wrapper {
    justify-self: center;
  }
}
.hardwareServices__list {
  text-align: left;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: #545453;
  align-self: center;
}
.hardwareServices__item {
  position: relative;
  padding: 0 0 5px 30px;
}
.hardwareServices__item:last-child {
  padding-bottom: 0;
}
.hardwareServices__item:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  border-bottom: 2px solid #008fff;
}
.hardwareServices__img-wrapper {
  max-width: 470px;
  max-height: 360px;
}
@media only screen and (max-width: 768px) {
  .hardwareServices__img-wrapper {
    justify-self: center;
  }
}
.hardwareServices__img {
  width: 100%;
  height: 100%;
}
.hardwareAreas {
  padding: 0 20px;
}
.hardwareAreas__container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 10%;
  grid-row-gap: 30px;
  padding: 0 20px;
}
@media only screen and (max-width: 1080px) {
  .hardwareAreas__container {
    grid-column-gap: 4%;
  }
}
@media only screen and (max-width: 960px) {
  .hardwareAreas__container {
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .hardwareAreas__container {
    grid-template-columns: 1fr;
  }
}
.hardwareAreas .area {
  display: grid;
  grid-template-columns: 60px auto;
  grid-column-gap: 20px;
}
.hardwareAreas .area__img-wrapper {
  height: 60px;
}
.hardwareAreas .area__img {
  height: 100%;
  width: 100%;
}
.hardwareAreas .area__name {
  color: #008fff;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25;
  align-self: center;
}
.hardwareCases {
  padding-bottom: 95px;
}
@media only screen and (max-width: 768px) {
  .hardwareCases {
    padding-bottom: 30px;
  }
}
.hardwareCases__container {
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  .hardwareCases__container {
    padding: 0 20px;
  }
}
.hardwareCases .case {
  display: grid;
  grid-template-columns: 42% 50%;
  grid-column-gap: 8%;
  align-items: start;
  padding-bottom: 100px;
}
.hardwareCases .case:last-child {
  padding-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .hardwareCases .case {
    grid-template-columns: 1fr;
    padding-bottom: 40px;
    grid-row-gap: 20px;
  }
}
.hardwareCases .case__img-wrapper {
  max-width: 450px;
  max-height: 360px;
  justify-self: center;
}
.hardwareCases .case__img {
  width: 100%;
  height: 100%;
}
.hardwareCases .case__block {
  align-self: center;
}
.hardwareCases .case__list {
  color: #545453;
  line-height: 1.5;
  font-weight: 400;
  font-size: 1.25rem;
}
.hardwareCases .case__item {
  position: relative;
  padding: 0 0 5px 30px;
}
.hardwareCases .case__item:last-child {
  padding-bottom: 0;
}
.hardwareCases .case__item:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 8px;
  border-bottom: 2px solid #008fff;
}
.textBlock {
  background-color: rgba(213, 231, 240, 0.14);
  padding: 75px 20px 95px;
}
@media only screen and (max-width: 768px) {
  .textBlock {
    padding: 60px 20px;
  }
}
.textBlock .wrapper {
  *zoom: 1;
  width: auto;
  max-width: 1200px;
  float: none;
  display: block;
  margin-right: auto;
  margin-left: auto;
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}
.textBlock .wrapper:before,
.textBlock .wrapper:after {
  content: "";
  display: table;
}
.textBlock .wrapper:after {
  clear: both;
}
.textBlock__title {
  font-size: 3.75rem;
  font-weight: 300;
  line-height: 1.2;
  max-width: 950px;
  margin: 0 auto;
  color: #545453;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .textBlock__title {
    font-size: 2.5rem;
  }
}
.textBlock__text {
  padding-top: 60px;
  margin: 0 auto;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.75;
  color: #545453;
  text-align: center;
  max-width: 860px;
}
@media only screen and (max-width: 768px) {
  .textBlock__text {
    padding-top: 15px;
    text-align: left;
  }
}
.imageBlock {
  padding: 0 20px 95px;
}
@media only screen and (max-width: 768px) {
  .imageBlock {
    padding: 0 20px 70px;
  }
}
.imageBlock__wrapper {
  max-width: 950px;
  margin: 0 auto;
}
.imageBlock__img {
  max-width: 100%;
  max-height: 100%;
}

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

.imagetxtAnima {
  width: 100%;
  text-align: center;
  color: #545453;
  max-width: 1200px;
  margin: auto ;
  padding: 20px 0 40px;
}

.imagetxtAnima > h2{
  font-size: 3.75rem;
  font-weight: 300;
  padding-top: 70px;
}

.imagetxtAnima > p {
  color: #036ae5;
  font-size: 18px;
}

.imagetxtAnima_box{
  display: flex;
  margin-top: 32px;
}

.imagetxtAnima_item{
  position: relative;
  width: 25%;
  height: 400px;
  padding:40px 20px;
}

.imagetxtAnima_item::before{
  content:'';
  position: absolute;
  top: 0; bottom: 0;left: 0;right: 0;
  background: rgba(29, 33, 46, .8);
  transition: all .3s ease 0ms;
}
.imagetxtAnima_item::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  z-index: 1;
  transition: all .3s ease 0ms;
  background: rgba(3, 106, 229, .85);
}


.imagetxtAnima_item_txt{
  position: relative;
  z-index: 5;
  height: 100%;
  color:#fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  overflow: hidden;
}

.imagetxtAnima_item_txt > h3{
  position: relative;
  font-size: 24px ;
  line-height: 140% ;
  letter-spacing: -0.5px;
  font-weight: 600;
  margin-bottom: 20px;
  padding-top: 17px;
}
.imagetxtAnima_item_txt>h3::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 5px;
  background: #036ae5;
  z-index: 1;
}

.imagetxtAnima_item_txt > p {
  font-size: 16px;
  height: 0;
  visibility: hidden;
  transition: all .5s ease 0ms;
  line-height: 140%;
}

.imagetxtAnima_item:hover .imagetxtAnima_item_txt > p{
  height: 100%;
  visibility: visible;
}
.imagetxtAnima_item:hover::after{
  height: 100%;
}
.imagetxtAnima_item:hover .imagetxtAnima_item_txt>h3::before{
  background: #ffffff;
}

@media only screen and (max-width: 768px) {
  .imagetxtAnima_box{
    flex-direction: column;
  }
  .imagetxtAnima_item{
    width: 100%;
    height: 250px;
  }
  .imagetxtAnima>h2 {
    font-size: 2.5rem;
    padding: 0;
  }
}