* {-webkit-font-smoothing: antialiased;}
@font-face {
  font-family: "Akkurat";
  src: url("../fonts/akkurat/lineto-akkurat-bold.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/akkurat/lineto-akkurat-bold.eot?#iefix") format("embedded-opentype"), url("../fonts/akkurat/lineto-akkurat-bold.woff2") format("woff2"), url("../fonts/akkurat/lineto-akkurat-bold.woff") format("woff");
  /* Pretty Modern Browsers */
  font-weight: bold;
}
@font-face {
  font-family: "Akkurat";
  src: url("../fonts/akkurat/lineto-akkurat-light.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/akkurat/lineto-akkurat-light.eot?#iefix") format("embedded-opentype"), url("../fonts/akkurat/lineto-akkurat-light.woff2") format("woff2"), url("../fonts/akkurat/lineto-akkurat-light.woff") format("woff");
  /* Pretty Modern Browsers */
  font-weight: 300;
}
@font-face {
  font-family: "Akkurat";
  src: url("../fonts/akkurat/lineto-akkurat-regular.eot");
  /* IE9 Compat Modes */
  src: url("../fonts/akkurat/lineto-akkurat-regular.eot?#iefix") format("embedded-opentype"), url("../fonts/akkurat/lineto-akkurat-regular.woff2") format("woff2"), url("../fonts/akkurat/lineto-akkurat-regular.woff") format("woff");
  /* Pretty Modern Browsers */
  font-weight: normal;
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.1
 * 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;
  display: block;
}

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

/* Color palette */
/* Text styles */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xl-1, .col-xxl-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xl-2, .col-xxl-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xl-3, .col-xxl-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xl-4, .col-xxl-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xl-5, .col-xxl-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xl-6, .col-xxl-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xl-7, .col-xxl-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xl-8, .col-xxl-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xl-9, .col-xxl-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xl-10, .col-xxl-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xl-11, .col-xxl-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12, .col-xl-12, .col-xxl-12 {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 1440px) {
  .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12 {
    float: left;
  }

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

  .col-xl-11 {
    width: 91.66666667%;
  }

  .col-xl-10 {
    width: 83.33333333%;
  }

  .col-xl-9 {
    width: 75%;
  }

  .col-xl-8 {
    width: 66.66666667%;
  }

  .col-xl-7 {
    width: 58.33333333%;
  }

  .col-xl-6 {
    width: 50%;
  }

  .col-xl-5 {
    width: 41.66666667%;
  }

  .col-xl-4 {
    width: 33.33333333%;
  }

  .col-xl-3 {
    width: 25%;
  }

  .col-xl-2 {
    width: 16.66666667%;
  }

  .col-xl-1 {
    width: 8.33333333%;
  }

  .col-xl-pull-12 {
    right: 100%;
  }

  .col-xl-pull-11 {
    right: 91.66666667%;
  }

  .col-xl-pull-10 {
    right: 83.33333333%;
  }

  .col-xl-pull-9 {
    right: 75%;
  }

  .col-xl-pull-8 {
    right: 66.66666667%;
  }

  .col-xl-pull-7 {
    right: 58.33333333%;
  }

  .col-xl-pull-6 {
    right: 50%;
  }

  .col-xl-pull-5 {
    right: 41.66666667%;
  }

  .col-xl-pull-4 {
    right: 33.33333333%;
  }

  .col-xl-pull-3 {
    right: 25%;
  }

  .col-xl-pull-2 {
    right: 16.66666667%;
  }

  .col-xl-pull-1 {
    right: 8.33333333%;
  }

  .col-xl-pull-0 {
    right: auto;
  }

  .col-xl-push-12 {
    left: 100%;
  }

  .col-xl-push-11 {
    left: 91.66666667%;
  }

  .col-xl-push-10 {
    left: 83.33333333%;
  }

  .col-xl-push-9 {
    left: 75%;
  }

  .col-xl-push-8 {
    left: 66.66666667%;
  }

  .col-xl-push-7 {
    left: 58.33333333%;
  }

  .col-xl-push-6 {
    left: 50%;
  }

  .col-xl-push-5 {
    left: 41.66666667%;
  }

  .col-xl-push-4 {
    left: 33.33333333%;
  }

  .col-xl-push-3 {
    left: 25%;
  }

  .col-xl-push-2 {
    left: 16.66666667%;
  }

  .col-xl-push-1 {
    left: 8.33333333%;
  }

  .col-xl-push-0 {
    left: auto;
  }

  .col-xl-offset-12 {
    margin-left: 100%;
  }

  .col-xl-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-xl-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-xl-offset-9 {
    margin-left: 75%;
  }

  .col-xl-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-xl-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-xl-offset-6 {
    margin-left: 50%;
  }

  .col-xl-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-xl-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-xl-offset-3 {
    margin-left: 25%;
  }

  .col-xl-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-xl-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-xl-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1756px) {
  .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12 {
    float: left;
  }

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

  .col-xxl-11 {
    width: 91.66666667%;
  }

  .col-xxl-10 {
    width: 83.33333333%;
  }

  .col-xxl-9 {
    width: 75%;
  }

  .col-xxl-8 {
    width: 66.66666667%;
  }

  .col-xxl-7 {
    width: 58.33333333%;
  }

  .col-xxl-6 {
    width: 50%;
  }

  .col-xxl-5 {
    width: 41.66666667%;
  }

  .col-xxl-4 {
    width: 33.33333333%;
  }

  .col-xxl-3 {
    width: 25%;
  }

  .col-xxl-2 {
    width: 16.66666667%;
  }

  .col-xxl-1 {
    width: 8.33333333%;
  }

  .col-xxl-pull-12 {
    right: 100%;
  }

  .col-xxl-pull-11 {
    right: 91.66666667%;
  }

  .col-xxl-pull-10 {
    right: 83.33333333%;
  }

  .col-xxl-pull-9 {
    right: 75%;
  }

  .col-xxl-pull-8 {
    right: 66.66666667%;
  }

  .col-xxl-pull-7 {
    right: 58.33333333%;
  }

  .col-xxl-pull-6 {
    right: 50%;
  }

  .col-xxl-pull-5 {
    right: 41.66666667%;
  }

  .col-xxl-pull-4 {
    right: 33.33333333%;
  }

  .col-xxl-pull-3 {
    right: 25%;
  }

  .col-xxl-pull-2 {
    right: 16.66666667%;
  }

  .col-xxl-pull-1 {
    right: 8.33333333%;
  }

  .col-xxl-pull-0 {
    right: auto;
  }

  .col-xxl-push-12 {
    left: 100%;
  }

  .col-xxl-push-11 {
    left: 91.66666667%;
  }

  .col-xxl-push-10 {
    left: 83.33333333%;
  }

  .col-xxl-push-9 {
    left: 75%;
  }

  .col-xxl-push-8 {
    left: 66.66666667%;
  }

  .col-xxl-push-7 {
    left: 58.33333333%;
  }

  .col-xxl-push-6 {
    left: 50%;
  }

  .col-xxl-push-5 {
    left: 41.66666667%;
  }

  .col-xxl-push-4 {
    left: 33.33333333%;
  }

  .col-xxl-push-3 {
    left: 25%;
  }

  .col-xxl-push-2 {
    left: 16.66666667%;
  }

  .col-xxl-push-1 {
    left: 8.33333333%;
  }

  .col-xxl-push-0 {
    left: auto;
  }

  .col-xxl-offset-12 {
    margin-left: 100%;
  }

  .col-xxl-offset-11 {
    margin-left: 91.66666667%;
  }

  .col-xxl-offset-10 {
    margin-left: 83.33333333%;
  }

  .col-xxl-offset-9 {
    margin-left: 75%;
  }

  .col-xxl-offset-8 {
    margin-left: 66.66666667%;
  }

  .col-xxl-offset-7 {
    margin-left: 58.33333333%;
  }

  .col-xxl-offset-6 {
    margin-left: 50%;
  }

  .col-xxl-offset-5 {
    margin-left: 41.66666667%;
  }

  .col-xxl-offset-4 {
    margin-left: 33.33333333%;
  }

  .col-xxl-offset-3 {
    margin-left: 25%;
  }

  .col-xxl-offset-2 {
    margin-left: 16.66666667%;
  }

  .col-xxl-offset-1 {
    margin-left: 8.33333333%;
  }

  .col-xxl-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1440px) {
  .visible-xl {
    display: block !important;
  }

  table.visible-xl {
    display: table !important;
  }

  tr.visible-xl {
    display: table-row !important;
  }

  th.visible-xl,
td.visible-xl {
    display: table-cell !important;
  }
}
@media (min-width: 1440px) {
  .visible-xl-block {
    display: block !important;
  }
}
@media (min-width: 1440px) {
  .visible-xl-inline {
    display: inline !important;
  }
}
@media (min-width: 1440px) {
  .visible-xl-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1756px) {
  .visible-xxl {
    display: block !important;
  }

  table.visible-xxl {
    display: table !important;
  }

  tr.visible-xxl {
    display: table-row !important;
  }

  th.visible-xxl,
td.visible-xxl {
    display: table-cell !important;
  }
}
@media (min-width: 1756px) {
  .visible-xxl-block {
    display: block !important;
  }
}
@media (min-width: 1756px) {
  .visible-xxl-inline {
    display: inline !important;
  }
}
@media (min-width: 1756px) {
  .visible-xxl-inline-block {
    display: inline-block !important;
  }
}
.video-mobile-img {
  display: none;
}

.mobile-device .amm_container .bg-img {
  background-image: none;
}
.mobile-device .amm_container .bg-img img {
  visibility: visible;
}
.mobile-device .brand-video .vc_video {
  display: none !important;
}
.mobile-device .brand-video .video-container {
  position: relative;
  display: block !important;
}

.background-not-fixed {
  background-attachment: static !important;
  background-attachment: initial !important;
  background-size: 100% !important;
  transform: matrix(1, 0, 0, 1, 0, 1);
}

.ms-browser .background-not-fixed {
  background-attachment: scroll !important;
  transform: matrix(1, 0, 0, 1, 0, 1);
}

.animatedFaster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  display: block;
}

.wpb_row {
  /*overflow-x: hidden;*/
}

.amm-paragraph .wpb_text_column .wpb_wrapper {
  max-width: 760px !important;
}

body, input, textarea, select {
  font-family: "Akkurat" !important;
}

.play-btn-holder {
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
  text-align: center;
}
.play-btn-holder .btn-play {
  padding: 20px 82px;
  color: #fff;
  border: 1px solid #fff;
  cursor: pointer;
  font-size: 18px;
}

* {
  transition-timing-function: static;
  -moz-transition-timing-function: static;
  -webkit-transition-timing-function: static;
  -o-transition-timing-function: static;
  transition-duration: static;
  -moz-transition-duration: static;
  -webkit-transition-duration: static;
  -o-transition-duration: static;
  /*transform: static;
  transform: none;*/
  transition-timing-function: initial;
  -moz-transition-timing-function: initial;
  -webkit-transition-timing-function: initial;
  -o-transition-timing-function: initial;
  transition-duration: initial;
  -moz-transition-duration: initial;
  -webkit-transition-duration: initial;
  -o-transition-duration: initial;
}

.menu-position-right .navbar-nav.navbar-right:last-child {
  margin-right: 0px;
}

.row {
  margin: 0 !important;
}

.show-animate-grid {
  display: block !important;
}

.hero div > img {
  width: 100%;
}

.link, .share, .see-works, .see-careers, .contact-us {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  cursor: pointer;
  border-bottom: 1px solid #0a0a0a;
}
.link:hover, .share:hover, .see-works:hover, .see-careers:hover, .contact-us:hover {
  color: #ff6602;
  border-color: #ff6602;
}

.amm-text-content, .amm-text-content, .team-list, .amm-cont_1 {
  overflow-x: hidden;
}

.handheld .amm_parallax .single-tablet, .handheld #sliders .single-tablet {
  display: block !important;
}
.handheld .amm_parallax .img-txt-parallax, .handheld #sliders .img-txt-parallax {
  display: none !important;
}

.share-modal, .mobile-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f26822;
  z-index: 11;
  display: none;
}
.share-modal .close-share-modal, .share-modal .close-mobile-modal, .mobile-modal .close-share-modal, .mobile-modal .close-mobile-modal {
  position: absolute;
  right: 25px;
  top: 23px;
  cursor: pointer;
  -webkit-transition: 1s;
  -moz-transition: 1s;
  -o-transform: 1s;
  transition: 1s;
  -webkit-transform: rotate(0deg) scale(0);
  -moz-transform: rotate(0deg) scale(0);
  -o-transform: rotate(0deg) scale(0);
  transform: rotate(0deg) scale(0);
}
.share-modal .close-share-modal, .mobile-modal .close-share-modal {
  position: fixed;
  height: 23.5px;
  width: 23.5px;
  -webkit-transition: -webkit-transform 1s;
  -moz-transition: transform 1s;
  -o-transform: transform 1s;
  transition: transform 1s;
  right: 20px;
  top: 12px;
}
.share-modal .close-share-modal .x-bar, .mobile-modal .close-share-modal .x-bar {
  height: 2px;
  width: 25px;
  background-color: white;
  display: block;
  position: absolute;
  top: 11px;
}
.share-modal .close-share-modal .x-bar:nth-child(1), .mobile-modal .close-share-modal .x-bar:nth-child(1) {
  transform: rotate(45deg);
}
.share-modal .close-share-modal .x-bar:nth-child(2), .mobile-modal .close-share-modal .x-bar:nth-child(2) {
  transform: rotate(-45deg);
}
.share-modal .liTranslate, .mobile-modal .liTranslate {
  transform: translateY(-50%);
  opacity: 0;
}
.share-modal ul, .mobile-modal ul {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  list-style-type: none;
  text-align: center;
  padding: 0px;
  margin: 0px;
}
.share-modal ul li, .mobile-modal ul li {
  height: 72px;
  font-family: Akkurat;
  font-size: 36px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 2;
  transition: 0.7s;
  opacity: 1;
}
.share-modal ul li a, .mobile-modal ul li a {
  color: white;
}

.share-modal {
  z-index: 10001;
}

.vc_row::before, .vc_row::after {
  content: " ";
  display: table;
}
.vc_row:after {
  clear: both;
}

.vc_row-fluid::before, .vc_row-fluid::after {
  content: " ";
  display: table;
}
.vc_row-fluid:after {
  clear: both;
}

body {
  letter-spacing: 0px;
}

.body {
  display: none;
}

.parent-section {
  transition: background-color 300ms ease-in-out;
}

.parent-section, .project_cat-product-design, .related-label, .related-pt, footer {
  /* visibility: hidden; */
}

.scroll-bg {
  background-attachment: scroll !important;
  background-size: 100% !important;
}

.vc_video {
  position: relative;
  z-index: 1;
}
.vc_video > div {
  position: relative;
}

.vc_video_section .mobile-active {
  position: relative;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.img-txt-parallax img {
  visibility: hidden;
}
.img-txt-parallax .bg-txt-holder {
  background-size: 50%;
  transition: none !important;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-repeat: no-repeat;
  width: 50%;
  float: left;
}
.img-txt-parallax .text-left p {
  margin-left: 70px !important;
}
.img-txt-parallax .amm_header_text {
  height: 100%;
  width: 50%;
  float: right;
  position: relative;
}
.img-txt-parallax .amm_header_text p {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  margin-left: 120.4px;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.33;
  color: #ffffff;
}
.img-txt-parallax .amm_header_text p span {
  font-size: 18px;
  display: block;
}

body {
  font-family: Akkurat !important;
  font-weight: 300;
  overflow-x: hidden;
  -moz-osx-font-smoothing: grayscale;
}

.cat-active {
  border-bottom: 1px solid #0a0a0a;
  font-weight: 400;
  color: #0a0a0a;
}
.cat-active:hover {
  border-bottom-color: #ff6602;
}

.container {
  width: 100% !important;
  padding-left: 0px;
  padding-right: 0px;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: normal;
}

h1 {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 65px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: #373737;
  text-transform: none;
}

span.date {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.86;
  color: #666666;
}

.inner-container {
  max-width: 1300px;
  margin: 0 auto;
}

.amm_container .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0);
  transition-timing-function: static;
  -moz-transition-timing-function: static;
  -webkit-transition-timing-function: static;
  -o-transition-timing-function: static;
  transition-duration: static;
  -moz-transition-duration: static;
  -webkit-transition-duration: static;
  -o-transition-duration: static;
  /*transform: static;
  transform: none;*/
  transition-timing-function: initial;
  -moz-transition-timing-function: initial;
  -webkit-transition-timing-function: initial;
  -o-transition-timing-function: initial;
  transition-duration: initial;
  -moz-transition-duration: initial;
  -webkit-transition-duration: initial;
  -o-transition-duration: initial;
}
.amm_container .bg-img {
  background-attachment: fixed;
  background-size: cover;
}
.amm_container .bg-img img {
  visibility: hidden;
}

.vc_hero .amm_cto, .hero .amm_cto {
  text-align: center;
  transition-timing-function: static;
  -moz-transition-timing-function: static;
  -webkit-transition-timing-function: static;
  -o-transition-timing-function: static;
  transition-duration: static;
  -moz-transition-duration: static;
  -webkit-transition-duration: static;
  -o-transition-duration: static;
  /*transform: static;
  transform: none;*/
  transition-timing-function: initial;
  -moz-transition-timing-function: initial;
  -webkit-transition-timing-function: initial;
  -o-transition-timing-function: initial;
  transition-duration: initial;
  -moz-transition-duration: initial;
  -webkit-transition-duration: initial;
  -o-transition-duration: initial;
  top: 40%;
  position: absolute;
  width: 100%;
  text-align: center;
}
.vc_hero .amm_cto a, .hero .amm_cto a {
  font-family: Akkurat;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 2.28;
  z-index: 10;
  position: relative;
  margin-top: 20px;
  line-height: 1.34;
  display: inline-block;
}

.hero-area {
  /*height: 100vh;*/
  width: 100%;
  overflow: hidden;
}
.hero-area .amm_container {
  /*height: 100vh;*/
  width: 100%;
}

.vc_row-fluid {
  margin-bottom: 70px !important;
}

.amm_slider {
  height: auto !important;
}

.single section {
  padding-top: 0px;
}
.single section .container {
  padding: 0px;
}

.vc_column_container > .vc_column-inner {
  padding: 0px !important;
}

.vc_images_carousel .vc_carousel-control .icon-next .icon-prev, .vc_images_carousel .vc_carousel-control .icon-next .flex-prev, .vc_images_carousel .vc_carousel-control .icon-prev, .vc_images_carousel .vc_carousel-control .flex-prev, .flex-direction-nav .icon-prev, .flex-direction-nav .flex-prev {
  background-image: url(../images/arrow-left.svg);
  background-repeat: no-repeat;
  text-indent: -10000000000000000px;
  background-position: center center;
  transition: initial !important;
  transition: static !important;
  left: 0px !important;
}
.vc_images_carousel .vc_carousel-control .icon-next .icon-prev:before, .vc_images_carousel .vc_carousel-control .icon-next .flex-prev:before, .vc_images_carousel .vc_carousel-control .icon-prev:before, .vc_images_carousel .vc_carousel-control .flex-prev:before, .flex-direction-nav .icon-prev:before, .flex-direction-nav .flex-prev:before {
  content: "" !important;
}
.vc_images_carousel .vc_carousel-control .icon-next .icon-next, .vc_images_carousel .vc_carousel-control .icon-next .flex-next, .vc_images_carousel .vc_carousel-control .icon-next, .vc_images_carousel .vc_carousel-control .flex-next, .flex-direction-nav .icon-next, .flex-direction-nav .flex-next {
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  text-indent: -10000000000000000px;
  background-position: center center;
}
.vc_images_carousel .vc_carousel-control .icon-next .icon-next:before, .vc_images_carousel .vc_carousel-control .icon-next .flex-next:before, .vc_images_carousel .vc_carousel-control .icon-next:before, .vc_images_carousel .vc_carousel-control .flex-next:before, .flex-direction-nav .icon-next:before, .flex-direction-nav .flex-next:before {
  content: "" !important;
}

.slick-slider img, .slick-slider .slick-slide {
  outline: none !important;
}
.slick-slider img {
  margin: 0 auto;
}

.slick-arrow {
  background-repeat: no-repeat;
  text-indent: -10000000000000000px;
  background-position: center center;
  width: 22.7px;
  height: 19.6px;
  display: inline-block;
  border: 0;
  outline: none;
  background-color: transparent;
  position: absolute;
  z-index: 1;
  top: 0;
  border: 0;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  height: 200px;
  width: 85px;
}

.slick-prev {
  left: 0px;
  background-image: url(../images/arrow-left.svg);
  background-position: center;
  width: 161px;
}

.slick-next {
  right: 0px;
  background-image: url(../images/arrow-right.svg);
  background-position: center;
  width: 161px;
}

.slick-dots {
  list-style-type: none;
  position: absolute;
  padding: 0px;
  margin-top: -35px;
  text-align: center;
  left: 0;
  right: 0;
}
.slick-dots li {
  vertical-align: top;
  display: inline-block;
  width: 20px;
  height: 1px;
  margin-right: 12px;
  background-color: rgba(185, 185, 185, 0.6);
  cursor: pointer;
}
.slick-dots li:first-child {
  margin-left: 12px;
}
.slick-dots li button {
  display: none;
}
.slick-dots .slick-active {
  height: 2px;
  background-color: #b9b9b9;
}

.wpb_gallery_slides ul.flex-direction-nav li {
  transition: initial !important;
  transition: static !important;
  opacity: 1 !important;
}
.wpb_gallery_slides ul.flex-direction-nav li:hover {
  transition: initial !important;
  transition: static !important;
  left: 0px !important;
  opacity: 1 !important;
}
.wpb_gallery_slides ul.flex-direction-nav li .flex-prev {
  left: 0px !important;
}
.wpb_gallery_slides ul.flex-direction-nav li .flex-next {
  right: 0px !important;
}

.flex-direction-nav a {
  opacity: 1 !important;
}

.wpb_gallery .wpb_flexslider .flex-control-nav {
  margin-top: -35px;
}

.vc_images_carousel .vc_carousel-indicators li, .vc_images_carousel .vc_carousel-indicators a, .flex-control-paging li, .flex-control-paging a {
  border-radius: 0px !important;
  width: 20px !important;
  height: 2px !important;
  border-color: #a7a9ac !important;
  margin-right: 12px !important;
}

.flexslider {
  border: none !important;
  box-shadow: none !important;
}

.vc_images_carousel .vc_carousel-indicators .vc_active {
  border: solid 1px #0a0a0a !important;
}

.flex-control-paging a.flex-active {
  background-color: #0a0a0a !important;
}

.amm_parallax .vc_column_container {
  height: initial !important;
  height: static !important;
}

.amm_2_col_img {
  max-width: 1300px;
  margin: 0 auto !important;
  margin-bottom: 70px !important;
}
.amm_2_col_img .vc_column_container {
  max-width: 640px;
}
.amm_2_col_img .vc_column_container:first-child {
  margin-right: 20px;
}

.grid-news-img, .grid-pdp-img {
  position: absolute;
  left: 0;
  top: 0;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}

.news-grid-img, .pdp-grid-img {
  /* height: 100%; */
  width: 100%;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}

.grid-pdp-img {
  margin: 0 auto;
  left: 0;
  right: 0;
}

.grid-hide {
  opacity: 0;
}

.grid-show {
  position: relative;
  opacity: 1;
  z-index: 2;
  border: 0px;
}

.news-list .contents, .pt-list .contents {
  position: relative;
}

.imgborder {
  border: 1px solid #d2d2d2 !important;
}

.mask.grid-show {
  opacity: 1 !important;
}

.mask.grid-hide {
  opacity: 0;
}

.list {
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}

.bounce-arrow {
  position: absolute;
  bottom: 32px;
  opacity: 1;
  left: 0;
  right: 0;
  margin: 0 auto;
  cursor: pointer;
  animation: bounce-arrow 1s linear;
  z-index: 10;
}

@keyframes bounce-arrow {
  0% {
    bottom: 64px;
    opacity: 0;
  }
  70% {
    bottom: 16px;
    opacity: 0.5;
  }
  100% {
    bottom: 32px;
    opacity: 1;
  }
}
.amm-img-no-animation figure:hover img {
  transform: none;
  transition: static;
  transition: initial;
  opacity: 1;
  cursor: initial;
  cursor: static;
}

.amm-text-content .vc_col-sm-4 .vc_column-inner {
  margin-top: 78px;
}

.amm-center-vertical img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  transform: translateY(-50%) !important;
}

