@charset "UTF-8";
/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
  animation-duration: 1s;
  animation-fill-mode: both; }

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

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

.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s; }

.animated.flipOutX,
.animated.flipOutY {
  animation-duration: .75s; }

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

.bounce {
  animation-name: bounce;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom; }

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

.flash {
  animation-name: flash; }

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

@keyframes pulse {
  0% {
    transform: scale3d(1, 1, 1); }
  50% {
    transform: scale3d(1.05, 1.05, 1.05); }
  100% {
    transform: scale3d(1, 1, 1); } }

.pulse {
  animation-name: pulse; }

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

.rubberBand {
  animation-name: rubberBand; }

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

.shake {
  animation-name: shake; }

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

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

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

.tada {
  animation-name: tada; }

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

@keyframes wobble {
  0% {
    transform: none; }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  100% {
    transform: none; } }

.wobble {
  animation-name: wobble; }

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

.bounceIn {
  animation-name: bounceIn; }

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

.bounceInDown {
  animation-name: bounceInDown; }

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

.bounceInLeft {
  animation-name: bounceInLeft; }

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

.bounceInRight {
  animation-name: bounceInRight; }

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

.bounceInUp {
  animation-name: bounceInUp; }

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

.bounceOut {
  animation-name: bounceOut; }

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

.bounceOutDown {
  animation-name: bounceOutDown; }

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

.bounceOutLeft {
  animation-name: bounceOutLeft; }

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

.bounceOutRight {
  animation-name: bounceOutRight; }

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

.bounceOutUp {
  animation-name: bounceOutUp; }

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

.fadeIn {
  animation-name: fadeIn; }

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

.fadeInDown {
  animation-name: fadeInDown; }

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

.fadeInDownBig {
  animation-name: fadeInDownBig; }

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

.fadeInLeft {
  animation-name: fadeInLeft; }

@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0); }
  100% {
    opacity: 1;
    transform: none; } }

.fadeInLeftBig {
  animation-name: fadeInLeftBig; }

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

.fadeInRight {
  animation-name: fadeInRight; }

@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translate3d(2000px, 0, 0); }
  100% {
    opacity: 1;
    transform: none; } }

.fadeInRightBig {
  animation-name: fadeInRightBig; }

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

.fadeInUp {
  animation-name: fadeInUp; }

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

.fadeInUpBig {
  animation-name: fadeInUpBig; }

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

.fadeOut {
  animation-name: fadeOut; }

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

.fadeOutDown {
  animation-name: fadeOutDown; }

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

.fadeOutDownBig {
  animation-name: fadeOutDownBig; }

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

.fadeOutLeft {
  animation-name: fadeOutLeft; }

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

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig; }

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

.fadeOutRight {
  animation-name: fadeOutRight; }

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

.fadeOutRightBig {
  animation-name: fadeOutRightBig; }

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

.fadeOutUp {
  animation-name: fadeOutUp; }

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

.fadeOutUpBig {
  animation-name: fadeOutUpBig; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.rotateIn {
  animation-name: rotateIn; }

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

.rotateInDownLeft {
  animation-name: rotateInDownLeft; }

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

.rotateInDownRight {
  animation-name: rotateInDownRight; }

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

.rotateInUpLeft {
  animation-name: rotateInUpLeft; }

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

.rotateInUpRight {
  animation-name: rotateInUpRight; }

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

.rotateOut {
  animation-name: rotateOut; }

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

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft; }

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

.rotateOutDownRight {
  animation-name: rotateOutDownRight; }

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

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft; }

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

.rotateOutUpRight {
  animation-name: rotateOutUpRight; }

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

.hinge {
  animation-name: hinge; }

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

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

.rollIn {
  animation-name: rollIn; }

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

@keyframes rollOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

.rollOut {
  animation-name: rollOut; }

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

.zoomIn {
  animation-name: zoomIn; }

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

.zoomInDown {
  animation-name: zoomInDown; }

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

.zoomInLeft {
  animation-name: zoomInLeft; }

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

.zoomInRight {
  animation-name: zoomInRight; }

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

.zoomInUp {
  animation-name: zoomInUp; }

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

.zoomOut {
  animation-name: zoomOut; }

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

.zoomOutDown {
  animation-name: zoomOutDown; }

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

.zoomOutLeft {
  animation-name: zoomOutLeft; }

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

.zoomOutRight {
  animation-name: zoomOutRight; }

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

.zoomOutUp {
  animation-name: zoomOutUp; }

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

.slideInDown {
  animation-name: slideInDown; }

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

.slideInLeft {
  animation-name: slideInLeft; }

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

.slideInRight {
  animation-name: slideInRight; }

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

.slideInUp {
  animation-name: slideInUp; }

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

.slideOutDown {
  animation-name: slideOutDown; }

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

.slideOutLeft {
  animation-name: slideOutLeft; }

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

.slideOutRight {
  animation-name: slideOutRight; }

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

.slideOutUp {
  animation-name: slideOutUp; }

@font-face {
  font-family: "icons";
  src: url("../fonts/icon-fonts/icons.eot?470671117497f0d2e2ee609612781979");
  src: url("../fonts/icon-fonts/icons.eot?#iefix") format("embedded-opentype"), url("../fonts/icon-fonts/icons.woff?470671117497f0d2e2ee609612781979") format("woff"), url("../fonts/icon-fonts/icons.ttf?470671117497f0d2e2ee609612781979") format("truetype"), url("../fonts/icon-fonts/icons.svg?470671117497f0d2e2ee609612781979#icons") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: "icons";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  speak: none;
  text-decoration: inherit;
  text-transform: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-grid-icon:before {
  content: "\f101"; }

.icon-left-arrow:before {
  content: "\f102"; }

.icon-right-arrow:before {
  content: "\f103"; }

.clearfix:after, .clearfix:before,
.clearfixiest:after,
.clearfixiest:before {
  display: block;
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  content: '\0020'; }

.clearfix:after,
.clearfixiest:after {
  clear: both; }

.clearfix,
.clearfixiest {
  zoom: 1; }

.clear {
  display: block;
  visibility: hidden;
  clear: both;
  overflow: hidden;
  width: 0;
  height: 0; }

@font-face {
  font-family: BEBAS;
  src: url("../fonts/BEBAS.eot");
  src: url("../fonts/BEBAS.eot?#iefix"), url("../fonts/BEBAS.woff"), url("../fonts/BEBAS.ttf"), url("../fonts/BEBAS.svg#BEBAS"); }

.BEBAS, h1, .hero .tagline {
  font-family: "BEBAS", Arial, sans-serif; }

@font-face {
  font-family: museoslab_300;
  src: url("../fonts/museoslab_300.eot");
  src: url("../fonts/museoslab_300.eot?#iefix"), url("../fonts/museoslab_300.woff"), url("../fonts/museoslab_300.ttf"), url("../fonts/museoslab_300.svg#museoslab_300"); }

.museoslab_300, h2, .section-split header .head, .services header, .hiring header, .blog-posts .post-title, .blog-posts .viewing-label, .footer_wrap header, .service-item__title, .services-filter .controls__header, .main form .title, .page-banner h1, .lrg-ad .ad-content header, .sm-ad .main-text, .team-member-grid .team-member .name, .page-rotator .rotator-item .rotator-text-wrap .rotator-text .rotator-title, .work-projects-grid .work-project .title, .related-projects header, .job-posting-list header, .solid-header h1, .portfolio__bold-image header, .portfolio-project .details .title {
  font-family: "museoslab_300", Georgia, serif; }

@font-face {
  font-family: titillium-bold;
  src: url("../fonts/titillium-bold.eot");
  src: url("../fonts/titillium-bold.eot?#iefix"), url("../fonts/titillium-bold.woff"), url("../fonts/titillium-bold.ttf"), url("../fonts/titillium-bold.svg#titillium-bold"); }

.titillium-bold {
  font-family: "titillium-bold", Arial, sans-serif; }

@font-face {
  font-family: titillium-bolditalic;
  src: url("../fonts/titillium-bolditalic.eot");
  src: url("../fonts/titillium-bolditalic.eot?#iefix"), url("../fonts/titillium-bolditalic.woff"), url("../fonts/titillium-bolditalic.ttf"), url("../fonts/titillium-bolditalic.svg#titillium-bolditalic"); }

.titillium-bolditalic {
  font-family: "titillium-bolditalic", Arial, sans-serif; }

@font-face {
  font-family: titillium-light;
  src: url("../fonts/titillium-light.eot");
  src: url("../fonts/titillium-light.eot?#iefix"), url("../fonts/titillium-light.woff"), url("../fonts/titillium-light.ttf"), url("../fonts/titillium-light.svg#titillium-light"); }

.titillium-light, body, .homepage h1, .btn.main-btn, .btn.blue-btn, .btn.sm, .work_subpage .page-banner header, .mobile-nav a {
  font-family: "titillium-light", Arial, sans-serif; }

@font-face {
  font-family: titillium-lightitalic;
  src: url("../fonts/titillium-lightitalic.eot");
  src: url("../fonts/titillium-lightitalic.eot?#iefix"), url("../fonts/titillium-lightitalic.woff"), url("../fonts/titillium-lightitalic.ttf"), url("../fonts/titillium-lightitalic.svg#titillium-lightitalic"); }

.titillium-lightitalic, .body em, .module-pager .previous-wrap .name, .module-pager .next-wrap .name {
  font-family: "titillium-lightitalic", Arial, sans-serif; }

@font-face {
  font-family: titillium-regular;
  src: url("../fonts/titillium-regular.eot");
  src: url("../fonts/titillium-regular.eot?#iefix"), url("../fonts/titillium-regular.woff"), url("../fonts/titillium-regular.ttf"), url("../fonts/titillium-regular.svg#titillium-regular"); }

.titillium-regular, .hiring a, .hiring .left-content ul li a, .sidebar-wrap a, .sidebar-wrap span, .mobile-nav ul ul ul li a {
  font-family: "titillium-regular", Arial, sans-serif; }

@font-face {
  font-family: titillium-regularitalic;
  src: url("../fonts/titillium-regularitalic.eot");
  src: url("../fonts/titillium-regularitalic.eot?#iefix"), url("../fonts/titillium-regularitalic.woff"), url("../fonts/titillium-regularitalic.ttf"), url("../fonts/titillium-regularitalic.svg#titillium-regularitalic"); }

.titillium-regularitalic {
  font-family: "titillium-regularitalic", Arial, sans-serif; }

@font-face {
  font-family: titillium-semibold;
  src: url("../fonts/titillium-semibold.eot");
  src: url("../fonts/titillium-semibold.eot?#iefix"), url("../fonts/titillium-semibold.woff"), url("../fonts/titillium-semibold.ttf"), url("../fonts/titillium-semibold.svg#titillium-semibold"); }

.titillium-semibold, .body strong, .body b, .share-button {
  font-family: "titillium-semibold", Arial, sans-serif; }

@font-face {
  font-family: titillium-semibolditalic;
  src: url("../fonts/titillium-semibolditalic.eot");
  src: url("../fonts/titillium-semibolditalic.eot?#iefix"), url("../fonts/titillium-semibolditalic.woff"), url("../fonts/titillium-semibolditalic.ttf"), url("../fonts/titillium-semibolditalic.svg#titillium-semibolditalic"); }

.titillium-semibolditalic {
  font-family: "titillium-semibolditalic", Arial, sans-serif; }

html {
  height: 100%; }
  html img {
    max-width: 100%; }

body {
  width: auto !important;
  font-size: 100%;
  margin: 0;
  padding: 0;
  color: #000;
  height: auto; }

a[href^=tel] {
  color: inherit;
  text-decoration: none; }

a {
  outline: none;
  text-decoration: none; }
  a img {
    border: 0; }

h1, h2, h3, h4, h5, h6, p, ul, ol {
  margin: 0 0 12px 0;
  font-weight: normal; }

#cms_header_navbar,
#cms_header_subbar {
  overflow: hidden; }

#wrapper {
  margin: 0 auto;
  min-height: 450px; }

.visuallyhidden {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  margin: -1px;
  padding: 0;
  width: 1px;
  height: 1px;
  border: 0; }

#content {
  min-height: 450px; }

#main .photoset img {
  float: left;
  margin: 0 15px 15px 0; }

#main .rf-paragraph {
  margin: 0 0 18px 0;
  /* IMPORTANT: Do not change .no_border class name or remove the definition.
              This class is added to paragraph images by the CMS when a user
              chooses to disable the border on the image.
        */ }
  #main .rf-paragraph h2 {
    margin-bottom: 6px; }
  #main .rf-paragraph .image img {
    max-width: 100%;
    border: none; }
  #main .rf-paragraph .no_border img {
    border: none; }
  #main .rf-paragraph .video iframe,
  #main .rf-paragraph .video embed,
  #main .rf-paragraph .widget iframe,
  #main .rf-paragraph .widget embed {
    width: 100%; }
  #main .rf-paragraph .right {
    float: right;
    margin: 0 0 6px 12px; }
  #main .rf-paragraph .left {
    float: left;
    margin: 0 12px 6px 0; }

.paragraph_photoset .photo_gallery {
  margin: 0 auto;
  padding-top: 10px;
  width: 90%; }
  .paragraph_photoset .photo_gallery .photo_wrap {
    overflow: hidden;
    width: 100% !important;
    height: 458px;
    text-align: center; }
    .paragraph_photoset .photo_gallery .photo_wrap img {
      width: 100%; }
  .paragraph_photoset .photo_gallery .gallery_thumbs {
    margin: 0 auto;
    width: 100%; }
    .paragraph_photoset .photo_gallery .gallery_thumbs a {
      display: block;
      float: left;
      margin: 5px;
      padding: 0; }
      .paragraph_photoset .photo_gallery .gallery_thumbs a.activeSlide img {
        width: 56px; }
    .paragraph_photoset .photo_gallery .gallery_thumbs img {
      width: 60px;
      float: left;
      padding: 0; }

.paragraph_photoset .highlighted_photo {
  margin-bottom: 15px;
  width: 100%;
  height: 450px; }

#sidebar .sidebar_section {
  margin-bottom: 18px; }
  #sidebar .sidebar_section .head {
    margin-bottom: 9px; }

#rf-site_colors .color .box {
  width: 100%;
  height: 70px; }

#rf-site_textures .texture .box {
  width: 100%;
  height: 110px; }