.mobile-lib-active .single-tablet {
  display: none;
  width: 100%;
}
.mobile-lib-active .single-mobile {
  display: none;
  width: 100%;
}
.mobile-lib-active img {
  display: block;
  margin: 0 auto;
}
.mobile-lib-active .mobile-slider, .mobile-lib-active .tablet-slider {
  display: none;
}

.mobile-lib-active .mobile-slider {
  display: none;
}

.mobile-active .tablet-img, .mobile-active .mobile-img {
  display: none;
}

.more-content {
  max-height: 0px;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: max-height 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 600ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: max-height 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 600ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: max-height 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 600ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: max-height 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 600ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  /* easeInOutQuart */
}
.more-content.exposed {
  max-height: 1000px;
  opacity: 1;
  overflow: initial;
  -webkit-transition: max-height 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 600ms cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition: max-height 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 600ms cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition: max-height 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 600ms cubic-bezier(0.77, 0, 0.175, 1);
  transition: max-height 500ms cubic-bezier(0.77, 0, 0.175, 1), opacity 600ms cubic-bezier(0.77, 0, 0.175, 1);
  -webkit-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -moz-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  -o-transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  transition-timing-function: cubic-bezier(0.77, 0, 0.175, 1);
  /* easeInOutQuart */
}

.more-toggle {
  cursor: pointer;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
  margin-left: 5px;
}
.more-toggle img {
  transition: 0.3s;
  margin-bottom: 3px;
}

.rotate-toggle {
  transform: rotate(45deg);
}

.related-label {
  position: relative;
  max-width: 1440px;
  margin: 0 auto 135px;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 135px;
}
.related-label p {
  float: left;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
  margin: 0px;
}
.related-label a {
  float: right;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  border-bottom: 1px solid #666;
  margin-top: 1px;
}
.related-label a:hover {
  color: #ff6602;
  border-bottom-color: #ff6602;
}
.related-label .container {
  padding: 0px;
}

.related-pt {
  max-width: 1300px;
  margin: 0 auto;
}
.related-pt .container {
  padding: 0px;
}
.related-pt .pt-list .list {
  opacity: 1;
}

#menu-footer-menu li a:hover, #menu-legal-menu li a:hover {
  color: #ff6602 !important;
}

.load-more-work, .load-more-news {
  clear: both;
  height: 70px;
  border: solid 1px #0a0a0a;
  margin-top: 50px;
  text-align: center;
  cursor: pointer;
}
.load-more-work:hover, .load-more-news:hover {
  border-color: #ff6602;
}
.load-more-work:hover span, .load-more-news:hover span {
  color: #ff6602;
}
.load-more-work span, .load-more-news span {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  display: block;
}

.move-text {
  transform: translateY(0px) !important;
  opacity: 1 !important;
}

.animate-text {
  -webkit-animation: animation 2200ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-animation: animation 2200ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-animation: animation 2200ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-animation: animation 2200ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: animation 2200ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 1 !important;
  -webkit-transition: opacity 1200ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1200ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1200ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1200ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 1200ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

.animate-text-mobile {
  -webkit-animation: animation 2200ms cubic-bezier(0.23, 1, 0.32, 1);
  -moz-animation: animation 2200ms cubic-bezier(0.23, 1, 0.32, 1);
  -o-animation: animation 2200ms cubic-bezier(0.23, 1, 0.32, 1);
  -ms-animation: animation 2200ms cubic-bezier(0.23, 1, 0.32, 1);
  animation: animation 2200ms cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -o-animation-fill-mode: forwards;
  -ms-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 1 !important;
  -webkit-transition: opacity 1200ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: opacity 1200ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: opacity 1200ms cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: opacity 1200ms cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: opacity 1200ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

@-webkit-keyframes animation {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 280, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 280, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-moz-keyframes animation {
  0% {
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 280, 0, 1);
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 280, 0, 1);
  }
  100% {
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-o-keyframes animation {
  0% {
    -o-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 280, 0, 1);
    -o-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 280, 0, 1);
  }
  100% {
    -o-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -o-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-ms-keyframes animation {
  0% {
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 280, 0, 1);
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 280, 0, 1);
  }
  100% {
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@keyframes animation {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 280, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 280, 0, 1);
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-webkit-keyframes animation-mobile {
  0% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 180, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 180, 0, 1);
  }
  100% {
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-moz-keyframes animation-mobile {
  0% {
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 180, 0, 1);
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 180, 0, 1);
  }
  100% {
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -moz-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-o-keyframes animation-mobile {
  0% {
    -o-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 180, 0, 1);
    -o-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 180, 0, 1);
  }
  100% {
    -o-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -o-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@-ms-keyframes animation-mobile {
  0% {
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 180, 0, 1);
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 180, 0, 1);
  }
  100% {
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    -ms-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
@keyframes animation-mobile {
  0% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 180, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 180, 0, 1);
  }
  100% {
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
  }
}
.videoWrapper {
  /*	position: relative;
  	padding-bottom: 56.25%;
  	padding-top: 25px;
  	height: 0;*/
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.animate-nav, .overlay-nav {
  z-index: 12;
}

.menu-toggle {
  position: absolute;
  margin: auto;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
  width: 25px;
  z-index: 99999999;
  height: 20px;
  top: 2px;
}

.bar {
  position: absolute;
  height: 2px;
  background-color: black !important;
  padding: 0;
  width: 25.5px;
  background-color: black;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-transition: 0.4s;
  -o-transition: 0.4s;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.model-1 .bar:nth-of-type(1) {
  top: 0px;
  /*  -moz-transition: top 0.3s ease 0.3s, -moz-transform 0.3s ease-out 0.1s;
    -o-transition: top 0.3s ease 0.3s, -o-transform 0.3s ease-out 0.1s;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
    -webkit-transition-delay: 0.3s, 0.1s;
    transition: top 0.3s ease 0.3s, transform 0.3s ease-out 0.1s;
    -moz-animation: mrotr 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    -webkit-animation: mrotr 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    animation: mrotr 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);*/
}

.model-1 .bar:nth-of-type(2) {
  top: 5px;
  /*  -moz-transition: ease 0.3s 0.3s;
    -o-transition: ease 0.3s 0.3s;
    -webkit-transition: ease 0.3s;
    -webkit-transition-delay: 0.3s;
    transition: ease 0.3s 0.3s;
    -moz-animation: fade 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    -webkit-animation: fade 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    animation: fade 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);*/
}

.model-1 .bar:nth-of-type(3) {
  top: 10px;
  /*  -moz-transition: top 0.3s ease 0.3s, -moz-transform 0.3s ease-out 0.1s;
    -o-transition: top 0.3s ease 0.3s, -o-transform 0.3s ease-out 0.1s;
    -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
    -webkit-transition-delay: 0.3s, 0.1s;
    transition: top 0.3s ease 0.3s, transform 0.3s ease-out 0.1s;
    -moz-animation: mrotl 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    -webkit-animation: mrotl 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);
    animation: mrotl 2s cubic-bezier(0.5, 0.2, 0.2, 1.01);*/
  width: 75%;
}

.nav-mobile-animate .model-1 .menu-toggle .bar:nth-of-type(1) {
  top: 5px;
  background-color: white !important;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -moz-transition: top 0.3s ease 0.1s, -moz-transform 0.3s ease-out 0.5s;
  -o-transition: top 0.3s ease 0.1s, -o-transform 0.3s ease-out 0.5s;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
  -webkit-transition-delay: 0.1s, 0.5s;
  transition: top 0.3s ease 0.1s, transform 0.3s ease-out 0.5s;
}
.nav-mobile-animate .model-1 .menu-toggle .bar:nth-of-type(2) {
  opacity: 0;
}
.nav-mobile-animate .model-1 .menu-toggle .bar:nth-of-type(3) {
  top: 5px;
  width: 25.5px;
  background-color: white !important;
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -moz-transition: top 0.3s ease 0.1s, -moz-transform 0.3s ease-out 0.5s;
  -o-transition: top 0.3s ease 0.1s, -o-transform 0.3s ease-out 0.5s;
  -webkit-transition: top 0.3s ease, -webkit-transform 0.3s ease-out;
  -webkit-transition-delay: 0.1s, 0.5s;
  transition: top 0.3s ease 0.1s, transform 0.3s ease-out 0.5s;
}

/*============= Demo  Animation  ================*/
@-moz-keyframes mrotr {
  0% {
    -moz-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -moz-transform: translateY(15px) rotate(0);
    transform: translateY(15px) rotate(0);
  }
  100% {
    -moz-transform: translateY(15px) rotate(45deg);
    transform: translateY(15px) rotate(45deg);
  }
}
@-webkit-keyframes mrotr {
  0% {
    -webkit-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -webkit-transform: translateY(15px) rotate(0);
    transform: translateY(15px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(15px) rotate(45deg);
    transform: translateY(15px) rotate(45deg);
  }
}
@keyframes mrotr {
  0% {
    -moz-transform: translateY(0px) rotate(0);
    -ms-transform: translateY(0px) rotate(0);
    -webkit-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -moz-transform: translateY(15px) rotate(0);
    -ms-transform: translateY(15px) rotate(0);
    -webkit-transform: translateY(15px) rotate(0);
    transform: translateY(15px) rotate(0);
  }
  100% {
    -moz-transform: translateY(15px) rotate(45deg);
    -ms-transform: translateY(15px) rotate(45deg);
    -webkit-transform: translateY(15px) rotate(45deg);
    transform: translateY(15px) rotate(45deg);
  }
}
@-moz-keyframes mrotl {
  0% {
    -moz-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -moz-transform: translateY(-15px) rotate(0);
    transform: translateY(-15px) rotate(0);
  }
  100% {
    -moz-transform: translateY(-15px) rotate(-45deg);
    transform: translateY(-15px) rotate(-45deg);
  }
}
@-webkit-keyframes mrotl {
  0% {
    -webkit-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-15px) rotate(0);
    transform: translateY(-15px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-15px) rotate(-45deg);
    transform: translateY(-15px) rotate(-45deg);
  }
}
@keyframes mrotl {
  0% {
    -moz-transform: translateY(0px) rotate(0);
    -ms-transform: translateY(0px) rotate(0);
    -webkit-transform: translateY(0px) rotate(0);
    transform: translateY(0px) rotate(0);
  }
  50% {
    -moz-transform: translateY(-15px) rotate(0);
    -ms-transform: translateY(-15px) rotate(0);
    -webkit-transform: translateY(-15px) rotate(0);
    transform: translateY(-15px) rotate(0);
  }
  100% {
    -moz-transform: translateY(-15px) rotate(-45deg);
    -ms-transform: translateY(-15px) rotate(-45deg);
    -webkit-transform: translateY(-15px) rotate(-45deg);
    transform: translateY(-15px) rotate(-45deg);
  }
}
@-moz-keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fade {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate-share {
  webkit-transform: rotate(-180deg) scale(1) !important;
  -moz-transform: rotate(-180deg) scale(1) !important;
  -o-transform: rotate(-180deg) scale(1) !important;
  transform: rotate(-180deg) scale(1) !important;
  -webkit-transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
}

.desktop-parallax-slider .bg-txt-holder {
  background-image: none !important;
}
.desktop-parallax-slider .bg-txt-holder img {
  visibility: visible !important;
}
.desktop-parallax-slider p {
  margin-left: 40px !important;
  max-width: 72%;
}

.page-template-legal-page .container, .error404 .container {
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.page-template-legal-page .container .row > .col-lg-1, .page-template-legal-page .container .row .col-lg-2, .page-template-legal-page .container .row .col-lg-3, .page-template-legal-page .container .row .col-lg-4, .page-template-legal-page .container .row .col-lg-5, .page-template-legal-page .container .row .col-lg-6, .page-template-legal-page .container .row .col-lg-7, .page-template-legal-page .container .row .col-lg-8, .page-template-legal-page .container .row .col-lg-9, .page-template-legal-page .container .row .col-lg-10, .page-template-legal-page .container .row .col-lg-11, .page-template-legal-page .container .row .col-lg-12,
.page-template-legal-page .container .row .col-md-1, .page-template-legal-page .container .row .col-md-2, .page-template-legal-page .container .row .col-md-3, .page-template-legal-page .container .row .col-md-4, .page-template-legal-page .container .row .col-md-5, .page-template-legal-page .container .row .col-md-6, .page-template-legal-page .container .row .col-md-7, .page-template-legal-page .container .row .col-md-8, .page-template-legal-page .container .row .col-md-9, .page-template-legal-page .container .row .col-md-10, .page-template-legal-page .container .row .col-md-11, .page-template-legal-page .container .row .col-md-12,
.page-template-legal-page .container .row .col-sm-1, .page-template-legal-page .container .row .col-sm-2, .page-template-legal-page .container .row .col-sm-3, .page-template-legal-page .container .row .col-sm-4, .page-template-legal-page .container .row .col-sm-5, .page-template-legal-page .container .row .col-sm-6, .page-template-legal-page .container .row .col-sm-7, .page-template-legal-page .container .row .col-sm-8, .page-template-legal-page .container .row .col-sm-9, .page-template-legal-page .container .row .col-sm-10, .page-template-legal-page .container .row .col-sm-11, .page-template-legal-page .container .row .col-sm-12,
.page-template-legal-page .container .row .col-xs-1, .page-template-legal-page .container .row .col-xs-2, .page-template-legal-page .container .row .col-xs-3, .page-template-legal-page .container .row .col-xs-4, .page-template-legal-page .container .row .col-xs-5, .page-template-legal-page .container .row .col-xs-6, .page-template-legal-page .container .row .col-xs-7, .page-template-legal-page .container .row .col-xs-8, .page-template-legal-page .container .row .col-xs-9, .page-template-legal-page .container .row .col-xs-10, .page-template-legal-page .container .row .col-xs-11, .page-template-legal-page .container .row .col-xs-12, .error404 .container .row > .col-lg-1, .error404 .container .row .col-lg-2, .error404 .container .row .col-lg-3, .error404 .container .row .col-lg-4, .error404 .container .row .col-lg-5, .error404 .container .row .col-lg-6, .error404 .container .row .col-lg-7, .error404 .container .row .col-lg-8, .error404 .container .row .col-lg-9, .error404 .container .row .col-lg-10, .error404 .container .row .col-lg-11, .error404 .container .row .col-lg-12,
.error404 .container .row .col-md-1, .error404 .container .row .col-md-2, .error404 .container .row .col-md-3, .error404 .container .row .col-md-4, .error404 .container .row .col-md-5, .error404 .container .row .col-md-6, .error404 .container .row .col-md-7, .error404 .container .row .col-md-8, .error404 .container .row .col-md-9, .error404 .container .row .col-md-10, .error404 .container .row .col-md-11, .error404 .container .row .col-md-12,
.error404 .container .row .col-sm-1, .error404 .container .row .col-sm-2, .error404 .container .row .col-sm-3, .error404 .container .row .col-sm-4, .error404 .container .row .col-sm-5, .error404 .container .row .col-sm-6, .error404 .container .row .col-sm-7, .error404 .container .row .col-sm-8, .error404 .container .row .col-sm-9, .error404 .container .row .col-sm-10, .error404 .container .row .col-sm-11, .error404 .container .row .col-sm-12,
.error404 .container .row .col-xs-1, .error404 .container .row .col-xs-2, .error404 .container .row .col-xs-3, .error404 .container .row .col-xs-4, .error404 .container .row .col-xs-5, .error404 .container .row .col-xs-6, .error404 .container .row .col-xs-7, .error404 .container .row .col-xs-8, .error404 .container .row .col-xs-9, .error404 .container .row .col-xs-10, .error404 .container .row .col-xs-11, .error404 .container .row .col-xs-12 {
  padding-left: 0px;
  padding-right: 0px;
}

.transition-block {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
  opacity: 1;
}

.mc-field-group {
  padding-right: 15px !important;
}

#mc_embed_signup_scroll .col-lg-8 {
  padding-left: 0px;
}
#mc_embed_signup_scroll .col-lg-4 {
  margin-right: 0px;
}

.mc-wrap {
  display: table;
  width: 100%;
}
.mc-wrap .mc-field-group {
  vertical-align: top;
  display: table-cell;
  width: 100%;
}

#mce-EMAIL {
  color: #666 !important;
  font-size: 18px;
  font-weight: 300;
  text-transform: none;
  padding: 0px !important;
  border: 0px;
  border-bottom: solid 1px #666 !important;
  background-color: transparent;
  letter-spacing: 0px;
}

#mc_embed_signup div.mce_inline_error {
  color: #666 !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  text-transform: none !important;
  background-color: transparent !important;
  padding: 0px !important;
}

#mc-embedded-subscribe {
  width: 83px;
  letter-spacing: 0 !important;
  color: #666;
  border-radius: 0 !important;
  background-color: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  border-bottom: solid 1px #666 !important;
  outline: 0 !important;
  font-style: normal;
  font-stretch: normal;
  font-weight: 300;
  font-size: 18px;
  transition: 0.5s;
}
#mc-embedded-subscribe:hover {
  color: #ff6602;
  border-bottom: solid 1px #ff6602 !important;
}

#mc_embed_signup div.mce_inline_error {
  margin-bottom: 0px;
  position: absolute;
}

.prevent-transition {
  display: none !important;
  opacity: 0 !important;
}

.logo {
  max-width: 130px !important;
}

.mobile-logo {
  display: none;
}

.nav > li {
  display: block;
  margin: 0px;
}
.nav > li a {
  margin-left: 72px;
  letter-spacing: normal;
}

.nav-black.non-sticky .navbar-nav li a:hover, .nav-black.non-sticky .navbar-nav > .open > a, .nav-black.non-sticky .navbar-nav li a.active, .nav-black.non-sticky .navbar-nav li.current-menu-ancestor a, .nav-black.non-sticky .navbar-nav li.current-menu-item a {
  border-bottom-color: #0a0a0a;
}

/*Override default theme styling*/
#menu-primary-menu {
  padding-top: 1px;
}

.navbar-default {
  max-width: 100%;
  margin: 0 auto;
  position: fixed;
  z-index: 10000;
  background-color: white;
  width: 100%;
  transition-timing-function: static;
  -moz-transition-timing-function: static;
  -webkit-transition-timing-function: static;
  -o-transition-timing-function: static;
  transition-duration: static;
  -moz-transition-duration: static;
  -webkit-transition-duration: static;
  -o-transition-duration: static;
  /*transform: static;
  transform: none;*/
  transition-timing-function: initial;
  -moz-transition-timing-function: initial;
  -webkit-transition-timing-function: initial;
  -o-transition-timing-function: initial;
  transition-duration: initial;
  -moz-transition-duration: initial;
  -webkit-transition-duration: initial;
  -o-transition-duration: initial;
}
.navbar-default .container {
  width: 100%;
  max-width: 1300px;
  height: 70px;
  display: block;
  margin: 0 auto;
}
.navbar-default .container .pull-left {
  padding: 0px;
}
.navbar-default .container .pull-right {
  padding: 0px;
  margin: 0px;
}
.navbar-default .mobile-logo-white {
  display: none;
}
.navbar-default .row {
  padding-top: 0px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  height: 17px;
}

.shrink-nav .logo-light {
  opacity: 1;
  display: table-cell;
}

.sticky-nav .logo-light {
  height: initial;
  height: static;
}

#menu-primary-menu li a {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
  text-transform: none;
  padding: 0px;
  border-bottom: 0px;
  -webkit-transition: color 250ms linear;
  -moz-transition: color 250ms linear;
  -o-transition: color 250ms linear;
  transition: color 250ms linear;
}
#menu-primary-menu li a::after {
  content: " ";
  height: 1px;
  width: 100%;
  background-color: #d2d2d2;
  -webkit-transition: background-color 250ms linear, -webkit-transform 250ms ease-in-out, opacity 300ms ease-in-out;
  -moz-transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 300ms ease-in-out;
  -o-transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 300ms ease-in-out;
  transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 300ms ease-in-out;
  opacity: 0;
  position: absolute;
  left: 0px;
  bottom: 0px;
  -webkit-transform: translateY(500%);
  -ms-transform: translateY(500%);
  -o-transform: translateY(500%);
  transform: translateY(500%);
}
#menu-primary-menu li a:hover {
  color: #ff6602;
}
#menu-primary-menu .current-menu-item a {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
}
#menu-primary-menu .current-menu-item a::after {
  background-color: #0a0a0a;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  -webkit-transition: background-color 250ms linear, -webkit-transform 250ms ease-in-out, opacity 300ms ease-in-out;
  -moz-transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 300ms ease-in-out;
  -o-transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 300ms ease-in-out;
  transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 300ms ease-in-out;
}
#menu-primary-menu .current-menu-item a:hover::after {
  background-color: #ff6602;
}
#menu-primary-menu .current-menu-item.inactive a {
  color: #666666;
  font-weight: 300;
}
#menu-primary-menu .current-menu-item.inactive a::after {
  background-color: #0a0a0a;
  -webkit-transform: translateY(500%);
  -ms-transform: translateY(500%);
  -o-transform: translateY(500%);
  transform: translateY(500%);
  opacity: 0;
}

.hero .amm_cto {
  min-height: 143px;
}
.hero a {
  border-bottom: 1px solid #373737;
  padding-bottom: 3px;
}

#work h1 {
  letter-spacing: -1.5px;
  padding-left: 0px;
}

.news-list .col-sm-4 {
  position: relative;
}
.news-list .item {
  opacity: 0;
}
.news-list .grid-news-img {
  margin: 0 auto;
  left: 0;
  right: 0;
}
.news-list .list {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 20px 20px 20px 20px;
  cursor: pointer;
}
.news-list .list .news-title {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
  max-width: 90%;
}
.news-list .list .news-link {
  position: absolute;
  bottom: 20px;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  border-bottom: 1px solid #666666;
}
.news-list .list .news-link:hover {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #ff6602;
  border-color: #ff6602;
}

@media screen and (max-width: 768px) {
  .news-list .item {
    width: 100%;
    padding: 0px !important;
  }
  .news-list .item .imgborder {
    border: 0px !important;
  }
  .news-list .item .list {
    padding-top: 37px;
    padding-bottom: 50px;
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .news-list .item .list .news-title {
    margin-bottom: 30px;
  }
  .news-list .item .list .news-link {
    position: static;
  }
}
@media screen and (max-width: 414px) {
  .news-list .item .list {
    padding: 20px 20px 38px !important;
  }
  .news-list .item .list:nth-of-type(3n) {
    margin-bottom: 0px;
  }
  .news-list .item .list .news-title {
    max-width: 100% !important;
  }

  #work .news-list .list {
    min-height: initial;
  }
}
@media screen and (max-width: 991px) {
  .news-list .list {
    display: block !important;
    opacity: 1 !important;
    position: static;
    position: initial;
  }
}
@media screen and (min-width: 769px) {
  #work .news-list .item {
    margin-bottom: 0px !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .news-list {
    padding: 0px 10px !important;
  }
  .news-list .item {
    padding: 0px 10px !important;
  }
  .news-list .item:nth-of-type(3n) {
    display: none;
  }
  .news-list .item .contents .list {
    position: absolute;
    background-color: white;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .news-list .item .contents .list .news-title {
    max-width: 100%;
  }
}
@media screen and (min-width: 1200px) {
  .news-list .list .news-title {
    font-family: Akkurat, "Arial", sans-serif;
    font-size: 30px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.3;
    color: #0a0a0a;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1755px) {
  .news-list {
    padding: 0px 10px;
  }
  .news-list .item {
    padding: 0px 10px !important;
  }
  .news-list .item .news-title {
    max-width: 100%;
  }
}
@media screen and (min-width: 1317px) and (max-width: 1755px) {
  .news-list {
    padding: 0px 0px;
  }
  .news-list .item {
    padding: 0px !important;
  }
  .news-list .item .news-title {
    max-width: 100%;
  }
}
@media screen and (min-width: 1440px) {
  .news-list .list {
    padding: 20px;
  }
  .news-list .list .news-title {
    font-family: Akkurat, "Arial", sans-serif;
    font-size: 30px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.3;
    color: #0a0a0a;
  }
  .news-list .list .news-link {
    bottom: 20px;
  }
  .news-list .list .date {
    display: initial;
  }
}
@media screen and (min-width: 1756px) {
  .news-list .list {
    padding: 30px;
  }
  .news-list .list .news-title {
    max-width: 90%;
  }
  .news-list .list .news-link {
    bottom: 30px;
  }
  .news-list .list .date {
    display: inline-block;
    margin-bottom: 18px;
  }
}
#work .row .vc_row-fluid:first-child {
  margin-bottom: 0px !important;
}
#work .row .vc_row-fluid:nth-child(2) {
  padding-top: 70px !important;
  margin-bottom: 0px !important;
}
#work .row #pdp {
  padding-top: 70px !important;
}

.pt-list .list {
  margin-bottom: 20px;
  opacity: 0;
}
.pt-list .list .mask {
  opacity: 0;
  border: 1px solid #d2d2d2;
  transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -webkit-transition: opacity 0.3s ease-in-out;
}
.pt-list .list .contents .pdp-grid-img {
  cursor: pointer;
}
.pt-list .list .post-content {
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  padding: 20px 20px 20px;
  cursor: pointer;
}
.pt-list .list .post-content .project-title {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
  text-transform: none;
  letter-spacing: 0;
}
.pt-list .list .post-content .project-title a {
  letter-spacing: 0;
}
.pt-list .list .post-content .project-title a:hover {
  color: #0a0a0a;
}
.pt-list .list .post-content .project-blurb {
  margin-top: 50px;
  margin-bottom: 26px;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
  position: absolute;
  bottom: 33px;
}
.pt-list .list .post-content > a {
  position: absolute;
  bottom: 20px;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  border-bottom: 1px solid #666666;
}
.pt-list .list .post-content > a:hover {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #ff6602;
  border-color: #ff6602;
}

@media screen and (min-width: 415px) and (max-width: 768px) {
  .pt-list .list .contents .post-content .project-title {
    margin-bottom: 50px;
  }
  .pt-list .list .contents .post-content .project-blurb {
    position: static;
    margin-bottom: 25px;
  }
  .pt-list .list .contents .post-content > a {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  .pt-list .list {
    margin-bottom: 0px;
  }
  .pt-list .item {
    width: 100% !important;
    padding: 0px !important;
    margin-bottom: 0px;
  }
  .pt-list .item .img-border {
    border: 0px !important;
  }
  .pt-list .item .post-content {
    position: initial;
    padding-top: 37px !important;
    padding-left: 45px !important;
    padding-right: 45px !important;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 414px) {
  .pt-list .item .post-content {
    padding: 37px 20px 38px !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  .pt-list {
    padding-top: 70px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .pt-list .item {
    padding: 0px 10px !important;
  }
  .pt-list .list:hover img {
    visibility: visible;
    border: 0px;
  }
  .pt-list .list .post-content {
    display: block;
    position: absolute;
    background-color: white;
  }
  .pt-list .list .post-content .project-blurb {
    display: block;
    margin-top: 0px;
    margin-bottom: 25px;
    bottom: 45;
  }
  .pt-list .list .post-content a {
    padding-bottom: 2px;
  }
  .pt-list .load-more-work {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 992px) {
  .pt-list .list .project-blurb {
    max-width: 92%;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  #work .pt-list {
    padding-top: 0px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1316px) {
  .pt-list {
    padding: 0px 10px;
  }
  .pt-list .item {
    width: 33.3333%;
    padding: 0px 10px !important;
  }
}
@media screen and (min-width: 1441px) {
  .pt-list .list .contents .post-content {
    padding: 21px 29px 30.6px;
  }
  .pt-list .list .contents .post-content .project-blurb {
    bottom: 43.6px;
  }
  .pt-list .list .contents .post-content > a {
    bottom: 30.6px;
  }
}
.single-project_pt .blog-details-text .vc_row-fluid:first-child {
  margin-bottom: 0px !important;
}
.single-project_pt .blog-details-text .vc_row-fluid:nth-child(2) {
  /*padding-top: 130px !important;*/
}
.single-project_pt .blog-details-text .vc_row-fluid:nth-child(3) {
  transition-timing-function: ease-in-out !important;
  -moz-transition-timing-function: ease-in-out !important;
  -webkit-transition-timing-function: ease-in-out !important;
  -o-transition-timing-function: ease-in-out !important;
  transition-duration: 0.1s !important;
  -moz-transition-duration: 0.1s !important;
  -webkit-transition-duration: 0.1s !important;
  -o-transition-duration: 0.1s !important;
}
.single-project_pt .blog-details-text .vc_row-fluid:nth-child(3) div, .single-project_pt .blog-details-text .vc_row-fluid:nth-child(3) img {
  transition-timing-function: ease-in-out !important;
  -moz-transition-timing-function: ease-in-out !important;
  -webkit-transition-timing-function: ease-in-out !important;
  -o-transition-timing-function: ease-in-out !important;
  transition-duration: 0.1s !important;
  -moz-transition-duration: 0.1s !important;
  -webkit-transition-duration: 0.1s !important;
  -o-transition-duration: 0.1s !important;
}
.single-project_pt .tablet-pdp-related-img {
  display: none;
}
.single-project_pt .img-txt-parallax .amm_header_text p {
  max-width: 600px;
}

.compose-mode .vc_element {
  height: 100% !important;
}

.mobile-active .mobile-img {
  display: none;
}

.colorpicker {
  height: 100%;
  height: 936px;
}
.colorpicker .img-frame {
  display: block;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.colorpicker #picker {
  cursor: crosshair;
  top: 60px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
  z-index: 2;
}
.colorpicker .col-sm-6 {
  height: 100%;
}
.colorpicker .img-glow {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 20%;
}
.colorpicker .caption {
  color: white;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  font-weight: 300;
  font-size: 30px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  position: absolute;
}

.single-project_pt .amm_header_text p, .post-type-project_pt .amm_header_text p {
  font-size: 65px;
}
.single-project_pt .blog-details-text > .vc_row-fluid:first-child, .post-type-project_pt .blog-details-text > .vc_row-fluid:first-child {
  margin-bottom: 129px !important;
  height: auto !important;
}
.single-project_pt .blog-details-text > .vc_row-fluid:last-child, .post-type-project_pt .blog-details-text > .vc_row-fluid:last-child {
  height: initial;
  height: static;
  margin-bottom: 60px !important;
}
.single-project_pt .site-share-section, .post-type-project_pt .site-share-section {
  margin-bottom: 290px !important;
}
.single-project_pt .row, .post-type-project_pt .row {
  margin: 0px;
}
.single-project_pt .amm-height-auto, .post-type-project_pt .amm-height-auto {
  height: auto !important;
}
.single-project_pt .amm-text-content, .post-type-project_pt .amm-text-content {
  height: initial;
  height: static;
}
.single-project_pt .amm_cto h1, .post-type-project_pt .amm_cto h1 {
  color: white;
  font-family: Akkurat;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
}
.single-project_pt .amm-cont_2-3_1-3, .post-type-project_pt .amm-cont_2-3_1-3 {
  padding-left: 70px !important;
  padding-right: 70px !important;
  margin-bottom: 226px !important;
}
.single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8, .post-type-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 {
  margin-left: 110px;
  width: 65.666666%;
}
.single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 h4, .post-type-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 h4 {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
  margin-bottom: 39px;
}
.single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 h4 a, .post-type-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 h4 a {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
  padding-bottom: 4px;
  border-bottom: 2px solid #666;
}
.single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 p, .post-type-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 p {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #999999;
}
.single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4, .post-type-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 {
  width: 23.333333%;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
}
.single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper, .post-type-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper {
  padding-left: 129px;
}
.single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper .wpb_wrapper, .post-type-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper .wpb_wrapper {
  padding-left: 0px;
}
.single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper .wpb_wrapper h5, .post-type-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper .wpb_wrapper h5 {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  text-transform: none;
  margin-top: 10px;
}
.single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper .wpb_wrapper p, .post-type-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper .wpb_wrapper p {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
}
.single-project_pt .amm-cont_2-3_1-3 .share p, .post-type-project_pt .amm-cont_2-3_1-3 .share p {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  display: inline-block;
  border-bottom: 2px solid #666;
}
.single-project_pt .vc_column_container, .single-project_pt .vc_column-inner, .single-project_pt .wpb_wrapper, .single-project_pt .wpb_single_image,
.single-project_pt .vc_single_image-wrapper, .single-project_pt .wpb_content_element, .single-project_pt .compose-mode .vc_element .vc_element-container,
.single-project_pt .compose-mode .vc_element, .post-type-project_pt .vc_column_container, .post-type-project_pt .vc_column-inner, .post-type-project_pt .wpb_wrapper, .post-type-project_pt .wpb_single_image,
.post-type-project_pt .vc_single_image-wrapper, .post-type-project_pt .wpb_content_element, .post-type-project_pt .compose-mode .vc_element .vc_element-container,
.post-type-project_pt .compose-mode .vc_element {
  height: 100%;
}
.single-project_pt .amm-img-no-animation img, .post-type-project_pt .amm-img-no-animation img {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.single-project_pt .amm-cont_1 .wpb_wrapper, .post-type-project_pt .amm-cont_1 .wpb_wrapper {
  max-width: 980px;
}
.single-project_pt .amm-cont_1 .wpb_wrapper .wpb_text_column, .post-type-project_pt .amm-cont_1 .wpb_wrapper .wpb_text_column {
  overflow: hidden;
}
.single-project_pt .amm-cont_1 .wpb_wrapper .wpb_wrapper, .post-type-project_pt .amm-cont_1 .wpb_wrapper .wpb_wrapper {
  height: initial;
  height: static;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.single-project_pt .amm-cont_1 .wpb_wrapper .wpb_wrapper p, .post-type-project_pt .amm-cont_1 .wpb_wrapper .wpb_wrapper p {
  transform: translateY(50%);
  opacity: 0;
  transition: 0.7s;
  margin-bottom: 0px;
  position: relative;
  top: 25%;
}
.single-project_pt .amm-cont_1 .wpb_wrapper .wpb_wrapper h5, .post-type-project_pt .amm-cont_1 .wpb_wrapper .wpb_wrapper h5 {
  display: none;
  position: absolute;
}
.single-project_pt .amm-cont_1 .vc_column_container p, .post-type-project_pt .amm-cont_1 .vc_column_container p {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 65px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: #373737;
}
.single-project_pt .amm-cont_1 .vc_column_container h5, .post-type-project_pt .amm-cont_1 .vc_column_container h5 {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #999999;
  text-transform: none;
}
.single-project_pt .link, .post-type-project_pt .link {
  float: left;
}
.single-project_pt .share, .post-type-project_pt .share {
  float: right;
}
.single-project_pt .load-more-work-holder, .post-type-project_pt .load-more-work-holder {
  display: none;
}
.single-project_pt footer, .post-type-project_pt footer {
  margin-top: 70px;
}

#beats .img-txt-parallax .amm_header_text p, #leeo .img-txt-parallax .amm_header_text p {
  line-height: 1.2;
  letter-spacing: -1.5px;
}

@media screen and (min-width: 415px) and (max-width: 768px) {
  .related-pt .pt-list .list .item .imgborder {
    border: 0px !important;
  }
  .related-pt .pt-list .list .item.show-animate-grid {
    display: none !important;
  }
  .related-pt .pt-list .list .item.show-animate-grid:first-child {
    display: block !important;
  }
}
@media screen and (max-width: 414px) {
  .related-pt .pt-list .list .item .imgborder {
    border: 0px !important;
  }
  .related-pt .pt-list .list .item.show-animate-grid {
    display: none !important;
  }
  .related-pt .pt-list .list .item.show-animate-grid:first-child {
    display: block !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1119px) {
  .related-pt .pt-list {
    padding-left: 10px;
    padding-right: 10px;
  }
  .related-pt .pt-list .list .item {
    width: 33.3333%;
    padding: 0px 10px !important;
  }
  .related-pt .pt-list .list .item.show-animate-grid:nth-of-type(3n) {
    display: none !important;
  }
}
@media screen and (min-width: 1120px) and (max-width: 1316px) {
  .related-pt .pt-list .list {
    padding: 0px 10px;
  }
  .related-pt .pt-list .list .item {
    padding: 0px 10px !important;
  }
}
@media screen and (min-width: 1317px) and (max-width: 1319px) {
  .related-pt .pt-list {
    padding-left: 10px;
  }
}
@media screen and (min-width: 1200px) and (max-width: 1755px) {
  .related-pt .pt-list .list .item {
    max-width: 420px;
    margin-right: 20px;
  }
  .related-pt .pt-list .list .item:nth-of-type(3n) {
    margin-right: 0px;
  }
  .related-pt .pt-list .list .item .contents .post-content {
    padding: 20px !important;
  }
}
@media screen and (min-width: 1756px) and (max-width: 1756px) {
  .related-pt .pt-list .list .item {
    max-width: 420px;
    margin-right: 30px;
  }
  .related-pt .pt-list .list .item:nth-of-type(3n) {
    margin-right: 0px;
  }
  .related-pt .pt-list .list .item .contents .post-content {
    padding: 20px;
  }
}
@media screen and (min-width: 1756px) {
  .related-pt .pt-list .list .item {
    max-width: 560px;
    margin-right: 30px;
  }
  .related-pt .pt-list .list .item:nth-of-type(3n) {
    margin-right: 0px;
  }
}
@media screen and (min-width: 1757px) {
  .related-pt {
    max-width: 1740px;
  }
}
#about .amm-text-content .vc_column-inner > .wpb_wrapper {
  overflow: hidden;
}
#about .vc_single_image {
  max-width: 100% !important;
  width: 100%;
}
#about .vc_single_image img {
  width: 100%;
}
#about .vc_clearfix:before, #about .vc_clearfix:after {
  display: none;
}
#about .vc_row-fluid:first-child {
  margin-bottom: 0px !important;
}
#about .vc_row-fluid:last-child {
  margin-bottom: 0px !important;
}
#about .vc_row-fluid:nth-child(2) {
  height: 815px;
  margin-bottom: 70px !important;
  margin-top: 0px !important;
}
#about .vc_row-fluid:nth-child(2) p {
  margin-top: 316px;
  margin-bottom: 316px;
}
#about .vc_row-fluid:nth-child(2) .blurb {
  margin-top: 0px;
  margin-bottom: 0px;
}
#about .img-txt-parallax .amm_header_text p {
  max-width: 600px;
}
#about .img-txt-parallax .amm_header_text p span {
  padding-bottom: 20px;
}
#about .amm-img-no-animation img:hover {
  transform: none;
  opacity: 1;
  cursor: initial;
  cursor: static;
}
#about .btn-play {
  padding: 20px 82px;
  color: white;
  border: 1px solid white;
  cursor: pointer;
  font-size: 18px;
}
#about .amm-text-content {
  padding-left: 70px !important;
  padding-right: 70px !important;
  margin-top: 200px !important;
  margin-bottom: 210px !important;
}
#about .amm-text-content:nth-last-of-type(1) {
  margin-top: 207px !important;
  margin-bottom: 207px !important;
}
#about .amm-text-content .vc_column_container {
  padding-left: 110px;
}
#about .amm-text-content .vc_column_container .wpb_wrapper {
  max-width: 940px;
  width: 100%;
}
#about .amm-text-content .vc_column_container .wpb_wrapper .blurb .wpb_wrapper {
  transform: translateY(50%);
  top: 50%;
  opacity: 0;
  padding-left: 8px;
  padding-top: 13px;
}
#about .amm-text-content .vc_column_container p {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #999999;
  margin-bottom: 40px;
}
#about .amm-text-content .vc_column_container p:last-child {
  margin-bottom: 0px;
}
#about .amm-text-content .vc_column_container .see-works, #about .amm-text-content .vc_column_container .see-careers, #about .amm-text-content .vc_column_container .contact-us {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
}
#about .amm-text-content .vc_column_container .see-works:hover, #about .amm-text-content .vc_column_container .see-careers:hover, #about .amm-text-content .vc_column_container .contact-us:hover {
  color: #ff6602;
}
#about .amm-text-content .vc_column_container .blurb {
  margin-top: 77px;
  margin-bottom: 67px;
}
#about .amm-text-content .vc_column_container .blurb p {
  max-width: 940px;
  width: 100%;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 65px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: #373737;
}
#about .amm-text-content .vc_column_container a {
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
  border-bottom: solid 1px #0a0a0a;
}
#about .amm_2_col_img .vc_col-sm-6 {
  margin-bottom: 130px;
}
#about .amm-col-2-img {
  margin-bottom: 200px !important;
  max-width: 1300px;
  margin: 0 auto !important;
}
#about .amm-col-2-img .vc_col-sm-6 {
  max-width: 640px;
}
#about .amm-col-2-img .vc_col-sm-6:first-child {
  margin-right: 20px;
}
#about .amm-col-2-img img:hover {
  transform: none;
  opacity: 1;
  cursor: initial;
  cursor: static;
}
#about .ui-sortable .team-list .mobile {
  display: block !important;
}
#about .ui-sortable .team-list .team-info, #about .ui-sortable .team-list .post-content {
  display: none !important;
}
#about .desktop-view .row > .inner-container .post-content {
  display: none;
}
#about .mobile-view .row .inner-container .post-content {
  display: none;
}
#about .mobile-view .row .team-info .post-content {
  display: block !important;
}
#about .team-list h1 {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 65px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: #373737;
  background-color: #f5f5f5;
  padding-left: 180px;
  padding-top: 120px;
  padding-bottom: 60px;
}
#about .team-list .row {
  margin: 0px;
  background-color: #f5f5f5;
}
#about .team-list ul {
  padding: 0px;
  list-style-type: none;
}
#about .team-list .mobile-view {
  display: none;
}
#about .team-list .mobile {
  display: none;
}
#about .team-list .info {
  padding-left: 8.33333333%;
}
#about .team-list .info:nth-child(2) .inner-post {
  padding-left: 32px;
}
#about .team-list .info:nth-child(3) .inner-post {
  padding-left: 62px;
}
#about .team-list .info .name {
  margin-top: 58px;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
}
#about .team-list .info .position {
  margin-bottom: 26px;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
}
#about .team-list .info a {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  padding-bottom: 2px;
  border-bottom: 1px solid #0a0a0a;
}
#about .team-list .info a:hover {
  color: #ff6602;
  border-color: #ff6602;
}
#about .team-list .team-info {
  height: 280px;
  background-color: white;
}
#about .team-list .team-info .post-content {
  display: block;
}
#about .team-list .list {
  background-color: #f5f5f5;
}
#about .team-list .list .post-content .name {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
}
#about .team-list .list .post-content .position {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
  margin-bottom: 26px;
}
#about .team-list .list .post-content a {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  padding-bottom: 2px;
  border-bottom: solid 1px #0a0a0a;
}
#about footer {
  margin-top: 0px;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  #about .vc_row-fluid.amm-text-content.second-blurb .blurb p br {
    display: none;
  }
}
@media screen and (min-width: 1200px) {
  #about .vc_row-fluid.amm-text-content.second-blurb .blurb p {
    margin-top: 207px;
    margin-bottom: 77px;
  }
}
@media screen and (min-width: 1440px) {
  #about .vc_row-fluid.amm-text-content.second-blurb .blurb p {
    margin-top: 532px;
    margin-bottom: 426px;
  }
}
.page-template-news-page > div:nth-last-child(2) {
  display: none;
}
.page-template-news-page .categories {
  margin-top: 69px;
  padding-top: 39px;
  padding-bottom: 0px;
  margin-bottom: 0px;
  background-color: white;
  border-bottom: 0px;
  position: relative;
  z-index: 10;
}
.page-template-news-page .categories ul {
  padding: 0px;
  margin-bottom: 0px;
  list-style-type: none;
}
.page-template-news-page .categories ul li {
  display: inline-block;
  position: relative;
  margin-right: 46px;
  margin-bottom: 35px;
  cursor: pointer;
  -webkit-transition: color 250ms linear;
  -moz-transition: color 250ms linear;
  -o-transition: color 250ms linear;
  transition: color 250ms linear;
  font-size: 18px;
}
.page-template-news-page .categories ul li:hover, .page-template-news-page .categories ul li:active {
  color: #ff6602;
}
.page-template-news-page .categories ul li:last-child {
  margin-right: 0px;
}
.page-template-news-page .categories ul li::after {
  content: " ";
  height: 1px;
  width: 100%;
  background-color: #d2d2d2;
  -webkit-transition: background-color 250ms linear, -webkit-transform 250ms ease-in-out, opacity 400ms ease-in-out;
  -moz-transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 400ms ease-in-out;
  -o-transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 400ms ease-in-out;
  transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 400ms ease-in-out;
  opacity: 0;
  position: absolute;
  left: 0px;
  bottom: 1px;
  -webkit-transform: translateY(800%);
  -ms-transform: translateY(800%);
  -o-transform: translateY(800%);
  transform: translateY(800%);
}
.page-template-news-page .categories ul .inactive::after {
  background-color: #0a0a0a;
  -webkit-transform: translateY(800%);
  -ms-transform: translateY(800%);
  -o-transform: translateY(800%);
  transform: translateY(800%);
  opacity: 0;
}
.page-template-news-page .categories ul .term-active {
  color: #0a0a0a;
  font-weight: normal;
}
.page-template-news-page .categories ul .term-active::after {
  background-color: #0a0a0a;
  transform: translateY(0%);
  opacity: 1;
  -webkit-transition: background-color 250ms linear, -webkit-transform 250ms ease-in-out, opacity 400ms ease-in-out;
  -moz-transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 400ms ease-in-out;
  -o-transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 400ms ease-in-out;
  transition: background-color 250ms linear, transform 250ms ease-in-out, opacity 400ms ease-in-out;
}
.page-template-news-page .categories ul .term-active:hover::after {
  background-color: #ff6602;
}
.page-template-news-page .categories ul .term-active.inactive {
  color: #666666;
  font-weight: 300;
}
.page-template-news-page .categories ul .term-active.inactive::after {
  background-color: #0a0a0a;
  -webkit-transform: translateY(800%);
  -ms-transform: translateY(800%);
  -o-transform: translateY(800%);
  transform: translateY(800%);
  opacity: 0;
}
.page-template-news-page hr {
  margin-top: 28px;
  margin-bottom: 35px;
  border-color: #D2D2D2;
}
.page-template-news-page .latest-news-list {
  margin-bottom: 70px;
  opacity: 1;
}
.page-template-news-page .latest-news-list.animated.fadeOutUp {
  display: none !important;
}
.page-template-news-page .latest-news-list hr {
  margin-top: 70px;
}
.page-template-news-page .latest-news-list hr:nth-last-of-type(1) {
  display: none;
}
.page-template-news-page .latest-news-list .list > .col-md-6 {
  max-width: initial;
  margin-right: 0px;
}
.page-template-news-page .latest-news-list .list .inner-row {
  margin-left: -15px;
  margin-right: -15px;
}
.page-template-news-page .latest-news-list .list .news-img a {
  display: block;
  width: 100%;
}
.page-template-news-page .latest-news-list .list .news-img img {
  width: 100%;
  height: auto;
}
.page-template-news-page .latest-news-list .list .mask {
  visibility: hidden;
  display: none;
  width: 100%;
  height: auto;
}
.page-template-news-page .latest-news-list .list .news-info {
  padding: 15px 20px 0px;
  margin-bottom: 35px;
  position: relative;
}
.page-template-news-page .latest-news-list .list .news-info .date {
  line-height: 1.86;
  margin-top: 1px;
  margin-bottom: 10px;
  display: block;
}
.page-template-news-page .latest-news-list .list .news-info .news-title {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
  max-width: 420px;
  margin-bottom: 60px;
  display: block;
}
.page-template-news-page .latest-news-list .list .news-info .read-more-link {
  position: static;
  bottom: 0px;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  border-bottom: 1px solid #666666;
}
.page-template-news-page .latest-news-list .list .news-info .read-more-link:hover {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #ff6602;
  border-color: #ff6602;
}

#newsGrid {
  margin-bottom: 70px;
  display: block;
}
#newsGrid::before, #newsGrid::after {
  content: " ";
  display: table;
}
#newsGrid::after {
  clear: both;
}
#newsGrid .item {
  height: auto;
  padding: 0px;
  border-top: 1px solid #d2d2d2;
}
#newsGrid .item:nth-last-of-type(2) {
  border-bottom: 1px solid #d2d2d2;
}
#newsGrid .item:nth-of-type(3n) {
  margin-top: 0px;
}
#newsGrid .item .contents {
  height: 100%;
}
#newsGrid .item .list {
  padding: 12px 20px 40px;
}
#newsGrid .item .list > .col-md-6 {
  max-width: initial;
}
#newsGrid .item .list .date {
  line-height: 1.86;
  margin-top: 1px;
  margin-bottom: 10px;
  display: block;
}
#newsGrid .item .list .news-title {
  display: block;
  margin-bottom: 60px;
  font-size: 18px;
}
#newsGrid .item .list .news-link {
  position: absolute;
  bottom: 40px;
}

.btn-load-posts {
  max-width: 100%;
  padding: 25px 0px 25px;
  margin-left: 15px;
  margin-right: 15px;
  margin-bottom: 70px;
  border: 1px solid #0a0a0a;
  text-align: center;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  line-height: 1.44;
  cursor: pointer;
  display: block;
}
.btn-load-posts:hover {
  border-color: #ff6602;
  color: #ff6602;
}