#rf-site_textures .texture .box1 {
  background: url(http://lorempixel.com/200/200/abstract/1); }

#rf-site_textures .texture .box2 {
  background: url(http://lorempixel.com/200/200/abstract/2); }

#rf-site_textures .texture .box3 {
  background: url(http://lorempixel.com/200/200/abstract/3); }

.rf-paragraph .image.center img {
  width: 100%; }

#TB_window {
  margin-top: -320px !important; }

body {
  font-size: 100%; }

.container {
  width: 1228px;
  position: relative;
  z-index: 0;
  margin: 0 auto;
  padding: 0; }
  .container .column, .container .columns {
    display: inline;
    float: left;
    margin: 0 20px 0 0; }
    .container .column.last, .container .columns.last {
      margin-right: 0; }
  .container .col1.columns, .container .col1.column {
    width: 32px; }
  .container .col2.columns {
    width: 84px; }
  .container .col3.columns {
    width: 136px; }
  .container .col4.columns {
    width: 188px; }
  .container .col5.columns {
    width: 240px; }
  .container .col6.columns {
    width: 292px; }
  .container .col7.columns {
    width: 344px; }
  .container .col8.columns {
    width: 396px; }
  .container .col9.columns {
    width: 448px; }
  .container .col10.columns {
    width: 500px; }
  .container .col11.columns {
    width: 552px; }
  .container .col12.columns {
    width: 604px; }
  .container .col13.columns {
    width: 656px; }
  .container .col14.columns {
    width: 708px; }
  .container .col15.columns {
    width: 760px; }
  .container .col16.columns {
    width: 812px; }
  .container .col17.columns {
    width: 864px; }
  .container .col18.columns {
    width: 916px; }
  .container .col19.columns {
    width: 968px; }
  .container .col20.columns {
    width: 1020px; }
  .container .col21.columns {
    width: 1072px; }
  .container .col22.columns {
    width: 1124px; }
  .container .col23.columns {
    width: 1176px; }
  .container .col24.columns {
    width: 1228px; }

.row {
  margin-bottom: 20px; }
  .row:after, .row:before {
    display: block;
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    content: '\0020'; }
  .row:after {
    clear: both; }
  .row {
    zoom: 1; }
  .row.reverse > .column, .row.reverse > .columns {
    float: right; }
    .row.reverse > .column.first, .row.reverse > .columns.first {
      margin-right: 0; }
    .row.reverse > .column.last, .row.reverse > .columns.last {
      margin: 0 20px 0 0; }

.append-1 {
  padding-right: 52px; }

.append-2 {
  padding-right: 104px; }

.append-3 {
  padding-right: 156px; }

.append-4 {
  padding-right: 208px; }

.append-5 {
  padding-right: 260px; }

.append-6 {
  padding-right: 312px; }

.append-7 {
  padding-right: 364px; }

.append-8 {
  padding-right: 416px; }

.append-9 {
  padding-right: 468px; }

.append-10 {
  padding-right: 520px; }

.append-11 {
  padding-right: 572px; }

.append-12 {
  padding-right: 624px; }

.append-13 {
  padding-right: 676px; }

.append-14 {
  padding-right: 728px; }

.append-15 {
  padding-right: 780px; }

.append-16 {
  padding-right: 832px; }

.append-17 {
  padding-right: 884px; }

.append-18 {
  padding-right: 936px; }

.append-19 {
  padding-right: 988px; }

.append-20 {
  padding-right: 1040px; }

.append-21 {
  padding-right: 1092px; }

.append-22 {
  padding-right: 1144px; }

.append-23 {
  padding-right: 1196px; }

.prepend-1 {
  padding-left: 52px; }

.prepend-2 {
  padding-left: 104px; }

.prepend-3 {
  padding-left: 156px; }

.prepend-4 {
  padding-left: 208px; }

.prepend-5 {
  padding-left: 260px; }

.prepend-6 {
  padding-left: 312px; }

.prepend-7 {
  padding-left: 364px; }

.prepend-8 {
  padding-left: 416px; }

.prepend-9 {
  padding-left: 468px; }

.prepend-10 {
  padding-left: 520px; }

.prepend-11 {
  padding-left: 572px; }

.prepend-12 {
  padding-left: 624px; }

.prepend-13 {
  padding-left: 676px; }

.prepend-14 {
  padding-left: 728px; }

.prepend-15 {
  padding-left: 780px; }

.prepend-16 {
  padding-left: 832px; }

.prepend-17 {
  padding-left: 884px; }

.prepend-18 {
  padding-left: 936px; }

.prepend-19 {
  padding-left: 988px; }

.prepend-20 {
  padding-left: 1040px; }

.prepend-21 {
  padding-left: 1092px; }

.prepend-22 {
  padding-left: 1144px; }

.prepend-23 {
  padding-left: 1196px; }

.pull-1 {
  margin-left: -52px; }

.pull-2 {
  margin-left: -104px; }

.pull-3 {
  margin-left: -156px; }

.pull-4 {
  margin-left: -208px; }

.pull-5 {
  margin-left: -260px; }

.pull-6 {
  margin-left: -312px; }

.pull-7 {
  margin-left: -364px; }

.pull-8 {
  margin-left: -416px; }

.pull-9 {
  margin-left: -468px; }

.pull-10 {
  margin-left: -520px; }

.pull-11 {
  margin-left: -572px; }

.pull-12 {
  margin-left: -624px; }

.pull-13 {
  margin-left: -676px; }

.pull-14 {
  margin-left: -728px; }

.pull-15 {
  margin-left: -780px; }

.pull-16 {
  margin-left: -832px; }

.pull-17 {
  margin-left: -884px; }

.pull-18 {
  margin-left: -936px; }

.pull-19 {
  margin-left: -988px; }

.pull-20 {
  margin-left: -1040px; }

.pull-21 {
  margin-left: -1092px; }

.pull-22 {
  margin-left: -1144px; }

.pull-23 {
  margin-left: -1196px; }

.pull-24 {
  margin-left: -1248px; }

.mobile-nav {
  display: none; }

@media only screen and (min-width: 885px) and (max-width: 1261px) {
  .container {
    width: 856px; }
    .container .column, .container .columns {
      margin: 0 8px 0 0; }
      .container .column.col1, .container .column.col1 .container .column, .container .columns.col1, .container .columns.col1 .container .column, .container .column.col1 .container .columns, .container .columns.col1 .container .columns {
        width: 28px; }
      .container .column.col2, .container .columns.col2 {
        width: 64px; }
      .container .column.col3, .container .columns.col3 {
        width: 100px; }
      .container .column.col4, .container .columns.col4 {
        width: 136px; }
      .container .column.col5, .container .columns.col5 {
        width: 172px; }
      .container .column.col6, .container .columns.col6 {
        width: 208px; }
      .container .column.col7, .container .columns.col7 {
        width: 244px; }
      .container .column.col8, .container .columns.col8 {
        width: 280px; }
      .container .column.col9, .container .columns.col9 {
        width: 316px; }
      .container .column.col10, .container .columns.col10 {
        width: 352px; }
      .container .column.col11, .container .columns.col11 {
        width: 388px; }
      .container .column.col12, .container .columns.col12 {
        width: 424px; }
      .container .column.col13, .container .columns.col13 {
        width: 460px; }
      .container .column.col14, .container .columns.col14 {
        width: 496px; }
      .container .column.col15, .container .columns.col15 {
        width: 532px; }
      .container .column.col16, .container .columns.col16 {
        width: 568px; }
      .container .column.col17, .container .columns.col17 {
        width: 604px; }
      .container .column.col18, .container .columns.col18 {
        width: 640px; }
      .container .column.col19, .container .columns.col19 {
        width: 676px; }
      .container .column.col20, .container .columns.col20 {
        width: 712px; }
      .container .column.col21, .container .columns.col21 {
        width: 748px; }
      .container .column.col22, .container .columns.col22 {
        width: 784px; }
      .container .column.col23, .container .columns.col23 {
        width: 820px; }
      .container .column.col24, .container .columns.col24 {
        width: 856px; }
  .span-1 {
    width: 28px; }
  .span-2 {
    width: 64px; }
  .span-3 {
    width: 100px; }
  .span-4 {
    width: 136px; }
  .span-5 {
    width: 172px; }
  .span-6 {
    width: 208px; }
  .span-7 {
    width: 244px; }
  .span-8 {
    width: 280px; }
  .span-9 {
    width: 316px; }
  .span-10 {
    width: 352px; }
  .span-11 {
    width: 388px; }
  .span-12 {
    width: 424px; }
  .span-13 {
    width: 460px; }
  .span-14 {
    width: 496px; }
  .span-15 {
    width: 532px; }
  .span-16 {
    width: 568px; }
  .span-17 {
    width: 604px; }
  .span-18 {
    width: 640px; }
  .span-19 {
    width: 676px; }
  .span-20 {
    width: 712px; }
  .span-21 {
    width: 748px; }
  .span-22 {
    width: 784px; }
  .span-23 {
    width: 820px; }
  .span-24 {
    width: 856px; }
  .append-1 {
    padding-right: 36px; }
  .append-2 {
    padding-right: 72px; }
  .append-3 {
    padding-right: 108px; }
  .append-4 {
    padding-right: 144px; }
  .append-5 {
    padding-right: 180px; }
  .append-6 {
    padding-right: 216px; }
  .append-7 {
    padding-right: 252px; }
  .append-8 {
    padding-right: 288px; }
  .append-9 {
    padding-right: 324px; }
  .append-10 {
    padding-right: 360px; }
  .append-11 {
    padding-right: 396px; }
  .append-12 {
    padding-right: 432px; }
  .append-13 {
    padding-right: 468px; }
  .append-14 {
    padding-right: 504px; }
  .append-15 {
    padding-right: 540px; }
  .append-16 {
    padding-right: 576px; }
  .append-17 {
    padding-right: 612px; }
  .append-18 {
    padding-right: 648px; }
  .append-19 {
    padding-right: 684px; }
  .append-20 {
    padding-right: 720px; }
  .append-21 {
    padding-right: 756px; }
  .append-22 {
    padding-right: 792px; }
  .append-23 {
    padding-right: 828px; }
  .prepend-1 {
    padding-left: 36px; }
  .prepend-2 {
    padding-left: 72px; }
  .prepend-3 {
    padding-left: 108px; }
  .prepend-4 {
    padding-left: 144px; }
  .prepend-5 {
    padding-left: 180px; }
  .prepend-6 {
    padding-left: 216px; }
  .prepend-7 {
    padding-left: 252px; }
  .prepend-8 {
    padding-left: 288px; }
  .prepend-9 {
    padding-left: 324px; }
  .prepend-10 {
    padding-left: 360px; }
  .prepend-11 {
    padding-left: 396px; }
  .prepend-12 {
    padding-left: 432px; }
  .prepend-13 {
    padding-left: 468px; }
  .prepend-14 {
    padding-left: 504px; }
  .prepend-15 {
    padding-left: 540px; }
  .prepend-16 {
    padding-left: 576px; }
  .prepend-17 {
    padding-left: 612px; }
  .prepend-18 {
    padding-left: 648px; }
  .prepend-19 {
    padding-left: 684px; }
  .prepend-20 {
    padding-left: 720px; }
  .prepend-21 {
    padding-left: 756px; }
  .prepend-22 {
    padding-left: 792px; }
  .prepend-23 {
    padding-left: 828px; }
  .pull-1 {
    margin-left: -36px; }
  .pull-2 {
    margin-left: -72px; }
  .pull-3 {
    margin-left: -108px; }
  .pull-4 {
    margin-left: -144px; }
  .pull-5 {
    margin-left: -180px; }
  .pull-6 {
    margin-left: -216px; }
  .pull-7 {
    margin-left: -252px; }
  .pull-8 {
    margin-left: -288px; }
  .pull-9 {
    margin-left: -324px; }
  .pull-10 {
    margin-left: -360px; }
  .pull-11 {
    margin-left: -396px; }
  .pull-12 {
    margin-left: -432px; }
  .pull-13 {
    margin-left: -468px; }
  .pull-14 {
    margin-left: -504px; }
  .pull-15 {
    margin-left: -540px; }
  .pull-16 {
    margin-left: -576px; }
  .pull-17 {
    margin-left: -612px; }
  .pull-18 {
    margin-left: -648px; }
  .pull-19 {
    margin-left: -684px; }
  .pull-20 {
    margin-left: -720px; }
  .pull-21 {
    margin-left: -756px; }
  .pull-22 {
    margin-left: -792px; }
  .pull-23 {
    margin-left: -828px; }
  .pull-24 {
    margin-left: -864px; }
  .row.reverse > .column.last {
    margin: 0 8px 0 0; } }

@media only screen and (max-width: 885px) {
  .container {
    width: 90%; }
    .container.columns, .container.column, .container .columns, .container .column {
      margin: 0 0 20px 0;
      padding: 0; }
    .container [class*='col'].column, .container [class*='col'].columns {
      width: 100%; }
  .row.reverse > .column.last .row.reverse > columns.last {
    margin: 0 10px 0 0; }
  .mobile-nav {
    display: block; }
  .main-nav {
    display: none; } }

@media only screen and (min-width: 480px) and (max-width: 885px) {
  .container {
    width: 90%; }
    .container .column, .container .columns {
      margin: 0 0 20px 0; }
    .container [class*='col'].column, .container [class*='col'].columns {
      width: 100%; }
  .mobile-nav {
    display: block; }
  .main-nav {
    display: none; }
  .scale-width-grid {
    max-width: 100%;
    height: auto; }
  .scale-width-grid-full {
    width: 100%;
    height: auto; } }

.container:after, .container:before {
  display: block;
  visibility: hidden;
  overflow: hidden;
  width: 0;
  height: 0;
  content: '\0020'; }

.container:after {
  clear: both; }

.container {
  zoom: 1; }

#cms_header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 300; }

body {
  color: #000; }

h1 {
  font-size: 1.75em;
  line-height: 1.2857142857em;
  margin-bottom: 0.7142857143em; }

h2 {
  font-size: 1.75em;
  line-height: 1.0714285714em;
  margin-bottom: 5px; }

a {
  color: #e4791b;
  transition: color 300ms; }
  a:hover {
    color: #0079c2; }

#wrapper_wrap {
  padding-top: 80px; }

.logged_in #wrapper_wrap {
  padding-top: 149px; }

.header_wrap {
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 301;
  transition: height 300ms;
  transform: translate3d(0, 0, 0); }
  .header_wrap.logged_in {
    top: 75px; }
  @media only screen and (max-width: 885px) {
    .header_wrap {
      box-shadow: 0px 1px 20px rgba(29, 29, 29, 0.7); } }
  .header_wrap.mini {
    box-shadow: 0 0 7px rgba(34, 30, 31, 0.5); }
    .header_wrap.mini .header .nav li a {
      padding: 10px 10px; }
    .header_wrap.mini .header #logo {
      margin-top: 10px; }
      .header_wrap.mini .header #logo img.rf {
        height: 0;
        opacity: 0; }
  .header_wrap .header {
    position: relative;
    z-index: 10; }
    @media only screen and (max-width: 885px) {
      .header_wrap .header {
        z-index: auto; } }
    .header_wrap .header #logo {
      display: inline-block;
      float: left;
      margin-top: 25px;
      transition: margin 300ms; }
      @media only screen and (max-width: 885px) {
        .header_wrap .header #logo {
          margin: 10px 0; } }
      .header_wrap .header #logo img {
        display: block; }
        .header_wrap .header #logo img.rf {
          transition: opacity 300ms; }
    .header_wrap .header .nav {
      float: right; }
      @media only screen and (max-width: 885px) {
        .header_wrap .header .nav {
          display: none; } }
      .header_wrap .header .nav li {
        float: left;
        list-style: none; }
        .header_wrap .header .nav li a {
          color: #1d1d1d;
          display: block;
          text-transform: uppercase;
          padding: 35px 10px;
          font-size: 20px;
          transition: padding 300ms; }
          .header_wrap .header .nav li a.active, .header_wrap .header .nav li a:hover {
            color: #0079c2; }
        .header_wrap .header .nav li:last-child a {
          padding-right: 0; }

.hero {
  padding: 160px 0;
  position: relative;
  background: #000;
  color: #fff;
  text-align: center; }
  @media only screen and (max-width: 885px) {
    .hero {
      padding: 40px 0; } }
  .hero .vide_wrapper {
    background: #000;
    background-size: cover;
    z-index: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: .8; }
    .hero .vide_wrapper.page_loaded {
      transition: 300ms; }
    .hero .vide_wrapper.page_loading {
      opacity: 0; }
  .hero .tagline {
    text-align: center;
    font-size: 90px;
    margin: 0 auto 20px;
    display: inline-block; }
    @media only screen and (max-width: 885px) {
      .hero .tagline {
        font-size: 50px;
        margin-bottom: 20px; } }
  .hero h1 {
    width: 60%;
    margin: 0 auto;
    text-align: center;
    font-size: 26px;
    line-height: 1.2;
    display: block;
    margin-bottom: 20px; }
    @media only screen and (max-width: 885px) {
      .hero h1 {
        width: 100%; } }

.section-split {
  padding: 80px 0; }
  .section-split header {
    text-transform: uppercase;
    border-bottom: 2px solid #1d1d1d; }
    .section-split header:after, .section-split header:before {
      display: block;
      visibility: hidden;
      overflow: hidden;
      width: 0;
      height: 0;
      content: '\0020'; }
    .section-split header:after {
      clear: both; }
    .section-split header {
      zoom: 1; }
    .section-split header .head {
      font-size: 30px;
      float: left; }
    .section-split header a {
      float: right;
      margin-top: 10px; }
      @media only screen and (max-width: 885px) {
        .section-split header a {
          display: none; } }

.recent .work-wrap, .section-split .work-wrap {
  padding: 60px 0 0;
  background: url(../images/rocketdivider.svg) no-repeat center 40px; }
  .recent .work-wrap:after, .recent .work-wrap:before, .section-split .work-wrap:after, .section-split .work-wrap:before {
    display: block;
    visibility: hidden;
    overflow: hidden;
    width: 0;
    height: 0;
    content: '\0020'; }
  .recent .work-wrap:after, .section-split .work-wrap:after {
    clear: both; }
  .recent .work-wrap, .section-split .work-wrap {
    zoom: 1; }
  .recent .work-wrap .horz-divider, .section-split .work-wrap .horz-divider {
    display: none; }
  @media only screen and (max-width: 885px) {
    .recent .work-wrap, .section-split .work-wrap {
      background: none;
      padding-bottom: 0;
      text-align: center; }
      .recent .work-wrap .horz-divider, .section-split .work-wrap .horz-divider {
        display: inline-block;
        padding-bottom: 40px; } }
  .recent .work-wrap .work-item, .section-split .work-wrap .work-item {
    float: left;
    width: 50%;
    padding-right: 50px;
    box-sizing: border-box;
    text-align: center; }
    .recent .work-wrap .work-item:hover .work-inner .overlay, .section-split .work-wrap .work-item:hover .work-inner .overlay {
      display: block; }
    @media only screen and (max-width: 885px) {
      .recent .work-wrap .work-item, .section-split .work-wrap .work-item {
        width: 100%;
        float: none;
        padding: 0; } }
    .recent .work-wrap .work-item .mobile-details, .section-split .work-wrap .work-item .mobile-details {
      display: none; }
      @media only screen and (max-width: 885px) {
        .recent .work-wrap .work-item .mobile-details, .section-split .work-wrap .work-item .mobile-details {
          display: block;
          margin-bottom: 20px; }
          .recent .work-wrap .work-item .mobile-details .btn, .section-split .work-wrap .work-item .mobile-details .btn {
            margin-top: 10px; } }
    .recent .work-wrap .work-item:hover img,
    .recent .work-wrap .work-item:hover .caption, .section-split .work-wrap .work-item:hover img,
    .section-split .work-wrap .work-item:hover .caption {
      opacity: .1;
      cursor: pointer;
      filter: alpha(opacity=10);
      /* IE 7 and Earlier */
      /* Next 2 lines IE8 */
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
      filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=10); }
      @media only screen and (max-width: 885px) {
        .recent .work-wrap .work-item:hover img,
        .recent .work-wrap .work-item:hover .caption, .section-split .work-wrap .work-item:hover img,
        .section-split .work-wrap .work-item:hover .caption {
          opacity: 1; } }
    .recent .work-wrap .work-item .work-inner, .section-split .work-wrap .work-item .work-inner {
      position: relative;
      min-height: 380px; }
      .recent .work-wrap .work-item .work-inner:hover .overlay, .section-split .work-wrap .work-item .work-inner:hover .overlay {
        display: block; }
        @media only screen and (max-width: 885px) {
          .recent .work-wrap .work-item .work-inner:hover .overlay, .section-split .work-wrap .work-item .work-inner:hover .overlay {
            display: none; } }
    .recent .work-wrap .work-item.second, .section-split .work-wrap .work-item.second {
      padding-left: 50px;
      padding-right: 0; }
      @media only screen and (max-width: 885px) {
        .recent .work-wrap .work-item.second, .section-split .work-wrap .work-item.second {
          padding-left: 0; } }
    .recent .work-wrap .work-item img, .section-split .work-wrap .work-item img {
      max-width: 100%;
      transition: opacity 600ms; }
    .recent .work-wrap .work-item .caption, .section-split .work-wrap .work-item .caption {
      text-align: center;
      font-size: 24px; }
    .recent .work-wrap .work-item .overlay, .section-split .work-wrap .work-item .overlay {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      transition: opacity 600ms;
      padding: 60px 0;
      text-align: center;
      opacity: 0;
      display: none; }
      .recent .work-wrap .work-item .overlay:hover, .section-split .work-wrap .work-item .overlay:hover {
        opacity: 1; }
      .recent .work-wrap .work-item .overlay header, .section-split .work-wrap .work-item .overlay header {
        text-transform: uppercase;
        font-size: 28px;
        border: none;
        text-align: center; }
      .recent .work-wrap .work-item .overlay .services-wrap, .section-split .work-wrap .work-item .overlay .services-wrap {
        padding: 15px 0; }
        .recent .work-wrap .work-item .overlay .services-wrap:after, .recent .work-wrap .work-item .overlay .services-wrap:before, .section-split .work-wrap .work-item .overlay .services-wrap:after, .section-split .work-wrap .work-item .overlay .services-wrap:before {
          display: block;
          visibility: hidden;
          overflow: hidden;
          width: 0;
          height: 0;
          content: '\0020'; }
        .recent .work-wrap .work-item .overlay .services-wrap:after, .section-split .work-wrap .work-item .overlay .services-wrap:after {
          clear: both; }
        .recent .work-wrap .work-item .overlay .services-wrap, .section-split .work-wrap .work-item .overlay .services-wrap {
          zoom: 1; }
      .recent .work-wrap .work-item .overlay .service-item, .section-split .work-wrap .work-item .overlay .service-item {
        box-sizing: border-box;
        display: inline-block;
        vertical-align: top;
        width: 21.25%;
        font-size: 13px; }
        .recent .work-wrap .work-item .overlay .service-item:nth-child(n), .section-split .work-wrap .work-item .overlay .service-item:nth-child(n) {
          margin-bottom: 5%;
          margin-right: 5%; }
        .recent .work-wrap .work-item .overlay .service-item:nth-child(4n), .section-split .work-wrap .work-item .overlay .service-item:nth-child(4n) {
          margin-right: 0;
          margin-bottom: 0; }
        .recent .work-wrap .work-item .overlay .service-item.last, .section-split .work-wrap .work-item .overlay .service-item.last {
          margin-right: 0; }
        .recent .work-wrap .work-item .overlay .service-item .title, .section-split .work-wrap .work-item .overlay .service-item .title {
          color: #1d1d1d; }
      .recent .work-wrap .work-item .overlay .service-item, .section-split .work-wrap .work-item .overlay .service-item {
        width: 18.4%; }
        .recent .work-wrap .work-item .overlay .service-item:nth-child(n), .section-split .work-wrap .work-item .overlay .service-item:nth-child(n) {
          margin-bottom: 2%;
          margin-right: 2%; }
        .recent .work-wrap .work-item .overlay .service-item:nth-child(5n), .section-split .work-wrap .work-item .overlay .service-item:nth-child(5n) {
          margin-right: 0;
          margin-bottom: 0; }
        .recent .work-wrap .work-item .overlay .service-item.last, .section-split .work-wrap .work-item .overlay .service-item.last {
          margin-right: 0; }
      .recent .work-wrap .work-item .overlay.num-1 .service-item, .section-split .work-wrap .work-item .overlay.num-1 .service-item {
        width: 100%; }
        .recent .work-wrap .work-item .overlay.num-1 .service-item:nth-child(n), .section-split .work-wrap .work-item .overlay.num-1 .service-item:nth-child(n) {
          margin-bottom: 2%;
          margin-right: 2%; }
        .recent .work-wrap .work-item .overlay.num-1 .service-item:nth-child(1n), .section-split .work-wrap .work-item .overlay.num-1 .service-item:nth-child(1n) {
          margin-right: 0;
          margin-bottom: 0; }
        .recent .work-wrap .work-item .overlay.num-1 .service-item.last, .section-split .work-wrap .work-item .overlay.num-1 .service-item.last {
          margin-right: 0; }
      .recent .work-wrap .work-item .overlay.num-2 .service-item, .section-split .work-wrap .work-item .overlay.num-2 .service-item {
        width: 49%; }
        .recent .work-wrap .work-item .overlay.num-2 .service-item:nth-child(n), .section-split .work-wrap .work-item .overlay.num-2 .service-item:nth-child(n) {
          margin-bottom: 2%;
          margin-right: 2%; }
        .recent .work-wrap .work-item .overlay.num-2 .service-item:nth-child(2n), .section-split .work-wrap .work-item .overlay.num-2 .service-item:nth-child(2n) {
          margin-right: 0;
          margin-bottom: 0; }
        .recent .work-wrap .work-item .overlay.num-2 .service-item.last, .section-split .work-wrap .work-item .overlay.num-2 .service-item.last {
          margin-right: 0; }
      .recent .work-wrap .work-item .overlay.num-3 .service-item, .section-split .work-wrap .work-item .overlay.num-3 .service-item {
        width: 32%; }
        .recent .work-wrap .work-item .overlay.num-3 .service-item:nth-child(n), .section-split .work-wrap .work-item .overlay.num-3 .service-item:nth-child(n) {
          margin-bottom: 2%;
          margin-right: 2%; }
        .recent .work-wrap .work-item .overlay.num-3 .service-item:nth-child(3n), .section-split .work-wrap .work-item .overlay.num-3 .service-item:nth-child(3n) {
          margin-right: 0;
          margin-bottom: 0; }
        .recent .work-wrap .work-item .overlay.num-3 .service-item.last, .section-split .work-wrap .work-item .overlay.num-3 .service-item.last {
          margin-right: 0; }
      .recent .work-wrap .work-item .overlay.num-4 .service-item, .section-split .work-wrap .work-item .overlay.num-4 .service-item {
        width: 23.5%; }
        .recent .work-wrap .work-item .overlay.num-4 .service-item:nth-child(n), .section-split .work-wrap .work-item .overlay.num-4 .service-item:nth-child(n) {
          margin-bottom: 2%;
          margin-right: 2%; }
        .recent .work-wrap .work-item .overlay.num-4 .service-item:nth-child(4n), .section-split .work-wrap .work-item .overlay.num-4 .service-item:nth-child(4n) {
          margin-right: 0;
          margin-bottom: 0; }
        .recent .work-wrap .work-item .overlay.num-4 .service-item.last, .section-split .work-wrap .work-item .overlay.num-4 .service-item.last {
          margin-right: 0; }
      @media only screen and (max-width: 885px) {
        .recent .work-wrap .work-item .overlay .service-item, .section-split .work-wrap .work-item .overlay .service-item {
          width: 32%; }
          .recent .work-wrap .work-item .overlay .service-item:nth-child(n), .section-split .work-wrap .work-item .overlay .service-item:nth-child(n) {
            margin-bottom: 2%;
            margin-right: 2%; }
          .recent .work-wrap .work-item .overlay .service-item:nth-child(3n), .section-split .work-wrap .work-item .overlay .service-item:nth-child(3n) {
            margin-right: 0;
            margin-bottom: 0; }
          .recent .work-wrap .work-item .overlay .service-item.last, .section-split .work-wrap .work-item .overlay .service-item.last {
            margin-right: 0; }
        .recent .work-wrap .work-item .overlay.num-1 .service-item, .section-split .work-wrap .work-item .overlay.num-1 .service-item {
          width: 100%; }
          .recent .work-wrap .work-item .overlay.num-1 .service-item:nth-child(n), .section-split .work-wrap .work-item .overlay.num-1 .service-item:nth-child(n) {
            margin-bottom: 2%;
            margin-right: 2%; }
          .recent .work-wrap .work-item .overlay.num-1 .service-item:nth-child(1n), .section-split .work-wrap .work-item .overlay.num-1 .service-item:nth-child(1n) {
            margin-right: 0;
            margin-bottom: 0; }
          .recent .work-wrap .work-item .overlay.num-1 .service-item.last, .section-split .work-wrap .work-item .overlay.num-1 .service-item.last {
            margin-right: 0; }
        .recent .work-wrap .work-item .overlay.num-2 .service-item, .section-split .work-wrap .work-item .overlay.num-2 .service-item {
          width: 49%; }
          .recent .work-wrap .work-item .overlay.num-2 .service-item:nth-child(n), .section-split .work-wrap .work-item .overlay.num-2 .service-item:nth-child(n) {
            margin-bottom: 2%;
            margin-right: 2%; }
          .recent .work-wrap .work-item .overlay.num-2 .service-item:nth-child(2n), .section-split .work-wrap .work-item .overlay.num-2 .service-item:nth-child(2n) {
            margin-right: 0;
            margin-bottom: 0; }
          .recent .work-wrap .work-item .overlay.num-2 .service-item.last, .section-split .work-wrap .work-item .overlay.num-2 .service-item.last {
            margin-right: 0; } }

.services {
  background-size: cover;
  color: #fff;
  padding: 100px 0;
  position: relative;
  z-index: 0;
  font-size: 0; }
  @media only screen and (max-width: 885px) {
    .services {
      padding: 20px 0; } }
  .services header {
    text-transform: uppercase;
    text-align: center;
    font-size: 40px;
    border-bottom: 2px solid #fff;
    margin-bottom: 40px; }
    @media only screen and (max-width: 885px) {
      .services header {
        font-size: 28px; } }
  .services .service-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    margin-bottom: 30px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  .services .service-item {
    text-align: center;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-line-pack: center;
        align-content: center;
    padding: 0 20px;
    color: #fff;
    font-size: 16px;
    -ms-flex: 1;
        flex: 1;
    box-sizing: border-box; }
    @media only screen and (max-width: 1261px) {
      .services .service-item {
        -ms-flex-preferred-size: 33.3333%;
            flex-basis: 33.3333%;
        margin-bottom: 20px; } }
    .services .service-item .logo svg {
      fill: #fff;
      height: 60px;
      width: 60px;
      margin-bottom: 5px; }
  .services .body-text {
    text-align: center;
    font-size: 20px;
    margin-bottom: 10px;
    clear: both;
    padding: 0 10px; }
    @media only screen and (max-width: 885px) {
      .services .body-text {
        padding-top: 20px; } }
  .services .learn_more {
    display: block;
    text-align: center;
    text-transform: uppercase;
    font-size: 20px; }

.logo-farm {
  text-align: center; }
  @media only screen and (max-width: 885px) {
    .logo-farm {
      padding: 40px 0; } }
  .logo-farm img {
    display: inline-block;
    vertical-align: middle;
    margin: 0 25px;
    padding-top: 30px;
    transition: all 500ms;
    -ms-filter: grayscale(100%);
    filter: grayscale(100%);
    cursor: pointer; }
    .logo-farm img:hover {
      filter: grayscale(0%); }

.hiring {
  color: #fff; }
  @media only screen and (max-width: 885px) {
    .hiring {
      padding-bottom: 50px; } }
  .hiring a {
    text-transform: uppercase;
    font-size: 14px; }
  .hiring p {
    font-size: 18px; }
  .hiring img {
    display: block;
    max-width: 100%; }
  .hiring header {
    text-transform: uppercase;
    font-size: 60px;
    margin-bottom: 10px;
    padding-top: 40px; }
  .hiring .left-content {
    float: left;
    width: 60%; }
    @media only screen and (max-width: 885px) {
      .hiring .left-content {
        width: 100%; } }
    .hiring .left-content .open-header {
      font-size: 20px;
      text-transform: uppercase; }
    .hiring .left-content ul {
      padding: 0; }
      .hiring .left-content ul li {
        list-style: none; }
        .hiring .left-content ul li a {
          font-size: 18px;
          text-transform: none; }
  .hiring .right-content {
    float: right;
    width: 40%; }
    @media only screen and (max-width: 885px) {
      .hiring .right-content {
        display: none; } }

#news .news_article {
  margin-bottom: 18px; }
  #news .news_article .date {
    margin-bottom: 3px; }
  #news .news_article .image {
    margin-top: 3px; }