@media screen and (max-width: 480px) {
  .page-template-news-page .categories {
    margin-top: 48px;
    padding-top: 46px;
  }
}
@media screen and (max-width: 767px) {
  .page-template-news-page .categories {
    padding-left: 20px;
    padding-right: 20px;
  }

  #newsGrid .item {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  #newsGrid .item .news-grid-img {
    display: none;
  }
}
@media screen and (min-width: 415px) and (max-width: 767px) {
  .page-template-news-page .categories {
    padding-left: 45px;
    padding-right: 45px;
  }
  .page-template-news-page .categories li {
    margin-right: 47px;
  }
  .page-template-news-page .latest-news-list .list > .col-md-6 {
    margin-bottom: 0px;
  }
  .page-template-news-page .latest-news-list .list .news-img {
    margin-bottom: 0px;
  }
  .page-template-news-page .latest-news-list .list .news-title {
    margin-bottom: 50px;
  }
  .page-template-news-page .latest-news-list .list .news-info {
    padding: 32px 45px 50px;
    margin-bottom: 0px;
  }

  #newsGrid {
    margin-bottom: 30px;
  }
  #newsGrid .item {
    height: auto;
    border: 1px solid #d2d2d2;
    border-bottom: 0px;
  }
  #newsGrid .item:nth-of-type(3n) {
    margin-top: 0px;
  }
  #newsGrid .item:nth-child(odd) {
    border-left: 0px;
  }
  #newsGrid .item:nth-child(even) {
    border-left: 0px;
    border-right: 0px;
  }
  #newsGrid .item:last-child::after, #newsGrid .item:nth-last-of-type(2)::after, #newsGrid .item:nth-last-of-type(3)::after {
    content: " ";
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 100%;
    background-color: #d2d2d2;
  }
  #newsGrid .item .contents {
    height: 100%;
  }
  #newsGrid .item .contents .list {
    padding: 12px 20px 50px;
    cursor: pointer;
  }
  #newsGrid .item .contents .list .news-title {
    display: block;
    margin-bottom: 60px;
  }
  #newsGrid .item .contents .list .news-link {
    bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .page-template-news-page .categories li {
    margin-right: 47px;
  }
  .page-template-news-page .latest-news-list .list .news-title {
    margin-bottom: 50px;
  }
  .page-template-news-page .latest-news-list .list .news-info {
    padding: 32px 45px 50px;
  }

  #newsGrid {
    margin-bottom: 30px;
  }
  #newsGrid .item {
    height: auto;
    border: 1px solid #d2d2d2;
    border-bottom: 0px;
  }
  #newsGrid .item:nth-of-type(3n) {
    margin-top: 0px;
  }
  #newsGrid .item:nth-child(odd) {
    border-left: 0px;
  }
  #newsGrid .item:nth-child(even) {
    border-left: 0px;
    border-right: 0px;
  }
  #newsGrid .item:last-child::after, #newsGrid .item:nth-last-of-type(2)::after, #newsGrid .item:nth-last-of-type(3)::after {
    content: " ";
    height: 1px;
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 100%;
    background-color: #d2d2d2;
  }
  #newsGrid .item .contents {
    height: 100%;
  }
  #newsGrid .item .contents .list {
    padding: 12px 20px 50px;
    cursor: pointer;
  }
  #newsGrid .item .contents .list .news-title {
    display: block;
    margin-bottom: 60px;
  }
  #newsGrid .item .contents .list .news-link {
    bottom: 40px;
  }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
  .page-template-news-page .categories {
    padding-left: 45px;
    padding-right: 45px;
  }
  .page-template-news-page .latest-news-list .list > .col-md-6 {
    margin-bottom: 0px;
  }
  .page-template-news-page .latest-news-list .list .news-img {
    margin-bottom: 0px;
  }
  .page-template-news-page .latest-news-list .list .news-info {
    margin-bottom: 0px;
  }

  #newsGrid .item {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  #newsGrid .item .news-grid-img {
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .page-template-news-page .news-container {
    padding: 0px;
  }
  .page-template-news-page hr {
    display: none;
  }
  .page-template-news-page .news-lists .list .news-img, .page-template-news-page .news-lists .list .col-md-6 {
    float: none;
    padding: 0px;
  }
  .page-template-news-page .news-lists .list .news-info {
    min-height: 247px;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 14px;
    position: static;
    position: initial;
    top: 0;
    margin-bottom: 38px;
  }
  .page-template-news-page .news-lists .list .news-info .news-title {
    margin-bottom: 60px;
  }
  .page-template-news-page .news-lists .list img {
    width: 100%;
  }
}
@media screen and (min-width: 992px) {
  .page-template-news-page .categories {
    margin-left: 15px;
    margin-right: 15px;
    margin-bottom: 35px;
    border-bottom: 1px solid #d2d2d2;
  }
  .page-template-news-page .categories ul li {
    margin-bottom: 30px;
  }
  .page-template-news-page hr {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-template-news-page .news-container {
    margin-left: 5px;
    margin-right: 5px;
  }
  .page-template-news-page .latest-news-list .list .mask {
    display: block;
  }
  .page-template-news-page .latest-news-list .list .inner-row {
    margin-left: 0px;
    margin-right: 0px;
  }
  .page-template-news-page .latest-news-list .list .news-info {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 0px;
    margin-bottom: 0px;
  }
  .page-template-news-page .latest-news-list .list .news-info .read-more-link {
    position: absolute;
  }

  #newsGrid .item {
    margin-bottom: 20px;
    border: 0px;
  }
  #newsGrid .item:last-child, #newsGrid .item:nth-last-of-type(2), #newsGrid .item:nth-last-of-type(3) {
    border-bottom: 0px;
  }
  #newsGrid .item:last-child::after, #newsGrid .item:nth-last-of-type(2)::after, #newsGrid .item:nth-last-of-type(3)::after {
    content: "";
    height: 0px;
    position: absolute;
    bottom: -1px;
    left: 0px;
    width: 100%;
    background-color: transparent;
    display: none;
  }
  #newsGrid .item .contents .list {
    padding: 20px 20px 20px;
  }
  #newsGrid .item .contents .list .news-title {
    font-family: Akkurat, "Arial", sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    color: #0a0a0a;
    max-width: 100%;
  }
  #newsGrid .item .contents .list .news-link {
    position: absolute;
    bottom: 20px;
  }

  .btn-load-posts {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 140px;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  #newsGrid .item:nth-child(even) .contents .list {
    padding-left: 20px;
  }
  #newsGrid .item:nth-of-type(3n) {
    display: block;
  }
  #newsGrid .item .imgborder {
    border: 0px !important;
  }
  #newsGrid .item .contents .list {
    min-height: 274px;
    margin-bottom: 0px;
    position: initial;
    padding-left: 45px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  #newsGrid .item:nth-of-type(3n) {
    display: block;
  }
}
@media screen and (min-width: 992px) and (max-width: 1316px) {
  #newsGrid {
    padding-left: 10px;
    padding-right: 10px;
  }
  #newsGrid .item {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-news-page .categories {
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-template-news-page hr {
    margin-left: 15px;
    margin-right: 15px;
  }
  .page-template-news-page .latest-news-list .list .inner-row {
    margin-left: 0px;
    margin-right: 0px;
  }

  #newsGrid .item {
    margin-bottom: 20px;
  }
  #newsGrid .item .contents .list .news-title {
    font-family: Akkurat, "Arial", sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    color: #0a0a0a;
  }

  .btn-load-posts {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1320px) and (max-width: 1755px) {
  #newsGrid .item .contents .list .news-title {
    font-size: 30px;
    line-height: 1.3;
  }
}
@media screen and (min-width: 1440px) {
  .page-template-news-page .categories {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-template-news-page hr {
    margin-left: 0px;
    margin-right: 0px;
  }
  .page-template-news-page .latest-news-list .list .inner-row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .page-template-news-page .btn-load-posts {
    margin-left: 0px;
    margin-right: 0px;
  }

  #newsGrid {
    margin-left: auto;
    margin-right: auto;
  }
  #newsGrid .item {
    margin-bottom: 30px;
    margin-left: 0px;
    margin-right: 20px;
  }
  #newsGrid .item:nth-of-type(3n) {
    margin-right: 0px;
  }
  #newsGrid .item .contents .list {
    padding: 20px;
  }
  #newsGrid .item .contents .list .news-title {
    font-family: Akkurat, "Arial", sans-serif;
    font-size: 30px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.3;
    color: #0a0a0a;
  }
  #newsGrid .item .contents .list .news-link {
    bottom: 30px;
  }
}
@media screen and (min-width: 1320px) and (max-width: 1755px) {
  #newsGrid .item {
    margin-right: 20px !important;
    margin-bottom: 20px !important;
    max-width: 420px !important;
  }
  #newsGrid .item:nth-of-type(3n) {
    margin-right: 0px !important;
  }
  #newsGrid .item .contents .list .date {
    display: initial;
  }
}
@media screen and (min-width: 1441px) and (max-width: 1756px) {
  #newsGrid .item {
    margin-right: 30px;
    max-width: 413px;
  }
}
@media screen and (min-width: 1317px) and (max-width: 1439px) {
  .page-template-news-page .categories {
    margin-left: 0px;
    margin-right: 0px;
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-template-news-page hr {
    margin-left: 0px;
    margin-right: 0px;
  }
  .page-template-news-page .latest-news-list .list .news-img .inner-row {
    margin-left: -15px;
    margin-right: -15px;
  }
  .page-template-news-page #newsGrid {
    margin-left: auto;
    margin-right: auto;
  }
  .page-template-news-page .btn-load-posts {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media screen and (min-width: 1756px) {
  #newsGrid .item {
    margin-right: 30px;
  }
  #newsGrid .item .contents .list {
    padding: 30px;
  }
  #newsGrid .item .contents .list .news-title {
    max-width: 90%;
  }
  #newsGrid .item .contents .list .date {
    display: inline-block;
    margin-bottom: 18px;
  }
}
.page-template-contact-page-tpl .contact-page-details .amm-studios {
  padding-top: 0px;
}
.page-template-contact-page-tpl .contact-page-details .amm-studios .title {
  margin-bottom: 62px;
}
.page-template-contact-page-tpl .contact-page-details .amm-studios .row:last-child div:last-child .studio-data {
  margin-bottom: 0px;
}
.page-template-contact-page-tpl .contact-page-details .amm-inquiries {
  padding-top: 128px;
}
.page-template-contact-page-tpl .contact-page-details .amm-inquiries .title {
  margin-bottom: 55px;
}
.page-template-contact-page-tpl .contact-page-details .amm-inquiries .row:last-child div:last-child .inquiries-data {
  margin-bottom: 0px;
}
.page-template-contact-page-tpl .contact-page-details .amm-join {
  padding-top: 210px;
}
.page-template-contact-page-tpl .contact-page-details .amm-join .title {
  margin-bottom: 62px;
}

.text-label {
  color: #999999;
  line-height: 1.44;
  margin-bottom: 0px;
}

.title-label {
  line-height: 1.3;
  margin-bottom: 39px;
  color: #0a0a0a;
  font-weight: 400;
  line-height: 1.44;
  margin-bottom: 0;
  font-size: 30px;
  margin-bottom: 39px;
}

.inquiry-list:last-child {
  margin-top: 48px;
}

.studio-data {
  font-size: 18px;
}
.studio-data .location {
  color: #0a0a0a;
  font-weight: normal;
  line-height: 1.44;
  margin-bottom: 0px;
}
.studio-data .address address {
  font-weight: 300;
  font-style: normal;
  color: #999999;
  margin-bottom: 0px;
  line-height: 1.44;
}
.studio-data .directions {
  display: block;
  margin-bottom: 26px;
}
.studio-data .directions .directions-link {
  display: inline-block;
  border-bottom: solid 1px #0a0a0a;
  line-height: 1.44;
  color: #0a0a0a;
  padding-bottom: 0px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
.studio-data .directions .directions-link:hover {
  color: #ff6602;
  border-bottom-color: #ff6602;
}
.studio-data .telephone {
  display: block;
}
.studio-data .telephone .telephone-link {
  display: inline-block;
  border-bottom: solid 1px #0a0a0a;
  padding-bottom: 0px;
  line-height: 1.44;
  color: #0a0a0a;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
.studio-data .telephone .telephone-link:hover {
  color: #ff6602;
  border-bottom-color: #ff6602;
}

.inquiries-data {
  display: block;
  font-size: 18px;
  margin-bottom: 49px;
}
.inquiries-data .email-label {
  color: #999999;
  line-height: 1.44;
}
.inquiries-data .email .email-link {
  display: inline-block;
  border-bottom: solid 1px #0a0a0a;
  padding-bottom: 0px;
  color: #0a0a0a;
  line-height: 1.44;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
.inquiries-data .email .email-link:hover {
  color: #ff6602;
  border-bottom-color: #ff6602;
}

.open-positions {
  display: block;
  font-size: 18px;
  margin-bottom: 62px;
}
.open-positions .position-item {
  display: block;
}
.open-positions .position-item:first-child .amm-border-line.top {
  border-top: 1px solid #d2d2d2;
}
.open-positions .position-item .inner-row {
  margin-left: -15px;
  margin-right: -15px;
}
.open-positions .position-item .amm-border-line.bottom {
  border-bottom: 1px solid #d2d2d2;
}
.open-positions .position-item .job-title {
  color: #0a0a0a;
  font-weight: normal;
  line-height: 1.44;
  padding: 12px 15px 0px;
}
.open-positions .position-item .job-location {
  color: #999999;
  margin-bottom: 26px;
  line-height: 1.44;
  padding: 0px 0px 0px !important;
}
.open-positions .position-item .job-post-link {
  margin-bottom: 38px;
}
.open-positions .position-item .job-post-link a {
  color: #0a0a0a;
  float: none;
  display: inline-block;
  line-height: 1.44;
  border-bottom: solid 1px #373737;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
.open-positions .position-item .job-post-link a #linkArrow {
  margin-left: 13px;
  display: none;
  -webkit-transform: translateX(0px);
  -moz-transform: translateX(0px);
  -ms-transform: translateX(0px);
  -o-transform: translateX(0px);
  transform: translateX(0px);
  -webkit-transition: -webkit-transform 250ms ease;
  -moz-transition: transform 250ms ease;
  -ms-transition: transform 250ms ease;
  -o-transition: transform 250ms ease;
  transition: transform 250ms ease;
}
.open-positions .position-item .job-post-link a #linkArrow g g {
  fill: #221F20;
  -webkit-transition: fill 250ms ease;
  -moz-transition: fill 250ms ease;
  -ms-transition: fill 250ms ease;
  -o-transition: fill 250ms ease;
  transition: fill 250ms ease;
}
.open-positions .position-item .job-post-link a:hover {
  color: #ff6602;
  border-bottom-color: #ff6602;
}
.open-positions .position-item .job-post-link a:hover #linkArrow {
  -webkit-transform: translateX(10px);
  -moz-transform: translateX(10px);
  -ms-transform: translateX(10px);
  -o-transform: translateX(10px);
  transform: translateX(10px);
}
.open-positions .position-item .job-post-link a:hover #linkArrow g g {
  fill: #ff6602;
}

.open-positions-message {
  font-size: 18px;
  margin-bottom: 26px;
  color: #999999;
}

.work-email {
  font-size: 18px;
}
.work-email .work-email-label {
  line-height: 1.4;
  color: #999999;
}
.work-email a {
  display: inline-block;
  border-bottom: solid 1px #0a0a0a;
  padding-bottom: 0px;
  color: #0a0a0a;
  line-height: 1.4;
}
.work-email a:hover {
  color: #ff6602;
  border-bottom-color: #ff6602;
}

@media screen and (min-width: 992px) {
  .page-template-contact-page-tpl .contact-page-details .amm-studios {
    padding-top: 210px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .title {
    margin-bottom: 118px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-inquiries .title {
    margin-bottom: 118px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-inquiries .row:last-child .inquiries-data {
    margin-bottom: 0px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-join {
    padding-top: 210px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-join .title {
    margin-bottom: 108px;
  }

  .studio-data {
    font-size: 30px;
  }
  .studio-data .location {
    line-height: 1.3;
    margin-bottom: 39px;
  }
  .studio-data .address address {
    margin-bottom: 13px;
  }
  .studio-data .directions {
    margin-bottom: 46px;
    display: block;
  }
  .studio-data .directions .directions-link {
    line-height: 1.3;
  }
  .studio-data .telephone .telephone-link {
    line-height: 1.3;
  }

  .inquiries-data {
    font-size: 30px;
    margin-bottom: 53px;
  }

  .open-positions {
    font-size: 30px;
    margin-bottom: 96px;
  }
  .open-positions .position-item .job-title {
    line-height: 1.3;
    color: #999999;
    font-weight: 300;
    padding: 12px 15px 8px;
  }
  .open-positions .position-item .job-location {
    line-height: 1.3;
    margin-bottom: 0px;
    padding: 12px 15px 8px !important;
    margin-right: 0px;
  }
  .open-positions .position-item .job-post-link {
    margin-bottom: 0px;
    padding: 12px 15px 8px;
  }
  .open-positions .position-item .job-post-link a {
    line-height: 1.3;
    border-bottom: 0px;
    float: right;
  }
  .open-positions .position-item .job-post-link a #linkArrow {
    display: inline-block;
  }

  .open-positions-message {
    margin-bottom: 39px;
    line-height: 1.3;
  }
  .open-positions-message p:last-child {
    margin-bottom: 0px;
  }

  .work-email .work-email-label {
    line-height: 1.3;
  }

  .open-positions-message {
    font-size: 30px;
    margin-bottom: 39px;
  }

  .work-email {
    font-size: 30px;
  }
}
@media screen and (min-width: 1200px) {
  .page-template-contact-page-tpl .contact-page-details .amm-studios {
    padding-top: 210px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .title {
    margin-bottom: 118px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-inquiries .title {
    margin-bottom: 118px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-inquiries .row:last-child .inquiries-data {
    margin-bottom: 0px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-join {
    padding-top: 210px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-join .title {
    margin-bottom: 108px;
  }

  .studio-data {
    font-size: 30px;
  }
  .studio-data .location {
    line-height: 1.3;
    margin-bottom: 39px;
  }
  .studio-data .address address {
    margin-bottom: 13px;
  }
  .studio-data .directions {
    margin-bottom: 46px;
    display: block;
  }
  .studio-data .directions .directions-link {
    line-height: 1.3;
  }
  .studio-data .telephone .telephone-link {
    line-height: 1.3;
  }

  .inquiries-data {
    font-size: 30px;
    margin-bottom: 53px;
  }

  .open-positions {
    font-size: 30px;
    margin-bottom: 96px;
  }
  .open-positions .position-item .job-title {
    line-height: 1.3;
    color: #999999;
    font-weight: 300;
  }
  .open-positions .position-item .job-location {
    line-height: 1.3;
    margin-bottom: 0px;
  }
  .open-positions .position-item .job-post-link {
    margin-bottom: 0px;
  }
  .open-positions .position-item .job-post-link a {
    line-height: 1.3;
  }
  .open-positions .position-item .job-post-link a span {
    width: 23px;
    height: 20px;
  }

  .open-positions-message {
    margin-bottom: 39px;
    line-height: 1.3;
  }
  .open-positions-message p:last-child {
    margin-bottom: 0px;
  }

  .work-email .work-email-label {
    line-height: 1.3;
  }
}
@media screen and (max-width: 991px) {
  .studio-data .address address {
    color: #666;
  }

  .text-label {
    color: #666;
  }

  .inquiries-data .email-label {
    color: #666;
  }

  .open-positions .position-item .job-location {
    color: #666;
  }

  .open-positions-message {
    color: #666;
  }

  .work-email .work-email-label {
    color: #666;
  }
}
.single-news_posts .blog-details-text .vc_row-fluid:first-child {
  margin-top: 200px !important;
}
.single-news_posts .blog-details-text .post-loader .title-blurb .title {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
  max-width: 421px;
}
.single-news_posts .blog-details-text .post-loader .title-blurb .blurb p, .single-news_posts .blog-details-text .post-loader .title-blurb .blurb span {
  margin: 0px;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #999999;
}
.single-news_posts .blog-details-text .post-loader .title-blurb .blurb a {
  border-bottom: 1px solid #0a0a0a;
}
.single-news_posts .blog-details-text .post-loader .title-blurb .blurb a:hover {
  color: #ff6602;
  border-color: #ff6602;
}
.single-news_posts .blog-details-text .post-loader .label {
  padding: 0px;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
}
.single-news_posts .blog-details-text .post-loader .post-date, .single-news_posts .blog-details-text .post-loader .post-website a {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
}
.single-news_posts .blog-details-text .post-loader .date, .single-news_posts .blog-details-text .post-loader .website {
  margin-bottom: 27px;
}
.single-news_posts .blog-details-text .post-loader .post-website a:hover {
  color: #ff6602;
}
.single-news_posts .blog-details-text .post-loader .share {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  border-bottom: 1px solid #0a0a0a;
}
.single-news_posts .blog-details-text .post-loader .share:hover {
  color: #ff6602;
  border-color: #ff6602;
}
.single-news_posts .blog-details-text .post-loader .news-content p {
  margin: 0px;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #999999;
}
.single-news_posts .blog-details-text .post-loader .news-content a {
  margin-top: 23px;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
}
.single-news_posts .blog-details-text .post-loader .news-content a span {
  border-bottom: 1px solid #0a0a0a;
}
.single-news_posts .blog-details-text .post-loader .news-content a:hover {
  color: #ff6602;
}
.single-news_posts .blog-details-text .post-loader .news-content a:hover span {
  border-color: #ff6602;
}
.single-news_posts .blog-details-text .post-loader .news-content p > a, .single-news_posts .blog-details-text .post-loader .news-content p span > a {
  border-bottom: 1px solid #0a0a0a;
}
.single-news_posts .blog-details-text .post-loader .news-content p > a:hover, .single-news_posts .blog-details-text .post-loader .news-content p span > a:hover {
  color: #ff6602;
  border-color: #ff6602;
}
.single-news_posts .blog-details-text .post-loader .news-content .pdp-link {
  margin-top: 23px;
  display: block;
}
.single-news_posts .blog-details-text .post-loader .news-content .pdp-link a {
  border-bottom: 0px !important;
}
.single-news_posts .load-more-work-holder {
  display: none;
}

@media screen and (min-width: 769px) and (max-width: 1319px) {
  .related-pt {
    margin-bottom: 70px;
  }
  .related-pt .news-list .item {
    padding-left: 10px !important;
    padding-right: 10px !important;
    margin-right: 0px !important;
  }
  .related-pt .news-list .item .contents .list .news-title {
    font-family: Akkurat, "Arial", sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    color: #0a0a0a;
  }
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
  .single-news_posts .related-pt .news-list .item:nth-of-type(3n) {
    display: block !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1316px) {
  .single-news_posts .related-pt .news-list {
    padding: 10px;
    display: table;
  }
}
@media screen and (min-width: 769px) and (max-width: 1755px) {
  .single-news_posts .related-pt .news-list .item .contents .news-title {
    max-width: 100%;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1755px) {
  .single-news_posts .related-pt .news-list .item .contents .list .date {
    display: initial !important;
  }
}
@media screen and (max-width: 2560px), screen and (min-width: 2561px) {
  .related-pt {
    max-width: 1740px;
  }
  .related-pt .news-list .item {
    max-width: 560px !important;
    margin-right: 30px;
  }
  .related-pt .news-list .item:nth-of-type(3n) {
    margin-right: 0px;
  }
  .related-pt .news-list .item img {
    width: 100%;
  }
}
@media screen and (min-width: 1320px) and (max-width: 1755px) {
  .related-pt {
    max-width: 1300px;
  }
  .related-pt .news-list .item {
    max-width: 420px !important;
    margin-right: 20px;
  }
  .related-pt .news-list .item:nth-of-type(3n) {
    margin-right: 0px;
  }
  .related-pt .news-list .item .contents .list {
    padding: 20px;
  }
}
@media screen and (min-width: 1756px) and (max-width: 1756px) {
  .related-pt {
    max-width: 1300px !important;
  }
  .related-pt .news-list .item {
    max-width: 420px !important;
    margin-right: 20px;
  }
  .related-pt .news-list .item:nth-of-type(3n) {
    margin-right: 0px;
  }
  .related-pt .news-list .item .contents .list {
    padding: 20px;
  }
}
@media screen and (max-width: 768px) {
  .related-pt .news-list .item {
    display: none;
    max-width: 100% !important;
  }
  .related-pt .news-list .item:first-child {
    display: block;
  }
}
.single-team_pt .profile-img {
  padding-top: 5px;
}
.single-team_pt footer {
  display: none;
}
.single-team_pt nav {
  display: none;
}
.single-team_pt .list {
  margin-bottom: 70px;
}
.single-team_pt .list::before, .single-team_pt .list::after {
  content: " ";
  display: table;
}
.single-team_pt .list::after {
  clear: both;
}
.single-team_pt .list .profile-small-images {
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 63px;
}
.single-team_pt .list .profile-image.desktop, .single-team_pt .list .profile-image.desktop-plus {
  display: none;
}
.single-team_pt .teams {
  margin-top: 108px;
}
.single-team_pt .teams img {
  display: block;
  margin: 0 auto;
}
.single-team_pt .teams .back-to-leadership.desktop {
  display: none;
}
.single-team_pt .teams .back-to-leadership.mobile {
  max-width: 100%;
  padding: 22px 0px 22px;
  margin-bottom: 70px;
  border: 1px solid #0a0a0a;
  text-align: center;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
  line-height: 1.44;
  cursor: pointer;
}
.single-team_pt .teams .back-to-leadership.mobile:hover, .single-team_pt .teams .back-to-leadership.mobile.active {
  border-color: #ff6602;
  color: #ff6602;
}
.single-team_pt .teams .profile-name {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #0a0a0a;
}
.news-content .wp-caption {
  background-color: transparent;

}
.single-news_posts .blog-details-text .post-loader .news-content .wp-caption .wp-caption-text {
  font-size: 18px;
  margin-top: 30px !important;
}
.single-team_pt .teams .position {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
}
.single-team_pt .teams .profile-description {
  margin-top: 25px;
  margin-bottom: 27px;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
}
.single-team_pt .teams .profile-description .vc_row-fluid {
  margin-bottom: 0px !important;
}
.single-team_pt .teams .team-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: none;
  background-repeat: no-repeat;
  background-position: center center;
  height: 200px;
  width: 85px;
}
.single-team_pt .teams .team-nav span {
  visiblity: hidden;
  display: none;
}
.single-team_pt .teams .team-prev {
  left: 0px;
  background-image: url(../images/arrow-left.svg);
  display: none !important;
}
.single-team_pt .teams .team-next {
  right: 0px;
  background-image: url(../images/arrow-right.svg);
}
.single-team_pt .teams .bio-links {
  list-style: none;
  padding: 0px;
  margin: 0px;
}
.single-team_pt .teams .bio-links > li {
  display: block;
  float: none;
  margin-right: 40px;
  margin-bottom: 20px;
}
.single-team_pt .teams .bio-links > li:last-child {
  margin-right: 0px;
}
.single-team_pt .teams .bio-links > li a {
  font-size: 18px;
  font-weight: 300;
  color: #0a0a0a;
  line-height: 1.44;
  padding-bottom: 2px;
  border-bottom: 1px solid black;
}

@media screen and (max-width: 768px) {
  .single-team_pt .col-xs-12 {
    width: 100%;
  }
  .single-team_pt .profile-img {
    background-color: #f5f5f5;
    margin-bottom: 62px;
  }
  .single-team_pt .profile-info {
    max-width: 444px !important;
    margin: 0 auto !important;
    float: none;
  }
  .single-team_pt .list {
    margin-bottom: 50px;
  }
  .single-team_pt .list .profile-small-images {
    margin-bottom: 0px;
  }
  .single-team_pt .teams {
    margin-top: 0px;
  }
  .single-team_pt .teams .back-to-leadership.mobile {
    max-width: 444px;
    margin: 0 auto !important;
    margin-bottom: 140px !important;
  }
  .single-team_pt .back-to-leadership {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .single-team_pt .teams {
    position: relative;
  }
  .single-team_pt .teams .back-to-leadership.desktop {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    right: 0px;
    z-index: 10;
    cursor: pointer;
    display: none;
  }
  .single-team_pt .teams .list .profile-img {
    float: none;
  }
  .single-team_pt .teams .list .profile-image.desktop, .single-team_pt .teams .list .profile-image.desktop-plus, .single-team_pt .teams .list .profile-image.mobile {
    display: none;
  }
  .single-team_pt .teams .list .profile-image .tablet {
    display: block;
  }
  .single-team_pt .teams .team-nav {
    display: none;
  }
  .single-team_pt .teams .team-nav.mobile {
    display: block;
  }
  .single-team_pt .teams .team-nav.mobile.team-prev {
    left: -90px;
  }
  .single-team_pt .teams .team-nav.mobile.team-next {
    right: -90px;
  }
  .single-team_pt .teams .team-prev {
    left: 45px;
  }
  .single-team_pt .teams .team-next {
    right: 45px;
  }
  .single-team_pt .teams .bio-links {
    list-style: none;
    padding: 0px;
    margin: 0px;
  }
  .single-team_pt .teams .bio-links > li {
    display: block;
    float: left;
    margin-right: 40px;
    margin-bottom: 20px;
  }
  .single-team_pt .teams .bio-links > li:last-child {
    margin-right: 0px;
  }
  .single-team_pt .teams .bio-links > li a {
    font-size: 18px;
    font-weight: 300;
    color: #0a0a0a;
    line-height: 1.44;
    padding-bottom: 2px;
    border-bottom: 1px solid #0a0a0a;
  }
  .single-team_pt .teams .bio-links > li a:hover {
    color: #ff6602;
    border-bottom: 1px solid #ff6602;
  }
}
@media screen and (min-width: 769px) and (max-width: 991px) {
  .single-team_pt .teams {
    margin-top: 0px;
  }
  .single-team_pt .teams .profile-info {
    max-width: 444px !important;
    margin: 0 auto !important;
    float: none;
  }
  .single-team_pt .teams .list .profile-img {
    background-color: #f5f5f5;
  }
  .single-team_pt .back-to-leadership-wrapper {
    max-width: 444px !important;
    margin: 0 auto !important;
    float: none;
  }
  .single-team_pt .back-to-leadership-wrapper a {
    width: 100%;
    display: block;
  }
}
@media screen and (min-width: 992px) {
  .single-team_pt .teams .back-to-leadership.desktop {
    display: block;
    right: 70px;
  }
  .single-team_pt .teams .back-to-leadership.mobile {
    display: none;
  }
  .single-team_pt .teams .list .profile-img {
    float: left;
  }
  .single-team_pt .teams .team-nav {
    width: 85px;
    height: 200px;
  }
  .single-team_pt .teams .team-prev {
    left: 70px;
  }
  .single-team_pt .teams .team-next {
    right: 70px;
  }
}
@media screen and (min-width: 1200px) {
  .single-team_pt .teams .back-to-leadership.desktop {
    display: block;
  }
  .single-team_pt .teams .back-to-leadership.mobile {
    display: none;
  }
  .single-team_pt .teams .team-nav {
    display: block;
  }
  .single-team_pt .teams .team-nav.mobile {
    display: none;
  }
  .single-team_pt .teams .team-prev {
    left: 70px;
  }
  .single-team_pt .teams .team-next {
    right: 70px;
  }
  .single-team_pt .teams .list .profile-image.desktop {
    display: block;
  }
  .single-team_pt .teams .list .profile-image.desktop-plus, .single-team_pt .teams .list .profile-image.tablet, .single-team_pt .teams .list .profile-image.mobile {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .single-team_pt .teams .back-to-leadership.desktop {
    right: 0px;
  }
  .single-team_pt .teams .team-prev {
    left: 0px;
  }
  .single-team_pt .teams .team-next {
    right: 0px;
  }
  .single-team_pt .teams .list .profile-image.desktop {
    display: block;
  }
  .single-team_pt .teams .list .profile-image.desktop-plus, .single-team_pt .teams .list .profile-image.tablet, .single-team_pt .teams .list .profile-image.mobile {
    display: none;
  }
}
@media screen and (min-width: 1440px) {
  .single-team_pt .teams {
    position: relative;
    padding-top: 200px;
    margin-top: 70px;
  }
  .single-team_pt .back-to-leadership.desktop {
    display: block;
    top: 0px;
  }
  .single-team_pt .back-to-leadership.mobile {
    display: none;
  }
  .single-team_pt .profile-name {
    line-height: 1;
  }
  .single-team_pt .profile-img {
    margin-left: 84px;
    margin-right: 61px;
    padding-left: 0;
    padding-right: 35px;
  }
  .single-team_pt .profile-img img.desktop, .single-team_pt .profile-img img.desktop-plus {
    background-color: #f5f5f5;
  }
  .single-team_pt .profile-description {
    margin-top: 15px;
    line-height: 1.5;
    margin-bottom: 27px;
  }
}
@media screen and (min-width: 1756px) {
  .single-team_pt .teams .list .profile-image.desktop, .single-team_pt .teams .list .profile-image.tablet, .single-team_pt .teams .list .profile-image.mobile {
    display: none;
  }
  .single-team_pt .teams .list .profile-image.desktop-plus {
    display: block;
  }
}
.error404 .container {
  margin-top: 146px;
}
.error404 .container h1 {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 65px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.2;
  letter-spacing: -1.5px;
  color: #373737;
  margin-bottom: 117px;
}
.error404 .container p {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #999999;
  margin: 0px;
}
.error404 .container p a {
  border-bottom: 1px solid #666;
}
.error404 .container p a:hover {
  color: #ff6602;
  border-bottom: 1px solid #ff6602;
}

.page-template-legal-page h1 {
  margin-top: 146px;
  margin-bottom: 117px;
}
.page-template-legal-page h2 {
  text-transform: none;
  font-size: 30px;
  color: #0a0a0a;
  margin-bottom: 41px;
}
.page-template-legal-page p {
  font-size: 18px;
  color: #666;
}
.page-template-legal-page .underline {
  border-bottom: 1px solid #666;
  font-weight: normal;
}
.page-template-legal-page .goto-pp, .page-template-legal-page .goto-tou {
  color: #0a0a0a;
  border-bottom: 1px solid #0a0a0a;
  cursor: pointer;
  font-weight: normal;
}
.page-template-legal-page .goto-pp:hover, .page-template-legal-page .goto-tou:hover {
  color: #ff6602;
  border-bottom: 1px solid #ff6602;
}
.page-template-legal-page p.p-label {
  display: block;
  font-weight: normal;
  padding-left: 0px;
  margin-top: 27px;
  margin-bottom: 25px;
  text-align: left;
  color: #0a0a0a;
}
.page-template-legal-page #termsOfUse {
  max-width: 740px;
}
.page-template-legal-page #privacyPolicy {
  max-width: 740px;
  margin-top: 200px;
}

footer {
  height: 215px;
  margin-top: 140px;
  /*Firefox css*/
}
footer .inner-container {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-top: 7px;
}
footer .list-inline li {
  padding-right: 36px;
  padding-left: 0px;
}
footer ul li a {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
  color: #666666 !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  text-transform: none;
  letter-spacing: normal;
}
footer .inner-container .social-menu {
  padding-left: 0px;
}
footer .inner-container .social-menu li {
  display: block;
  padding-left: 0px !important;
  padding-bottom: 5px;
}
footer .inner-container .col-md-6 {
  margin-right: 20px;
  max-width: 420px;
}
footer .inner-container .col-md-6:nth-of-type(3n) {
  margin-right: 0px;
}
footer input:invalid {
  box-shadow: none;
  outline: none;
}
footer .newsletter-field {
  clear: none;
  position: relative;
}
footer .newsletter-field label {
  display: none !important;
}
footer .newsletter-email, footer #newsletter-email {
  border: 0px !important;
  border-bottom: solid 1px #666666 !important;
  max-width: 309px !important;
  width: 100% !important;
  background-color: transparent !important;
  font-family: Akkurat !important;
  font-weight: 300 !important;
  font-size: 18px !important;
  color: #666666 !important;
  position: relative !important;
  z-index: 1 !important;
  line-height: 1 !important;
}
footer .newsletter-button {
  letter-spacing: 0px !important;
  margin-left: 8px !important;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
  line-height: 1 !important;
  background-color: transparent !important;
  border: 0px !important;
  padding: 6px 0px 5px 0px !important;
  border-bottom: solid 1px #666666 !important;
  outline: none !important;
  height: 30px !important;
}
footer .newsletter-button:hover {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #ff6602;
  line-height: 1 !important;
  border-color: #ff6602 !important;
}
footer .newsletter-field {
  clear: none !important;
}
footer .newsletter-field input {
  font-size: 18px !important;
}
footer .newsletter-section {
  position: relative;
}
footer .newsletter-section label {
  display: none;
}
footer .newsletter-section .tnp-email {
  border: 0px;
  border-bottom: solid 1px #666666;
  border-radius: 0px !important;
  max-width: 309px;
  width: 100% !important;
  background-color: transparent;
  letter-spacing: normal !important;
  font-family: Akkurat;
  font-weight: 300;
  font-size: 18px;
  color: #666666;
  padding: 7px 0px 5px !important;
  position: relative;
  z-index: 1;
  line-height: 1;
  height: 32px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
footer .newsletter-section .tnp-button {
  letter-spacing: 0px !important;
  margin-left: 8px !important;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
  border-radius: 0px !important;
  line-height: 1 !important;
  width: auto !important;
  background-color: transparent !important;
  border: 0px !important;
  padding: 6px 0px 5px 0px !important;
  border-bottom: solid 1px #666666 !important;
  outline: none !important;
  height: 30px !important;
  margin-top: 2px !important;
}
footer .newsletter-section .tnp-button:hover {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #ff6602;
  line-height: 1 !important;
  border-color: #ff6602 !important;
}
footer .newsletter-section .tnp-field {
  float: left;
}
footer .newsletter-section .tnp-field:first-child {
  max-width: 320px;
}
footer .newsletter-section .newsletter-label {
  color: #666666 !important;
  font-size: 18px;
  font-weight: 300;
  margin-top: 1px;
  margin-bottom: 35px;
}
footer .newsletter-section .newsletter-label ~ div {
  display: block;
  width: 100%;
}
footer .newsletter-section .newsletter-label ~ div::before, footer .newsletter-section .newsletter-label ~ div::after {
  content: " ";
  display: table;
}
footer .newsletter-section .newsletter-label ~ div::after {
  clear: both;
}
footer .newsletter-section .newsletter-placeholder {
  font-family: Akkurat;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: normal;
  line-height: 1.44;
  color: #bdbdbd;
  position: absolute;
  z-index: 0;
  padding-top: 5px;
}
footer .newsletter-section form .newsletter-field {
  float: left;
}
footer .newsletter-section form .newsletter-field:first-child {
  max-width: 320px;
}
footer .newsletter-section form .newsletter-field label {
  display: none;
  visibility: hidden;
}
footer .newsletter-section form .newsletter-field .newsletter-email, footer .newsletter-section form .newsletter-field input {
  border: 0px;
  border-bottom: solid 1px #666666;
  border-radius: 0px !important;
  max-width: 309px;
  width: 100% !important;
  background-color: transparent;
  letter-spacing: normal !important;
  font-family: Akkurat;
  font-weight: 300;
  font-size: 18px;
  color: #666666;
  padding: 7px 0px 5px !important;
  position: relative;
  z-index: 1;
  line-height: 1;
  height: 32px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
footer .newsletter-section form .newsletter-field .newsletter-button {
  letter-spacing: 0px !important;
  margin-left: 8px !important;
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
  border-radius: 0px !important;
  line-height: 1 !important;
  width: auto !important;
  background-color: transparent !important;
  border: 0px !important;
  padding: 6px 0px 5px 0px !important;
  border-bottom: solid 1px #666666 !important;
  outline: none !important;
  height: 30px !important;
  margin-top: 2px !important;
}
footer .newsletter-section form .newsletter-field .newsletter-button:hover {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #ff6602;
  line-height: 1 !important;
  border-color: #ff6602 !important;
}
footer .newsletter-section .warning {
  font-weight: 300 !important;
  font-size: 18px !important;
  color: #666 !important;
}
footer .col-lg-4 {
  padding: initial;
  padding: static;
  margin-right: initial;
  margin-right: static;
  max-width: initial;
  max-width: static;
  position: initial;
  position: static;
}
footer .copyright {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
  text-align: right;
  text-transform: none;
  padding-top: 58px;
  position: relative;
}
footer .menu-legal-menu-container {
  display: inline-block;
}

.amm-scrollToTop {
  position: absolute;
  top: 7px;
  right: 0px;
  width: 20px;
  height: 10.9px;
  background-color: transparent;
  display: none;
}
.amm-scrollToTop #backToTop {
  display: block;
}
.amm-scrollToTop #backToTop g g {
  fill: #666666;
  -webkit-transition: fill 250ms ease-in-out;
  -moz-transition: fill 250ms ease-in-out;
  -o-transition: fill 250ms ease-in-out;
  transition: fill 250ms ease-in-out;
}
.amm-scrollToTop:hover {
  opacity: 1;
}
.amm-scrollToTop:hover .fa-angle-up {
  color: #ff6602;
}
.amm-scrollToTop:hover #backToTop g g {
  fill: #ff6602;
}
.amm-scrollToTop .fa-angle-up {
  font-size: 30px;
  display: block;
  line-height: 9px;
  margin: 0;
  color: #666666;
}

.es_lablebox, #es_msg_pg {
  display: none;
}

.es_textbox {
  padding-bottom: 0px;
  float: left;
  max-width: 460px;
  width: 78%;
}

.es_button {
  padding-top: 0px;
  float: left;
  width: 22%;
  padding-left: 8px;
  min-width: 91px;
  max-width: 91px;
}

.es_msg {
  display: none;
  padding-top: 0px;
}

.es_shortcode_form {
  padding-top: 16px;
}

#es_txt_email_pg {
  border: 0;
  border-bottom: solid 1px #666;
  border-radius: 0 !important;
  width: 100%;
  background-color: transparent;
  padding-left: 0px;
  padding-bottom: 0px;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0px;
}

#es_txt_button_pg {
  letter-spacing: 0 !important;
  color: #666;
  border-radius: 0 !important;
  background-color: transparent !important;
  border: 0 !important;
  padding: 6px 0 0px !important;
  border-bottom: solid 1px #666 !important;
  outline: 0 !important;
  height: 30px !important;
  margin-top: 2px !important;
  font-style: normal;
  font-stretch: normal;
  line-height: 1 !important;
  font-weight: 300;
  font-size: 18px;
  padding-top: 9px;
}
#es_txt_button_pg:hover {
  color: #ff6602;
  border-color: #ff6602 !important;
}

.newsletter-msg {
  position: absolute;
  bottom: -5px;
  font-size: 18px;
  display: none;
}

::-webkit-input-placeholder {
  /* Chrome */
  color: #bdbdbd;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #bdbdbd;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #bdbdbd;
  opacity: 1;
}

:-moz-placeholder {
  /* Firefox 4 - 18 */
  color: #bdbdbd;
  opacity: 1;
}

@media screen and (max-width: 991px), screen and (max-width: 767px), screen and (max-width: 480px) {
  .amm-scrollToTop.scrollToTop {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 992x) {
  .amm-scrollToTop {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .amm-scrollToTop {
    display: block;
    right: 15px;
  }
}
@media screen and (min-width: 1440px) {
  .amm-scrollToTop {
    display: block;
    right: 3px;
  }
}
@media screen and (max-width: 2560px), screen and (min-width: 2561px) {
  .vc_single_image {
    max-width: 1740px;
    margin: 0 auto;
  }

  .vc_hero .amm_cto a {
    margin-top: 28px;
  }

  .navbar-default .row {
    height: 30px;
    padding-left: 0px;
  }

  .expand-mobile-plus {
    display: none;
  }

  .custom-animation-1 .wpb_raw_code .wpb_wrapper, .custom-animation-2 .wpb_raw_code .wpb_wrapper {
    max-width: 1740px !important;
    margin: 0 auto;
  }

  .amm-cont_1 {
    max-width: 1740px;
    margin: 0 auto !important;
  }

  .vc_slider_image img {
    width: 100%;
  }

  .bio-close-btn {
    position: absolute;
    right: 68px;
    top: 42px !important;
    cursor: pointer;
  }

  .single-project_pt .site-share-section {
    margin-bottom: 484px !important;
  }

  .single-project_pt .blog-details-text .vc_row-fluid:nth-child(2) {
    padding-top: 130px !important;
  }
  .single-project_pt .tablet-pdp-related-img, .single-project_pt .mobile-pdp-related-img {
    display: none !important;
  }

  .single-project_pt .vc_row-fluid:nth-child(2) {
    height: auto !important;
  }
  .single-project_pt .vc_video_section {
    max-width: 1740px;
    margin: 0 auto;
  }
  .single-project_pt .colorpicker .colorpicker-img-mobile {
    display: none;
  }
  .single-project_pt .amm-gif {
    height: 1160px;
  }
  .single-project_pt .amm-gif .vc_single_image {
    padding: 12px 20px 50px;
    height: 100%;
  }
  .single-project_pt .amm-gif .vc_single_image img {
    height: 100%;
    max-height: 423px;
  }
  .single-project_pt .amm_2_col_img {
    max-width: 1740px;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6 {
    max-width: 885px;
    margin-right: 0px;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6:first-child {
    padding-right: 15px;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6:last-child {
    padding-left: 15px;
  }
  .single-project_pt .blog-details-text .vc_row {
    margin-bottom: 70px;
  }
  .single-project_pt .blog-details-text > .vc_row-fluid:first-child {
    margin-bottom: 0px !important;
  }
  .single-project_pt .blog-details-text .amm_2_col_img {
    max-width: 1740px;
  }
  .single-project_pt .blog-details-text .amm_2_col_img .vc_col-sm-6 {
    max-width: 885px;
    margin-right: 0px;
  }
  .single-project_pt .blog-details-text .amm_2_col_img .vc_col-sm-6:first-child {
    padding-right: 15px;
  }
  .single-project_pt .blog-details-text .amm_2_col_img .vc_col-sm-6:last-child {
    padding-left: 15px;
  }
  .single-project_pt .amm-cont_1 {
    height: 1159px;
    max-width: 1740px;
    margin: 0 auto !important;
    margin-bottom: 70px !important;
  }
  .single-project_pt .amm-cont_1 .vc_column_container h5 {
    margin-top: 55px;
  }
  .single-project_pt .custom-animation-1, .single-project_pt .custom-animation-2 {
    height: 1160px !important;
  }
  .single-project_pt .amm-cont_2-3_1-3 {
    max-width: 1740px;
    margin: 0 auto !important;
    margin-bottom: 200px !important;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 {
    max-width: 852px;
    margin-left: 77px;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 {
    padding-left: 0px;
    width: static;
    width: initial;
    float: right;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper {
    padding-left: 0px;
  }
  .single-project_pt .img-txt-parallax .bg-txt-holder {
    background-size: 50%;
    background-position: left center;
  }
  .single-project_pt footer {
    margin-top: 118px;
  }

  #about .vc_hero {
    /*margin-bottom: 52px;*/
  }
  #about .amm_2_col_img .vc_column_container {
    margin-bottom: 0px;
    padding: 0px !important;
  }
  #about .amm-full-img {
    margin-top: 300px !important;
    margin-bottom: 200px !important;
  }
  #about .less-margin-bottom {
    margin-bottom: 178px !important;
  }
  #about .no-margin-bottom {
    margin-bottom: 0px !important;
  }
  #about .amm-text-content {
    padding: 0px !important;
  }
  #about .amm-text-content:nth-of-type(4) {
    margin-top: 200px !important;
  }
  #about .amm-text-content .vc_column_container {
    padding-left: 0px;
  }
  #about #leaderships {
    margin-bottom: 200px !important;
  }
  #about .team-list {
    margin-top: 300px;
  }
  #about .team-list .header-label {
    max-width: 1740px;
    margin: 0 auto;
  }
  #about .team-list .header-label h1 {
    padding-top: 195px;
    padding-left: 0px;
    padding-bottom: 35px;
  }
  #about .team-list .list {
    max-width: 507px;
    margin-right: 110px;
    margin-left: 10px;
  }
  #about .team-list .list img {
    float: right;
    max-width: 507px;
  }
  #about .team-list .row .inner-container .list:nth-of-type(3) {
    margin-right: 88px !important;
  }
  #about .team-list .row .inner-container .list:nth-of-type(5) {
    margin-right: 0px !important;
    margin-left: 0px !important;
  }
  #about .team-list .team-info .post-content {
    max-width: 566px;
  }
  #about #sliders {
    margin-top: 200px !important;
    margin-bottom: 300px !important;
  }
  #about .vc_row-fluid:nth-child(2), #about .second-blurb {
    padding: 0px !important;
    height: 1159px;
    margin-bottom: 89px !important;
  }
  #about .vc_row-fluid:nth-child(2) .vc_col-sm-12, #about .vc_row-fluid:nth-child(2) .vc_column-inner, #about .vc_row-fluid:nth-child(2) .wpb_wrapper, #about .second-blurb .vc_col-sm-12, #about .second-blurb .vc_column-inner, #about .second-blurb .wpb_wrapper {
    height: 100%;
  }
  #about .vc_row-fluid:nth-child(2) .wpb_text_column, #about .second-blurb .wpb_text_column {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }
  #about .vc_row-fluid:nth-child(2) p, #about .second-blurb p {
    margin: 0px !important;
  }

  .single-news_posts .amm-text-content {
    max-width: 1740px;
    margin: 0 auto !important;
    margin-bottom: 0px !important;
  }
  .single-news_posts .news-list {
    display: block;
  }
  .single-news_posts .amm_2_col_img {
    max-width: 1740px;
    margin: 0 auto !important;
  }
  .single-news_posts .amm_2_col_img .vc_column_container {
    max-width: 885px;
    margin-right: 0px;
  }
  .single-news_posts .amm_2_col_img .vc_column_container img {
    max-width: 885px;
    width: static;
    width: initial;
    text-align: left;
    margin: 0;
  }
  .single-news_posts .amm_2_col_img .vc_column_container:first-child {
    margin-right: 0px;
  }
  .single-news_posts .amm_2_col_img .vc_column_container:last-child img {
    float: right;
    margin: 0;
  }

  #about .amm-text-content {
    max-width: 1740px;
    margin: 0 auto !important;
    margin-bottom: 0px !important;
  }
  #about .amm_2_col_img {
    max-width: 1740px;
    margin: 0 auto !important;
  }
  #about .amm_2_col_img .vc_column_container {
    max-width: 885px;
    margin-right: 0px;
  }
  #about .amm_2_col_img .vc_column_container img {
    max-width: 885px;
    text-align: left;
    margin: 0;
  }
  #about .amm_2_col_img .vc_column_container:first-child img {
    padding-right: 15px;
  }
  #about .amm_2_col_img .vc_column_container:last-child img {
    float: right;
    margin: 0;
    padding-left: 15px;
  }

  .page-template-legal-page .container, .error404 .container {
    max-width: 1740px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .single-news_posts .tablet-slider {
    display: none;
  }
  .single-news_posts .amm_2_col_img .vc_column_container {
    max-width: 885px;
    margin-right: 0px;
  }
  .single-news_posts .amm_2_col_img .vc_column_container img {
    max-width: 885px;
    width: 100%;
    text-align: left;
    margin: 0;
  }
  .single-news_posts .amm_2_col_img .vc_column_container:first-child {
    padding-right: 15px;
  }
  .single-news_posts .amm_2_col_img .vc_column_container:last-child {
    padding-left: 15px;
  }
  .single-news_posts .amm_2_col_img .vc_column_container:last-child img {
    float: right;
    margin: 0;
  }
  .single-news_posts .blog-details-text .vc_row-fluid:first-child {
    margin-bottom: 200px !important;
  }
  .single-news_posts .blog-details-text .amm_2_col_img {
    margin-bottom: 200px !important;
  }
  .single-news_posts .related-label {
    margin-top: 265px;
  }
  .single-news_posts .load-more-work-holder {
    display: none;
  }

  .vc_hero .bg-img img {
    width: 100%;
  }

  .mobile-active .desktop-extra-img {
    display: block;
  }
  .mobile-active .desktop-img {
    display: none;
  }

  .device-active img {
    display: block;
    margin: 0 auto;
  }
  .device-active .desktop-plus-img {
    display: block;
  }
  .device-active .tablet-mobile-img {
    display: none;
  }

  .navbar-default .container {
    max-width: 1740px;
    margin: 0 auto;
  }

  .site-share-section {
    max-width: 1740px;
    margin: 0 auto;
  }

  footer .inner-container .col-md-6 {
    max-width: 560px;
    margin-right: 30px;
  }
  footer .inner-container .col-md-6:nth-of-type(3n) {
    margin-right: 0px;
  }

  .inner-container {
    max-width: 1740px;
    margin: 0 auto;
  }
  .inner-container .item, .inner-container .col-md-6 {
    max-width: 560px;
    margin-right: 30px;
    margin-bottom: 30px;
  }
  .inner-container .item:nth-of-type(3n), .inner-container .col-md-6:nth-of-type(3n) {
    margin-right: 0px;
  }
  .inner-container .item img, .inner-container .col-md-6 img {
    width: 100%;
  }

  .related-label {
    max-width: 1740px;
    padding: 0px;
  }

  footer .inner-container .col-lg-4 {
    max-width: 560px;
    margin-right: 30px;
  }
  footer .inner-container .col-lg-4:nth-of-type(3n) {
    margin-right: 0px;
  }

  .second-blurb {
    margin-top: 602px !important;
    margin-bottom: 623px !important;
  }

  #latestNews .mobile {
    display: none;
  }

  .vc_hero .amm_cto, .hero .amm_cto {
    /*margin-top: -45px;*/
  }

  .hide-mobile {
    display: block;
  }

  .show-mobile {
    display: none;
  }

  .es_textbox {
    padding-bottom: 0;
    float: left;
    max-width: 490px;
    width: 83%;
  }

  .single-team_pt .bio-btn-next {
    background-image: url(../images/arrow-right.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 161px;
    height: 200px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    right: 0px;
  }
  .single-team_pt .bio-btn-next span {
    display: none;
  }
  .single-team_pt .bio-btn-prev {
    background-image: url(../images/arrow-left.svg);
    background-repeat: no-repeat;
    background-position: center;
    display: block;
    width: 161px;
    height: 200px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    left: 0px;
  }
  .single-team_pt .bio-btn-prev span {
    display: none;
  }

  .page-template-contact-page-tpl .contact-page-details .amm-studios {
    padding-top: 217px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .col-xs-12 {
    padding: 0px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .row:last-child .col-xs-12:last-child .studio-data {
    padding-left: 13px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .title {
    padding-top: 6px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .studios-container {
    padding: 0px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .row:last-child .col-xs-5 {
    padding: 0px;
  }
  .page-template-contact-page-tpl .contact-page-details .studio-data .directions {
    margin-bottom: 40px;
    display: block;
  }
  .page-template-contact-page-tpl .contact-page-details .studio-data .address address {
    margin-bottom: 5px;
    line-height: 1.2;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-inquiries .row .col-xs-12 {
    padding: 0px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-inquiries .email-label {
    line-height: 1;
  }
  .page-template-contact-page-tpl .contact-page-details .inquiry-list:last-child {
    margin-top: 60px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers {
    padding-top: 220px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .row:first-child .col-xs-12 {
    padding: 0px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .row:nth-child(2) .col-xs-12 {
    padding: 0px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .row:last-child .col-xs-12 {
    padding: 0px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .positions {
    padding-left: 8.33333333% !important;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions {
    max-width: 1595px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item {
    border-top: 1px solid #d2d2d2;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-title {
    padding-top: 19px;
    padding-left: 17px;
    padding-bottom: 19px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-location {
    padding-top: 19px !important;
    padding-left: 73px !important;
    padding-bottom: 19px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-post-link {
    padding-top: 19px !important;
    padding-bottom: 19px;
    width: 32%;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-post-link .inner-row {
    margin: 0px !important;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item:last-child {
    border-bottom: 1px solid #d2d2d2;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions-message {
    margin-top: 6px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-join .title {
    margin-bottom: 118px;
  }
  .page-template-contact-page-tpl footer {
    margin-top: 165px;
  }
  .page-template-contact-page-tpl footer .copyright {
    padding-top: 54px;
    padding-right: 7px;
  }
}
@media screen and (max-width: 1756px) {
  .single-project_pt .amm-cont_1 {
    padding-left: 0px !important;
    padding-right: 0px !important;
    max-width: 1300px;
  }
  .single-project_pt .amm-cont_2-3_1-3 {
    padding-left: 0px !important;
    padding-right: 0px !important;
    max-width: 1300px;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 {
    margin-left: 110px;
    width: 65.666666%;
  }

  /*Grid Fix*/
  .page-template-legal-page .container, .error404 .container {
    max-width: 1300px;
  }

  .custom-animation-1 .wpb_raw_code .wpb_wrapper, .custom-animation-2 .wpb_raw_code .wpb_wrapper {
    max-width: 1300px !important;
  }

  .post-type-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4, .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 {
    width: 23.333333%;
    padding-left: 0px;
  }

  .post-type-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper, .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper {
    padding-left: 105px;
  }

  .single-project_pt .vc_video_section {
    max-width: 1300px;
  }
  .single-project_pt .amm_2_col_img, .single-project_pt .blog-details-text .amm_2_col_img {
    max-width: 1300px;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6, .single-project_pt .blog-details-text .amm_2_col_img .vc_col-sm-6 {
    max-width: 640px;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6:first-child, .single-project_pt .blog-details-text .amm_2_col_img .vc_col-sm-6:first-child {
    padding-right: 0px;
    margin-right: 20px;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6:last-child, .single-project_pt .blog-details-text .amm_2_col_img .vc_col-sm-6:last-child {
    padding-left: 0px;
  }

  .navbar-default .container {
    max-width: 1300px;
    margin: 0 auto;
  }

  .site-share-section {
    max-width: 1300px;
  }

  .vc_single_image {
    max-width: 1300px;
    margin: 0 auto;
  }

  .inner-container {
    max-width: 1300px;
    margin: 0 auto;
  }
  .inner-container .item {
    max-width: 420px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .inner-container .item:nth-of-type(3n) {
    margin-right: 0px;
  }

  #about .team-list .list {
    max-width: 420px;
    margin: 0px !important;
  }
  #about .team-list .list img {
    max-width: 100%;
    float: none;
  }
  #about .team-list .team-info .post-content {
    max-width: 420px;
  }
  #about .team-list .header-label {
    max-width: 1300px;
  }
  #about .team-list .row .inner-container .list:nth-of-type(3) {
    margin: 0px !important;
  }

  #about .amm-text-content, .single-news_posts .amm-text-content {
    max-width: 1300px;
    margin: 0 auto !important;
    margin-bottom: 200px !important;
  }
  #about .amm_2_col_img, .single-news_posts .amm_2_col_img {
    max-width: 1300px;
    margin: 0 auto !important;
  }
  #about .amm_2_col_img .vc_column_container, .single-news_posts .amm_2_col_img .vc_column_container {
    max-width: 640px;
    margin-right: 0px;
  }
  #about .amm_2_col_img .vc_column_container img, .single-news_posts .amm_2_col_img .vc_column_container img {
    max-width: 640px;
    width: static;
    width: initial;
    text-align: left;
    margin: 0;
  }
  #about .amm_2_col_img .vc_column_container:first-child, .single-news_posts .amm_2_col_img .vc_column_container:first-child {
    margin-right: 20px;
  }
  #about .amm_2_col_img .vc_column_container:last-child img, .single-news_posts .amm_2_col_img .vc_column_container:last-child img {
    float: right;
    margin: 0;
  }

  .single-news_posts .amm_2_col_img .vc_column_container:first-child, .single-news_posts .amm_2_col_img .vc_column_container:last-child {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  #about .amm_2_col_img .vc_column_container:first-child img {
    padding-right: 0px;
  }
  #about .amm_2_col_img .vc_column_container:last-child img {
    padding-left: 0px;
  }

  .related-label {
    max-width: 1300px;
  }

  footer .inner-container .col-lg-4 {
    max-width: 420px;
    margin-right: 20px;
  }
  footer .inner-container .col-lg-4:nth-of-type(3n) {
    margin-right: 0px;
  }

  .es_textbox {
    padding-bottom: 0;
    float: left;
    max-width: 490px;
    width: 78%;
  }

  .page-template-contact-page-tpl .contact-page-details .amm-studios {
    padding-top: 183px;
  }
  .page-template-contact-page-tpl .contact-page-details .studio-data .address address {
    margin-bottom: 0px;
    line-height: 1.3;
  }
  .page-template-contact-page-tpl .contact-page-details .telephone .text-label {
    line-height: 1.3;
  }
  .page-template-contact-page-tpl .contact-page-details .telephone .telephone-link {
    line-height: 1.2;
  }
  .page-template-contact-page-tpl .contact-page-details #careers {
    padding-top: 190px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions {
    max-width: 1190px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-location {
    padding-top: 19px !important;
    padding-left: 56px !important;
    padding-bottom: 19px !important;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-title {
    padding-top: 19px !important;
    padding-bottom: 19px !important;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-post-link {
    padding-top: 19px !important;
    padding-bottom: 19px !important;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-post-link {
    width: 25%;
  }
  .page-template-contact-page-tpl footer {
    margin-top: 313px;
  }

  .contact-page-tpl .contact-page-details .amm-studios .title {
    margin-bottom: 114px;
  }
}
@media screen and (min-width: 1756px) {
  #work .row #pdp {
    padding-top: 140px !important;
  }

  #work .row .vc_row-fluid:nth-child(2) {
    padding-top: 140px !important;
  }
}
@media screen and (min-width: 1441px) {
  .safari-browser .hero .amm_cto, .safari-browser .vc_hero .amm_cto {
    transform: perspective(0px) translate3d(0px, 0px, 0px) !important;
    opacity: 1;
    backface-visibility: hidden;
  }

  .news-list .item, .news-list .col-md-6 {
    margin-bottom: 0px;
  }

  .error404 footer .inner-container {
    position: fixed;
    bottom: 50px;
    left: 0px;
    right: 0px;
    top: initial;
    transform: translateY(0%);
  }
}
@media screen and (min-width: 1281px) and (max-width: 1440px) {
  .error404 footer .inner-container {
    position: fixed;
    bottom: 50px;
    left: 0px;
    right: 0px;
    top: initial;
    transform: translateY(0%);
  }
}
@media screen and (min-width: 992px) and (max-width: 1440px) {
  .error404 footer .inner-container {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    top: initial;
    transform: translateY(0%);
  }
}
@media screen and (max-width: 1440px) {
  .navbar-default .container {
    max-width: 1300px;
  }

  .amm-gif {
    height: 866px;
  }

  .single-project_pt .custom-animation-1, .single-project_pt .custom-animation-2 {
    height: 866px !important;
  }

  #about .amm-full-img {
    margin-top: 210px !important;
    margin-bottom: 140px !important;
  }
  #about .vc_hero {
    margin-bottom: 0px;
  }
  #about .vc_row-fluid:nth-child(2) {
    height: 866px;
    margin-bottom: 70px !important;
  }
  #about .amm-text-content:nth-of-type(4) {
    margin-bottom: 0px !important;
  }
  #about #leaderships {
    margin-bottom: 210px !important;
  }
  #about .team-list {
    margin-top: 210px;
  }
  #about .team-list .header-label {
    max-width: 1300px;
  }
  #about .team-list .header-label h1 {
    padding-top: 132px;
  }
  #about .team-list .info:nth-child(2) {
    margin-right: 0px;
  }
  #about .team-list .info:nth-child(2) .inner-post {
    padding-left: 0px;
  }
  #about .team-list .info:nth-child(3) .inner-post {
    padding-left: 0px;
  }
  #about .less-margin-bottom {
    margin-bottom: 0px !important;
  }
  #about .second-blurb {
    height: 866px;
    margin-bottom: 0px !important;
  }
  #about #sliders {
    margin-bottom: 200px !important;
  }

  .page-template-legal-page .container, .error404 .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .single-project_pt .site-share-section, .post-type-project_pt .site-share-section {
    margin-bottom: 303px !important;
  }
  .single-project_pt .related-label, .post-type-project_pt .related-label {
    margin-bottom: 57px;
  }
  .single-project_pt footer, .post-type-project_pt footer {
    margin-top: 59px;
  }

  .post-type-project_pt .vc_row-fluid.amm-cont_1,
.single-project_pt .vc_row-fluid.amm-cont_1 {
    height: 866px;
  }

  .vc_single_image {
    max-width: 1300px;
    margin: 0 auto !important;
  }

  .inner-container {
    max-width: 1300px;
  }
  .inner-container .item {
    max-width: 420px;
    margin-right: 20px;
  }
  .inner-container .item:nth-of-type(3n) {
    margin-right: 0px;
  }

  .mobile-active .desktop-extra-img {
    display: none;
  }
  .mobile-active .desktop-img {
    display: block;
  }

  footer .inner-container .col-md-6 {
    max-width: 420px;
    margin-right: 20px;
  }
  footer .inner-container .col-md-6:nth-of-type(3n) {
    margin-right: 0px;
  }

  .single-news_posts .amm-text-content {
    max-width: 1300px;
    margin: 0 auto !important;
    margin-bottom: 200px !important;
  }
  .single-news_posts .amm_2_col_img {
    max-width: 1300px;
    margin: 0 auto !important;
  }
  .single-news_posts .amm_2_col_img .vc_column_container {
    max-width: 640px;
    margin-right: 0px;
    padding: 0px;
  }
  .single-news_posts .amm_2_col_img .vc_column_container img {
    max-width: 640px;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0px;
  }
  .single-news_posts .amm_2_col_img .vc_column_container:last-child img {
    float: none;
    margin: 0;
  }

  .vc_hero .amm_cto, .hero .amm_cto {
    margin-top: 18px;
  }

  .bio-close-btn {
    right: 53px;
    top: 68px !important;
  }

  .single-team_pt .bio-btn-next, .single-team_pt .bio-btn-prev {
    width: 127px;
  }
  .single-team_pt .profile-img img.desktop {
    background-color: #f5f5f5;
  }
  .single-team_pt .teams {
    padding-top: 0px;
    margin-top: 66px;
  }
  .single-team_pt .teams .list .profile-img {
    padding-right: 9px;
    margin-left: 80px;
    margin-right: 48px;
  }
  .single-team_pt .teams .list .profile-image.desktop {
    width: 452px;
  }
}
@media screen and (max-width: 1439px) {
  .single-project_pt .amm_header_text p {
    font-size: 4.51vw;
  }
}
@media screen and (max-width: 1316px) {
  .navbar-default .container, .site-share-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  /*Grid Fix*/
  .col-lg-4, .col-sm-4, footer .inner-container .col-md-6, .item {
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-right: initial !important;
    max-width: initial !important;
  }

  .amm_2_col_img {
    /*pdp single*/
    padding-left: 20px;
    padding-right: 20px;
  }
  .amm_2_col_img .vc_col-sm-6:first-child {
    padding-right: 10px !important;
    margin-right: 0px !important;
  }
  .amm_2_col_img .vc_col-sm-6:last-child {
    padding-left: 10px !important;
  }

  /*	.vc_single_image img{
  		padding-left: 20px;
  		padding-right: 20px;
  	}*/
  #about .amm-text-content, .single-news_posts .amm-text-content {
    max-width: 1300px;
    margin: 0 auto !important;
    margin-bottom: 200px !important;
  }
  #about .amm_2_col_img, .single-news_posts .amm_2_col_img {
    max-width: 1300px;
    margin: 0 auto !important;
  }
  #about .amm_2_col_img .vc_column_container, .single-news_posts .amm_2_col_img .vc_column_container {
    max-width: 640px;
    margin-right: 0px;
    padding: 0px;
  }
  #about .amm_2_col_img .vc_column_container img, .single-news_posts .amm_2_col_img .vc_column_container img {
    max-width: 640px;
    width: 100%;
    text-align: left;
    margin: 0;
    padding: 0px;
  }
  #about .amm_2_col_img .vc_column_container:first-child, .single-news_posts .amm_2_col_img .vc_column_container:first-child {
    margin-right: 0px;
    padding-right: 10px !important;
  }
  #about .amm_2_col_img .vc_column_container:last-child, .single-news_posts .amm_2_col_img .vc_column_container:last-child {
    padding-left: 10px !important;
  }
  #about .amm_2_col_img .vc_column_container:last-child img, .single-news_posts .amm_2_col_img .vc_column_container:last-child img {
    float: none;
    margin: 0;
  }

  .related-label {
    padding-left: 20px;
    padding-right: 20px;
  }

  .es_textbox {
    padding-bottom: 0;
    float: left;
    max-width: 320px;
    width: 70%;
  }

  .page-template-contact-page-tpl .contact-page-details .positions {
    margin: 0px !important;
    padding-left: 8.333% !important;
    padding-right: 45px !important;
  }
}
/*Override bootstrap default container width*/
@media (min-width: 1200px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0px;
  }

  .col-lg-4 {
    width: 33.33333333%;
    padding: 0px;
    margin-right: 20px;
    max-width: 420px;
    position: relative;
  }
  .col-lg-4:nth-of-type(3n) {
    margin-right: 0px;
  }

  .related-label a {
    margin-top: 5px;
  }
}
@media screen and (max-width: 1200px) {
  .single-team_pt .teams .list .profile-img {
    margin-left: 0px;
    margin-right: 0px;
  }
}
@media screen and (max-width: 1199px) {
  .pt-list img {
    width: 100%;
  }

  #about .vc_row-fluid:nth-child(2), #about .amm-text-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  #about .team-list .header-label h1 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .single-project_pt .amm-cont_1 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 {
    max-width: 50%;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 {
    width: auto;
    margin-right: 45px;
  }

  .single-team_pt .profile-img {
    padding-left: 20px;
    margin-left: 0px;
    margin-right: 0px;
  }
  .single-team_pt .teams img {
    background-color: #f5f5f5;
  }
  .single-team_pt .teams .profile-info {
    padding-right: 100px;
  }
  .single-team_pt .list .profile-small-images {
    margin-right: 0px;
    margin-left: 0px;
  }
  .single-team_pt .list .profile-img {
    padding-left: 100px;
  }
}
@media screen and (min-width: 992px) {
  .amm-gif .vc_single_image img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
  }

  .page-template-news-page .latest-news-list .list .news-info .date {
    line-height: 0.9;
    display: block;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 992px) {
  .single-project_pt .amm-cont_1 .vc_column_container p {
    font-size: 36px;
    max-width: 740px;
    letter-spacing: 0px !important;
  }
}
@media screen and (max-width: 991px) {
  #mega-menu {
    display: none !important;
  }

  .single-team_pt .list {
    margin-bottom: 120px;
  }
  .single-team_pt .teams {
    margin-top: 0px;
  }
  .single-team_pt .teams .team-nav.mobile.team-next {
    right: -147px;
  }
  .single-team_pt .teams .team-nav.mobile.team-prev {
    left: -150px;
    display: block !important;
  }
  .single-team_pt .teams .list .profile-img {
    padding: 0px;
  }

  .bio-btn-next {
    display: none !important;
  }

  .single-team_pt .bio-btn-prev {
    display: none;
  }

  .amm-gif {
    height: static !important;
    height: initial !important;
  }
  .amm-gif .vc_single_image {
    height: static !important;
    height: initial !important;
    padding: 0px !important;
  }
  .amm-gif .vc_single_image img {
    height: static !important;
    height: initial !important;
    max-height: static !important;
    max-height: initial !important;
  }

  .single-project_pt .img-txt-parallax .bg-txt-holder {
    background-size: contain;
  }
  .single-project_pt .amm-cont_1 .wpb_wrapper .wpb_text_column {
    overflow: hidden;
  }
  .single-project_pt .amm-cont_1 .wpb_wrapper .wpb_wrapper p {
    transform: translateY(50%);
  }

  .navbar-default .container {
    padding-right: 45px;
    padding-left: 45px;
  }

  .page-template-legal-page .container, .error404 .container {
    padding-left: 45px;
    padding-right: 45px;
  }

  .logo {
    display: none !important;
  }

  .mobile-logo {
    display: block;
  }

  .grid-hide {
    opacity: 1;
  }

  .navbar-header {
    margin-right: 5px;
  }

  .navbar-toggle {
    margin: 0px;
    background-color: transparent !important;
    padding: 0;
    width: 25px;
  }

  .navbar-default .navbar-toggle .icon-bar {
    background-color: black !important;
    width: 100%;
    margin-top: 3px;
    transition: 0.5s;
  }
  .navbar-default .navbar-toggle .icon-bar:last-child {
    width: 75%;
  }

  .navbar .container {
    height: 48px;
  }

  .single-project_pt .vc_row-fluid {
    height: static;
    height: initial;
  }
  .single-project_pt .amm-cont_1 {
    height: 1023px;
  }

  .news-list .col-sm-4 {
    width: 100% !important;
    padding: 0px !important;
  }
  .news-list .list {
    margin-bottom: 20px;
  }
  .news-list .list:last-child {
    margin-bottom: 0px;
  }
  .news-list .list .news-link {
    bottom: 20px;
  }

  #work .row #pdp {
    padding-top: 0px !important;
  }

  .mask {
    width: 100%;
    display: none;
  }

  .grid-news-img, .grid-pdp-img {
    opacity: 1 !important;
    position: static;
    position: initial;
  }

  .single-project_pt .amm-cont_2-3_1-3 {
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-bottom: 130px !important;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 {
    max-width: 445px;
    width: 100%;
    margin-left: 45px;
    margin-right: 45px;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 p {
    font-family: Akkurat, "Arial", sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    color: #666666;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 .more-toggle {
    font-size: 18px;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 h4 {
    margin-bottom: 54px;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 {
    /*width: 100%;*/
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .wpb_wrapper {
    padding: 0px;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 .vc_custom_1478835395188 {
    padding-top: 60px !important;
  }
  .single-project_pt .vc_row-fluid:nth-child(2) p {
    font-size: 24px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.38;
    color: #666;
  }
  .single-project_pt .vc_row-fluid:nth-child(2) h5 {
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    color: #808080;
  }

  .single-news_posts .pt-list .list .post-content a {
    position: static !important;
    position: initial !important;
  }
  .single-news_posts .pt-list .load-more-news {
    margin-left: 20px;
    margin-right: 20px;
  }
  .single-news_posts .blog-details-text .post-loader .title-blurb .blurb span {
    color: #666;
  }
  .single-news_posts .blog-details-text .post-loader .news-content p {
    color: #666;
  }

  footer {
    margin-top: 0px;
    height: auto !important;
    background-color: #f5f5f5;
  }
  footer .inner-container {
    position: initial;
    position: static;
    top: initial;
    top: static;
    transform: initial;
    transform: static;
    padding: 37px 45px 30px;
  }
  footer .col-md-6 {
    text-align: left;
    padding-left: 20px !important;
  }
  footer ul li {
    padding-right: 20px !important;
    color: #666666;
  }
  footer ul li:first-child {
    padding-left: 0px !important;
  }
  footer ul li a {
    line-height: 2.5;
  }
  footer .copyright {
    font-size: 18px;
    padding: 30px 15px 0px !important;
    text-align: left !important;
    color: #bdbdbd;
  }
  footer .copyright #menu-legal-menu li a {
    color: #bdbdbd !important;
  }
  footer #menu-footer-menu {
    margin-top: 0px;
  }
  footer #menu-legal-menu {
    margin-left: 50px;
  }
  footer .dash {
    display: none;
  }
  footer .newsletter-section {
    margin-top: 0px;
    margin-bottom: 62px;
  }
  footer .newsletter-section input {
    margin-bottom: 0px;
  }

  .menu-legal-menu-container {
    float: right;
    margin-top: -11px;
  }

  .newsletter-msg {
    position: static;
    position: initial;
    bottom: static;
    bottom: initial;
    font-size: 18px;
    clear: both;
  }

  .page-template-contact-page-tpl .amm-inquiries .title-label {
    font-size: 18px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-location {
    margin-bottom: 0px !important;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-post-link {
    margin-bottom: 0px !important;
    text-align: right;
  }

  .single-team_pt .teams .profile-info {
    padding-left: 0px;
    padding-right: 0px;
  }
  .single-team_pt .teams img {
    padding-left: 0px;
  }
  .single-team_pt .back-to-leadership-wrapper {
    padding-left: 0px;
    padding-right: 0px;
  }

  #about .amm-text-content .vc_column_container p {
    color: #666;
  }

  .error404 .container h1 {
    margin-bottom: 55px;
  }
  .error404 .container p {
    color: #666;
    font-size: 18px;
  }
}
@media screen and (max-width: 880px) {
  .single-project_pt .colorpicker {
    height: static;
    height: initial;
    padding-left: 20px;
    padding-right: 20px;
    background-color: transparent !important;
  }
  .single-project_pt .colorpicker .colorpicker-img-mobile {
    display: block;
    width: 100%;
  }
  .single-project_pt .colorpicker .img-frame, .single-project_pt .colorpicker canvas, .single-project_pt .colorpicker .img-glow, .single-project_pt .colorpicker .caption {
    display: none;
  }
}
/*dont remove the ordering*/
@media screen and (min-width: 769px) {
  #about .img-txt-parallax .amm_header_text p, #beats .img-txt-parallax .amm_header_text p {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  #about .slick-next, #about .slick-prev, #beats .slick-next, #beats .slick-prev {
    width: 100px;
  }
}
@media screen and (min-width: 1441px) {
  #about .img-txt-parallax .amm_header_text p, #beats .img-txt-parallax .amm_header_text p {
    margin-left: 140px !important;
    margin-right: 140px !important;
  }
}
/* * * * */
@media (min-width: 768px) and (max-width: 991px) {
  footer .inner-container .social-menu {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  footer .inner-container .newsletter-section {
    padding-top: 8px;
  }
  footer .inner-container .newsletter {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  footer .inner-container .newsletter .es_shortcode_form {
    width: 100%;
    display: inline-block;
  }
  footer .inner-container .newsletter .es_shortcode_form .es_textbox {
    width: 72%;
  }
  footer .inner-container .copyright {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  footer .inner-container .copyright #menu-legal-menu li {
    padding-right: 0px !important;
  }

  #newsGrid .item, .news-list .item {
    margin-bottom: 0px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .error404 footer .inner-container {
    position: fixed;
    bottom: 0px;
    left: 0px;
    right: 0px;
    top: initial;
    transform: translateY(0%);
    background-color: #f5f5f5;
  }
}
@media screen and (min-width: 768px) and (max-height: 800px) {
  .error404 footer .inner-container {
    position: static;
  }
}
@media (min-width: 768px) {
  .item {
    padding: 0px;
    margin-right: 20px;
    position: relative;
  }
  .item:nth-of-type(3n) {
    margin-right: 0px;
  }

  h1, .h1 {
    letter-spacing: -1.5px;
  }
}
@media screen and (max-width: 768px) {
  .hero-mobile-img {
    background-image: none !important;
  }
  .hero-mobile-img .tablet-img {
    visibility: visible !important;
  }

  .navbar-default .row {
    height: 17px;
    padding-left: 0px;
  }

  .more-toggle {
    margin-left: 5px;
  }

  .video-container {
    /*		z-index: 2;
    		opacity: 0;*/
  }

  .desktop-parallax-slider {
    display: none !important;
  }

  .share-modal .close-share-modal {
    right: 45px;
    top: 12px;
  }

  /*desktop/tablet/mobile assets 768*/
  .device-active .desktop-plus-img {
    display: block;
  }

  .device-active .tablet-mobile-img {
    display: none;
  }

  .mobile-active .desktop-img {
    display: none !important;
  }
  .mobile-active .tablet-img {
    opacity: 1 !important;
    display: block;
  }

  #about .vc_hero .mobile-active .tablet-img img {
    visibility: visible;
  }

  .expand-mobile-plus {
    display: inline-block;
  }

  .expand-desktop-plus {
    display: none;
  }

  .vc_video_section .vc_video .tablet-img, .vc_video_section .vc_video .mobile-img {
    width: 100%;
  }

  .single-project_pt .custom-animation-1, .single-project_pt .custom-animation-2 {
    height: 600px !important;
  }
  .single-project_pt .custom-animation-1 .wpb_raw_code .wpb_wrapper, .single-project_pt .custom-animation-2 .wpb_raw_code .wpb_wrapper {
    padding-left: 45px;
    padding-right: 45px;
  }
  .single-project_pt .blog-details-text .vc_row-fluid:nth-child(2) {
    padding-top: 55px !important;
  }
  .single-project_pt .amm-cont_1 .vc_column_container h5 {
    margin-top: 30px;
  }
  .single-project_pt .blog-details-text .vc_row:last-child {
    margin-bottom: 22px !important;
  }
  .single-project_pt .site-share-section {
    margin-bottom: 233px !important;
  }
  .single-project_pt .related-label {
    margin-bottom: 39px;
  }
  .single-project_pt .desktop-pdp-related-img {
    display: none !important;
  }
  .single-project_pt .tablet-pdp-related-img {
    display: block !important;
  }
  .single-project_pt .mobile-pdp-related-img {
    display: none !important;
  }

  .slick-dots {
    margin-top: 20px;
    position: static;
    position: initial;
  }

  .slick-arrow {
    display: none !important;
  }

  .img-txt-parallax {
    display: none;
  }

  .mobile-lib-active .single-mobile, .mobile-lib-active .single-desktop, .mobile-lib-active .desktop-slider {
    display: none;
  }
  .mobile-lib-active .single-tablet, .mobile-lib-active .tablet-slider {
    display: block;
  }

  .single-project_pt {
    /*desktop/tablet/mobile assets 768*/
  }
  .single-project_pt .amm-cont_1 {
    height: 1023px;
  }
  .single-project_pt .vc_row-fluid:nth-child(2) p {
    font-size: 18px;
  }
  .single-project_pt .blog-details-text > .vc_row-fluid:first-child {
    /*margin-bottom: 55px !important;*/
  }
  .single-project_pt .vc_column_container {
    padding-left: 0px !important;
  }
  .single-project_pt .amm-cont_1 {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .single-project_pt .amm-cont_1 br {
    display: none;
  }
  .single-project_pt .single-tablet img {
    width: 100%;
  }
  .single-project_pt .amm_2_col_img {
    padding-left: 0px;
    padding-right: 0px;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6 {
    width: 50%;
    float: left;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6:first-child .vc_single_image {
    padding-right: 0px;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6:last-child {
    padding-left: 10px !important;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6:last-child .vc_single_image {
    padding-left: 0px;
  }
  .single-project_pt .amm-cont_2-3_1-3 {
    margin-bottom: 135px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 {
    float: left;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 h4 {
    margin-bottom: 50px;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-4 {
    float: left;
  }
  .single-project_pt .vc_single_image, .single-project_pt .load-more-work-holder, .single-project_pt .pt-list .list .post-content,
.single-project_pt .site-share-section, .single-project_pt .related-label, .single-project_pt .navbar-default .container {
    padding-left: 45px;
    padding-right: 45px;
  }
  .single-project_pt .load-more-work-holder {
    margin-top: 78px;
  }
  .single-project_pt .brand-video .vc_video {
    display: none;
  }
  .single-project_pt .brand-video .video-container {
    position: relative;
    display: block !important;
  }
  .single-project_pt .vc_single_image .tablet-mobile-img {
    display: none;
  }
  .single-project_pt .vc_single_image .desktop-plus-img {
    display: block;
  }
  .single-project_pt .vc_single_image img {
    padding-left: 0px;
    padding-right: 0px;
  }
  .single-project_pt footer {
    margin-top: 70px;
  }
  .single-project_pt footer .copyright {
    padding-top: 10px !important;
  }

  .related-label {
    margin-bottom: 43px;
  }
  .related-label a {
    display: none;
  }

  .related-pt .list .col-xs-12 {
    width: 100%;
    padding: 0px !important;
    display: none;
  }
  .related-pt .list .col-xs-12:first-child {
    display: block;
  }

  /*desktop/tablet/mobile assets 768*/
  .single-project_pt .tablet-pdp-related-img {
    display: none;
  }
  .single-project_pt .desktop-pdp-related-img {
    display: block;
  }

  .single-project_pt .video-container video {
    object-fit: inherit;
  }

  .load-more-work-holder {
    padding-left: 20px;
    padding-right: 20px;
    display: block !important;
  }

  #about {
    /*desktop/tablet/mobile assets 768*/
  }
  #about .vc_row-fluid:nth-child(2), #about .second-blurb {
    height: 1023px;
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  #about .amm-paragraph .wpb_text_column .wpb_wrapper {
    max-width: 445px !important;
  }
  #about .vc_row-fluid:nth-child(2), #about .amm_2_col_img {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  #about .video-mobile-img {
    display: none;
  }
  #about .amm-full-img .device-active .desktop-plus-img {
    display: none;
  }
  #about .amm-full-img .device-active .tablet-mobile-img {
    display: block;
  }
  #about .amm-text-content {
    margin-bottom: 0px !important;
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  #about .amm-text-content:nth-of-type(4) {
    margin-top: 140px !important;
  }
  #about .amm-text-content .vc_column_container p {
    font-size: 18px;
    color: #666;
  }
  #about .amm-text-content .vc_column_container p .see-works, #about .amm-text-content .vc_column_container p .contact-us, #about .amm-text-content .vc_column_container p .see-careers {
    font-size: 18px;
  }
  #about .amm-full-img, #about .team-list {
    margin-top: 140px !important;
  }
  #about .team-list .desktop-view {
    display: none;
  }
  #about .team-list .header-label h1 {
    padding-left: 45px !important;
    padding-right: 45px !important;
    padding-bottom: 61px;
  }
  #about .team-list .info .name {
    margin-top: 40px;
  }
  #about .team-list .mobile-view {
    display: block;
  }
  #about .team-list .mobile-view .list {
    width: 50%;
    float: left;
    padding: 0px !important;
  }
  #about .team-list .mobile-view .inner-container {
    background-color: #f5f5f5;
  }
  #about .team-list .mobile-view .row {
    background-color: transparent;
  }
  #about .team-list .mobile-view .row:nth-last-of-type(3) .team-info .post-content:first-child {
    padding-left: 0px !important;
  }
  #about .team-list .mobile-view .row:nth-last-of-type(2) {
    display: none !important;
  }
  #about .team-list .mobile-view .team-info {
    height: 190px;
  }
  #about .team-list .mobile-view .team-info .post-content {
    float: left;
    width: 50%;
    padding: 0px !important;
  }
  #about .team-list .mobile-view .team-info .post-content:last-child {
    padding-left: 20px !important;
  }
  #about .team-list .mobile-view .team-info .inner-container {
    padding-left: 45px;
    padding-right: 45px;
  }
  #about .amm_2_col_img .vc_column_container {
    width: 50%;
    float: left;
  }
  #about #leaderships {
    margin-bottom: 140px !important;
  }
  #about #sliders {
    margin-bottom: 140px !important;
  }

  .single-news_posts .blog-details-text .vc_row-fluid:first-child {
    margin-top: 186px !important;
    margin-bottom: 100px !important;
  }
  .single-news_posts .blog-details-text .vc_row-fluid:first-child .col-sm-5 {
    margin-left: 45px !important;
    padding-left: 0px;
  }
  .single-news_posts .blog-details-text .amm_2_col_img {
    padding-left: 45px;
    padding-right: 45px;
  }
  .single-news_posts .blog-details-text .title-blurb .col-sm-6 {
    padding-top: 7px;
  }
  .single-news_posts .blog-details-text .post-loader .col-sm-5 {
    padding-left: 34px;
    margin-left: 45px;
  }
  .single-news_posts .blog-details-text .post-loader .title-blurb .blurb p, .single-news_posts .blog-details-text .post-loader .title-blurb .blurb span, .single-news_posts .blog-details-text .post-loader .news-content p, .single-news_posts .blog-details-text .post-loader .news-content span {
    font-size: 18px;
    display: block;
    line-height: 1.33;
  }
  .single-news_posts .blog-details-text .post-loader .title-blurb .blurb a, .single-news_posts .blog-details-text .post-loader .news-content a {
    font-size: 18px;
  }
  .single-news_posts .blog-details-text .post-loader .title-blurb .blurb a span, .single-news_posts .blog-details-text .post-loader .news-content a span {
    display: inline-block;
  }
  .single-news_posts .amm-text-content {
    margin-bottom: 140px !important;
    margin-top: 0px !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .single-news_posts .amm-text-content .vc_column_container {
    padding-left: 0px;
  }
  .single-news_posts .amm-text-content .vc_column_container p {
    font-size: 18px;
  }
  .single-news_posts .blurb br {
    display: none;
  }
  .single-news_posts .team-list h1 {
    padding-left: 45px;
  }
  .single-news_posts .team-list .row {
    background-color: transparent;
  }
  .single-news_posts .team-list .list {
    background-color: #f5f5f5;
    width: 50%;
    float: left;
  }
  .single-news_posts .team-list .post-content {
    width: 50%;
    float: left;
  }
  .single-news_posts .vc_row-fluid:nth-child(2) {
    height: auto;
  }
  .single-news_posts .vc_row-fluid:nth-child(2) p {
    margin-top: 424.5px;
    margin-bottom: 426.5px;
  }
  .single-news_posts .amm_2_col_img .vc_col-sm-6 {
    margin-right: 0px;
    padding-right: 0px !important;
    margin-bottom: 70px;
    float: left;
    width: 50%;
  }
  .single-news_posts .amm_2_col_img .vc_col-sm-6 img {
    padding-left: 0px !important;
  }
  .single-news_posts .amm_2_col_img .vc_col-sm-6:first-child {
    padding-right: 10px !important;
  }
  .single-news_posts .amm_2_col_img .vc_col-sm-6:last-child {
    padding-left: 10px !important;
  }
  .single-news_posts .amm_2_col_img .vc_col-sm-6:last-child img {
    padding-right: 0px !important;
  }
  .single-news_posts .team-list .desktop-view {
    display: none;
  }
  .single-news_posts .team-list .mobile-view {
    display: block;
  }
  .single-news_posts .team-list .mobile-view .post-content {
    padding-left: 45px !important;
    padding-right: 20px !important;
  }
  .single-news_posts .team-list .mobile-view .post-content:last-child {
    padding-left: 0px !important;
  }
  .single-news_posts .link, .single-news_posts .share, .single-news_posts .see-works, .single-news_posts .see-careers, .single-news_posts .contact-us {
    font-size: 18px !important;
  }
  .single-news_posts .load-more-work-holder {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 70px;
    margin-bottom: 70px;
  }
  .single-news_posts .device-active .desktop-plus-img {
    display: block !important;
  }
  .single-news_posts .device-active .tablet-mobile-img {
    display: none !important;
  }
  .single-news_posts .mobile-lib-active .tablet-slider {
    display: none !important;
  }
  .single-news_posts .mobile-lib-active .desktop-slider {
    display: block !important;
  }
  .single-news_posts .related-label {
    margin-top: 100px;
  }
  .single-news_posts .load-more-work-holder, .single-news_posts .related-label {
    padding-left: 45px;
    padding-right: 45px;
  }

  .page-template-contact-page-tpl .col-lg-offset-1, .page-template-contact-page-tpl .col-md-offset-1, .page-template-contact-page-tpl .col-sm-offset-1 {
    margin: 0px !important;
  }
  .page-template-contact-page-tpl .parent-section {
    padding-left: 45px !important;
    padding-right: 45px !important;
  }
  .page-template-contact-page-tpl .contact-page-details .studio-data .location {
    margin-bottom: 29px;
  }
  .page-template-contact-page-tpl .contact-page-details .studio-data .address address {
    line-height: 1.4;
  }
  .page-template-contact-page-tpl .contact-page-details .studio-data .directions {
    margin-bottom: 32px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-inquiries {
    padding-top: 66px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-inquiries .title-label {
    margin-bottom: 32px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-inquiries .inquiries-data {
    margin-bottom: 36px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios {
    padding-top: 160px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .title {
    padding-top: 29px;
    margin-bottom: 113px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .row:last-child .col-xs-5 {
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .row:last-child .col-xs-5:last-child {
    padding-left: 65px !important;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-join .title {
    margin-bottom: 103px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers {
    padding-top: 197px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .positions {
    padding: 0px !important;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .col-xs-12 {
    width: 100% !important;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-title {
    padding-top: 16px;
    padding-bottom: 0px !important;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-location {
    padding-left: 0px !important;
    padding-top: 0px !important;
    margin-bottom: 8px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-post-link {
    margin-bottom: 24px;
    text-align: left;
    padding-bottom: 40px !important;
    padding-top: 7px !important;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions-message {
    line-height: 1.4;
    margin-bottom: 27px;
  }
  .page-template-contact-page-tpl footer {
    margin-top: 138px;
  }

  #about .amm-paragraph {
    margin-left: 0px !important;
    margin-right: 0px !important;
    max-width: 445px;
  }
  #about .amm-text-content .vc_column_container .wpb_wrapper .blurb .wpb_wrapper {
    padding-left: 0px !important;
  }

  footer .inner-container {
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 34px;
  }
  footer .inner-container .social-menu {
    max-width: 266px !important;
    padding-left: 0px !important;
  }
  footer .inner-container .newsletter {
    width: 59.75%;
  }
  footer .inner-container .copyright {
    width: 100%;
    padding-top: 30px;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  footer #menu-footer-menu li {
    padding-bottom: 0px;
    height: 42px;
  }
  footer #menu-legal-menu li:first-child {
    padding-right: 0px !important;
  }
  footer .newsletter-section .newsletter-label {
    margin-bottom: 20px;
  }
  footer .es_shortcode_form {
    padding-bottom: 12px;
    padding-top: 11px;
  }
  footer .es_textbox {
    width: 75% !important;
  }
  footer .es_button {
    width: 21% !important;
    margin-left: 16px;
    padding-left: static;
    padding-left: initial;
    min-width: static;
    min-width: initial;
    max-width: static;
    max-width: initial;
  }

  .single-team_pt .profile-info {
    padding: 0px !important;
    margin-top: 67px !important;
  }
  .single-team_pt .teams {
    margin-top: 0px;
  }
  .single-team_pt .teams .list .profile-img {
    margin: 0px !important;
    padding: 0px !important;
  }
  .single-team_pt .teams .list .profile-small-images {
    margin: 0px !important;
  }
  .single-team_pt .teams .list .back-to-leadership.mobile {
    padding: 22px 0;
  }

  .pt-list .list {
    margin-bottom: 0px;
  }
  .pt-list .list .post-content {
    padding-top: 20px;
    position: static;
    position: initial;
  }

  .amm-gif .vc_single_image {
    padding: 0px 45px !important;
  }
}
@media screen and (max-width: 767px) {
  h1, .h1 {
    font-size: 36px !important;
    letter-spacing: normal;
  }

  .vc_hero h1 {
    line-height: 1.2;
  }

  .vc_hero .amm_cto a {
    margin-top: 16px;
  }

  .single-project_pt .amm-cont_1 p {
    font-size: 30px !important;
    letter-spacing: normal;
  }

  .single-project_pt .amm-cont_1 h5 {
    font-size: 18px !important;
  }

  #work h1 {
    letter-spacing: normal;
  }

  .pt-list .list {
    padding: 0px !important;
  }

  .col-sm-4 {
    padding: 0px;
  }

  .pt-list .list img {
    width: 100%;
  }

  .amm_2_col_img .vc_column_container {
    max-width: 100%;
  }
  .amm_2_col_img .vc_col-sm-6:first-child {
    margin-bottom: 20px;
    padding-right: 0px;
  }
  .amm_2_col_img .vc_col-sm-6:last-child {
    padding-left: 0px;
  }

  .single-project_pt .vc_column_container {
    padding-left: 0px !important;
  }

  .single-news_posts .blog-details-text .vc_row-fluid:first-child .col-sm-5 {
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .single-news_posts .blog-details-text .post-loader .col-sm-5 {
    padding-right: 0px !important;
    padding-left: 0px !important;
    margin-left: 45px !important;
    margin-right: 45px !important;
  }
  .single-news_posts .post-loader .col-sm-5 {
    padding-left: 45px;
    padding-right: 45px;
    margin-bottom: 55px;
  }
  .single-news_posts .post-loader .col-sm-6 {
    padding-left: 45px;
    padding-right: 45px;
  }
  .single-news_posts .blog-details-text .vc_row-fluid:first-child {
    margin-top: 90px !important;
    margin-bottom: 70px !important;
  }

  .page-template-contact-page-tpl .amm-studios .row:last-child .col-xs-5 {
    width: 50%;
    padding-left: 0px;
    padding-right: 0px;
  }
  .page-template-contact-page-tpl .amm-studios .row:last-child .col-xs-5:first-child {
    padding-right: 10px;
  }
  .page-template-contact-page-tpl .amm-studios .row:last-child .col-xs-5:last-child {
    padding-left: 10px;
  }

  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 {
    margin-right: 0px;
    padding-right: 20px;
  }

  footer .newsletter-section .newsletter-email, footer .newsletter-section form .newsletter-field:first-child {
    max-width: 232px;
  }
  footer .inner-container {
    padding-top: 34px;
  }
  footer .inner-container .newsletter {
    float: left;
    width: 60%;
    margin-top: 9px;
  }
  footer .inner-container .social-menu {
    max-width: 259px !important;
    width: 40%;
  }
  footer .inner-container .social-menu, footer .inner-container .newsletter {
    max-width: 100% !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
    float: left;
  }
  footer .inner-container .es_textbox {
    width: 74% !important;
  }
  footer .inner-container .es_button {
    width: 25%;
    min-width: 85.3px;
  }
  footer .copyright {
    color: #bdbdbd;
  }
  footer .copyright #menu-legal-menu li a {
    color: #bdbdbd !important;
  }

  .page-template-news-page .latest-news-list .list .news-img {
    margin-bottom: 0px;
  }
  .page-template-news-page .latest-news-list .list > .col-md-6 {
    margin-bottom: 0px;
  }
  .page-template-news-page #newsGrid .item, .page-template-news-page .news-list .item {
    margin-bottom: 0px;
  }
  .page-template-news-page #newsGrid .item .contents .list .news-title, .page-template-news-page .news-list .item .contents .list .news-title {
    max-width: 95%;
  }

  .single-team_pt .bio-btn-next {
    display: none;
  }
  .single-team_pt .list {
    margin-bottom: 50px;
  }
  .single-team_pt .teams .list .profile-img {
    float: none;
  }
  .single-team_pt .teams .list .profile-info {
    float: none;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .single-team_pt .teams .team-nav.mobile.team-prev {
    display: none !important;
  }
  .single-team_pt .teams .back-to-leadership.mobile {
    max-width: 404px;
  }
  .single-team_pt .teams .back-to-leadership.mobile {
    margin-bottom: 70px !important;
  }
  .single-team_pt .back-to-leadership-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .news-list .list .news-link {
    /*position: static;*/
  }
  .news-list .item {
    margin-bottom: 0px;
  }
  .news-list .item:nth-of-type(3n) {
    /*margin-bottom: 20px;*/
  }

  #about .amm-text-content .vc_column_container .blurb p {
    letter-spacing: normal;
  }

  #about .vc_hero .amm_container .bg-img img {
    visibility: visible;
  }

  .single-news-posts .blog-details-text .post-loader .title-blurb .blurb p, .single-news-posts .blog-details-text .post-loader .title-blurb .blurb span {
    letter-spacing: normal;
  }
}
@media screen and (max-width: 714px) {
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 {
    max-width: 338px;
  }
}
@media screen and (max-width: 692px) {
  .navbar-default .container {
    height: 48px;
  }

  .mobile-active .mobile-img {
    display: block;
  }
  .mobile-active .desktop-img {
    display: none;
  }
  .mobile-active .tablet-img {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .single-project_pt .vc_row-fluid {
    /*margin-bottom: 20px !important;*/
  }
  .single-project_pt .amm-text-content {
    margin-bottom: 135px !important;
  }
  .single-project_pt .slick-dots {
    position: static;
    position: initial;
  }

  #about .team-list .header-label h1 {
    font-size: 36px;
  }

  #about .amm-text-content .vc_column_container .blurb p {
    font-size: 36px;
    margin-top: 218px;
    margin-bottom: 149px;
  }
}
@media screen and (max-width: 587px) {
  .single-project_pt .amm-text-content .vc_col-sm-8 {
    float: none;
    margin-left: 45px;
  }
  .single-project_pt .amm-text-content .vc_col-sm-4 {
    float: none;
    margin-left: 45px;
  }
  .single-project_pt .amm-text-content .vc_col-sm-4 .vc_column-inner {
    margin-top: 60px;
  }
}
@media screen and (max-width: 580px) {
  .amm-studios .studio-info {
    width: 100% !important;
    padding-left: 0px !important;
    padding-right: 0px !important;
  }

  .page-template-contact-page-tpl .contact-page-details .amm-studios .row:last-child .col-xs-5:last-child {
    padding-left: 0px !important;
    margin-top: 55px !important;
  }
}
@media screen and (max-width: 540px) {
  footer .inner-container {
    padding-top: 0px;
  }
  footer .inner-container .es_textbox {
    width: 65% !important;
  }
  footer .inner-container .es_button {
    width: 85.5px !important;
  }
  footer .inner-container .social-menu, footer .inner-container .newsletter {
    width: 100%;
    float: none;
  }

  .hide-mobile {
    display: none;
  }

  .show-mobile {
    margin-top: 62px !important;
    display: block;
  }
}
@media screen and (max-width: 480px) {
  footer .newsletter-section .newsletter-email, footer .newsletter-section form .newsletter-field:first-child {
    max-width: 232px;
  }
  footer .inner-container {
    padding-top: 0px;
    padding-bottom: 14px;
  }
  footer .inner-container .es_textbox {
    width: 63% !important;
  }
  footer .copyright {
    color: #bdbdbd;
  }
  footer .copyright #menu-legal-menu li a {
    color: #bdbdbd !important;
  }
}
@media screen and (max-width: 420) {
  .categories ul li:last-child {
    margin-right: 0px;
  }
}
@media screen and (min-width: 415px) and (max-width: 768px) {
  .mobile-lib-active .mobile-slider {
    display: none;
  }
  .mobile-lib-active .tablet-slider {
    display: block;
  }
}
@media screen and (max-width: 430px) {
  h1, .h1 {
    font-size: 36px !important;
  }

  .brand-video .mobile-img, .brand-video .play-btn-holder {
    display: block !important;
  }

  .hero-mobile-img {
    background-image: none !important;
  }
  .hero-mobile-img .tablet-img {
    visibility: none !important;
  }
  .hero-mobile-img .mobile-img {
    visibility: visible !important;
  }

  .vc_hero h1 {
    letter-spacing: normal !important;
    font-size: 36px;
  }
  .vc_hero .amm_cto {
    padding-left: 20px;
    padding-right: 20px;
  }

  #work .row #pdp {
    padding-top: 0px !important;
  }
  #work h1 {
    font-size: 36px;
  }

  .navbar-default .container {
    padding-right: 20px;
    padding-left: 20px;
  }

  .share-modal .close-share-modal {
    right: 20px;
    top: 12px;
  }

  .expand-mobile-plus {
    display: inline-block;
  }
  .expand-mobile-plus img {
    margin-bottom: 0px;
  }

  .expand-desktop-plus {
    display: none;
  }

  .news-list .mobile-active .desktop-img, .news-list .mobile-active .tablet-img, .vc_hero .mobile-active .desktop-img, .vc_hero .mobile-active .tablet-img, .pt-list .mobile-active .desktop-img, .pt-list .mobile-active .tablet-img {
    display: none !important;
  }
  .news-list .mobile-active .mobile-img, .vc_hero .mobile-active .mobile-img, .pt-list .mobile-active .mobile-img {
    opacity: 1 !important;
    display: block !important;
    width: 100%;
  }
  .news-list .mobile-active .mobile-img .bg-img, .vc_hero .mobile-active .mobile-img .bg-img, .pt-list .mobile-active .mobile-img .bg-img {
    background-size: cover;
  }
  .news-list .mobile-active .mobile-img .bg-img, .vc_hero .mobile-active .mobile-img .bg-img, .pt-list .mobile-active .mobile-img .bg-img {
    background-size: cover;
  }

  .news-list .list {
    min-height: 250px;
  }
  .news-list .list .news-link {
    bottom: 40px;
    position: static;
  }

  .play-btn-holder, .mobile-active .tablet-img {
    display: none !important;
  }

  .video-mobile-img {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-active .hero .video-mobile-img {
    display: none !important;
  }

  .single-project_pt {
    /*desktop/tablet/mobile assets 414*/
  }
  .single-project_pt .custom-animation-1, .single-project_pt .custom-animation-2 {
    height: 318px !important;
  }
  .single-project_pt .custom-animation-1 .wpb_raw_code .wpb_wrapper, .single-project_pt .custom-animation-2 .wpb_raw_code .wpb_wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .single-project_pt .desktop-pdp-related-img {
    display: none !important;
  }
  .single-project_pt .tablet-pdp-related-img {
    display: none !important;
  }
  .single-project_pt .video-container {
    display: none !important;
  }
  .single-project_pt .blog-details-text .vc_row-fluid:nth-child(2) {
    padding-top: 5px !important;
  }
  .single-project_pt .blog-details-text .vc_row:last-child {
    margin-bottom: 80px !important;
  }
  .single-project_pt .blog-details-text .vc_row {
    margin-bottom: 20px !important;
  }
  .single-project_pt .amm-cont_2-3_1-3 .vc_col-sm-8 h4 {
    margin-bottom: 52px;
  }
  .single-project_pt .load-more-work-holder {
    margin-top: 71px;
  }
  .single-project_pt footer .copyright {
    padding-top: 50px !important;
  }
  .single-project_pt .vc_single_image .tablet-mobile-img {
    display: block;
  }
  .single-project_pt .vc_single_image .desktop-plus-img {
    display: none;
  }
  .single-project_pt .mobile-pdp-related-img {
    display: block !important;
  }

  /*desktop/tablet/mobile assets 414*/
  #work .device-active .desktop-plus-img {
    display: none !important;
  }
  #work .device-active .tablet-mobile-img {
    display: block !important;
  }

  .news-list .mobile-active .desktop-img, .news-list .mobile-active .mobile-img, .pt-list .mobile-active .desktop-img, .pt-list .mobile-active .mobile-img {
    display: none !important;
  }
  .news-list .mobile-active .tablet-img, .pt-list .mobile-active .tablet-img {
    opacity: 1 !important;
    display: block !important;
  }
  .news-list .device-active .desktop-plus-img, .pt-list .device-active .desktop-plus-img {
    display: none !important;
  }
  .news-list .device-active .tablet-mobile-img, .pt-list .device-active .tablet-mobile-img {
    display: block;
  }

  .pt-list .list .item a {
    display: block;
  }

  .pt-list .list {
    margin-bottom: 0px;
  }
  .pt-list .list .post-content {
    padding-top: 20px;
    position: static;
    position: initial;
  }
  .pt-list .list .post-content .project-blurb, .pt-list .list .post-content a {
    position: static;
    position: initial;
  }
  .pt-list .list .post-content .project-blurb {
    margin-top: 47px;
    margin-bottom: 29px;
  }

  .news-list .list, .pt-list .post-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 20px;
  }

  .mobile-lib-active .single-mobile {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }

  .device-active .desktop-plus-img {
    display: none !important;
  }
  .device-active .tablet-mobile-img {
    display: block;
  }

  .single-project_pt .blog-details-text .vc_row-fluid:nth-child(2) {
    padding-top: 60px !important;
  }

  .single-project_pt .blog-details-text > .vc_row-fluid:first-child, .post-type-project_pt .blog-details-text > .vc_row-fluid:first-child {
    height: initial !important;
    height: static !important;
    /*margin-bottom: 60px !important;*/
  }

  .single-project_pt .amm_cto h1 {
    font-size: 36px;
  }
  .single-project_pt .amm-cont_1 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .single-project_pt .amm-cont_1 .vc_column_container p {
    letter-spacing: normal;
  }
  .single-project_pt .amm-text-content .vc_col-sm-8, .single-project_pt .amm-text-content .vc_col-sm-4 {
    margin: 0px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    max-width: 100% !important;
  }

  .single-project_pt .vc_single_image, .single-project_pt .navbar-default .container,
.single-project_pt .related-label, .single-project_pt .post-content, .single-project_pt .load-more-work-holder {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .single-project_pt .blog-details-text .amm-text-content {
    margin-bottom: 132px !important;
  }
  .single-project_pt .vc_row-fluid p {
    font-size: 18px !important;
  }
  .single-project_pt .amm-cont_1 {
    height: 667px !important;
  }
  .single-project_pt .amm-cont_1 p {
    font-size: 24px !important;
  }
  .single-project_pt .amm-cont_1 h5 {
    font-size: 18px !important;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6 {
    width: 100%;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6:first-child {
    padding-right: 0px !important;
  }
  .single-project_pt .amm_2_col_img .vc_col-sm-6:last-child {
    padding-left: 0px !important;
  }
  .single-project_pt .site-share-section {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 140px !important;
  }
  .single-project_pt .site-share-section .link-holder {
    margin-bottom: 30px;
  }
  .single-project_pt .site-share-section .link, .single-project_pt .site-share-section .share {
    float: none;
  }

  #about .vc_hero .amm_container .bg-img img {
    visibility: visible !important;
  }
  #about .vc_row-fluid:nth-child(2), #about .second-blurb {
    height: 667px;
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  #about .amm-text-content:nth-of-type(4) {
    margin-top: 65px !important;
    margin-bottom: 135px !important;
  }
  #about .vc_row-fluid:nth-child(2), #about .amm_2_col_img, #about .amm-text-content {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  #about .team-list .mobile-view .inner-container {
    background-color: transparent !important;
  }
  #about .team-list .header-label h1 {
    padding-left: 20px !important;
    padding-right: 20px !important;
    padding-top: 67px !important;
    letter-spacing: normal;
  }
  #about .team-list .info .position {
    margin-bottom: 36px;
  }
  #about .amm-text-content .vc_column_container p {
    line-height: 1.44;
  }
  #about .amm-full-img {
    margin-top: 0px !important;
    margin-bottom: 70px !important;
  }
  #about .team-list h1 {
    padding-top: 60px !important;
  }
  #about .team-list .team-info {
    display: none;
  }
  #about .team-list .mobile {
    display: block;
    clear: both;
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 40px;
  }
  #about .team-list .mobile-view .list {
    width: 100%;
  }
  #about .team-list .info .name {
    margin-top: 0px;
  }
  #about .amm_2_col_img .vc_col-sm-6 {
    width: 100%;
  }
  #about .amm_2_col_img .vc_col-sm-6 img {
    padding: 0px !important;
  }
  #about .amm_2_col_img .vc_col-sm-6:last-child {
    margin-top: 20px;
    padding-left: 0px !important;
  }
  #about .amm_2_col_img .vc_column_container:first-child {
    padding-right: 0px !important;
  }
  #about .amm-full-img:nth-of-type(7) {
    margin-top: 70px !important;
  }
  #about .less-margin-bottom {
    margin-top: 140px !important;
    margin-bottom: 0px !important;
  }
  #about .vc_row-fluid:last-child {
    margin-top: 140px !important;
  }
  #latestNews .desktop {
    display: none;
  }
  #latestNews .mobile {
    display: block;
  }

  .single-news_posts .blog-details-text .post-loader .title-blurb .blurb p, .single-news_posts .blog-details-text .post-loader span {
    font-size: 18px !important;
  }
  .single-news_posts .blog-details-text .post-loader .col-sm-6 {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .single-news_posts .blog-details-text .post-loader .col-sm-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .single-news_posts .blog-details-text .amm_2_col_img {
    padding-left: 20px;
    padding-right: 20px;
  }
  .single-news_posts .blog-details-text .vc_row-fluid:first-child .col-sm-5 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .single-news_posts .mobile-lib-active .tablet-slider {
    display: block !important;
  }
  .single-news_posts .mobile-lib-active .desktop-slider {
    display: none !important;
  }
  .single-news_posts .vc_row-fluid:nth-child(2) {
    margin-bottom: 45px !important;
  }
  .single-news_posts .vc_row-fluid:last-child {
    margin-bottom: 200px !important;
  }
  .single-news_posts .related-label {
    margin-top: 0px;
  }
  .single-news_posts .blog-details-text span br {
    display: none;
  }
  .single-news_posts .blog-details-text .amm_2_col_img {
    margin-bottom: 65px !important;
  }
  .single-news_posts .blog-details-text .amm_2_col_img .vc_col-sm-6 {
    width: 100%;
  }
  .single-news_posts .blog-details-text .amm_2_col_img .vc_col-sm-6:first-child, .single-news_posts .blog-details-text .amm_2_col_img .vc_col-sm-6:last-child {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .single-news_posts .blog-details-text .amm_2_col_img .vc_col-sm-6:last-child {
    margin-bottom: 0px !important;
  }
  .single-news_posts .related-label, .single-news_posts .load-more-work-holder {
    padding-right: 20px !important;
    padding-left: 20px !important;
  }
  .single-news_posts .device-active .desktop-plus-img {
    display: none !important;
  }
  .single-news_posts .device-active .tablet-mobile-img {
    display: block !important;
  }
  .single-news_posts .mobile-lib-active .tablet-slider {
    display: none !important;
  }
  .single-news_posts .mobile-lib-active .desktop-slider {
    display: none !important;
  }

  .hide-mobile {
    display: none;
  }

  .show-mobile {
    margin-top: 62px !important;
    display: block;
  }

  .page-template-contact-page-tpl .contact-page-details .amm-studios {
    padding-top: 64px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .row .col-xs-5 {
    width: 100%;
    padding: 0px !important;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-studios .row:last-child .col-xs-5:last-child {
    padding: 0px !important;
    margin-top: 55px;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-inquiries {
    padding-top: 53px;
  }
  .page-template-contact-page-tpl .contact-page-details .title {
    font-size: 36px;
    letter-spacing: 0px;
    margin-bottom: 55px !important;
  }
  .page-template-contact-page-tpl .contact-page-details .studio-data .location {
    margin-bottom: 2px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers {
    padding-top: 203px;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-title {
    padding-bottom: 0px !important;
    padding-top: 14px !important;
  }
  .page-template-contact-page-tpl .contact-page-details #careers .open-positions .position-item .job-location {
    padding-bottom: 8px !important;
  }
  .page-template-contact-page-tpl .contact-page-details .amm-join .title {
    margin-bottom: 61px !important;
  }

  .page-template-legal-page .col-lg-10, .error404 .col-lg-10 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .page-template-contact-page-tpl .parent-section {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  footer .inner-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer .inner-container .col-sm-6, footer .inner-container .col-lg-4:nth-child(2) {
    width: 100%;
    padding: 0px !important;
  }
  footer .inner-container .es_textbox {
    width: 72% !important;
  }
  footer .inner-container .es_button {
    margin-left: 17px;
  }
  footer .social-menu {
    margin-top: 0px !important;
  }
  footer .newsletter-section {
    margin-top: 66px !important;
    margin-bottom: 52px;
  }
  footer .show-mobile #menu-footer-menu-1 li {
    height: 44px;
  }
  footer .copyright {
    padding-top: 50px !important;
  }
  footer .copyright .menu-legal-menu-container {
    text-align: right;
  }
  footer .copyright .menu-legal-menu-container ul li {
    padding-right: 9px !important;
  }

  .error404 .container, .page-template-legal-page .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mobile-lib-active .mobile-slider {
    display: block;
  }
  .mobile-lib-active .tablet-slider {
    display: none;
  }

  .amm-gif .vc_single_image {
    padding: 0px 20px !important;
  }

  #mc-embedded-subscribe {
    vertical-align: baseline;
  }
}
@media screen and (max-width: 375px) {
  footer .inner-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer .inner-container .col-sm-6, footer .inner-container .col-lg-4:nth-child(2) {
    width: 100%;
    padding: 0px !important;
  }
  footer .inner-container .es_textbox {
    width: 69% !important;
  }
  footer .inner-container .es_button {
    width: 25% !important;
    margin-left: 17px;
  }
  footer .social-menu {
    margin-top: 0px !important;
  }
  footer .newsletter-section {
    margin-top: 66px !important;
    margin-bottom: 52px;
  }
  footer .newsletter-section .newsletter-label {
    margin-bottom: 40px;
  }
  footer .show-mobile #menu-footer-menu-1 li {
    height: 44px;
  }
  footer .copyright {
    padding-top: 50px !important;
  }
  footer .copyright .menu-legal-menu-container {
    text-align: right;
  }
  footer .copyright .menu-legal-menu-container ul li {
    padding-right: 9px !important;
  }
}
@media screen and (max-width: 360px) {
  footer .inner-container .es_textbox {
    width: 68% !important;
  }
  footer .inner-container .es_button {
    width: 26% !important;
    margin-left: 17px;
  }
}
@media screen and (max-width: 320px) {
  .page-template-news-page .categories ul li {
    margin-right: 30px;
  }

  footer .inner-container {
    padding-bottom: 14px;
  }
  footer .inner-container .es_textbox {
    width: 63% !important;
  }
  footer .inner-container .es_button {
    width: 30% !important;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi), only screen and (min-resolution: 1.5dppx) {
  .logo {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-area {
    height: 100%;
  }
  .hero-area .amm_container {
    height: 100%;
  }
}
@media screen and (min-width: 1900px) {
  .post-type-project_pt .amm_cto h1, .single-project_pt .amm_cto h1 {
    font-size: 85px;
  }

  .amm_cto h1 {
    font-size: 85px;
  }
}
/* IE10+ specific styles go here */
/*html.ie-11{
	overflow: hidden;
	height: 100%;
}*/
.ie-11 {
  /*body{
  	overflow: auto;
  	height: 100%;
  }	*/
}
.ie-11 .amm-cont_1 .wpb_wrapper .wpb_wrapper {
  top: 30% !important;
  height: 0px !important;
}
.ie-11 .overlay-bg {
  transition: 0.5s ease;
  transform: translate3d(0, 0, 0);
}
.ie-11 .amm_container .bg-img {
  background-attachment: scroll;
}
.ie-11 .img-txt-parallax .bg-txt-holder {
  background-attachment: scroll;
  background-size: 100% !important;
  transform: matrix(1, 0, 0, 1, 0, 1);
}
.ie-11 #mc_embed_signup_scroll .subs-section {
  margin-top: -5px;
}
.ie-11 #mce-EMAIL {
  padding-bottom: 5px !important;
}
.ie-11 .subs-section #mc-embedded-subscribe {
  margin-top: 5px;
}

@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  #es_txt_email_pg {
    padding-top: 9px;
    padding-bottom: 4px;
  }
}