.has-sidebar-wrapper {
  display: -ms-flexbox;
  display: flex; }

.blog-posts {
  padding-top: 50px;
  padding-bottom: 50px; }
  @media only screen and (max-width: 885px) {
    .blog-posts {
      padding-top: 20px !important;
      padding-bottom: 20px !important; } }
  .blog-posts .post-title {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 5px; }
    .blog_post .blog-posts .post-title {
      font-size: 48px; }
    .blog-posts .post-title a {
      color: #1d1d1d; }
  .blog-posts .post {
    padding-bottom: 60px; }
  .blog-posts .meta {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
    color: #58585a; }
  .blog-posts .viewing-label {
    margin-bottom: 10px;
    text-transform: uppercase;
    font-size: 16px; }

.post-text.with-featured-image {
  width: 70%;
  display: inline-block; }
  @media only screen and (max-width: 480px) {
    .post-text.with-featured-image {
      width: 100%; } }

.featured-image-wrap {
  display: inline-block;
  width: 28%;
  margin-right: 2%;
  vertical-align: top; }
  @media only screen and (max-width: 480px) {
    .featured-image-wrap {
      width: 100%;
      margin-bottom: 10px; } }
  .featured-image-wrap img {
    max-width: 100%; }

.post {
  font-size: 0; }
  .post .post-text {
    font-size: 16px; }

.mobile-blog-categories {
  display: none;
  background: #0079c2;
  font-size: 20px;
  position: relative;
  margin-bottom: 30px; }
  @media only screen and (max-width: 885px) {
    .mobile-blog-categories {
      display: block; } }
  .mobile-blog-categories a {
    color: #fff;
    padding: 5px 10px;
    display: block; }
  .mobile-blog-categories header {
    background: #1a7bbe;
    color: #fff;
    position: relative;
    padding: 10px 40px 10px 10px;
    cursor: pointer; }
    .mobile-blog-categories header:after {
      content: "";
      background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAVCAYAAAA0GqweAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyhpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMDE0IDc5LjE1Njc5NywgMjAxNC8wOC8yMC0wOTo1MzowMiAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6QTYzOTIwODNDNUUyMTFFNEJBNUJFQUI5OUJBNzhBOTAiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6QTYzOTIwODRDNUUyMTFFNEJBNUJFQUI5OUJBNzhBOTAiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpBNjM5MjA4MUM1RTIxMUU0QkE1QkVBQjk5QkE3OEE5MCIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpBNjM5MjA4MkM1RTIxMUU0QkE1QkVBQjk5QkE3OEE5MCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PmwRPwwAAAFPSURBVHjazJU9TwJBEIaHk6gxJtQUWvkP6AyxQENiY02tPbX/gJ4fQE1NqzZGSyooqbCAgoYCEgjxfN84EHLcx64u3E3yJJvszOyT29vdnO/7DRF5lmxGQyBImn72gk6yFsyBVobkWuq0ESRHoJ0Buba6SFCQHINOinIddZAoQXIKXlOQ45onQZ/ffd6NM/ACrg90Wj9BFcyDE1GCjAJ4A6U9y3XBLZiGTXoxhSy4B/09yvV1jWlUQtwXXEcRvIMrx3IDcANGcUkmgoxL8AEuHMl9gTIYJiV6hg3ZqALGDuTG2mtokuxZbglP2uQfchPtMTAt8CwX6CX91AaHrmdVFXJRm1AGM4tLeKY11mv9VZDcgYWB3EJz5dCC5CFBcqk5kpYgqYFViNxK5yRtQfIIvrfkOH5y0duVIKlvCdZd9c07fLqa4Jyvk46dxI8AAwDC6yT1YVgEvgAAAABJRU5ErkJggg==) no-repeat center center;
      background-size: contain;
      width: 26px;
      height: 13px;
      position: absolute;
      right: 10px;
      top: 50%;
      -ms-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
      transition: transform 400ms; }
  .mobile-blog-categories ul {
    margin: 0;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: #58585a;
    padding: 10px 0;
    display: none; }
    .mobile-blog-categories ul li {
      list-style: none;
      padding: 0; }
  .mobile-blog-categories.active header:after {
    -ms-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg); }