/*# sourceMappingURL=ammunition.min.css.map */

/* @media screen and (min-width: 1440px) {
  .news-grid.inner-container .item img {
    height: 280.5px;
    object-fit:contain;
  }
} */

/* AMM GRID */
.amm-image-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  grid-gap: 30px;
  max-width: 1740px;
  margin: 0 auto;
}

.amm-image-grid.amm-image-grid-col-2 .vc_single_image {
  flex-basis: calc(50% - 15px);
}

.amm-image-grid.amm-image-grid-col-3 .vc_single_image {
  flex-basis: calc(33.33% - 20px);
}

@media screen and (max-width: 1756px) {
  .amm-image-grid {
    max-width: 1300px;
    grid-gap: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .amm-image-grid.amm-image-grid-col-2 .vc_single_image {
    flex-basis: calc(50% - 10px);
  }
  
  .amm-image-grid.amm-image-grid-col-3 .vc_single_image {
    flex-basis: calc(33.33% - 15px);
  }
}

@media screen and (max-width: 767px) {
  .amm-image-grid {
    flex-direction: column;
    flex-wrap: nowrap;
    grid-gap: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .amm-image-grid .vc_single_image {
    flex-basis: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .single-project_pt .amm_2_col_img.amm-mobile-stack .vc_col-sm-6 {
    width: auto !important;
    float: none !important;
    padding: 0 !important;
    margin: 20px 0 0;
  }

  .single-project_pt .amm_2_col_img.amm-mobile-stack .vc_col-sm-6 .vc_single_image.device-active,
  .single-project_pt .amm_2_col_img.amm-mobile-stack .vc_col-sm-6 .vc_video_section.brand-video {
    padding: 0 20px;
  }

  .single-project_pt .amm_2_col_img.amm-mobile-stack .vc_col-sm-6 .vc_video_section.brand-video video {
    object-fit: contain;
  }

  .single-project_pt .amm_2_col_img.amm-mobile-stack .vc_col-sm-6:first-child {
    margin-top: 0;
  }
  .mobile-active .tablet-img {
    opacity: 1 !important;
    display: block !important;
  }
  .mobile-active .mobile-img {
    display: none;
  }
}

@media screen and (max-width: 1500px) {
  .amm_container .bg-img {
    background-attachment: fixed;
    background-size: 150%;
  }
}

/* Project Image Caption Styles */
.pt-image-caption {
  max-width: 1300px;
  margin: -40px auto 70px !important;
}
.pt-image-caption h3 {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.3;
  color: #0a0a0a;
  text-transform: none;
  letter-spacing: 0;
  padding: 0 0 15px;
}
.pt-image-caption p {
  font-family: Akkurat, "Arial", sans-serif;
  font-size: 18px;
  font-weight: 300;
  font-style: normal;
  font-stretch: normal;
  line-height: 1.44;
  color: #666666;
}

@media screen and (max-width: 2560px), screen and (min-width: 2561px) {
  .pt-image-caption {
    max-width: 1740px;
  }
}

@media screen and (max-width: 1756px) {
  .pt-image-caption {
    max-width: 1300px;
  }
}

@media screen and (max-width: 1300px) {
  .pt-image-caption {
    padding: 0 30px 0;
  }
}

@media screen and (max-width: 768px) {
  .pt-image-caption {
    padding-left: 45px;
    padding-right: 45px;
    margin-top: 0 !important;
  }
  .pt-image-caption h3 {
    font-family: Akkurat, "Arial", sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.44;
    color: #0a0a0a;
    text-transform: none;
    padding: 0;
  }
}

@media screen and (max-width: 430px) {
  .pt-image-caption {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 60px;
  }
}

/* 2 column image caption */
.vc_column-inner .pt-image-caption {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  margin: 30px 0 40px !important;
}

@media screen and (max-width: 768px) {
  .vc_column-inner .pt-image-caption {
    padding: 0 20px;
    margin-top: 20px !important;
  }
}