.footer_wrap {
  background: #1d1d1d;
  padding-top: 75px;
  background-position: top center;
  background-repeat: no-repeat; }
  @media only screen and (max-width: 885px) {
    .footer_wrap {
      padding-top: 10px; } }
  .footer_wrap img {
    max-width: 100%; }
  .footer_wrap header {
    font-size: 25px;
    color: #0079c2;
    text-transform: uppercase; }
  .footer_wrap .info {
    color: #fff;
    font-size: 18px;
    text-transform: uppercase; }
    @media only screen and (max-width: 885px) {
      .footer_wrap .info {
        text-align: center; } }
    .footer_wrap .info .address {
      margin: 15px 0;
      font-weight: bold; }
    .footer_wrap .info .email {
      font-size: 13px;
      margin: 15px 0;
      vertical-align: middle; }
      @media only screen and (max-width: 1261px) {
        .footer_wrap .info .email {
          white-space: nowrap; } }
    .footer_wrap .info .phone {
      margin: 15px 0;
      font-size: 24px;
      font-weight: bold; }
      @media only screen and (max-width: 1261px) {
        .footer_wrap .info .phone {
          white-space: nowrap; } }
    .footer_wrap .info .socials a {
      margin: 0 5px; }
      .footer_wrap .info .socials a svg {
        width: 40px; }
        .footer_wrap .info .socials a svg g.circle {
          -ms-transform-origin: center;
              transform-origin: center;
          transition: transform .5s; }
      .footer_wrap .info .socials a:hover svg {
        filter: brightness(140%); }
        .footer_wrap .info .socials a:hover svg g.circle {
          -ms-transform: rotate(180deg);
              transform: rotate(180deg); }
  .footer_wrap .form {
    color: #fff; }
    .footer_wrap .form .title {
      margin-bottom: 10px; }
    .footer_wrap .form .form-column {
      box-sizing: border-box;
      float: left;
      width: 50%;
      padding-right: 20px; }
      @media only screen and (max-width: 885px) {
        .footer_wrap .form .form-column {
          width: 100%;
          padding-right: 0; } }
      .footer_wrap .form .form-column.last {
        padding-right: 0; }
        @media only screen and (max-width: 885px) {
          .footer_wrap .form .form-column.last {
            margin-bottom: 10px; } }
      .footer_wrap .form .form-column-full {
        width: 100%;
        margin-bottom: 10px; }
        .footer_wrap .form .form-column-full.pr {
          padding-right: 10px; }
      .footer_wrap .form .form-column input {
        margin-bottom: 20px; }
      .footer_wrap .form .form-column textarea {
        min-height: 187px;
        display: block; }
    .footer_wrap .form select {
      -moz-appearance: none;
           appearance: none;
      -webkit-appearance: none;
      background-image: url("../images/up-down.svg");
      background-repeat: no-repeat;
      background-position: 100%;
      background-size: 25px;
      margin-bottom: 15px; }
  @media only screen and (max-width: 885px) {
    .footer_wrap .recent-blog {
      display: none; } }
  .footer_wrap .recent-blog ul {
    padding: 0; }
    .footer_wrap .recent-blog ul li {
      list-style: none;
      color: #fff;
      padding: 10px 0; }
      .footer_wrap .recent-blog ul li .title {
        font-size: 18px;
        color: #fff; }
      .footer_wrap .recent-blog ul li .date {
        text-transform: uppercase;
        font-size: 12px; }
        .footer_wrap .recent-blog ul li .date a {
          color: #fff; }
  .footer_wrap .recent-blog .more-wrap {
    border-top: 2px solid #fff; }
    .footer_wrap .recent-blog .more-wrap a {
      float: right;
      text-transform: uppercase;
      display: block;
      margin-top: 5px;
      font-size: 12px; }
  .footer_wrap .copywrap {
    padding: 40px 0 10px;
    text-transform: uppercase;
    color: #58585a; }
    .footer_wrap .copywrap a {
      color: #58585a; }

.btn.main-btn, .btn.blue-btn, .btn.sm {
  display: inline-block;
  padding: 20px 45px;
  text-transform: uppercase;
  background: #e4791b;
  font-size: 30px;
  border: none;
  transform: translateZ(0);
  margin: 0 auto;
  color: #fff;
  position: relative; }
  @media only screen and (max-width: 885px) {
    .btn.main-btn, .btn.blue-btn, .btn.sm {
      font-size: 15px;
      padding: 10px 15px; } }
  .btn.main-btn:after, .btn.blue-btn:after, .btn.sm:after {
    content: "";
    display: inline-block;
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    background: rgba(228, 121, 27, 0.5);
    position: absolute;
    left: -5px;
    top: -5px;
    z-index: -1;
    padding: 0;
    box-sizing: border-box;
    transition: transform 350ms ease-out, background 500ms, opacity 500ms; }
  .btn.main-btn:hover:after, .btn.blue-btn:hover:after, .btn.sm:hover:after {
    -ms-transform: scale(2.2);
        transform: scale(2.2);
    background: rgba(233, 80, 13, 0);
    opacity: 0; }
  .btn.main-btn img, .btn.blue-btn img, .btn.sm img {
    padding-left: 20px; }
    @media only screen and (max-width: 885px) {
      .btn.main-btn img, .btn.blue-btn img, .btn.sm img {
        padding-left: 10px;
        vertical-align: middle;
        max-width: 30%; } }

.btn.blue-btn {
  background: #0079c2;
  font-size: 14px;
  width: 100%;
  padding: 5px 0;
  cursor: pointer; }
  .btn.blue-btn:after {
    background: rgba(0, 121, 194, 0.5); }

.btn.sm {
  font-size: 18px;
  padding: 10px 15px; }

.service-learn-btn {
  display: inline-block;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  padding: 15px 20px;
  border: 1px solid #fff; }
  .service-learn-btn:hover {
    background: #fff;
    color: #58585a; }

.share-button {
  display: inline-block;
  text-transform: uppercase;
  padding: 5px 15px;
  border-radius: 3px;
  background: #0079c2;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 5px;
  transition: opacity 300ms; }
  .share-button img {
    height: 16px;
    width: auto;
    vertical-align: bottom;
    margin-right: 5px; }
  .share-button:hover {
    opacity: .8; }

.service-grid__item {
  box-sizing: border-box;
  background: #fff;
  width: calc(33.33333% - 20px); }
  @media only screen and (max-width: 1261px) {
    .service-grid__item {
      width: calc(50% - 15px); } }
  @media only screen and (max-width: 885px) {
    .service-grid__item {
      width: 100%; } }

.service-grid.no-js {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  .service-grid.no-js .service-grid__item {
    margin-right: 30px;
    margin-bottom: 20px; }
    .service-grid.no-js .service-grid__item:nth-child(3n) {
      margin-right: 0; }
  .service-grid.no-js .service-item {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column; }
    .service-grid.no-js .service-item__inner {
      -ms-flex: 1;
          flex: 1; }

.grid-outter {
  padding: 20px;
  background: #eeeeee;
  box-sizing: border-box; }

.service-item__inner {
  padding: 25px; }
  .service-item__inner .logo svg {
    max-height: 80px;
    max-width: 80px; }

.service-item__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between; }

.service-item__header {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  position: relative;
  display: block; }
  .service-item__header svg {
    fill: #0079c2; }
  .service-item__header:after {
    content: '';
    width: 90px;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%); }

.service-item__title {
  font-size: 32px;
  color: #0079c2; }

.service-item__text {
  margin-bottom: 25px; }

.service-item__project-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  text-align: center; }
  .service-item__project-row.single {
    -ms-flex-pack: center;
        justify-content: center; }

.service-item .portfolio-project {
  height: 110px;
  width: 45%;
  margin-bottom: 25px; }
  @media only screen and (max-width: 885px) {
    .service-item .portfolio-project {
      width: 100%;
      height: 200px; } }

.service-item__button {
  display: block;
  padding: 10px;
  text-align: center;
  background: #0079c2;
  color: #fff;
  text-transform: uppercase;
  font-size: 18px;
  transition: background 300ms; }
  .service-item__button:hover {
    color: #fff;
    background: #0069a9; }

.highlighted {
  background: #0079c2; }

.services-filter__controls {
  padding: 40px;
  text-align: center; }

.services-filter .controls {
  color: #0079c2; }
  .services-filter .controls__header {
    font-size: 38px;
    text-transform: uppercase; }
    @media only screen and (max-width: 885px) {
      .services-filter .controls__header {
        font-size: 20px; } }
  .services-filter .controls__subheader {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center; }
    @media only screen and (max-width: 885px) {
      .services-filter .controls__subheader {
        display: block; } }
    .services-filter .controls__subheader__text {
      margin-right: 15px;
      font-size: 34px; }
    .services-filter .controls__subheader .Select {
      min-width: 300px;
      border: none;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: end;
          align-items: flex-end; }
      @media only screen and (max-width: 885px) {
        .services-filter .controls__subheader .Select {
          min-width: 0; } }
      .services-filter .controls__subheader .Select.is-focused {
        border: 2px solid #eeeeee; }
    .services-filter .controls__subheader .Select-placeholder {
      font-style: italic; }

input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
input[type="phone"],
select,
textarea {
  box-sizing: border-box;
  width: 100%;
  border-radius: 0;
  padding: 5px 10px;
  font-size: 16px;
  resize: none;
  outline: none; }
  footer input[type="text"], footer
  input[type="password"], footer
  input[type="datetime"], footer
  input[type="datetime-local"], footer
  input[type="date"], footer
  input[type="month"], footer
  input[type="time"], footer
  input[type="week"], footer
  input[type="number"], footer
  input[type="email"], footer
  input[type="url"], footer
  input[type="search"], footer
  input[type="tel"], footer
  input[type="color"], footer
  input[type="phone"], footer
  select, footer
  textarea {
    background: transparent;
    border: 2px solid #fff; }
  footer input[type="text"], footer
  input[type="password"], footer
  input[type="datetime"], footer
  input[type="datetime-local"], footer
  input[type="date"], footer
  input[type="month"], footer
  input[type="time"], footer
  input[type="week"], footer
  input[type="number"], footer
  input[type="email"], footer
  input[type="url"], footer
  input[type="search"], footer
  input[type="tel"], footer
  input[type="color"], footer
  input[type="phone"], footer
  select, footer
  textarea {
    color: #fff; }
  footer input[type="text"].placeholder, footer
  input[type="password"].placeholder, footer
  input[type="datetime"].placeholder, footer
  input[type="datetime-local"].placeholder, footer
  input[type="date"].placeholder, footer
  input[type="month"].placeholder, footer
  input[type="time"].placeholder, footer
  input[type="week"].placeholder, footer
  input[type="number"].placeholder, footer
  input[type="email"].placeholder, footer
  input[type="url"].placeholder, footer
  input[type="search"].placeholder, footer
  input[type="tel"].placeholder, footer
  input[type="color"].placeholder, footer
  input[type="phone"].placeholder, footer
  select.placeholder, footer
  textarea.placeholder {
    color: #fff;
    opacity: 1; }
  footer input[type="text"]:-moz-placeholder, footer
  input[type="password"]:-moz-placeholder, footer
  input[type="datetime"]:-moz-placeholder, footer
  input[type="datetime-local"]:-moz-placeholder, footer
  input[type="date"]:-moz-placeholder, footer
  input[type="month"]:-moz-placeholder, footer
  input[type="time"]:-moz-placeholder, footer
  input[type="week"]:-moz-placeholder, footer
  input[type="number"]:-moz-placeholder, footer
  input[type="email"]:-moz-placeholder, footer
  input[type="url"]:-moz-placeholder, footer
  input[type="search"]:-moz-placeholder, footer
  input[type="tel"]:-moz-placeholder, footer
  input[type="color"]:-moz-placeholder, footer
  input[type="phone"]:-moz-placeholder, footer
  select:-moz-placeholder, footer
  textarea:-moz-placeholder {
    color: #fff;
    opacity: 1; }
  footer input[type="text"]::-moz-placeholder, footer
  input[type="password"]::-moz-placeholder, footer
  input[type="datetime"]::-moz-placeholder, footer
  input[type="datetime-local"]::-moz-placeholder, footer
  input[type="date"]::-moz-placeholder, footer
  input[type="month"]::-moz-placeholder, footer
  input[type="time"]::-moz-placeholder, footer
  input[type="week"]::-moz-placeholder, footer
  input[type="number"]::-moz-placeholder, footer
  input[type="email"]::-moz-placeholder, footer
  input[type="url"]::-moz-placeholder, footer
  input[type="search"]::-moz-placeholder, footer
  input[type="tel"]::-moz-placeholder, footer
  input[type="color"]::-moz-placeholder, footer
  input[type="phone"]::-moz-placeholder, footer
  select::-moz-placeholder, footer
  textarea::-moz-placeholder {
    color: #fff;
    opacity: 1; }
  footer input[type="text"]:-ms-input-placeholder, footer
  input[type="password"]:-ms-input-placeholder, footer
  input[type="datetime"]:-ms-input-placeholder, footer
  input[type="datetime-local"]:-ms-input-placeholder, footer
  input[type="date"]:-ms-input-placeholder, footer
  input[type="month"]:-ms-input-placeholder, footer
  input[type="time"]:-ms-input-placeholder, footer
  input[type="week"]:-ms-input-placeholder, footer
  input[type="number"]:-ms-input-placeholder, footer
  input[type="email"]:-ms-input-placeholder, footer
  input[type="url"]:-ms-input-placeholder, footer
  input[type="search"]:-ms-input-placeholder, footer
  input[type="tel"]:-ms-input-placeholder, footer
  input[type="color"]:-ms-input-placeholder, footer
  input[type="phone"]:-ms-input-placeholder, footer
  select:-ms-input-placeholder, footer
  textarea:-ms-input-placeholder {
    color: #fff;
    opacity: 1; }
  footer input[type="text"]::-webkit-input-placeholder, footer
  input[type="password"]::-webkit-input-placeholder, footer
  input[type="datetime"]::-webkit-input-placeholder, footer
  input[type="datetime-local"]::-webkit-input-placeholder, footer
  input[type="date"]::-webkit-input-placeholder, footer
  input[type="month"]::-webkit-input-placeholder, footer
  input[type="time"]::-webkit-input-placeholder, footer
  input[type="week"]::-webkit-input-placeholder, footer
  input[type="number"]::-webkit-input-placeholder, footer
  input[type="email"]::-webkit-input-placeholder, footer
  input[type="url"]::-webkit-input-placeholder, footer
  input[type="search"]::-webkit-input-placeholder, footer
  input[type="tel"]::-webkit-input-placeholder, footer
  input[type="color"]::-webkit-input-placeholder, footer
  input[type="phone"]::-webkit-input-placeholder, footer
  select::-webkit-input-placeholder, footer
  textarea::-webkit-input-placeholder {
    color: #fff;
    opacity: 1; }

textarea {
  font-family: inherit; }

.main form {
  margin-top: 20px; }
  .main form .title {
    font-size: 20px;
    margin-bottom: 10px; }
  .main form input, .main form textarea, .main form select {
    margin-bottom: 10px;
    border: 1px solid #0079c2; }
  .main form select {
    -webkit-appearance: none;
    background-image: url("../images/up-down-blue.svg");
    background-repeat: no-repeat;
    background-position: 100%;
    background-size: 25px;
    margin-bottom: 15px;
    background-color: #fff; }
    .main form select option:disabled {
      color: darkgray; }

#recaptchaForm {
  margin-bottom: 15px; }

.form-error {
  margin-top: 15px; }

.main {
  margin-top: 98px; }
  @media only screen and (max-width: 885px) {
    .main {
      margin-top: 74px; } }

.logged_in .main {
  margin-top: 173px; }
  @media only screen and (max-width: 885px) {
    .logged_in .main {
      margin-top: 149px; } }

.m-scene {
  position: relative; }

.body {
  min-height: 100%;
  overflow: hidden; }
  .body .main {
    -ms-flex: 1;
        flex: 1; }

.interior-spacing {
  padding: 60px 0; }

.m-scene .scene_element {
  animation-duration: 0.25s;
  transition-timing-function: ease-in;
  animation-fill-mode: both; }

.m-scene.is-exiting .scene_element {
  animation-direction: alternate-reverse; }

.page-banner {
  color: #fff;
  font-size: 24px;
  background-blend-mode: multiply;
  background: #000; }
  .page-banner .page-banner-inner {
    padding: 50px 0;
    position: relative;
    background-blend-mode: multiply;
    -ms-behavior: url("/sites/476/pollyfill/backgroundsize.htc"); }
    @media only screen and (max-width: 885px) {
      .page-banner .page-banner-inner {
        padding: 10px 0; } }
  .page-banner .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    background: #000;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    background: rgba(0, 0, 0, 0.5); }
  .page-banner h1 {
    text-transform: uppercase;
    font-size: 50px;
    margin-bottom: 10px;
    line-height: 1.2; }
    @media only screen and (max-width: 885px) {
      .page-banner h1 {
        font-size: 30px; } }
  @media only screen and (max-width: 885px) {
    .page-banner .intro-text {
      font-size: 18px;
      line-height: 22/18; }
      .page-banner .intro-text p:last-child {
        margin-bottom: 0; } }
  .page-banner.service-banner .service-button-wrap {
    display: inline-block;
    margin-right: 20px;
    margin-bottom: 20px;
    text-align: center;
    vertical-align: middle; }
    @media only screen and (max-width: 885px) {
      .page-banner.service-banner .service-button-wrap {
        width: 100%;
        text-align: center; } }
  .page-banner.service-banner .header-text {
    display: inline-block;
    vertical-align: top;
    width: 700px;
    width: calc(100% - 160px); }
    @media only screen and (max-width: 885px) {
      .page-banner.service-banner .header-text {
        margin-top: 0;
        width: 100%; } }
  .page-banner.service-banner h1 {
    font-size: 12px;
    margin-bottom: 5px; }
  .page-banner.service-banner h2 {
    font-size: 36px;
    line-height: 1; }

.has-backgroundBlendMode .page-banner .overlay {
  display: none; }

.page-banner.short .page-banner-inner {
  padding: 20px 0; }

.page-banner.short h1 {
  font-size: 36px; }

.team-member-page .page-banner .page-banner-inner {
  padding: 20px 0; }

.team-member-page .page-banner h1 {
  font-size: 36px; }

.work_subpage .page-banner {
  padding: 30px 0; }
  .work_subpage .page-banner h1 {
    text-align: center;
    margin-bottom: 30px; }
  .work_subpage .page-banner header {
    font-size: 40px;
    border-bottom: 2px solid #fff;
    margin-bottom: 10px; }
  .work_subpage .page-banner p {
    font-size: 18px; }
  .work_subpage .page-banner .services-wrap {
    text-align: center;
    position: relative;
    z-index: 0; }
    .work_subpage .page-banner .services-wrap .service-item {
      display: inline-block;
      margin: 0 10px; }

.projects-list {
  padding: 20px 40px; }
  .projects-list__header {
    text-transform: uppercase;
    font-size: 30px;
    border-bottom: 2px solid #000;
    margin-bottom: 20px; }
  .projects-list__projects {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
    .projects-list__projects .portfolio-project {
      width: 30.6666666667%;
      height: 280px; }
      .projects-list__projects .portfolio-project:nth-child(n) {
        margin-bottom: 4%;
        margin-right: 4%; }
      .projects-list__projects .portfolio-project:nth-child(3n) {
        margin-right: 0;
        margin-bottom: 0; }
      .projects-list__projects .portfolio-project.last {
        margin-right: 0; }
      @media only screen and (max-width: 885px) {
        .projects-list__projects .portfolio-project {
          width: 100%; }
          .projects-list__projects .portfolio-project:nth-child(n) {
            margin-bottom: 2%;
            margin-right: 2%; }
          .projects-list__projects .portfolio-project:nth-child(1n) {
            margin-right: 0;
            margin-bottom: 0; }
          .projects-list__projects .portfolio-project.last {
            margin-right: 0; }
          .projects-list__projects .portfolio-project.portfolio-project {
            margin-bottom: 20px; } }

.solid-header .back-button {
  text-transform: uppercase;
  color: #fff; }
  .solid-header .back-button .arrow {
    margin-right: 5px;
    display: inline-block; }

.sidebar-wrap {
  border-right: 1px solid #1d1d1d;
  box-sizing: border-box;
  padding-top: 50px;
  padding-bottom: 50px; }
  @media only screen and (max-width: 885px) {
    .sidebar-wrap {
      display: none !important; } }
  .sidebar-wrap ul {
    padding: 0;
    margin: 0; }
  .sidebar-wrap li {
    list-style: none; }
  .sidebar-wrap a, .sidebar-wrap span {
    color: #1d1d1d;
    font-size: 24px;
    display: block; }
  .sidebar-wrap a {
    padding: 5px 10px;
    transition: color 300ms; }
    .sidebar-wrap a:hover {
      color: #0079c2; }
  .sidebar-wrap a.active {
    color: #1a7bbe; }
  .sidebar-wrap ul ul {
    padding-left: 10px; }
    .sidebar-wrap ul ul a {
      font-size: 18px; }
    .sidebar-wrap ul ul a.active {
      background: #1a7bbe;
      color: #fff; }
      .sidebar-wrap ul ul a.active.has-subs {
        background: none;
        color: #1d1d1d; }
  .sidebar-wrap ul ul ul {
    display: none; }
  .sidebar-wrap ul ul li.active ul {
    display: block; }

.lrg-ad {
  background: url(../images/adbg.jpg) no-repeat center center;
  background-size: cover;
  -ms-behavior: url("/sites/476/pollyfill/backgroundsize.htc");
  padding: 100px 0;
  position: relative; }
  @media only screen and (max-width: 885px) {
    .lrg-ad {
      padding: 0; }
      .lrg-ad > .container {
        width: 100%;
        z-index: 2; } }
  .lrg-ad .ad-content {
    width: 75%;
    margin: 0 auto;
    text-align: center;
    padding: 40px;
    color: #fff;
    box-sizing: border-box; }
    @media only screen and (max-width: 885px) {
      .lrg-ad .ad-content {
        width: 100%;
        padding: 30px 0; } }
    .lrg-ad .ad-content header {
      font-size: 48px; }
      @media only screen and (max-width: 885px) {
        .lrg-ad .ad-content header {
          width: 90%;
          margin: 0 auto; } }
    .lrg-ad .ad-content .body-text {
      font-size: 30px;
      line-height: 1.1;
      margin-bottom: 30px; }
      @media only screen and (max-width: 885px) {
        .lrg-ad .ad-content .body-text {
          width: 90%;
          margin: 0 auto;
          margin-bottom: 25px; } }
    .lrg-ad .ad-content .main-btn, .lrg-ad .ad-content .btn.blue-btn, .lrg-ad .ad-content .btn.sm {
      font-size: 20px; }
      @media only screen and (max-width: 885px) {
        .lrg-ad .ad-content .main-btn, .lrg-ad .ad-content .btn.blue-btn, .lrg-ad .ad-content .btn.sm {
          width: 80%;
          font-size: 16px; } }
  .lrg-ad a {
    color: #fff; }
  @media only screen and (max-width: 885px) {
    .lrg-ad .mobile-overlay {
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      position: absolute;
      z-index: 1; } }

.has-backgroundBlendMode .sm-ad {
  background-blend-mode: multiply; }
  .has-backgroundBlendMode .sm-ad .ad-inner {
    background-color: transparent !important; }

.sm-ad {
  color: #fff;
  white-space: nowrap;
  background-blend-mode: multiply; }
  .team-member-page .sm-ad {
    margin-top: 20px; }
  .sm-ad .ad-inner {
    padding: 20px 0; }
  @media only screen and (max-width: 885px) {
    .sm-ad {
      text-align: center; } }
  .sm-ad img {
    vertical-align: top; }
    @media only screen and (max-width: 885px) {
      .sm-ad img {
        max-width: 15%;
        vertical-align: middle; } }
  .sm-ad .main-text {
    font-size: 50px;
    margin: 10px; }
    @media only screen and (max-width: 885px) {
      .sm-ad .main-text {
        font-size: 1.875em;
        vertical-align: middle;
        margin: 0 0 0 5px; } }
  .sm-ad a {
    color: #fff; }
  .sm-ad .half {
    display: inline-block;
    white-space: normal;
    width: 40%;
    vertical-align: middle; }
    @media only screen and (max-width: 885px) {
      .sm-ad .half {
        width: 100%; } }
    .sm-ad .half.right-half {
      text-align: right;
      width: 60%; }
      @media only screen and (max-width: 885px) {
        .sm-ad .half.right-half {
          display: none; } }
  .sm-ad .link {
    text-transform: uppercase;
    font-size: 20px;
    display: inline-block; }

.team-member-grid {
  padding: 50px 0;
  font-size: 0; }
  .team-member-grid img {
    max-width: 100%; }
  .team-member-grid .team-member {
    font-size: 16px;
    display: inline-block;
    box-sizing: border-box;
    width: 32%;
    margin-bottom: 3% !important;
    text-align: center;
    vertical-align: top;
    position: relative; }
    .team-member-grid .team-member:nth-child(n) {
      margin-bottom: 2%;
      margin-right: 2%; }
    .team-member-grid .team-member:nth-child(3n) {
      margin-right: 0;
      margin-bottom: 0; }
    .team-member-grid .team-member.last {
      margin-right: 0; }
    @media only screen and (max-width: 885px) {
      .team-member-grid .team-member {
        width: 100%; }
        .team-member-grid .team-member:nth-child(n) {
          margin-bottom: 0;
          margin-right: 0; }
        .team-member-grid .team-member:nth-child(1n) {
          margin-right: 0;
          margin-bottom: 0; }
        .team-member-grid .team-member.last {
          margin-right: 0; } }
    .team-member-grid .team-member .team-member-image, .team-member-grid .team-member .hover-only {
      height: 300px;
      margin-bottom: 20px;
      width: 100%;
      transition: opacity 250ms; }
      @media only screen and (max-width: 1261px) {
        .team-member-grid .team-member .team-member-image, .team-member-grid .team-member .hover-only {
          height: 200px; } }
    .team-member-grid .team-member .hover-only {
      display: none;
      position: absolute;
      top: 0; }
    .team-member-grid .team-member .name {
      font-size: 20px;
      color: #1a7bbe; }
    .team-member-grid .team-member .official-title {
      font-size: 17px;
      color: #1d1d1d;
      margin-bottom: 5px; }
    .team-member-grid .team-member .nickname {
      font-style: italic;
      font-size: 14px; }
    .team-member-grid .team-member:hover .team-member-image {
      display: none; }
    .team-member-grid .team-member:hover .hover-only {
      display: block;
      position: static; }

.has-opacity .team-member-grid .team-member .hover-only {
  display: block;
  opacity: 0; }

.has-opacity .team-member-grid .team-member:hover .hover-only {
  position: absolute;
  opacity: 1; }

.has-opacity .team-member-grid .team-member:hover .team-member-image {
  opacity: 0;
  display: block; }

.secondary-nav {
  background: #eeeeee;
  text-align: right; }
  @media only screen and (max-width: 885px) {
    .secondary-nav {
      display: none; } }
  .secondary-nav ul {
    padding: 0;
    margin: 0; }
    .secondary-nav ul li {
      list-style: none;
      display: inline-block;
      padding: 10px 0; }
      .secondary-nav ul li a {
        color: #1d1d1d;
        text-transform: uppercase;
        padding: 0; }
        .secondary-nav ul li a:after {
          content: " | ";
          font-size: 14px;
          vertical-align: top;
          padding: 0 10px;
          color: #1d1d1d; }
          @media only screen and (max-width: 1261px) {
            .secondary-nav ul li a:after {
              padding: 0 5px; } }
        .secondary-nav ul li a.active, .secondary-nav ul li a:hover {
          color: #0079c2; }
      .secondary-nav ul li:last-child a:after, .secondary-nav ul li.last a:after {
        display: none !important; }
      .secondary-nav ul li.last a:after {
        content: "";
        padding: 0; }
  .secondary-nav ul ul {
    display: none; }

.support-page .secondary-nav {
  display: none; }

.page-rotator {
  position: relative;
  z-index: 0;
  overflow: hidden; }
  .page-rotator img {
    width: 100%;
    display: block; }
  .page-rotator .cycle-prev, .page-rotator .cycle-next {
    width: auto;
    position: absolute;
    z-index: 10000;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    cursor: pointer; }
    @media only screen and (max-width: 885px) {
      .page-rotator .cycle-prev, .page-rotator .cycle-next {
        display: none; } }
    .page-rotator .cycle-prev.cycle-next, .page-rotator .cycle-next.cycle-next {
      right: 0; }
  .page-rotator .rotator-item {
    position: relative;
    width: 100%; }
    .page-rotator .rotator-item .rotator-text-wrap {
      position: absolute;
      width: 100%;
      bottom: 30px; }
      @media only screen and (max-width: 885px) {
        .page-rotator .rotator-item .rotator-text-wrap {
          position: static;
          background: #1d1d1d; } }
      .page-rotator .rotator-item .rotator-text-wrap .rotator-text {
        background: #1d1d1d;
        background: rgba(29, 29, 29, 0.9);
        color: #fff;
        padding: 15px;
        box-sizing: border-box; }
        .page-rotator .rotator-item .rotator-text-wrap .rotator-text .rotator-title {
          font-size: 30px; }
  .page-rotator .cycle-pager {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
    color: red;
    z-index: 10000;
    background-clip: padding-box; }
    .page-rotator .cycle-pager span {
      cursor: pointer;
      font-size: 0;
      width: 10px;
      height: 10px;
      display: inline-block;
      background: #fff;
      margin: 0 3px;
      border-radius: 100%;
      -ms-behavior: url(/sites/476/pollyfill/PIE.htc);
      box-sizing: padding-box;
      border: 3px solid rgba(255, 255, 255, 0.4); }
      .page-rotator .cycle-pager span.cycle-pager-active {
        background-clip: padding-box;
        background: #e16f2b; }

.team-member-page .page-rotator {
  margin-bottom: 80px; }
  @media only screen and (max-width: 885px) {
    .team-member-page .page-rotator {
      margin-bottom: 20px; } }

.team-member-item {
  padding: 60px 0; }
  .team-member-item .photo-wrap {
    text-align: center; }
    .team-member-item .photo-wrap img.staff-photo {
      display: block;
      margin: 0 auto;
      border-bottom: 2px solid #000; }
    .team-member-item .photo-wrap .email {
      display: block;
      margin: 10px 0; }
    .team-member-item .photo-wrap .socials a {
      margin: 0 5px; }

.module-pager {
  background: #1d1d1d;
  text-align: center;
  font-size: 0;
  display: -ms-flexbox;
  display: flex;
  position: relative; }
  .module-pager .container {
    -ms-flex-align: stretch;
        align-items: stretch;
    display: -ms-flexbox;
    display: flex; }
  .module-pager a {
    color: #fff;
    display: block; }
    @media only screen and (max-width: 885px) {
      .module-pager a {
        padding: 4px 0; } }
  .module-pager .left-animator, .module-pager .right-animator {
    position: absolute;
    width: 0;
    height: 100%;
    background-color: #0079c2;
    transition: width .75s ease-in; }
    .module-pager .left-animator.hover, .module-pager .right-animator.hover {
      width: 50%; }
  .module-pager .left-animator {
    right: 50%; }
  .module-pager .right-animator {
    left: 50%; }
  .module-pager .previous-wrap, .module-pager .middle-wrap, .module-pager .next-wrap {
    display: inline-block;
    font-size: 18px;
    text-transform: uppercase;
    vertical-align: middle;
    position: relative;
    padding: 15px 0; }
    @media only screen and (max-width: 885px) {
      .module-pager .previous-wrap, .module-pager .middle-wrap, .module-pager .next-wrap {
        font-size: 12px; } }
  .module-pager .previous-wrap, .module-pager .next-wrap {
    width: 48.0806451613%;
    width: calc(50% - 24px);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
    .module-pager .previous-wrap .lead, .module-pager .next-wrap .lead {
      content: " ";
      height: 100%;
      width: 2000%;
      position: absolute;
      background: inherit;
      left: 0;
      top: 0; }
    .module-pager .previous-wrap.next-wrap, .module-pager .next-wrap.next-wrap {
      -ms-flex-pack: end;
          justify-content: flex-end; }
    .module-pager .previous-wrap .text:before, .module-pager .previous-wrap .text:after, .module-pager .next-wrap .text:before, .module-pager .next-wrap .text:after {
      font-family: icons; }
    .module-pager .previous-wrap .name, .module-pager .next-wrap .name {
      display: inline;
      opacity: 0;
      text-transform: none;
      font-size: 14px;
      margin: 0 10px;
      transition: opacity .75s ease-in; }
      @media only screen and (max-width: 885px) {
        .module-pager .previous-wrap .name, .module-pager .next-wrap .name {
          display: none; } }
    .module-pager .previous-wrap .text-wrap, .module-pager .next-wrap .text-wrap {
      vertical-align: top; }
    @media only screen and (max-width: 885px) {
      .module-pager .previous-wrap .text-wrap, .module-pager .next-wrap .text-wrap {
        display: inline-block;
        width: calc(100% - 30px);
        vertical-align: middle;
        font-size: 12px; }
      .module-pager .previous-wrap span[class*=" icon-"], .module-pager .next-wrap span[class*=" icon-"] {
        display: inline-block;
        height: 100%;
        position: absolute;
        top: 0; } }
  .module-pager .previous-wrap {
    text-align: left; }
    .module-pager .previous-wrap .text:before {
      content: "\f102"; }
    .module-pager .previous-wrap .lead {
      right: 100%;
      left: auto; }
  .module-pager .next-wrap {
    text-align: right; }
    .module-pager .next-wrap .text:after {
      content: "\f103";
      margin-left: 5px; }
    .module-pager .next-wrap .lead {
      left: 100%; }
  .module-pager .middle-wrap {
    width: 50px;
    min-height: 40px;
    padding: 0 5px;
    background: #eeeeee;
    transition: background 300ms;
    box-sizing: border-box;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
    .module-pager .middle-wrap:hover {
      background: #0079c2; }
      .module-pager .middle-wrap:hover a {
        color: #fff; }
    .module-pager .middle-wrap a {
      font-size: 24px;
      line-height: 1;
      color: #1d1d1d; }
      .module-pager .middle-wrap a:before {
        vertical-align: top; }
  .module-pager.team-member .previous-wrap:hover .name, .module-pager.team-member .next-wrap:hover .name {
    opacity: 1; }
    @media only screen and (max-width: 885px) {
      .module-pager.team-member .previous-wrap:hover .name, .module-pager.team-member .next-wrap:hover .name {
        display: none; } }

.work-projects-grid {
  padding: 60px 0;
  font-size: 0; }
  .work-projects-grid .work-project {
    font-size: 16px;
    display: inline-block;
    box-sizing: border-box;
    position: relative;
    width: 30.6666666667%; }
    .work-projects-grid .work-project:nth-child(n) {
      margin-bottom: 4%;
      margin-right: 4%; }
    .work-projects-grid .work-project:nth-child(3n) {
      margin-right: 0;
      margin-bottom: 0; }
    .work-projects-grid .work-project.last {
      margin-right: 0; }
    @media only screen and (max-width: 885px) {
      .work-projects-grid .work-project {
        width: 47.5%; }
        .work-projects-grid .work-project:nth-child(n) {
          margin-bottom: 5%;
          margin-right: 5%; }
        .work-projects-grid .work-project:nth-child(2n) {
          margin-right: 0;
          margin-bottom: 0; }
        .work-projects-grid .work-project.last {
          margin-right: 0; }
        .work-projects-grid .work-project.last {
          margin-right: 5%; }
        .work-projects-grid .work-project.ipad-last {
          margin-right: 0; } }
    @media only screen and (max-width: 480px) {
      .work-projects-grid .work-project {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px !important; } }
    .work-projects-grid .work-project .work-project-inner {
      position: relative; }
      .work-projects-grid .work-project .work-project-inner:hover .overlay {
        display: block; }
      .work-projects-grid .work-project .work-project-inner:hover img {
        zoom: 1;
        opacity: 10;
        filter: alpha(opacity=10);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
        filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=10); }
    .work-projects-grid .work-project img {
      width: 100%;
      margin-bottom: 10px;
      display: block; }
    .work-projects-grid .work-project .title {
      text-align: center;
      color: #1d1d1d;
      transition: color 300ms; }
      .work-projects-grid .work-project .title:hover {
        color: #e4791b; }

.stripe, .portfolio-stripe {
  padding: 50px 0; }
  .stripe.offset-content, .portfolio-stripe.offset-content {
    margin-bottom: 60px;
    padding-bottom: 0;
    padding-top: 25px; }
    .stripe.offset-content > .stripe-contents > *, .portfolio-stripe.offset-content > .stripe-contents > * {
      margin-bottom: -60px; }
  .stripe.no-top-padding, .portfolio-stripe.no-top-padding {
    padding-top: 0; }
    .stripe.no-top-padding .stripe-contents > *, .portfolio-stripe.no-top-padding .stripe-contents > * {
      margin-bottom: 0; }
    .stripe.no-top-padding img, .portfolio-stripe.no-top-padding img {
      display: block; }
  .stripe.no-bottom-padding, .portfolio-stripe.no-bottom-padding {
    padding-bottom: 0; }
    .stripe.no-bottom-padding img, .portfolio-stripe.no-bottom-padding img {
      display: block; }
    .stripe.no-bottom-padding img.testimonial-indicator, .portfolio-stripe.no-bottom-padding img.testimonial-indicator {
      display: inline-block; }
    .stripe.no-bottom-padding .stripe-contents > *, .portfolio-stripe.no-bottom-padding .stripe-contents > * {
      margin-bottom: 0; }
  .stripe.no-top-or-bottom-padding, .portfolio-stripe.no-top-or-bottom-padding {
    padding-top: 0;
    padding-bottom: 0; }
    .stripe.no-top-or-bottom-padding img, .portfolio-stripe.no-top-or-bottom-padding img {
      display: block; }
    .stripe.no-top-or-bottom-padding img.testimonial-indicator, .portfolio-stripe.no-top-or-bottom-padding img.testimonial-indicator {
      display: inline-block; }
    .stripe.no-top-or-bottom-padding .stripe-contents > *, .portfolio-stripe.no-top-or-bottom-padding .stripe-contents > * {
      margin-bottom: 0; }
  .stripe > .container.stripe-contents-1 > *, .portfolio-stripe > .container.stripe-contents-1 > * {
    width: 100%;
    box-sizing: border-box;
    float: left; }
    .stripe > .container.stripe-contents-1 > *:nth-child(n), .portfolio-stripe > .container.stripe-contents-1 > *:nth-child(n) {
      margin-bottom: 3%;
      margin-right: 3%; }
    .stripe > .container.stripe-contents-1 > *:nth-child(1n), .portfolio-stripe > .container.stripe-contents-1 > *:nth-child(1n) {
      margin-right: 0;
      margin-bottom: 0; }
    .stripe > .container.stripe-contents-1 > *.last, .portfolio-stripe > .container.stripe-contents-1 > *.last {
      margin-right: 0; }
    @media only screen and (max-width: 885px) {
      .stripe > .container.stripe-contents-1 > *, .portfolio-stripe > .container.stripe-contents-1 > * {
        width: 100%;
        float: none;
        margin: 0 0 10px; } }
  .stripe > .container.stripe-contents-2 > *, .portfolio-stripe > .container.stripe-contents-2 > * {
    width: 48.5%;
    box-sizing: border-box;
    float: left; }
    .stripe > .container.stripe-contents-2 > *:nth-child(n), .portfolio-stripe > .container.stripe-contents-2 > *:nth-child(n) {
      margin-bottom: 3%;
      margin-right: 3%; }
    .stripe > .container.stripe-contents-2 > *:nth-child(2n), .portfolio-stripe > .container.stripe-contents-2 > *:nth-child(2n) {
      margin-right: 0;
      margin-bottom: 0; }
    .stripe > .container.stripe-contents-2 > *.last, .portfolio-stripe > .container.stripe-contents-2 > *.last {
      margin-right: 0; }
    @media only screen and (max-width: 885px) {
      .stripe > .container.stripe-contents-2 > *, .portfolio-stripe > .container.stripe-contents-2 > * {
        width: 100%;
        float: none;
        margin: 0 0 10px; } }
  .stripe > .container.stripe-contents-3 > *, .portfolio-stripe > .container.stripe-contents-3 > * {
    width: 31.3333333333%;
    box-sizing: border-box;
    float: left; }
    .stripe > .container.stripe-contents-3 > *:nth-child(n), .portfolio-stripe > .container.stripe-contents-3 > *:nth-child(n) {
      margin-bottom: 3%;
      margin-right: 3%; }
    .stripe > .container.stripe-contents-3 > *:nth-child(3n), .portfolio-stripe > .container.stripe-contents-3 > *:nth-child(3n) {
      margin-right: 0;
      margin-bottom: 0; }
    .stripe > .container.stripe-contents-3 > *.last, .portfolio-stripe > .container.stripe-contents-3 > *.last {
      margin-right: 0; }
    @media only screen and (max-width: 885px) {
      .stripe > .container.stripe-contents-3 > *, .portfolio-stripe > .container.stripe-contents-3 > * {
        width: 100%;
        float: none;
        margin: 0 0 10px; } }
  .stripe > .container.stripe-contents-4 > *, .portfolio-stripe > .container.stripe-contents-4 > * {
    width: 22.75%;
    box-sizing: border-box;
    float: left; }
    .stripe > .container.stripe-contents-4 > *:nth-child(n), .portfolio-stripe > .container.stripe-contents-4 > *:nth-child(n) {
      margin-bottom: 3%;
      margin-right: 3%; }
    .stripe > .container.stripe-contents-4 > *:nth-child(4n), .portfolio-stripe > .container.stripe-contents-4 > *:nth-child(4n) {
      margin-right: 0;
      margin-bottom: 0; }
    .stripe > .container.stripe-contents-4 > *.last, .portfolio-stripe > .container.stripe-contents-4 > *.last {
      margin-right: 0; }
    @media only screen and (max-width: 885px) {
      .stripe > .container.stripe-contents-4 > *, .portfolio-stripe > .container.stripe-contents-4 > * {
        width: 100%;
        float: none;
        margin: 0 0 10px; } }
  .stripe > .container.stripe-contents-5 > *, .portfolio-stripe > .container.stripe-contents-5 > * {
    width: 17.6%;
    box-sizing: border-box;
    float: left; }
    .stripe > .container.stripe-contents-5 > *:nth-child(n), .portfolio-stripe > .container.stripe-contents-5 > *:nth-child(n) {
      margin-bottom: 3%;
      margin-right: 3%; }
    .stripe > .container.stripe-contents-5 > *:nth-child(5n), .portfolio-stripe > .container.stripe-contents-5 > *:nth-child(5n) {
      margin-right: 0;
      margin-bottom: 0; }
    .stripe > .container.stripe-contents-5 > *.last, .portfolio-stripe > .container.stripe-contents-5 > *.last {
      margin-right: 0; }
    @media only screen and (max-width: 885px) {
      .stripe > .container.stripe-contents-5 > *, .portfolio-stripe > .container.stripe-contents-5 > * {
        width: 100%;
        float: none;
        margin: 0 0 10px; } }
  .stripe > .container.stripe-contents-6 > *, .portfolio-stripe > .container.stripe-contents-6 > * {
    width: 14.1666666667%;
    box-sizing: border-box;
    float: left; }
    .stripe > .container.stripe-contents-6 > *:nth-child(n), .portfolio-stripe > .container.stripe-contents-6 > *:nth-child(n) {
      margin-bottom: 3%;
      margin-right: 3%; }
    .stripe > .container.stripe-contents-6 > *:nth-child(6n), .portfolio-stripe > .container.stripe-contents-6 > *:nth-child(6n) {
      margin-right: 0;
      margin-bottom: 0; }
    .stripe > .container.stripe-contents-6 > *.last, .portfolio-stripe > .container.stripe-contents-6 > *.last {
      margin-right: 0; }
    @media only screen and (max-width: 885px) {
      .stripe > .container.stripe-contents-6 > *, .portfolio-stripe > .container.stripe-contents-6 > * {
        width: 100%;
        float: none;
        margin: 0 0 10px; } }
  .stripe > .container.stripe-contents-7 > *, .portfolio-stripe > .container.stripe-contents-7 > * {
    width: 11.7142857143%;
    box-sizing: border-box;
    float: left; }
    .stripe > .container.stripe-contents-7 > *:nth-child(n), .portfolio-stripe > .container.stripe-contents-7 > *:nth-child(n) {
      margin-bottom: 3%;
      margin-right: 3%; }
    .stripe > .container.stripe-contents-7 > *:nth-child(7n), .portfolio-stripe > .container.stripe-contents-7 > *:nth-child(7n) {
      margin-right: 0;
      margin-bottom: 0; }
    .stripe > .container.stripe-contents-7 > *.last, .portfolio-stripe > .container.stripe-contents-7 > *.last {
      margin-right: 0; }
    @media only screen and (max-width: 885px) {
      .stripe > .container.stripe-contents-7 > *, .portfolio-stripe > .container.stripe-contents-7 > * {
        width: 100%;
        float: none;
        margin: 0 0 10px; } }
  .stripe > .container.stripe-contents-8 > *, .portfolio-stripe > .container.stripe-contents-8 > * {
    width: 9.875%;
    box-sizing: border-box;
    float: left; }
    .stripe > .container.stripe-contents-8 > *:nth-child(n), .portfolio-stripe > .container.stripe-contents-8 > *:nth-child(n) {
      margin-bottom: 3%;
      margin-right: 3%; }
    .stripe > .container.stripe-contents-8 > *:nth-child(8n), .portfolio-stripe > .container.stripe-contents-8 > *:nth-child(8n) {
      margin-right: 0;
      margin-bottom: 0; }
    .stripe > .container.stripe-contents-8 > *.last, .portfolio-stripe > .container.stripe-contents-8 > *.last {
      margin-right: 0; }
    @media only screen and (max-width: 885px) {
      .stripe > .container.stripe-contents-8 > *, .portfolio-stripe > .container.stripe-contents-8 > * {
        width: 100%;
        float: none;
        margin: 0 0 10px; } }
  .stripe > .container.stripe-contents-9 > *, .portfolio-stripe > .container.stripe-contents-9 > * {
    width: 8.4444444444%;
    box-sizing: border-box;
    float: left; }
    .stripe > .container.stripe-contents-9 > *:nth-child(n), .portfolio-stripe > .container.stripe-contents-9 > *:nth-child(n) {
      margin-bottom: 3%;
      margin-right: 3%; }
    .stripe > .container.stripe-contents-9 > *:nth-child(9n), .portfolio-stripe > .container.stripe-contents-9 > *:nth-child(9n) {
      margin-right: 0;
      margin-bottom: 0; }
    .stripe > .container.stripe-contents-9 > *.last, .portfolio-stripe > .container.stripe-contents-9 > *.last {
      margin-right: 0; }
    @media only screen and (max-width: 885px) {
      .stripe > .container.stripe-contents-9 > *, .portfolio-stripe > .container.stripe-contents-9 > * {
        width: 100%;
        float: none;
        margin: 0 0 10px; } }

.stripe .generic img {
  max-width: 45%;
  float: left;
  margin-right: 5%; }
  @media only screen and (max-width: 885px) {
    .stripe .generic img {
      width: 100%;
      max-width: none;
      float: none;
      margin: 0; } }

.stripe .generic .text-wrap {
  max-width: 50%;
  float: left; }
  @media only screen and (max-width: 885px) {
    .stripe .generic .text-wrap {
      max-width: none;
      width: 100%;
      float: none; } }
  .stripe .generic .text-wrap .title {
    font-size: 30px; }

.stripe .img-stripe-item {
  text-align: center; }
  .stripe .img-stripe-item img {
    width: 70%;
    max-width: 100%; }

.stripe .testimonial, .portfolio-stripe .testimonial {
  text-align: center; }
  .stripe .testimonial blockquote, .portfolio-stripe .testimonial blockquote {
    width: 85%;
    margin: 40px auto;
    font-size: 36px; }
    .stripe .testimonial blockquote p, .portfolio-stripe .testimonial blockquote p {
      quotes: "\201C" "\201D" "\2018" "\2019"; }
      .stripe .testimonial blockquote p:before, .portfolio-stripe .testimonial blockquote p:before {
        content: open-quote; }
      .stripe .testimonial blockquote p:after, .portfolio-stripe .testimonial blockquote p:after {
        content: close-quote; }
  .stripe .testimonial cite, .portfolio-stripe .testimonial cite {
    font-style: italic; }
    .stripe .testimonial cite span, .portfolio-stripe .testimonial cite span {
      display: block;
      font-size: 20px; }

.related-projects {
  padding: 50px 0;
  font-size: 0;
  text-align: center; }
  .related-projects header {
    font-size: 30px;
    border-bottom: 1px solid #1d1d1d;
    margin-bottom: 30px;
    text-align: left; }
  .related-projects .related-grid .related-project {
    width: 30%; }
    .related-projects .related-grid .related-project:nth-child(n) {
      margin-bottom: 5%;
      margin-right: 5%; }
    .related-projects .related-grid .related-project:nth-child(3n) {
      margin-right: 0;
      margin-bottom: 0; }
    .related-projects .related-grid .related-project.last {
      margin-right: 0; }
  .related-projects .related-grid.related-count-1 .related-project {
    width: 100%; }
    .related-projects .related-grid.related-count-1 .related-project:nth-child(n) {
      margin-bottom: 5%;
      margin-right: 5%; }
    .related-projects .related-grid.related-count-1 .related-project:nth-child(1n) {
      margin-right: 0;
      margin-bottom: 0; }
    .related-projects .related-grid.related-count-1 .related-project.last {
      margin-right: 0; }
  .related-projects .related-grid.related-count-2 .related-project {
    width: 47.5%; }
    .related-projects .related-grid.related-count-2 .related-project:nth-child(n) {
      margin-bottom: 5%;
      margin-right: 5%; }
    .related-projects .related-grid.related-count-2 .related-project:nth-child(2n) {
      margin-right: 0;
      margin-bottom: 0; }
    .related-projects .related-grid.related-count-2 .related-project.last {
      margin-right: 0; }
  .related-projects .related-grid .related-project {
    float: left; }
  @media only screen and (max-width: 885px) {
    .related-projects .related-grid .related-project {
      width: 48.5%; }
      .related-projects .related-grid .related-project:nth-child(n) {
        margin-bottom: 3%;
        margin-right: 3%; }
      .related-projects .related-grid .related-project:nth-child(2n) {
        margin-right: 0;
        margin-bottom: 0; }
      .related-projects .related-grid .related-project.last {
        margin-right: 0; }
    .related-projects .related-grid.related-count-1 .related-project {
      width: 100%; }
      .related-projects .related-grid.related-count-1 .related-project:nth-child(n) {
        margin-bottom: 3%;
        margin-right: 3%; }
      .related-projects .related-grid.related-count-1 .related-project:nth-child(1n) {
        margin-right: 0;
        margin-bottom: 0; }
      .related-projects .related-grid.related-count-1 .related-project.last {
        margin-right: 0; } }
  @media only screen and (max-width: 480px) {
    .related-projects .related-grid .related-project {
      width: 100%;
      float: none;
      margin-bottom: 10px !important; } }
  .related-projects .related-project {
    display: block;
    font-size: 16px;
    text-align: center; }
    .related-projects .related-project img {
      width: 100%; }
    .related-projects .related-project .title {
      text-align: left;
      color: #1d1d1d;
      font-size: 18px; }

.job-posting-list {
  margin-top: 30px; }
  .job-posting-list .job-posting {
    margin-bottom: 30px; }
  .job-posting-list header {
    font-size: 24px;
    margin-bottom: 5px; }
    .job-posting-list header a {
      color: #1d1d1d; }

.body {
  position: relative;
  z-index: 0; }

.mobile-navicon-wrap {
  position: absolute;
  right: 0;
  height: 100%;
  width: 80px;
  top: 0;
  border-left: 1px solid #1d1d1d;
  z-index: 1;
  display: none;
  cursor: pointer; }
  @media only screen and (max-width: 885px) {
    .mobile-navicon-wrap {
      display: block; } }
  .mobile-navicon-wrap .navicon {
    width: 33px;
    height: 5px;
    background: #0079c2;
    margin: 0 auto;
    top: 43.5%;
    position: relative; }
    .mobile-navicon-wrap .navicon:before, .mobile-navicon-wrap .navicon:after {
      display: block;
      content: "";
      width: 33px;
      height: 5px;
      background: #0079c2;
      position: absolute;
      z-index: 30;
      transition: transform 200ms; }
    .mobile-navicon-wrap .navicon:after {
      top: 10px; }
    .mobile-navicon-wrap .navicon:before {
      top: -10px; }

.mobile-nav {
  position: fixed;
  z-index: 600;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  display: none;
  opacity: 0;
  transition: opacity 500ms;
  overflow: scroll;
  text-align: center; }
  .mobile-nav > .container {
    height: 75px; }
  .mobile-nav .close-wrap {
    height: 100%; }
  .mobile-nav .close {
    width: 33px;
    height: 5px;
    background: #0079c2;
    top: 32px;
    right: 22px;
    position: absolute;
    background: none; }
    .mobile-nav .close:before, .mobile-nav .close:after {
      display: block;
      content: "";
      width: 33px;
      height: 5px;
      background: #0079c2;
      position: absolute;
      z-index: 30;
      transition: transform 200ms; }
    .mobile-nav .close:after {
      top: 0;
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
      background: #0079c2; }
    .mobile-nav .close:before {
      top: 0;
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
      background: #0079c2; }
  .mobile-nav.open {
    opacity: 1;
    display: block; }
    @media only screen and (min-width: 885px) {
      .mobile-nav.open {
        display: none; } }
  .mobile-nav ul {
    padding: 0; }
  .mobile-nav li {
    list-style: none; }
    .mobile-nav li.active {
      background: #00598f;
      padding-bottom: 5px; }
      .mobile-nav li.active a {
        color: #fff; }
      .mobile-nav li.active > a {
        background: #0079c2; }
  .mobile-nav a {
    padding: 10px 5%;
    display: block;
    color: #1d1d1d;
    text-transform: uppercase;
    font-size: 30px;
    cursor: pointer; }
    .mobile-nav a:hover, .mobile-nav a.active {
      background: #0079c2;
      color: #fff; }
  .mobile-nav ul ul {
    display: none; }
  .mobile-nav ul ul li a {
    text-transform: none;
    font-size: 20px; }
  .mobile-nav ul li ul li.active {
    background: #004976; }
    .mobile-nav ul li ul li.active a:hover, .mobile-nav ul li ul li.active a.active {
      background: #00395c; }
  .mobile-nav ul ul ul li a {
    font-size: 16px;
    color: #e4791b !important;
    padding: 10px 0; }
  .mobile-nav ul > li > ul > li.active > a {
    background: none; }

.support-sidebar > ul {
  margin: 0;
  padding: 0; }
  .support-sidebar > ul li {
    list-style: none;
    margin-bottom: 5px; }
    .support-sidebar > ul li ul {
      padding-left: 15px;
      margin: 0; }
    .support-sidebar > ul li a {
      text-transform: uppercase; }
      .support-sidebar > ul li a.active {
        color: #0079c2; }

.support-sidebar ul ul {
  display: none; }

.support-sidebar li.active > ul {
  display: block; }

.solid-header {
  background: #0079c2;
  padding: 70px 0;
  color: #fff;
  text-align: center; }
  @media only screen and (max-width: 885px) {
    .solid-header {
      padding: 40px 0 20px; } }
  .solid-header h1 {
    font-size: 66px;
    margin-bottom: 10px;
    line-height: 1; }
    @media only screen and (max-width: 885px) {
      .solid-header h1 {
        font-size: 12vw; } }
  .solid-header p {
    font-size: 22px; }
    @media only screen and (max-width: 885px) {
      .solid-header p {
        font-size: 5vw; } }

.left-align-header {
  text-align: left; }

.portfolio-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 2%; }
  .portfolio-grid .portfolio-project {
    width: 32%;
    height: 300px; }
    .portfolio-grid .portfolio-project:nth-child(n) {
      margin-bottom: 2%;
      margin-right: 2%; }
    .portfolio-grid .portfolio-project:nth-child(3n) {
      margin-right: 0;
      margin-bottom: 0; }
    .portfolio-grid .portfolio-project.last {
      margin-right: 0; }
    @media only screen and (max-width: 1261px) {
      .portfolio-grid .portfolio-project.portfolio-project {
        width: 49%; }
        .portfolio-grid .portfolio-project.portfolio-project:nth-child(n) {
          margin-bottom: 2%;
          margin-right: 2%; }
        .portfolio-grid .portfolio-project.portfolio-project:nth-child(2n) {
          margin-right: 0;
          margin-bottom: 0; }
        .portfolio-grid .portfolio-project.portfolio-project.last {
          margin-right: 0; } }
    @media only screen and (max-width: 885px) {
      .portfolio-grid .portfolio-project.portfolio-project {
        width: 100%; }
        .portfolio-grid .portfolio-project.portfolio-project:nth-child(n) {
          margin-bottom: 2%;
          margin-right: 2%; }
        .portfolio-grid .portfolio-project.portfolio-project:nth-child(1n) {
          margin-right: 0;
          margin-bottom: 0; }
        .portfolio-grid .portfolio-project.portfolio-project.last {
          margin-right: 0; }
        .portfolio-grid .portfolio-project.portfolio-project.portfolio-project {
          margin-bottom: 2%; } }

.logo-hero {
  text-align: center;
  height: 500px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-size: cover;
  padding: 40px 0; }
  @media only screen and (max-width: 885px) {
    .logo-hero {
      min-height: 300px; } }
  .logo-hero svg {
    width: 50%;
    max-height: 500px;
    height: auto; }

.portfolio-details {
  padding: 40px 0;
  text-align: center; }
  .portfolio-details .portfolio-work-title {
    text-transform: uppercase;
    font-size: 14px;
    font-style: italic;
    color: #58585a; }

.portfolio-services {
  padding: 15px 0 30px;
  position: relative; }
  .portfolio-services:after {
    content: '';
    width: 100px;
    height: 4px;
    background: #bebec0;
    bottom: 0;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
  .portfolio-services a {
    padding: 0 10px;
    text-transform: uppercase;
    color: #000; }

.portfolio-stripe .stripe-heading {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 40px; }
  .portfolio-stripe .stripe-heading:before, .portfolio-stripe .stripe-heading:after {
    content: '';
    height: 2px;
    -ms-flex: 1;
        flex: 1;
    background: #000; }
  .portfolio-stripe .stripe-heading span {
    margin: 0 15px; }

.portfolio-stripe img {
  width: 100%; }

.portfolio-stripe .stripe-contents {
  display: -ms-flexbox;
  display: flex; }
  @media only screen and (max-width: 885px) {
    .portfolio-stripe .stripe-contents {
      display: block; } }
  .portfolio-stripe .stripe-contents > * {
    -ms-flex: 1;
        flex: 1;
    padding: 0 50px; }
    @media only screen and (max-width: 885px) {
      .portfolio-stripe .stripe-contents > * {
        margin-bottom: 40px;
        padding: 0; } }
  .portfolio-stripe .stripe-contents.full-width > * {
    padding: 0; }
  .portfolio-stripe .stripe-contents.full-width .portfolio__heading-text > div {
    padding: 0 50px;
    box-sizing: border-box; }

.portfolio-stripe .testimonial img {
  width: auto; }

.portfolio-stripe header {
  font-size: 40px;
  margin-bottom: 10px; }

.portfolio-stripe .has-background {
  color: #fff; }

.call-to-action {
  text-align: center;
  padding: 50px 0;
  text-transform: uppercase; }
  .call-to-action a {
    font-size: 30px; }

.portfolio__bold-image header {
  margin-bottom: 0;
  font-size: 60px;
  font-weight: bold;
  line-height: 1; }

.homepage-portfolio {
  padding: 40px 0 40px;
  width: calc(100% - 120px);
  margin: 0 auto; }
  @media only screen and (max-width: 885px) {
    .homepage-portfolio {
      width: 100%; } }
  .homepage-portfolio > header {
    text-align: center;
    text-transform: uppercase;
    color: #0079c2;
    font-size: 38px;
    margin-bottom: 20px;
    line-height: 1; }
  .homepage-portfolio .portfolio-grid a {
    height: 400px;
    margin-right: 40px;
    -ms-flex: 1;
        flex: 1; }
    @media only screen and (max-width: 885px) {
      .homepage-portfolio .portfolio-grid a {
        margin-right: 0;
        margin-bottom: 40px; } }
    .homepage-portfolio .portfolio-grid a:last-child {
      margin-right: 0;
      margin-bottom: 0; }
    @media only screen and (max-width: 885px) {
      .homepage-portfolio .portfolio-grid a {
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%; } }
  .homepage-portfolio .view-more {
    display: block;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 0; }

.rf-paragraph {
  margin: 0 0 18px 0;
  /* IMPORTANT: Do not change .no_border class name or remove the definition.
          This class is added to paragraph images by the CMS when a user
          chooses to disable the border on the image.
    */ }
  .blog-posts .rf-paragraph blockquote.quote {
    font-size: 1.5em;
    margin: 3em 1.5em;
    position: relative; }
    .blog-posts .rf-paragraph blockquote.quote:before {
      content: '“';
      font-size: 3em;
      font-weight: bold;
      position: absolute;
      left: -.5em;
      top: -.35em; }
    .blog-posts .rf-paragraph blockquote.quote cite.cite {
      display: block;
      margin-top: 1em;
      text-align: right;
      font-weight: bold;
      font-size: .75em; }
      .blog-posts .rf-paragraph blockquote.quote cite.cite:before {
        content: '– '; }
  .rf-paragraph .photoset img {
    float: left;
    margin: 0 15px 15px 0; }
  .rf-paragraph .image {
    margin-bottom: 40px;
    text-align: center; }
    .rf-paragraph .image img {
      max-width: 100%;
      height: auto; }
    @media only screen and (max-width: 885px) {
      .rf-paragraph .image {
        text-align: center; } }
    .rf-paragraph .image.rf-left {
      float: left;
      margin: 0 24px 6px 0; }
      @media only screen and (max-width: 885px) {
        .rf-paragraph .image.rf-left {
          float: none;
          margin-right: 0; } }
    .rf-paragraph .image.rf-right {
      float: right;
      margin: 0 0 6px 12px; }
      @media only screen and (max-width: 885px) {
        .rf-paragraph .image.rf-right {
          float: none;
          margin-left: 0; } }
  .rf-paragraph img {
    border: none;
    max-width: 100%; }
  .rf-paragraph .no_border img {
    border: none; }
  .rf-paragraph iframe {
    width: 100%; }
  .rf-paragraph .rf-slideshow {
    margin-bottom: 30px;
    text-align: center; }
    .rf-paragraph .rf-slideshow img {
      left: 0px;
      right: 0px;
      margin: 0 auto; }

/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative; }

.Select,
.Select div,
.Select input,
.Select span {
  box-sizing: border-box; }

.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35; }

.Select-control {
  background-color: #fff;
  border-bottom: 2px solid #0079c2;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%; }

.Select-control:hover {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06); }

.Select-control .Select-input:focus {
  outline: none; }

.is-searchable.is-open > .Select-control {
  cursor: text; }

.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9; }

.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text; }

.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none; }

.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline; }

.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle; }

.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 14px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none; }

.is-focused .Select-input > input {
  cursor: text; }

.has-value.is-pseudo-focused .Select-input {
  opacity: 0; }

.Select-control:not(.is-searchable) > .Select-input {
  outline: none; }

.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px; }

.Select-loading {
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle; }

.Select-clear-zone {
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px; }

.Select-clear-zone:hover {
  color: #D0021B; }

.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1; }

.Select--multi .Select-clear-zone {
  width: 17px; }

.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px; }

.is-open .Select-arrow,
.Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666; }

.Select--multi .Select-multi-value-wrapper {
  display: inline-block; }

.Select .Select-aria-only {
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden; }

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

.Select-menu-outer {
  border: 2px solid #0079c2;
  background: #fff;
  position: absolute;
  top: 100%;
  width: 100%;
  z-index: 1; }

.Select-menu {
  max-height: 300px;
  overflow-y: auto;
  text-align: left; }

.Select-option {
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px; }

.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px; }

.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333; }

.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  color: #333; }

.Select-option.is-disabled {
  color: #cccccc;
  cursor: default; }

.Select-noresults {
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px; }

.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0; }

.Select--multi.has-value .Select-input {
  margin-left: 5px; }

.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, 0.24);
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top; }

.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle; }

.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px; }

.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none; }

.Select--multi a.Select-value-label:hover {
  text-decoration: underline; }

.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px; }

.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, 0.08);
  color: #0071e6; }

.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.24); }

.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333; }

.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3; }

.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc; }

@keyframes Select-animation-spin {
  to {
    transform: rotate(1turn); } }

.portfolio-project {
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  position: relative;
  background-size: cover;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  overflow: hidden; }
  .portfolio-project .logo {
    max-width: 80%;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
    .portfolio-project .logo .svg-logo {
      max-height: 80%;
      width: 100%; }
  .portfolio-project .details {
    -ms-transform: translateY(100%);
        transform: translateY(100%);
    transition: transform 300ms;
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px 30px;
    background: rgba(29, 29, 29, 0.9);
    text-align: left;
    color: #fff;
    box-sizing: border-box; }
    .portfolio-project .details a {
      color: #fff; }
    .portfolio-project .details .title {
      text-transform: uppercase;
      font-size: 24px; }
    .portfolio-project .details .service-links {
      text-transform: uppercase;
      font-size: 14px; }
      .portfolio-project .details .service-links .pipe {
        margin: 5px; }
    .portfolio-project .details .view-link {
      margin-top: 10px;
      display: block;
      text-transform: uppercase;
      color: #e4791b; }
  .portfolio-project:hover .details {
    -ms-transform: translateY(0);
        transform: translateY(0); }
/*# sourceMappingURL=style.css.map */