/**
 * Owl Carousel v2.1.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
.owl-carousel,
.owl-carousel .owl-item {
	-webkit-tap-highlight-color: transparent;
	position: relative;
}
.owl-carousel {
	display: none;
	width: 100%;
	z-index: 1;
}
.owl-carousel .owl-stage {
	position: relative;
	-ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.owl-carousel .owl-stage-outer {
	position: relative;
	overflow: hidden;
	-webkit-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
	min-height: 1px;
	float: left;
	-webkit-backface-visibility: hidden;
	-webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
	display: block;
	width: 100%;
	-webkit-transform-style: preserve-3d;
}
.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
	display: none;
}
.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
	cursor: pointer;
	cursor: hand;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.owl-carousel.owl-loaded {
	display: block;
}
.owl-carousel.owl-loading {
	opacity: 0;
	display: block;
}
.owl-carousel.owl-hidden {
	opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
	display: none;
}
.owl-carousel.owl-drag .owl-item {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.owl-carousel.owl-grab {
	cursor: move;
	cursor: -webkit-grab;
	cursor: grab;
}
.owl-carousel.owl-rtl {
	direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
	float: right;
}
.no-js .owl-carousel {
	display: block;
}
.owl-carousel .animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
	z-index: 0;
}
.owl-carousel .owl-animated-out {
	z-index: 1;
}
.owl-carousel .fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
.owl-height {
	transition: height 0.5s ease-in-out;
}
.owl-carousel .owl-item .owl-lazy {
	opacity: 0;
	transition: opacity 0.4s ease;
}
.owl-carousel .owl-item img.owl-lazy {
	transform-style: preserve-3d;
}
.owl-carousel .owl-video-wrapper {
	position: relative;
	height: 100%;
	background: #000;
}
.owl-carousel .owl-video-play-icon {
	position: absolute;
	height: 80px;
	width: 80px;
	left: 50%;
	top: 50%;
	margin-left: -40px;
	margin-top: -40px;
	background: url(owl.video.play.png) no-repeat;
	cursor: pointer;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	transition: transform 0.1s ease;
}
.owl-carousel .owl-video-play-icon:hover {
	transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
	display: none;
}
.owl-carousel .owl-video-tn {
	opacity: 0;
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 0.4s ease;
}
.owl-carousel .owl-video-frame {
	position: relative;
	z-index: 1;
	height: 100%;
	width: 100%;
}
@charset "UTF-8";
/* import css normalise/reset library */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
          animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* stylelint-disable */
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* stylelint-enable */
/* stylelint-disable */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after {
  content: "";
  content: none;
}

q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* stylelint-enable */
/* import common */
/* Bootstrap media queries
/* Breakpoint min/max are set in the _vars.scss file

/* Mixin: Media Min Width
Usage:
.foo {
	@include media-breakpoint-up(sm) {
		color: #f00;
	}
}

*/
/* Mixin: Media Max Width
Usage:
.foo {
	@include media-breakpoint-down(md) {
		color: #f00;
	}
}
*/
/* Mixin: Media Single Breakpoint
Usage:
.foo {
	@include media-breakpoint-only(md) {
		color: #f00;
	}
}
*/
/* Mixin: Media Between Breakpoints
Usage:
.foo {
	@include media-breakpoint-between(sm, lg) {
		color: #f00;
	}
}
*/
/* Mixin for font declaration syntax
Usage: @include declare-font-face('Gotham', 'gotham');
*/
/* Mixin: Font size
Usage: 	@include font-size(14);
		@include font-size(32px);
*/
/* Mixin: Font face
Usage: @include font-face('gotham', '/fonts/gotham');
*/
/* Mixin: Responsive font sizing
Usage:
// Sets every breakpoint to have a different font size
.foo {
	@include resp-font-size(22, 24, 28, 36, 48);
}

// Sets xs, sm and md to have different font sizes,
// lg and xl will then inherit the md size
.bar {
	@include resp-font-size(18, 20, 24)
}
*/
/* stylelint-disable */
/* stylelint-enable */
/* Mixin: Container breakpoints
Usage:
.container {
	@include make-container();
}
*/
/* Mixin: Grid creation
Usage:
.columns {
	@include make-grid();
}
Todo:
Better scalability
*/
/* Mixin: Hiding helper
Usage:
.hidden {
	@include hidden();
}
*/
/* Mixin: Text align helper
Usage:
.text {
	@include text-align();
}
*/
/* Placeholders */
/* Placeholder: Clearfix
Usage:
.foo {
	@extend %clearfix;
}
*/
.ico-arrow-blue {
  background: url(/images/sprite/ico-arrow-blue.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 11px;
  height: 17px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-arrow-dark {
  background: url(/images/sprite/ico-arrow-dark.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 12px;
  height: 19px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-arrow-grey {
  background: url(/images/sprite/ico-arrow-grey.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 7px;
  height: 10px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-arrow-light {
  background: url(/images/sprite/ico-arrow-light.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 12px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-arrow-small {
  background: url(/images/sprite/ico-arrow-small.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 10px;
  height: 11px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-arrow-transparent {
  background: url(/images/sprite/ico-arrow-transparent.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 13px;
  height: 19px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-figure-1 {
  background: url(/images/sprite/ico-figure-1.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 28px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-figure-2 {
  background: url(/images/sprite/ico-figure-2.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 64px;
  height: 35px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-figure-3 {
  background: url(/images/sprite/ico-figure-3.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 65px;
  height: 26px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-figure-4 {
  background: url(/images/sprite/ico-figure-4.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 35px;
  height: 27px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-linkedin {
  background: url(/images/sprite/ico-linkedin.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 37px;
  height: 36px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-people {
  background: url(/images/sprite/ico-people.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 212px;
  height: 178px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-pin {
  background: url(/images/sprite/ico-pin.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 71px;
  height: 91px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.ico-twitter {
  background: url(/images/sprite/ico-twitter.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 37px;
  height: 37px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.logo-ab {
  background: url(/images/sprite/logo-ab.png) no-repeat 0 0;
  background-size: 100% 100%;
  width: 57px;
  height: 35px;
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .ico-arrow-blue {
    background: url(/images/sprite/ico-arrow-blue@2x.png) no-repeat 0 0;
    width: 11px;
    height: 17px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-arrow-dark {
    background: url(/images/sprite/ico-arrow-dark@2x.png) no-repeat 0 0;
    width: 12px;
    height: 19px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-arrow-grey {
    background: url(/images/sprite/ico-arrow-grey@2x.png) no-repeat 0 0;
    width: 7px;
    height: 10px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-arrow-light {
    background: url(/images/sprite/ico-arrow-light@2x.png) no-repeat 0 0;
    width: 12px;
    height: 18px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-arrow-small {
    background: url(/images/sprite/ico-arrow-small@2x.png) no-repeat 0 0;
    width: 10px;
    height: 11px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-arrow-transparent {
    background: url(/images/sprite/ico-arrow-transparent@2x.png) no-repeat 0 0;
    width: 13px;
    height: 19px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-figure-1 {
    background: url(/images/sprite/ico-figure-1@2x.png) no-repeat 0 0;
    width: 27px;
    height: 35px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-figure-2 {
    background: url(/images/sprite/ico-figure-2@2x.png) no-repeat 0 0;
    width: 64px;
    height: 34.5px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-figure-3 {
    background: url(/images/sprite/ico-figure-3@2x.png) no-repeat 0 0;
    width: 64.5px;
    height: 25.5px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-figure-4 {
    background: url(/images/sprite/ico-figure-4@2x.png) no-repeat 0 0;
    width: 34.5px;
    height: 26px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-linkedin {
    background: url(/images/sprite/ico-linkedin@2x.png) no-repeat 0 0;
    width: 37px;
    height: 36px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-people {
    background: url(/images/sprite/ico-people@2x.png) no-repeat 0 0;
    width: 212px;
    height: 178px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-pin {
    background: url(/images/sprite/ico-pin@2x.png) no-repeat 0 0;
    width: 71px;
    height: 91px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .ico-twitter {
    background: url(/images/sprite/ico-twitter@2x.png) no-repeat 0 0;
    width: 37px;
    height: 37px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .logo-ab {
    background: url(/images/sprite/logo-ab@2x.png) no-repeat 0 0;
    width: 57px;
    height: 35px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }

  .logo {
    background: url(/images/sprite/logo@2x.png) no-repeat 0 0;
    width: 160px;
    height: 17px;
    background-size: 100% 100%;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
  }
}
/* Sass Variables */
/* Breakpoints */
/* Container widths */
/* Font sizes */
/* Colours */
/* ------------------------------------------------------------ *\
	Variables
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Assets
\* ------------------------------------------------------------ */
/* import components */
.list--reset {
  margin: 0;
  padding: 0;
  list-style: none;
}
.list--inline {
  font-size: 0;
}
.list--inline > li {
  display: inline-block;
  font-size: 20px;
}
.list--inline > li.list__item--spaced {
  margin: 0 6px;
}
.list--inline > li.list__item--spaced-half {
  margin: 0 3px;
}
.list--inline > li.list__item--spaced-quarter {
  margin: 0 1.5px;
}
.list--inline > li.list__item--spaced-left {
  margin: 0 0 0 12px;
}
.list--inline > li.list__item--spaced-left-half {
  margin: 0 0 0 6px;
}
.list--inline > li.list__item--spaced-right {
  margin: 0 12px 0 0;
}
.list--inline > li.list__item--spaced-right-half {
  margin: 0 6px 0 0;
}
.list--flex {
  display: flex;
}
.list--flex > li {
  flex: 1 1 auto;
}
.list--options > li {
  width: 20%;
}
.list__tag {
  display: inline-block;
  text-decoration: none;
  padding: 7px;
  background: #222221;
  color: #fff;
  margin: 7px;
}
.list__tag--alt {
  background: #991870;
}

/* import modules */
.accordion {
  padding: 5rem 2rem 7rem;
}
.accordion > h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 100;
}
.accordion__item {
  overflow: hidden;
  position: relative;
  border-top: 1px solid #91979b;
  padding: 0.6rem 0;
}
.accordion__item:last-of-type {
  border-bottom: 1px solid #91979b;
}
.accordion__copy {
  width: 66%;
  display: inline-block;
}
.accordion__include, .accordion__image {
  width: 26%;
  display: inline-block;
  float: right;
}
.accordion__include img, .accordion__image img {
  float: none;
  width: 100%;
  margin: 0;
  max-width: unset;
}
.accordion__icon {
  position: absolute;
  left: 0;
  top: 0.9rem;
  height: 2rem;
  width: 2rem;
  z-index: 2;
  pointer-events: none;
}
.accordion__icon div {
  height: 0.2rem;
  width: 2rem;
  background: #91979b;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: ease 0.3s;
}
.accordion__icon div:last-of-type {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(90deg);
}
.accordion__toggle {
  color: #eb005b;
  text-decoration: none;
  padding: 0;
  background: #fff;
  display: block;
  z-index: 1;
  position: relative;
}
.accordion__toggle h3 {
  padding-left: 5rem;
}
.accordion__draw {
  padding: 0;
  padding-left: 5rem;
  overflow: hidden;
  height: 100%;
  position: relative;
  display: none;
  margin: 1rem 0 1.5rem;
}
.accordion__draw p {
  max-width: 900px;
}
.accordion--active .accordion__draw {
  max-height: 1000px;
}
.accordion--active .accordion__icon div:last-of-type {
  transform: rotate(180deg);
}
@media screen and (max-width: 880px) {
  .accordion__copy {
    width: 50%;
  }
  .accordion__include, .accordion__image {
    width: 42%;
  }
}
@media screen and (max-width: 740px) {
  .accordion__icon {
    top: 0.5rem;
  }
}
@media screen and (max-width: 590px) {
  .accordion__copy {
    width: 100%;
    display: inline-block;
  }
  .accordion__include, .accordion__image {
    width: 100%;
    max-width: 300px;
    margin-top: 2rem;
    display: inline-block;
    float: none;
  }
}

/* ------------------------------------------------------------ *\
	Actions
\* ------------------------------------------------------------ */
@media (max-width: 1023px) {
  .actions .col {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .actions .col {
    width: 100%;
  }
}

.action h4 {
  font-size: 28px;
}
.action__head {
  margin-bottom: 26px;
}
.action__body {
  display: block;
  font-size: 0;
  text-decoration: none;
}
.action__body .btn {
  margin: 0 11px 10px 0;
}
@media (max-width: 767px) {
  .action__body a {
    width: 100%;
    margin-right: 0;
  }
}

/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */
.shell {
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.shell::after {
  content: "";
  display: table;
  clear: both;
  line-height: 0;
}

/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}

html {
  tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
  max-width: 100%;
}

img,
iframe {
  border: 0 none;
}

img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

b,
strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

svg:not(:root) {
  overflow: hidden;
}

a,
button,
input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
input[type=image],
label[for] {
  cursor: pointer;
}

a[href^=tel],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
textarea,
a[href^=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

button,
select {
  text-transform: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

nav ul,
nav ol {
  list-style: none outside none;
}

@font-face {
  font-family: "AvantGarde";
  src: url("/fonts/AvantGardeITCbyBT-Medium.eot");
  src: url("/fonts/AvantGardeITCbyBT-Medium.eot?#iefix") format("embedded-opentype"), url("/fonts/AvantGardeITCbyBT-Medium.woff") format("woff"), url("/fonts/AvantGardeITCbyBT-Medium.ttf") format("truetype"), url("/fonts/AvantGardeITCbyBT-Medium.svg#AvantGardeITCbyBT-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Albert";
  src: url("/fonts/FSAlbert-Italic.eot");
  src: url("/fonts/FSAlbert-Italic.eot?#iefix") format("embedded-opentype"), url("/fonts/FSAlbert-Italic.woff") format("woff"), url("/fonts/FSAlbert-Italic.ttf") format("truetype"), url("/fonts/FSAlbert-Italic.svg#FSAlbert-Italic") format("svg");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Albert";
  src: url("/fonts/FSAlbert.eot");
  src: url("/fonts/FSAlbert.eot?#iefix") format("embedded-opentype"), url("/fonts/FSAlbert.woff") format("woff"), url("/fonts/FSAlbert.ttf") format("truetype"), url("/fonts/FSAlbert.svg#FSAlbert") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Akzidenz";
  src: url("/fonts/AkzidenzGroteskBE-Md.eot");
  src: url("/fonts/AkzidenzGroteskBE-Md.eot?#iefix") format("embedded-opentype"), url("/fonts/AkzidenzGroteskBE-Md.woff") format("woff"), url("/fonts/AkzidenzGroteskBE-Md.ttf") format("truetype"), url("/fonts/AkzidenzGroteskBE-Md.svg#AkzidenzGroteskBE-Md") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Albert";
  src: url("/fonts/FSAlbert-Light.eot");
  src: url("/fonts/FSAlbert-Light.eot?#iefix") format("embedded-opentype"), url("/fonts/FSAlbert-Light.woff") format("woff"), url("/fonts/FSAlbert-Light.ttf") format("truetype"), url("/fonts/FSAlbert-Light.svg#FSAlbert-Light") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Albert";
  src: url("/fonts/FSAlbert-Bold.eot");
  src: url("/fonts/FSAlbert-Bold.eot?#iefix") format("embedded-opentype"), url("/fonts/FSAlbert-Bold.woff") format("woff"), url("/fonts/FSAlbert-Bold.ttf") format("truetype"), url("/fonts/FSAlbert-Bold.svg#FSAlbert-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
}
/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */
body {
  min-width: 320px;
  background: #fff;
  font-family: "Albert", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  font-weight: 900;
}

h1 {
  font-size: 56px;
  font-family: "AvantGarde", sans-serif;
  line-height: 1.1;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 21px;
}

h6 {
  font-size: 20px;
}

p,
ul,
ol,
dl,
table,
blockquote {
  margin-bottom: 10px;
  margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 21px;
  }

  h5 {
    font-size: 19px;
  }

  h6 {
    font-size: 17px;
  }
}
/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */
body.header--hide .header {
  top: -5.6rem;
  position: fixed;
  width: 100%;
}
body.header--show .header {
  position: fixed;
  width: 100%;
  z-index: 200;
}

.header {
  position: absolute;
  width: 100%;
  background: #fbfbfb;
  transition: 0.4s ease;
  z-index: 200;
  top: 0;
  padding: 0 2rem;
}
.header__inner {
  float: left;
  margin-top: 10px;
  font-size: 0;
}
.header .nav {
  float: right;
}
.header .nav-dropdown {
  z-index: 102;
  display: none;
  align-items: baseline;
  padding: 1rem;
}
@media (min-width: 1023px) {
  .header .nav-dropdown {
    display: flex;
  }
}
.header .nav-dropdown strong {
  color: #fff;
  opacity: 0.6;
  font-size: 20px;
}
.header .nav-dropdown a {
  font-size: 17px;
}
.header .nav-dropdown__small a {
  font-size: 15px;
  padding-left: 10px;
}
.header .nav-dropdown--thumbnails img {
  display: none;
}
@media (min-width: 1023px) {
  .header .nav-dropdown--right-align {
    left: auto;
    right: 0;
  }
  .header .nav-dropdown--thumbnails {
    width: calc(630px + 3rem);
    background: #2F2524 !important;
    right: -106px;
  }
  .header .nav-dropdown--thumbnails ul {
    display: flex;
    width: 100%;
    gap: 1rem;
  }
  .header .nav-dropdown--thumbnails li {
    margin: 0;
  }
  .header .nav-dropdown--thumbnails img {
    min-width: 150px;
    margin: 0 0 0.5rem;
    display: block;
  }
}
.header .logo {
  display: inline;
  font-weight: 600;
  color: #37424a;
}
.header .logo a {
  text-decoration: none;
}
.header__slogan {
  display: inline;
  vertical-align: middle;
  font-family: "AvantGarde", sans-serif;
  font-size: 16px;
  color: #888;
  letter-spacing: -0.017em;
}
.header__slogan p {
  display: inline;
}
.header__slogan svg {
  width: 100%;
  max-height: 16px;
}
@media screen and (max-width: 440px) {
  .header__slogan .pathtwo {
    display: none;
  }
}
@media screen and (max-width: 1120px) {
  .header .navHide {
    display: none;
  }
}
@media screen and (max-width: 1020px) {
  .header .navHide {
    display: block;
  }
  .header .nav > ul > li > a {
    padding: 8px 10px 7px 2rem;
  }
  .header .nav-dropdown {
    padding: 1rem 2rem;
  }
  .header .nav-dropdown > ul {
    margin-bottom: 1rem;
  }
}
@media (max-width: 1023px) {
  .header {
    padding: 0.8rem 2rem;
  }
  .header__inner {
    margin-top: 0;
  }
  .header .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    background: #fff;
    transform: translateX(-150%);
    transition: transform 0.4s;
    overflow: auto;
  }
  .header .nav.open {
    transform: translateX(0%);
  }
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */
.nav {
  font-size: 16px;
  color: #888;
  letter-spacing: -0.021em;
}
.nav--active {
  color: #ff2669;
}
.nav--active:hover, .nav--active--hover {
  color: #fff;
}

.nav > ul {
  position: relative;
  list-style-type: none;
}

.nav > ul::after {
  content: "";
  display: table;
  clear: both;
  line-height: 0;
}

.nav > ul > li {
  float: left;
}
@media (max-width: 1023px) {
  .nav > ul > li {
    float: none;
  }
}

.nav > ul > li:hover,
.nav > ul > .current {
  background: linear-gradient(to right, #ff197b, #ff493a);
  color: #fff;
}

.nav > ul > .login {
  background-color: #36B263;
  color: #fff;
  display: none;
}

.nav > ul > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav > ul > li + li {
  margin-left: 3px;
}
@media (max-width: 1023px) {
  .nav > ul > li + li {
    margin-left: 0;
  }
}

.nav > ul > li > a {
  display: block;
  padding: 8px 10px 7px;
  text-decoration: none;
}

.nav > ul > li > a span {
  vertical-align: middle;
}

.nav > ul > li > a span + i {
  margin-left: 12px;
}

/* ------------------------------------------------------------ *\
	Nav Dropdown
\* ------------------------------------------------------------ */
.nav-dropdown {
  padding-top: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #2f2524, #443e42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  width: 100vw;
}
@media (max-width: 1023px) {
  .nav-dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}
.nav-dropdown ul {
  margin-bottom: 0;
  width: 24%;
  max-width: 260px;
  margin-right: 1rem;
}
@media screen and (max-width: 1024px) {
  .nav-dropdown ul {
    width: 100%;
  }
}
.nav-dropdown li + li {
  margin-top: 4px;
}
.nav-dropdown a {
  font-family: "Akzidenze", sans-serif;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-dropdown a:hover {
  color: #fff;
}

.nav .has-dropdown,
.nav .has-dropdown > a {
  position: relative;
}

.has-dropdown__arrow {
  width: 10px;
  height: 10px;
  position: absolute;
  right: calc(2rem + 10px);
  top: 50%;
  border-right: 2px solid #2f2524;
  border-bottom: 2px solid #2f2524;
  transform: translateY(-6px) rotate(45deg);
}
@media screen and (min-width: 1023px) {
  .has-dropdown__arrow {
    display: none;
  }
}

.has-dropdown > a.clicked .has-dropdown__arrow {
  transition: opacity 0.75s ease;
  opacity: 0;
}

/* ------------------------------------------------------------ *\
	Nav Btn
\* ------------------------------------------------------------ */
.nav-btn {
  display: none;
  vertical-align: middle;
  position: absolute;
  top: 14px;
  right: 2rem;
  height: 18px;
  width: 30px;
  transform: rotate(0deg);
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .nav-btn {
    display: inline-block;
  }
}
.nav-btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #ff197b, #ff493a);
  opacity: 1;
  transform: rotate(0deg);
  transition: all 0.3s;
}
.nav-btn span:nth-child(1) {
  top: 0;
}
.nav-btn span:nth-child(2) {
  top: 7px;
}
.nav-btn span:nth-child(3) {
  top: 14px;
}

.nav-btn.active span:nth-child(1) {
  top: 7px;
  transform: rotate(135deg);
}
.nav-btn.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.nav-btn.active span:nth-child(3) {
  top: 7px;
  transform: rotate(-135deg);
}

/* ------------------------------------------------------------ *\
	Intro
\* ------------------------------------------------------------ */
.intro {
  position: relative;
  z-index: 45;
  padding: 3.5rem 2rem 2rem;
  background: linear-gradient(to right, #ff197b, #ff493a);
  color: #fff;
  overflow: hidden;
}
.intro h1 {
  margin-bottom: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.intro p {
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.intro__icon {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
@media screen and (max-width: 510px) {
  .intro__icon {
    position: relative;
    bottom: 0;
    right: 0;
  }
}
.intro__vbLogo {
  max-width: 490px;
}
.intro__content {
  position: relative;
  z-index: 45;
  max-width: 670px;
}
.intro__logo {
  max-width: 70px;
  display: block;
  margin-bottom: 40px !important;
}
.intro__logo img {
  width: 100%;
}
.intro__actions {
  margin-bottom: -10px;
  font-size: 0;
}
.intro__actions a {
  margin-bottom: 10px;
}
.intro__actions a + a {
  margin-left: 8px;
}
.intro__sub-nav {
  position: absolute;
  top: 4rem;
  right: 2rem;
  z-index: 46;
}
.intro__sub-nav .btn {
  white-space: nowrap;
}
@media screen and (max-width: 740px) {
  .intro__sub-nav {
    position: relative;
    top: unset;
    right: unset;
  }
}
@media screen and (max-width: 480px) {
  .intro__sub-nav .btn {
    display: block;
    margin: 1rem 0 0 0;
    padding: 0;
  }
}
.intro__item {
  text-align: right;
  padding: 0.8rem 0 0.8rem 0.8rem;
  font-size: 1rem;
  text-decoration: none;
  transition: ease 0.4s;
}
.intro__item:hover {
  opacity: 0.7;
}
.intro__colorOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.intro .logo-ab {
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .intro p {
    margin-bottom: 30px;
  }
  .intro a {
    margin: 0 8px 10px 0;
  }
  .intro a + a {
    margin-left: 0;
  }
}
.intro::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-style: solid;
  border-width: 514px 0 0 653px;
  border-color: transparent transparent transparent #fff;
  opacity: 0.1;
}

/* ------------------------------------------------------------ *\
	Btn
\* ------------------------------------------------------------ */
.btn {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ------------------------------------------------------------ *\
	Btn Default
\* ------------------------------------------------------------ */
.btn--default {
  position: relative;
  min-width: 147px;
  height: 38px;
  padding: 0 22px 0 7px;
  border: 0;
  border-radius: 0;
  line-height: 38px;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  text-align: left;
}

/* ------------------------------------------------------------ *\
	Btn Light
\* ------------------------------------------------------------ */
.btn--light {
  background: rgba(255, 255, 255, 0.71);
  transition: color 0.3s, background 0.3s;
}
.btn--light:hover {
  background: rgba(113, 53, 67, 0.71);
  color: #fff;
}

/* ------------------------------------------------------------ *\
	Btn Gradient
\* ------------------------------------------------------------ */
.btn--gradient {
  background: linear-gradient(to right, #ff197b, #ff493a);
  color: #fff;
  transition: opacity 0.3s;
}
.btn--gradient:hover {
  opacity: 0.85;
}

/* ------------------------------------------------------------ *\
	Btn Large
\* ------------------------------------------------------------ */
.btn--large {
  min-width: 252px;
  height: 46px;
  padding: 0 7px;
  line-height: 46px;
}
.btn--large i {
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* ------------------------------------------------------------ *\
	Btn Thin
\* ------------------------------------------------------------ */
.btn--thin {
  min-width: 214px;
  padding: 0 10px;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
}
.btn--thin i {
  position: absolute;
  right: 9px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* ------------------------------------------------------------ *\
	Btn Dark
\* ------------------------------------------------------------ */
.btn--dark {
  background: #222221;
  color: #fff;
  transition: opacity 0.3s;
}
.btn--dark:hover {
  opacity: 0.8;
}

/* ------------------------------------------------------------ *\
	Btn Darken
\* ------------------------------------------------------------ */
.btn--darken {
  background: #535e74;
  color: #fff;
  transition: opacity 0.3s;
}
.btn--darken:hover {
  opacity: 0.8;
}

/* ------------------------------------------------------------ *\
	Btn Higher
\* ------------------------------------------------------------ */
.btn--high {
  height: 50px;
  padding: 0 22px 0 11px;
  line-height: 50px;
}

/* ------------------------------------------------------------ *\
	Btn Purple
\* ------------------------------------------------------------ */
.btn--purple {
  background: #b70073;
  color: #fff;
  transition: opacity 0.3s;
}
.btn--purple:hover {
  opacity: 0.8;
}

.btn--border {
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  padding: 0.6rem 1.2rem;
  display: inline;
}
.btn--border:hover {
  color: #ff3a7a;
  border: 1px solid transparent;
  background: #fff;
}

.grad__button {
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #ff197b, #ff493a);
  background-repeat: no-repeat;
  transition: ease 0.4s;
  text-align: left;
  position: relative;
  display: inline-block;
}
.grad__button a {
  padding: 1rem 4rem 1rem 1rem;
  display: block;
  text-decoration: none;
}
.grad__button::after {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background-image: url(/uploads/images/icon-solid-arrow-right.svg);
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  transition: ease 0.3s;
}
.grad__button:hover::after {
  right: 0.8rem;
}

/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Section Default
\* ------------------------------------------------------------ */
.section--default {
  padding: 153px 0 180px;
}
@media (max-width: 1023px) {
  .section--default {
    padding: 50px 0;
  }
}

/* ------------------------------------------------------------ *\
	Section Light
\* ------------------------------------------------------------ */
.section--light {
  background: #eeeeee;
}

/* ------------------------------------------------------------ *\
	Section Dark
\* ------------------------------------------------------------ */
.section--dark {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}

/* ------------------------------------------------------------ *\
	Section Statistics
\* ------------------------------------------------------------ */
.section--statistics {
  padding: 62px 0 94px;
}
@media (max-width: 1023px) {
  .section--statistics {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .section--statistics {
    padding: 20px 0;
  }
}

/* ------------------------------------------------------------ *\
	Section Contacts
\* ------------------------------------------------------------ */
.section--contacts {
  padding: 30px 0 21px;
}

/* ------------------------------------------------------------ *\
	Section Large
\* ------------------------------------------------------------ */
.section--large {
  padding: 26px 0;
}

/* ------------------------------------------------------------ *\
	Section Elements
\* ------------------------------------------------------------ */
.section--elements {
  padding: 26px 0;
}
.section--elements .section__head {
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .section--elements .section__head {
    margin-bottom: 20px;
  }
}
@media (max-width: 1023px) {
  .section--elements {
    padding: 26px 0;
  }
}
.section--elements.section--margin-collapse {
  margin: -52px 0 0;
}

/* ------------------------------------------------------------ *\
	Section Gutter
\* ------------------------------------------------------------ */
.section-gutter {
  margin-bottom: 39px;
}

.section-gutter--large {
  margin-bottom: 103px;
}

.section-gutter--larger {
  margin-bottom: 140px;
}

.section-gutter--largest {
  margin-bottom: 264px;
}

.section-gutter--small {
  margin-bottom: 9px;
}

.section-gutter--medium {
  margin-bottom: 69px;
}

.section-gutter--empty {
  margin-bottom: 0;
}

.section-gutter--alt {
  margin-bottom: 56px;
}

/* ------------------------------------------------------------ *\
	Section Triangle
\* ------------------------------------------------------------ */
.section--triangle {
  position: relative;
}
.section--triangle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-style: solid;
  border-width: 1054px 0 0 1500px;
  border-color: transparent transparent transparent #e8e8e8;
}
@media (max-width: 1100px) {
  .section--triangle::after {
    content: none;
  }
}

.section--slider {
  padding: 32px 0;
}

/* ------------------------------------------------------------ *\
	Entry
\* ------------------------------------------------------------ */
.entry {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 50;
}
.entry__icon, .entry__content {
  width: 50%;
}
@media (max-width: 1023px) {
  .entry__icon, .entry__content {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .entry__icon {
    margin-bottom: 20px;
  }
}
.entry__icon-holder {
  position: relative;
  width: 267px;
  height: 267px;
  border-radius: 50%;
  margin: auto;
}
.entry__icon i {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
}
.entry__content {
  padding: 0 81px 0 48px;
}
.entry__content h3 {
  margin-bottom: 27px;
}
.entry__content p {
  line-height: 1.5;
  letter-spacing: -0.003em;
}
@media (max-width: 1023px) {
  .entry__content {
    padding: 0;
    text-align: center;
  }
}

/* ------------------------------------------------------------ *\
	Info
\* ------------------------------------------------------------ */
.info {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .info {
    padding: 20px 0;
  }
}
.info__content, .info__image {
  width: 50%;
}
@media (max-width: 767px) {
  .info__content, .info__image {
    width: 100%;
  }
}
.info__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media (max-width: 767px) {
  .info__image {
    padding-top: 100%;
  }
}
.info__content {
  padding: 168px 76px 160px;
}
.info__content h3 {
  margin-bottom: 33px;
  letter-spacing: -0.016em;
}
.info__content p {
  letter-spacing: -0.021em;
  line-height: 1.5;
}
.info__content strong {
  display: block;
  margin-bottom: 17px;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
@media (max-width: 1023px) {
  .info__content {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .info__content {
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

/* ------------------------------------------------------------ *\
	Article Bio
\* ------------------------------------------------------------ */
.article-bio {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 17px;
}
.article-bio .article__image,
.article-bio .article__content {
  width: 50%;
}
@media (max-width: 1023px) {
  .article-bio .article__image,
.article-bio .article__content {
    width: 100%;
  }
}
.article-bio .article__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media (max-width: 1023px) {
  .article-bio .article__image {
    padding-top: 69%;
  }
}
.article-bio .article__content {
  padding: 47px 70px 70px 83px;
  background: #00cc97;
  color: #fff;
}
@media (max-width: 1023px) {
  .article-bio .article__content {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .article-bio .article__content {
    padding: 20px;
  }
}
.article-bio .article__content h3 {
  margin-bottom: 34px;
}
@media (max-width: 767px) {
  .article-bio .article__content h3 {
    margin-bottom: 20px;
  }
}
.article-bio .article__content p {
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.5;
}
.article-bio .article__content p strong {
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: -0.006em;
}
.article-bio .article__content p span {
  display: block;
}
@media (max-width: 767px) {
  .article-bio .article__content p {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

/* ------------------------------------------------------------ *\
	Article
\* ------------------------------------------------------------ */
.article .article__head {
  margin-bottom: 64px;
}
.article .article__head h2 {
  font-weight: 400;
  letter-spacing: -0.03em;
}
@media (max-width: 1023px) {
  .article .article__head {
    margin-bottom: 30px;
  }
}
.article .article__body {
  display: flex;
  flex-wrap: wrap;
}
.article .article__content {
  width: 56%;
  padding-right: 25px;
}
.article .article__content h4 {
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.article .article__content p {
  margin-bottom: 26px;
  font-size: 25px;
  color: #666;
  letter-spacing: -0.007em;
}
.article .article__content blockquote {
  font-style: italic;
  font-weight: 300;
  color: #c40052;
  margin-bottom: 26px;
  font-size: 25px;
  letter-spacing: -0.025em;
}
@media (max-width: 1023px) {
  .article .article__content {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
.article .article__aside {
  width: 44%;
  padding-left: 165px;
}
.article .article__aside h3 {
  line-height: 1.15;
}
@media (max-width: 1023px) {
  .article .article__aside {
    width: 100%;
    padding: 0;
  }
}

/* ------------------------------------------------------------ *\
	Link More
\* ------------------------------------------------------------ */
.link-more {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.028em;
  text-decoration: none;
}
.link-more:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .link-more {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------ *\
	Contacts
\* ------------------------------------------------------------ */
.contacts {
  display: flex;
  flex-wrap: wrap;
}
.contacts .grad__button {
  border: 0;
  margin-top: 0.5rem;
}
.contacts__info {
  width: 38%;
}
@media (max-width: 1023px) {
  .contacts__info {
    width: 100%;
    margin-bottom: 20px;
  }
}
.contacts__form {
  width: 62%;
}
@media (max-width: 1023px) {
  .contacts__form {
    width: 100%;
  }
}
.contacts__info {
  padding: 1rem 2rem 0 0;
}
.contacts__info h6 {
  margin-bottom: 47px;
}
@media (max-width: 1023px) {
  .contacts__info h6 {
    margin-bottom: 20px;
  }
}
.contacts__info ul {
  margin-bottom: 35px;
  font-weight: 700;
  list-style-type: none;
}
.contacts__info li + li {
  margin-top: 4px;
}
.contacts__info a {
  display: block;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.contacts__info a + a {
  margin-top: 4px;
}
@media (max-width: 767px) {
  .contacts__info {
    padding-top: 0;
  }
}
.contacts__form {
  padding: 15px;
  background: #ffffff;
}

/* ------------------------------------------------------------ *\
	Form
\* ------------------------------------------------------------ */
.form-contact {
  /*  Row  */
  /*  Form Parts  */
  /*  Fields  */
}
.form-contact .form__row {
  display: flex;
  flex-wrap: wrap;
  background: #f9f9f9;
}
.form-contact .form__row--error {
  color: #c40052;
}
.form-contact .form__row + .form__row {
  margin-top: 17px;
}
.form-contact .form__head {
  margin-bottom: 39px;
}
.form-contact .form__body {
  margin-bottom: 11px;
}
.form-contact .form__controls {
  width: 77%;
}
.form-contact label {
  width: 23%;
  padding: 9px 3px;
  font-weight: 700;
}
.form-contact .field {
  height: 55px;
  width: 100%;
  padding: 0 5px;
  border: 0;
  background: #f9f9f9;
  font-size: 18px;
  color: #535e74;
}
.form-contact .field::-webkit-input-placeholder {
  color: inherit;
}
.form-contact .field::-moz-placeholder {
  color: inherit;
}
.form-contact .field:-ms-input-placeholder {
  color: inherit;
}
.form-contact .field::-ms-input-placeholder {
  color: inherit;
}
.form-contact .field::placeholder {
  color: inherit;
}
.form-contact .textarea {
  height: 165px;
  width: 100%;
  padding: 10px 5px;
  border: 0;
  background: #f9f9f9;
  resize: none;
  color: #535e74;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .form-contact .form__controls,
.form-contact .form__label {
    width: 100%;
  }
  .form-contact .form__head {
    margin-bottom: 20px;
  }
  .form-contact .form__foot .btn {
    display: block;
    width: 100%;
  }
}

/* ------------------------------------------------------------ *\
	Form Subscribe
\* ------------------------------------------------------------ */
.form-subscribe .subscribe__field {
  width: calc(100% - 72px);
  padding: 0 15px;
  border-radius: 7px 0 0 7px;
  border: 1px solid #ddd5d8;
  border-right: 0;
  height: 35px;
  line-height: 35px;
  font-size: 17px;
  color: #999;
  font-family: "Akzidenz", sans-serif;
}
.form-subscribe .subscribe__submit {
  background: #fff;
  padding: 0 7px;
  border-radius: 0 7px 7px 0;
  height: 35px;
  border: 1px solid #ddd5d8;
  color: #999;
  font-family: "Akzidenz", sans-serif;
  line-height: 35px;
  vertical-align: middle;
  font-size: 17px;
}

/* ------------------------------------------------------------ *\
Blogpost
\* ------------------------------------------------------------ */
.blogpost {
  margin-bottom: 48px;
  padding: 0 2rem 5rem;
  position: relative;
  /*  Blogpost Layout  */
  /*  Blogpost Info  */
  /*  Blogpost Content  */
  /*  Blogpost Meta  */
  /*  Blogpost Image  */
}
.blogpost__container, .blogpost__inner {
  display: flex;
  flex-wrap: wrap;
}
.blogpost__container {
  justify-content: flex-start;
}
.blogpost__aside, .blogpost__inner {
  margin-bottom: 15px;
}
.blogpost__inner {
  width: 100%;
  margin: 7px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.blogpost__inner:hover {
  opacity: 0.8;
}
@media (min-width: 1023px) {
  .blogpost__inner {
    width: calc(75% - 14px);
    margin: 7px;
  }
}
@media (min-width: 1550px) {
  .blogpost__inner {
    width: calc(50% - 14px);
  }
}
.blogpost__aside {
  width: 100%;
  margin: 7px;
  display: block;
  transition: opacity 0.3s;
  text-decoration: none;
  background: #222221;
  color: #222221;
}
.blogpost__aside:nth-of-type(2n) {
  background: #ff493a;
  color: #ff493a;
}
.blogpost__aside:nth-of-type(3n) {
  background: #00009d;
  color: #00009d;
}
.blogpost__aside:nth-of-type(4n) {
  background: #eb005b;
  color: #eb005b;
}
.blogpost__aside:nth-of-type(5n) {
  background: #233d8d;
  color: #233d8d;
}
.blogpost__aside:nth-of-type(6n) {
  background: #4ab7de;
  color: #4ab7de;
}
.blogpost__aside:hover {
  opacity: 0.8;
}
.blogpost__aside-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 79%;
}
@media (max-width: 1023px) {
  .blogpost__aside-image {
    padding-top: 50%;
  }
}
@media (min-width: 479px) {
  .blogpost__aside {
    width: calc(50% - 14px);
  }
}
@media (min-width: 1023px) {
  .blogpost__aside {
    width: calc(25% - 14px);
  }
}
.blogpost__content, .blogpost__image {
  width: 50%;
}
@media (max-width: 767px) {
  .blogpost__content, .blogpost__image {
    width: 100%;
  }
}
.blogpost__container {
  margin-bottom: 29px;
}
.blogpost__info {
  position: relative;
  padding: 15px 20px 52px 10px;
  color: currentColor;
  background: inherit;
}
.blogpost__info::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 21px solid currentColor;
}
.blogpost__info h6 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.blogpost__info p {
  margin-bottom: 24px;
  font-size: 27px;
  font-weight: 700;
  color: #fff;
}
.blogpost__info p::after {
  content: "";
  display: block;
  width: 12px;
  height: 3px;
  margin-top: 14px;
  background: #fff;
}
.blogpost__content {
  position: relative;
  padding: 16px 140px 16px 16px;
  background: inherit;
  color: #001c67;
}
@media (max-width: 767px) {
  .blogpost__content {
    padding: 20px;
  }
}
.blogpost__content::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 61px;
  width: 0;
  height: 0;
  border-top: 47px solid transparent;
  border-left: 47px solid currentColor;
  border-bottom: 47px solid transparent;
}
@media (max-width: 767px) {
  .blogpost__content::before {
    left: 0;
    right: 0;
    margin: auto;
    top: 100%;
    border-bottom: none;
    border-left-color: transparent;
    border-right: 47px solid transparent;
    border-top-color: inherit;
  }
}
.blogpost__content h6 {
  margin-bottom: 3px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.blogpost__content p {
  margin-bottom: 24px;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}
.blogpost__content p::after {
  content: "";
  display: block;
  width: 12px;
  height: 3px;
  margin-top: 14px;
  background: currentColor;
}
.blogpost__content .blogpost__meta p {
  color: #fff;
}
.blogpost__meta p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}
.blogpost__meta p::after {
  content: none;
}
.blogpost__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-top: 50%;
}
@media (max-width: 767px) {
  .blogpost__image {
    padding-top: 100%;
  }
}
.blogpost__topic {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.blogpost__replace {
  display: none;
}
@media screen and (max-width: 768px) {
  .blogpost__replace {
    display: block;
  }
  .blogpost__inner {
    display: none;
  }
}
@media screen and (max-width: 478px) {
  .blogpost {
    padding: 0;
  }
  .blogpost__aside {
    margin: 0 1rem 1rem;
  }
  .blogpost__info {
    padding: 1rem;
  }
  .blogpost__info h6 {
    font-size: 12px;
  }
  .blogpost__info > p {
    font-size: 24px;
  }
  .blogpost__actions {
    padding: 0 1rem;
  }
}

.blogArrow::before {
  position: absolute;
  content: "";
  width: 150%;
  padding-bottom: 150%;
  background-color: #e5f7fa;
  margin: auto;
  bottom: 0;
  right: unset;
  left: -76%;
  top: -5%;
  z-index: -1;
  transform: rotate(45deg);
}
@media screen and (max-width: 1022px) {
  .blogArrow::before {
    display: none;
  }
}

/* ------------------------------------------------------------ *\
	Cards
\* ------------------------------------------------------------ */
.cards {
  padding: 2rem;
}
.cards__container {
  margin: 0 -8px;
}
.cards__container::after {
  content: "";
  clear: both;
  display: table;
  line-height: 0;
}
.cards .card {
  float: left;
  width: 25%;
  padding: 0 8px;
  margin: 0 0 16px;
}
@media (max-width: 1023px) {
  .cards .card {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .cards .card {
    width: 100%;
  }
}

.card__inner {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-top: 100%;
}
.card__inner h4 {
  position: absolute;
  top: 8px;
  left: 10px;
  max-width: 180px;
  color: #fff;
  font-size: 27px;
  line-height: 1.2;
}
.card__inner a, .card__inner .card__action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 15px;
  color: #fff;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.2);
  transition: color 0.3s, background 0.3s;
}
.card__inner a i, .card__inner .card__action i {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.card__inner a:hover, .card__inner .card__action:hover {
  background-color: black;
}

/* ------------------------------------------------------------ *\
	Card Transparent
\* ------------------------------------------------------------ */
.card--transparent .card__inner {
  padding-top: 73%;
  border: 1px solid #c3c7cf;
}
.card--transparent .card__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  z-index: -1;
  background: #b70073;
}
.card--transparent .card__inner h4 {
  top: 15px;
  left: 12px;
  color: #535e74;
  font-size: 28px;
}
.card--transparent .card__inner a, .card--transparent .card__inner .card__action {
  background-color: #fff;
  color: #2e4049;
}

/* ------------------------------------------------------------ *\
	Card Green
\* ------------------------------------------------------------ */
.card--green .card__inner::after {
  background: #00cc97;
}
.card--green .card__inner:hover .card__action {
  background-color-color: #00cc97;
  color: #fff;
}

/* ------------------------------------------------------------ *\
	Card Purple
\* ------------------------------------------------------------ */
.card--purple .card__inner:hover .card__action {
  background-color: #b70073;
  color: #fff;
}

/* ------------------------------------------------------------ *\
	Card Brown
\* ------------------------------------------------------------ */
.card--brown .card__inner::after {
  background-color: #c3625c;
}
.card--brown .card__inner:hover .card__action {
  background-color: #c3625c;
  color: #fff;
}

/* ------------------------------------------------------------ *\
	Card Pink
\* ------------------------------------------------------------ */
.card--pink .card__inner::after {
  background-color: #ff76ad;
}
.card--pink .card__inner:hover .card__action {
  background: #ff76ad;
  color: #fff;
}

/* ------------------------------------------------------------ *\
	Filters
\* ------------------------------------------------------------ */
.filters h6 {
  display: inline-block;
  margin-right: 30px;
}
.filters a {
  text-decoration: none;
  font-weight: 700;
  color: #a0afb6;
  transition: color 0.3s;
}
.filters a span {
  margin-right: 4px;
}
.filters a:hover {
  color: #000;
}
.filters a + a {
  margin-left: 14px;
}

/* ------------------------------------------------------------ *\
	Subscribes
\* ------------------------------------------------------------ */
.subscribes {
  position: relative;
  z-index: 100;
}
.subscribes .subscribes__container {
  margin: 0 -10px;
  padding: 2rem 1rem;
}
.subscribes .subscribes__container > h2 {
  padding-left: 1rem;
  margin: 2rem 0;
}
.subscribes .subscribes__container::after {
  content: "";
  display: table;
  clear: both;
  line-height: 0;
}
.subscribes .subscribe {
  float: left;
  width: 33.33%;
  padding: 1rem;
}
.subscribes .subscribe--wide {
  width: 50%;
}
@media (max-width: 1023px) {
  .subscribes .subscribe {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .subscribes .subscribe {
    width: 100%;
  }
}

.subscribe {
  position: relative;
}
.subscribe__image {
  width: 100%;
}
.subscribe__image img {
  display: block;
  margin: 1rem auto;
  max-width: 55px;
}
.subscribe__inner {
  position: relative;
  background: #ff5d50;
  color: #fff;
}
.subscribe__inner::before {
  content: "";
  background: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 0;
  right: 0;
  width: 50rem;
  height: 50rem;
  transform: rotate(35deg);
}
.subscribe__inner .subscribe__holder {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 177px;
  text-decoration: none;
  transition: opacity 0.3s;
  flex-wrap: wrap;
}
.subscribe__inner .subscribe__holder:hover {
  opacity: 0.8;
}
.subscribe__inner h4 {
  position: relative;
  z-index: 30;
  text-align: center;
}
.subscribe__inner .subscribe__actions {
  display: block;
  position: relative;
  padding: 12px 13px;
  background-color: rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.subscribe__inner .subscribe__actions i {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}
.subscribe__inner .subscribe__actions:hover {
  opacity: 0.8;
}

/* ------------------------------------------------------------ *\
	Subscribe Purple
\* ------------------------------------------------------------ */
.subscribe--purple .subscribe__inner {
  background: #cb375c;
}
.subscribe--purple .subscribe__inner .subscribe__actions {
  background: #a22c4a;
}
.subscribe--purple .subscribe__inner::after {
  border-color: transparent #c51e48 transparent transparent;
}

/* ------------------------------------------------------------ *\
	Subscribe Blue
\* ------------------------------------------------------------ */
.subscribe--blue .subscribe__inner {
  background: #1cc0e4;
}
.subscribe--blue .subscribe__inner .subscribe__actions {
  background: #169ab6;
}
.subscribe--blue .subscribe__inner::after {
  border-color: transparent #00b8e1 transparent transparent;
}

/* our programs */
.ourProgrammes.subscribes .subscribe {
  margin: 0;
}
.ourProgrammes.subscribes .subscribes__container {
  padding: 0 1rem 5rem;
}
.ourProgrammes.subscribes .subscribes__container .subscribe__inner::after {
  content: "";
  display: none;
}
.ourProgrammes.subscribes .subscribes__container .subscribe__inner::after a {
  position: relative;
  padding: 0;
  background-color: none;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .ourProgrammes.subscribes {
    padding: 1rem 0.5rem;
  }
  .ourProgrammes.subscribes .subscribe {
    padding: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .ourProgrammes.subscribes .subscribe {
    margin-bottom: 0.5rem;
  }
}

.ourProgrammes {
  padding-top: 1rem;
}
.ourProgrammes .subscribe__inner {
  overflow: hidden;
}
.ourProgrammes .subscribe__inner:hover .ourProgrammes__hover {
  transform: translateX(0);
}
.ourProgrammes__hover {
  text-decoration: none;
  position: absolute;
  padding: 2rem;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: ease 0.4s;
  transform: translateX(-100%);
  background: inherit;
  z-index: 100;
  font-size: 1.2rem;
  text-align: left;
}

/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */
/*  Clear  */
.clear:after {
  content: "";
  line-height: 0;
  display: table;
  clear: both;
}

/*  Notext  */
.notext {
  white-space: nowrap;
  text-indent: 100%;
  text-shadow: none;
  overflow: hidden;
}

.notext-old {
  font-size: 0;
  line-height: 0;
  text-indent: -4000px;
}

/*  No Scroll  */
.no-scroll {
  position: fixed;
  overflow: hidden;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

/*  Hidden  */
[hidden],
.hidden {
  display: none;
}

/*  Alignleft  */
.alignleft {
  float: left;
}

/*  Alignright  */
.alignright {
  float: right;
}

/*  Disabled  */
[disabled],
.disabled {
  cursor: default;
}

/*  Grid  */
.cols {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.col {
  width: 100%;
  float: none;
  padding: 0 8px;
}

.col--1of2 {
  width: 50%;
}

.col--1of3 {
  width: 33.33%;
}

.col--1of4 {
  width: 25%;
}

.col--flex {
  display: flex;
  flex-wrap: wrap;
}

/*  Responsive Helpers  */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs-block {
    display: block !important;
  }

  .visible-xs-inline {
    display: inline !important;
  }

  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }

  .visible-sm-block {
    display: block !important;
  }

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .hidden-md {
    display: none !important;
  }

  .visible-md-block {
    display: block !important;
  }

  .visible-md-inline {
    display: inline !important;
  }

  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1201px) {
  .hidden-lg {
    display: none !important;
  }

  .visible-lg-block {
    display: block !important;
  }

  .visible-lg-inline {
    display: inline !important;
  }

  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
/* ------------------------------------------------------------ *\
	Actions
\* ------------------------------------------------------------ */
@media (max-width: 1023px) {
  .actions .col {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .actions .col {
    width: 100%;
  }
}

.action h4 {
  font-size: 28px;
}
.action__head {
  margin-bottom: 26px;
}
.action__body {
  display: block;
  font-size: 0;
  text-decoration: none;
}
.action__body .btn {
  margin: 0 11px 10px 0;
}
@media (max-width: 767px) {
  .action__body a {
    width: 100%;
    margin-right: 0;
  }
}

/* ------------------------------------------------------------ *\
	Features
\* ------------------------------------------------------------ */
.features {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
  position: relative;
  z-index: 100;
}

.features-container {
  padding: 5rem 2rem;
}
.features-container__heading {
  margin: 0;
  padding: 0 0 3rem;
  font-weight: 100;
}
.features-container__heading a {
  font-weight: bold;
}

.feature {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 8px;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .feature {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .feature {
    width: 25%;
  }
}
.feature__box {
  width: 100%;
  position: relative;
  padding: 30px 30px 59px;
  background-color: #ca1c65;
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
}
.feature__box .feature__hover {
  position: absolute;
  padding: 2rem;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: ease 0.4s;
  transform: translateX(-100%);
  background: inherit;
  z-index: 5;
  font-size: 1.2rem;
  text-align: left;
}
.feature__box:hover .feature__hover {
  transform: translateX(0);
}
@media (max-width: 1023px) {
  .feature__box {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .feature__box {
    padding: 20px;
  }
}
.feature__box h3 {
  position: relative;
  z-index: 5;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 400;
  word-break: break-word;
}
.feature__box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: 1;
  border-style: solid;
  border-width: 0 204px 135px 0;
  border-color: transparent #000 transparent transparent;
  opacity: 0.075;
}
@media (max-width: 767px) {
  .feature__box::after {
    border-width: 0 100px 50px 0;
  }
}
.feature__box p {
  position: relative;
  z-index: 2;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.feature__icon {
  position: relative;
  z-index: 5;
}
.feature__icon img {
  max-width: 90px;
}
.feature__box--alt {
  padding: 17px 50px 74px 13px;
  text-align: left;
}
@media (max-width: 1023px) {
  .feature__box--alt {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .feature__box--alt {
    padding: 20px;
  }
}
.feature__box + .feature__box {
  margin-top: 20px;
}
@media screen and (max-width: 766px) {
  .feature {
    height: auto !important;
  }
}

/* ------------------------------------------------------------ *\
	Feature Green
\* ------------------------------------------------------------ */
.feature--green .feature__box,
.feature--green .feature__body {
  background: #1cd2a2;
}
.feature--green .feature__box::after {
  border-color: transparent #00cc97 transparent transparent;
}

/* ------------------------------------------------------------ *\
	Feature Purple
\* ------------------------------------------------------------ */
.feature--purple .feature__box,
.feature--purple .feature__body {
  background: #7e1ce6;
}
.feature--purple .feature__box::after {
  border-color: transparent #6e00e3 transparent transparent;
}

/* ------------------------------------------------------------ *\
	Feature Blue
\* ------------------------------------------------------------ */
.feature--blue .feature__box,
.feature--blue .feature__body {
  background: #1cc0e4;
}
.feature--blue .feature__box::after {
  border-color: transparent #00b8e1 transparent transparent;
}

/* ------------------------------------------------------------ *\
	Members
\* ------------------------------------------------------------ */
.members__container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -14px;
}
.members .member {
  padding: 0 14px;
  width: 25%;
}
@media (max-width: 767px) {
  .members .member {
    width: 100%;
    margin-bottom: 20px;
  }
}

.member__image {
  position: relative;
}
.member__image img {
  border-radius: 100%;
}
.member__overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.member__overlay h4 {
  margin-bottom: 0px;
}
.member__overlay p {
  font-weight: 300;
  font-size: 25px;
}
.member:hover .member__overlay {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 767px) {
  .member__image img {
    width: 100%;
  }
}

/* ------------------------------------------------------------ *\
	Location
\* ------------------------------------------------------------ */
.location {
  display: flex;
  flex-wrap: wrap;
}
.location__image, .location__content {
  width: 50%;
}
.location__image {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.location__image:hover {
  opacity: 0.8;
}
.location__image i {
  margin-bottom: 11px;
}
.location__image h3 {
  font-weight: 300;
  font-size: 36px;
  color: #fff;
}
.location__content {
  padding: 122px 0 138px;
  background: #303030;
}
.location__content p {
  max-width: 475px;
  margin: auto;
  color: #00ffff;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: -0.012em;
  text-align: center;
}
@media (max-width: 767px) {
  .location__image, .location__content {
    width: 100%;
  }
  .location__image {
    padding: 40px 0;
  }
  .location__content {
    padding: 30px;
  }
  .location__content p {
    font-size: 20px;
  }
}

/* ------------------------------------------------------------ *\
	Testimonials
\* ------------------------------------------------------------ */
.testimonials {
  padding: 60px 0 40px;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #ff197b, #ff493a);
  z-index: -1;
}
.testimonials .slider__slide-content {
  padding: 0 2rem;
  max-width: 700px;
  margin: auto;
}
.testimonials .slider-nav a {
  opacity: 0;
}
.testimonials .slider-nav a:hover {
  opacity: 0;
}
.testimonials .slider-nav__item {
  width: 15px;
  height: 15px;
  background: #fff;
  opacity: 0.7;
}
.testimonials .slider-nav__item.active {
  background: #fff;
  opacity: 1;
}
.testimonials__quote blockquote {
  max-width: 650px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 100;
  line-height: 1.27;
}
.testimonials__quote p {
  font-size: 33px;
  font-style: italic;
  font-weight: 300;
}
.testimonials__quote cite {
  margin-top: 1rem;
  font-style: normal;
  display: block;
}
.testimonials__heading {
  text-align: center;
  margin-bottom: 6.5rem !important;
}
.testimonials__textBlock {
  text-align: center;
  font-size: 3rem;
  font-style: bold;
  font-weight: 600;
  margin-bottom: 6.5rem !important;
}
@media (max-width: 767px) {
  .testimonials {
    padding: 20px 0;
  }
  .testimonials p {
    font-size: 25px;
  }
  .testimonials cite {
    font-size: 21px;
  }
}

/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */
.slider .slider__slide {
  display: flex;
  flex-wrap: wrap;
}
.slider .slider__slide-content, .slider .slider__slide-image {
  width: 50%;
}
@media (max-width: 1023px) {
  .slider .slider__slide-content, .slider .slider__slide-image {
    width: 100%;
  }
}
.slider__buttonContainer {
  text-align: center;
  margin-top: 3rem;
}
.slider__text {
  color: #fff !important;
}
.slider .slider__slide-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  padding-bottom: 50%;
}
@media (max-width: 767px) {
  .slider .slider__slide-image {
    padding-top: 80%;
  }
}
.slider .slider__slide-content {
  position: relative;
  padding: 74px 120px 74px 33px;
  background: #0c2239;
  color: #fff;
}
@media (max-width: 767px) {
  .slider .slider__slide-content {
    padding: 20px;
  }
}
.slider .slider__slide-content h3 {
  margin-bottom: 25px;
  font-size: 32px;
}
@media (max-width: 767px) {
  .slider .slider__slide-content h3 {
    font-size: 25px;
  }
}
.slider .slider__slide-content p {
  margin-bottom: 0;
  font-size: 28px;
  letter-spacing: -0.017em;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .slider .slider__slide-content p {
    font-size: 20px;
  }
}
.slider .slider__slide-content p + p {
  margin-top: 25px;
}
.slider .slider__slide-content::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 47px solid;
  border-color: inherit;
  border-top: 47px solid transparent;
  border-bottom: 47px solid transparent;
}
.slider__heading {
  text-align: center;
  max-width: 780px;
  margin: 3rem auto;
}

/* ------------------------------------------------------------ *\
	Slider Nav
\* ------------------------------------------------------------ */
.slider-nav {
  margin-bottom: 32px;
  text-align: center;
  font-size: 0;
}
.slider-nav__item {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #a0afb6;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
}
.slider-nav__item a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}
.slider-nav__item a:hover {
  opacity: 0.5;
}
.slider-nav__item span {
  vertical-align: middle;
  line-height: 1;
}
.slider-nav__item.active {
  background: #c51e48;
}
.slider-nav__item + .slider-nav__item {
  margin-left: 13px;
}

.section--slider .slider-nav {
  position: absolute;
  top: -4.3rem;
  text-align: center;
  display: block;
  width: 100%;
}

.section--slider .slider-nav.slider-nav--custom {
  position: relative;
  top: unset;
}
.section--slider .slider-nav.slider-nav--custom .slider-nav__item {
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 0.25rem 1rem;
  margin: 0.25rem 0.5rem 0;
}

/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */
.footer {
  color: #fff;
  border-top: 1px solid #fff;
}
.footer__inner {
  padding: 1.5rem 2rem;
  background: linear-gradient(to right, #ff197b, #ff493a);
}
.footer__container::after {
  content: "";
  display: table;
  clear: both;
  line-height: 0;
}
.footer .socials img {
  max-width: 2.5rem;
  opacity: 0.6;
}
.footer__container {
  margin: 0 -25px;
}
.footer__info {
  float: left;
  width: 33.33%;
  padding: 0 25px;
}
.footer__info p {
  margin-bottom: 48px;
}
.footer h5 {
  margin-bottom: 18px;
}
.footer ul {
  list-style-type: none;
}
.footer li a {
  font-size: 17px;
}
.footer li + li {
  margin-top: -5px;
}
.footer a {
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: #0c2239;
}
.footer p {
  font-size: 17px;
}
.footer .form-subscribe {
  margin-bottom: 37px;
  padding-right: 41px;
}
.footer .form-subscribe form {
  display: flex;
}
.footer__bar {
  padding: 1rem 2rem 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.footer__bar::after {
  content: "";
  display: table;
  clear: both;
  line-height: 0;
}
.footer__copyright {
  float: left;
  font-weight: 700;
}
.footer__copyright p {
  font-size: 14px;
  color: #b2b2b2;
}
.footer__credits {
  float: right;
}
.footer__credits a {
  font-size: 14px;
  font-weight: 700;
  color: #b2b2b2;
  vertical-align: top;
  padding-left: 0.5rem;
}
.footer__credits a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .footer__inner {
    padding: 15px;
  }
  .footer__info {
    width: 50%;
    margin-bottom: 20px;
  }
  .footer__info p {
    margin-bottom: 20px;
  }
  .footer__info:nth-of-type(5n-4) {
    width: 100%;
  }
  .footer .form-subscribe {
    margin-bottom: 20px;
    max-width: 280px;
    padding-right: 0;
  }
  .footer .socials {
    margin-top: 20px;
  }
  .footer__bar {
    padding: 1rem;
  }
}
@media (max-width: 479px) {
  .footer__info {
    width: 100%;
  }
  .footer__copyright, .footer__credits {
    width: 100%;
  }
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */
.socials ul {
  font-size: 0;
}
.socials li {
  display: inline-block;
}
.socials li + li {
  margin-left: 13px;
}
.socials a {
  display: block;
  transition: opacity 0.3s;
}
.socials a:hover {
  opacity: 0.8;
}

/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */
.wrapper {
  overflow: hidden;
}

/* ------------------------------------------------------------ *\
	Resources
\* ------------------------------------------------------------ */
.resources {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}
.resources:hover {
  opacity: 0.8;
}
.resources__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-top: 40%;
}
.resources__content {
  position: relative;
  padding: 14px 120px 91px 14px;
  background: #00b8e1;
  color: #fff;
}
.resources__content::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 22px solid #00b8e1;
}
.resources__content h6 {
  margin-bottom: 0px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
}
.resources__content p {
  font-size: 27px;
  font-weight: 700;
}

.twoColumContent {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
  background-position: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.twoColumContent__item {
  min-height: 450px;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 5rem 2rem;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 767px) {
  .twoColumContent__item {
    width: 50%;
  }
}
.twoColumContent__item--home {
  padding: 5rem 0 3rem;
}
.twoColumContent__item--image {
  padding: 0;
  padding-bottom: 50%;
}
.twoColumContent__item--image img {
  display: none;
}
.twoColumContent__item--imageParallax {
  background-attachment: fixed;
  opacity: 0;
  transition: ease 0.2s;
}
.twoColumContent__item--contained {
  background-size: contain;
}
.twoColumContent__item--include {
  overflow-x: auto;
}
.twoColumContent__item--include.twoColumContent__item--fullWidth {
  padding-right: 2rem;
}
.twoColumContent__item--center {
  padding: 5rem 2rem 8rem;
  background-position: 50%;
}
.twoColumContent__item--center .twoColumContent__content {
  width: 100%;
}
.twoColumContent__item--center .twoColumContent__content--textCenter {
  text-align: center;
}
.twoColumContent__item--center .twoColumContent__content--textCenter ul {
  list-style: inside;
  padding: 0;
}
.twoColumContent__item--center .twoColumContent__link {
  display: inline;
}
.twoColumContent__item--center .twoColumContent__content {
  max-width: 750px;
  margin: auto;
}
.twoColumContent__item--textCenter {
  text-align: center;
}
.twoColumContent__item--alignTop {
  align-items: baseline;
}
.twoColumContent__item--fullWidth {
  min-height: 0;
  width: 100%;
  background-attachment: fixed;
}
.twoColumContent__item--fullWidth.twoColumContent__item--center {
  margin: auto;
  padding: 5rem 2rem;
}
.twoColumContent__item--fullWidth h4 {
  margin-bottom: 1rem;
  opacity: 1 !important;
}
.twoColumContent__item--hoverContainer .twoColumContent__content {
  pointer-events: none;
}
.twoColumContent__item--hoverContainer h2,
.twoColumContent__item--hoverContainer p {
  position: relative;
  z-index: 1;
}
.twoColumContent__item p,
.twoColumContent__item li {
  font-family: "Albert", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  line-height: 1.35;
}
.twoColumContent__item ul {
  padding-left: 1.2rem;
}
@media screen and (max-width: 768px) {
  .twoColumContent__item {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .twoColumContent__item {
    min-height: 100vw;
  }
  .twoColumContent__item--fullWidth {
    min-height: auto;
  }
}
.twoColumContent__button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-weight: 600;
  color: #fff;
  background-image: url("/uploads/images/icon-solid-arrow-right.svg");
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 0.8rem;
  transition: ease 0.4s;
  text-align: left;
}
.twoColumContent__button .twoColumContent__link {
  display: block;
  padding: 0.8rem;
}
.twoColumContent__button .twoColumContent__link::after {
  display: none;
}
.twoColumContent__button:hover {
  background-position: 95.5% 50%;
}
.twoColumContent__absoluteLink {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  z-index: 1;
}
.twoColumContent__playButton {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  display: block !important;
}
.twoColumContent__link {
  text-decoration: none;
  display: block;
  position: relative;
  padding-left: 1rem;
}
.twoColumContent__link::after {
  content: ">";
  position: absolute;
  left: 0;
  transition: ease 0.4s;
}
.twoColumContent__link:hover::after {
  left: 2px;
}
.twoColumContent--framed {
  padding: 2rem;
  justify-content: space-between;
}
.twoColumContent--framed .twoColumContent__item {
  width: calc(50% - 1rem);
}
.twoColumContent--framed .twoColumContent__item--fullWidth {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .twoColumContent--framed {
    padding: 2rem;
  }
  .twoColumContent--framed .twoColumContent__item {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0 2rem !important;
  }
}
@media screen and (max-width: 478px) {
  .twoColumContent--framed {
    padding: 1rem;
  }
}
.twoColumContent__content ul {
  list-style: disc;
}
.twoColumContent__content--textCenter {
  text-align: center;
}
.twoColumContent__hover {
  pointer-events: all;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background-size: 0;
}
.twoColumContent__hover::before {
  content: "";
  background-image: inherit;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: ease 0.6s;
}
.twoColumContent__hover::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: ease 0.6s;
}
.twoColumContent__hover:hover::before {
  transform: scale(1.1);
}
.twoColumContent__hover:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}
.twoColumContent__arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff;
  margin: auto;
  transform: rotate(45deg);
}
.twoColumContent__arrow--left {
  bottom: 0;
  right: unset;
  left: -20px;
  top: 0;
}
.twoColumContent__arrow--right {
  bottom: 0;
  right: -20px;
  left: unset;
  top: 0;
}
.twoColumContent__arrow--top {
  bottom: unset;
  right: 0;
  left: 0;
  top: -20px;
}

.multistepColumns {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 2rem 6rem;
  justify-content: center;
  counter-reset: section;
  background-size: cover;
  background-repeat: no-repeat;
}
.multistepColumns__introduction {
  width: 100%;
  margin-bottom: 4rem;
}
.multistepColumns__introduction p {
  font-weight: 600;
}
.multistepColumns__button {
  width: 100%;
  margin-top: 5rem;
}
.multistepColumns__button a {
  text-decoration: none;
}
.multistepColumns__content {
  max-width: 620px;
  margin: auto;
}
.multistepColumns__framedLinkContainer {
  position: relative;
}
.multistepColumns__framedLinkContainer > div {
  position: relative;
  pointer-events: none;
  z-index: 10;
}
.multistepColumns__framedLink {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: ease 0.4s;
  z-index: 1;
}
.multistepColumns__framedLink:hover {
  background: rgba(0, 0, 0, 0.35);
}
.multistepColumns__item {
  padding: 1rem;
  margin: 1rem;
}
.multistepColumns__item--framed {
  border: 5px solid #fff;
}
.multistepColumns__item--left {
  text-align: left;
}
.multistepColumns__item--counter::before {
  line-height: 1;
  display: block;
  counter-increment: section;
  content: counter(section);
  font-size: 7rem;
  font-weight: 600;
  color: currentColor;
}
@media screen and (max-width: 740px) {
  .multistepColumns__item--counter::before {
    font-size: 5rem;
  }
}
.multistepColumns__item--stat {
  text-align: left;
}
.multistepColumns__item--stat h2 {
  font-size: 4.5rem;
  margin-bottom: 1rem !important;
}
.multistepColumns__item--stat p {
  margin-top: 0;
}
.multistepColumns__image {
  max-width: 55px;
  margin-bottom: 1rem;
}
.multistepColumns h3 {
  font-size: 30px;
}
.multistepColumns p {
  font-family: "Albert", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  line-height: 1.35;
}
.multistepColumns h4 {
  font-size: 20px;
  margin-bottom: 2rem;
  opacity: 0.8;
}
.multistepColumns h2 {
  line-height: 1.1;
  margin-bottom: 2rem;
}
.multistepColumns.colTwo .multistepColumns__item {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 530px) {
  .multistepColumns.colTwo .multistepColumns__item {
    width: 100%;
    margin: 0;
  }
  .multistepColumns.colTwo .multistepColumns__item--framed {
    margin-bottom: 2rem;
  }
}
.multistepColumns.colThree .multistepColumns__item {
  width: calc(33.3333% - 2rem);
}
@media screen and (max-width: 940px) {
  .multistepColumns.colThree .multistepColumns__item {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 530px) {
  .multistepColumns.colThree .multistepColumns__item {
    width: 100%;
    margin: 0;
  }
  .multistepColumns.colThree .multistepColumns__item--framed {
    margin-bottom: 2rem;
  }
}
.multistepColumns.colFour .multistepColumns__item {
  width: calc(25% - 2rem);
}
@media screen and (max-width: 940px) {
  .multistepColumns.colFour .multistepColumns__item {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 530px) {
  .multistepColumns.colFour .multistepColumns__item {
    width: 100%;
    margin: 0;
  }
  .multistepColumns.colFour .multistepColumns__item--framed {
    margin-bottom: 2rem;
  }
}
.multistepColumns--arrows {
  position: relative;
  overflow: hidden;
}
.multistepColumns--arrows::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 50vw solid transparent;
  border-bottom: 50vw solid transparent;
  border-left: 75vw solid rgba(255, 255, 255, 0.1);
  position: absolute;
  margin: auto;
  top: 0;
  bottom: -20vw;
  left: 0;
}
.multistepColumns--arrows .multistepColumns__item {
  position: relative;
}
.multistepColumns--arrows .multistepColumns__item:first-of-type::after {
  display: none;
}
.multistepColumns--arrows .multistepColumns__item::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 1.125rem solid transparent;
  border-bottom: 1.125rem solid transparent;
  border-left: 1.5rem solid rgba(255, 255, 255, 0.5);
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -0.75rem;
}
.multistepColumns--arrows .multistepColumns__framedLink:hover {
  background: rgba(0, 0, 0, 0);
}
.multistepColumns--arrows .multistepColumns__framedLinkContainer > div {
  transition: ease 0.4s;
}
.multistepColumns--arrows .multistepColumns__framedLinkContainer:hover > div {
  opacity: 0.6;
}
@media screen and (max-width: 940px) {
  .multistepColumns--arrows .multistepColumns__item::after {
    display: none;
  }
}

.challengeBlocks {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 1rem;
  justify-content: center;
  position: relative;
  z-index: 100;
}
.challengeBlocks__headingCenter {
  width: 100%;
  text-align: center;
  font-weight: 100;
}
.challengeBlocks__buttonContainer {
  width: 100%;
  padding: 1rem;
}
.challengeBlocks--embed {
  padding-top: 1rem;
  padding: 1rem 1.6rem 5rem;
}
.challengeBlocks--embed .challengeBlocks__buttonContainer {
  padding: 8px;
}
.challengeBlocks--grey {
  background: #f6f7f8;
}
.challengeBlocks__item {
  width: 100%;
  padding: 8px;
}
.challengeBlocks__content {
  display: flex;
  /*align-items: center;*/
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-size: 100%;
  background-position: 50%;
}
.challengeBlocks__content::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.4;
  background-color: inherit;
  position: absolute;
}
.challengeBlocks__content img {
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.2, 0, 0.4, 1);
}
.challengeBlocks__content:hover img {
  transition: all 0.6s cubic-bezier(0.2, 0, 0.4, 1);
  transform: scale(1.1);
}
.challengeBlocks__content:hover::before {
  background-color: #000;
  opacity: 0.7;
}
.challengeBlocks__content:hover .challengeBlocks__hover-intro {
  transition: all 0.6s ease-in;
  max-height: 350px;
  opacity: 1;
}
.challengeBlocks__content:hover .challengeBlocks__link {
  background-color: #000 !important;
  opacity: 0.7;
}
.challengeBlocks__title {
  padding: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  z-index: 10;
  pointer-events: none;
  height: auto;
}
.challengeBlocks__title h2 {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-shadow: 0 0 80px #000;
  transition: ease 0.2s;
}
.challengeBlocks__link {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  z-index: 5;
  transition: 0.5s ease;
  opacity: 0.4;
}
.challengeBlocks__fullWidth {
  width: 100%;
  padding-left: 1rem;
}
.challengeBlocks__viewAll {
  width: 100%;
  margin: 1rem;
}
.challengeBlocks__hover-intro {
  transition: all 0.3s cubic-bezier(0.2, 0, 0.4, 1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  color: #fff;
  font-size: 1rem;
}
@media screen and (min-width: 650px) {
  .challengeBlocks__item {
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  .challengeBlocks__item {
    width: 33.3%;
  }
}
@media screen and (min-width: 1200px) {
  .challengeBlocks__item {
    width: 25%;
  }
}

.homeChallengeBlocks {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 1rem;
  justify-content: center;
  position: relative;
  z-index: 100;
}
.homeChallengeBlocks__headingCenter {
  width: 100%;
  text-align: center;
  font-weight: 100;
}
.homeChallengeBlocks__buttonContainer {
  width: 100%;
  padding: 1rem;
}
.homeChallengeBlocks--embed {
  padding-top: 1rem;
  padding: 1rem 1.6rem 9rem;
}
.homeChallengeBlocks--embed .homeChallengeBlocks__item {
  width: 100%;
  padding: 8px;
}
@media screen and (min-width: 980px) {
  .homeChallengeBlocks--embed .homeChallengeBlocks__item__item {
    width: 50%;
  }
}
@media screen and (min-width: 700px) {
  .homeChallengeBlocks--embed .homeChallengeBlocks__item__item {
    width: 25%;
  }
}
.homeChallengeBlocks--embed .homeChallengeBlocks__buttonContainer {
  padding: 8px;
}
.homeChallengeBlocks--grey {
  background: #f6f7f8;
}
.homeChallengeBlocks__item {
  width: 33.3333%;
  padding: 1rem;
}
.homeChallengeBlocks__content {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-size: 100%;
  background-position: 50%;
  transition: ease 0.5s;
}
.homeChallengeBlocks__content::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.4;
  background-color: inherit;
  position: absolute;
}
.homeChallengeBlocks__content img {
  transition: all 0.5s cubic-bezier(0.2, 0, 0.6, 1);
  width: 100%;
  opacity: 1;
  z-index: 1;
}
.homeChallengeBlocks__content:hover img {
  transition: all 0.8s cubic-bezier(0.2, 0, 0.6, 1);
  transform: scale(1.1);
}
.homeChallengeBlocks__content:hover::before {
  background-color: #000;
  opacity: 0.7;
}
.homeChallengeBlocks__content:hover .homeChallengeBlocks__hover-intro {
  max-height: 350px;
  opacity: 1;
}
.homeChallengeBlocks__content:hover .homeChallengeBlocks__link {
  background-color: #000 !important;
  opacity: 0.7;
}
.homeChallengeBlocks__title {
  padding: 1rem;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}
.homeChallengeBlocks__title h2 {
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-shadow: 0 0 80px #000;
  transition: ease 0.2s;
}
.homeChallengeBlocks__link {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  z-index: 5;
  transition: 0.5s ease;
  opacity: 0.4;
}
.homeChallengeBlocks__fullWidth {
  width: 100%;
  padding-left: 1rem;
}
.homeChallengeBlocks__viewAll {
  width: 100%;
  margin: 1rem;
}
.homeChallengeBlocks__hover-intro {
  transition: 0.8s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  color: #fff;
}

.arrowblock {
  position: relative;
  z-index: 100;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
}
.arrowblock__item {
  width: 50%;
  text-align: center;
  position: relative;
}
.arrowblock__item:first-of-type::after {
  width: 100px;
  height: 100px;
  content: "";
  background: inherit;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -5px;
  margin: auto;
  z-index: 1;
}
.arrowblock__item:last-of-type {
  z-index: 0;
}
.arrowblock__heading {
  padding: 3.5rem 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 650px) {
  .arrowblock__item {
    width: 100%;
  }
  .arrowblock__item:first-of-type::after {
    width: 100px;
    height: 100px;
    content: "";
    background: inherit;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: -55px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
  }
}

.curriculum {
  padding: 2rem;
}
.curriculum > h2 {
  margin-bottom: 3rem;
}
.curriculum__item {
  align-items: center;
  display: flex;
}
.curriculum__item h3 {
  padding: 1.5rem;
  font-size: 1.5rem;
  width: 33.3333%;
  margin: 0;
}
.curriculum__item:nth-of-type(odd) {
  background-color: #f2f2f2;
}
.curriculum__item:nth-of-type(even) {
  background-color: #fbfbfb;
}
.curriculum__item:first-of-type {
  background-color: #ed125d;
}
.curriculum__head {
  color: #fff;
}
.curriculum--block {
  padding-top: 0;
  margin-top: -5rem;
}
.curriculum--block h3 {
  width: 100% !important;
}
.curriculum--block h2 {
  margin-top: 5rem;
}
.curriculum--block .curriculum__item.curriculum__head {
  text-align: center;
}
.curriculum--block .curriculum__headItem {
  width: 25%;
  padding: 1.5rem;
}
.curriculum--block .curriculum__headItem h3 {
  padding: 0;
}
.curriculum--block .curriculum__itemCell {
  width: 25%;
}
.curriculum--block .curriculum__itemCell h3 {
  padding: 1rem !important;
  font-size: 1.2rem !important;
}
.curriculum--block .curriculum__item h3 {
  font-size: 1.5rem;
}
.curriculum--block .curriculum__item:nth-of-type(2) .curriculum__block {
  width: 10%;
}
.curriculum--block .curriculum__item:nth-of-type(3) .curriculum__block {
  width: 27%;
  margin-left: 9%;
}
.curriculum--block .curriculum__item:nth-of-type(4) .curriculum__block {
  width: 30%;
  margin-left: 20%;
}
.curriculum--block .curriculum__item:nth-of-type(5) .curriculum__block {
  width: 21%;
  margin-left: 29%;
}
.curriculum--block .curriculum__item:nth-of-type(6) .curriculum__block {
  width: 35%;
  margin-left: 27%;
}
.curriculum--block .curriculum__item:nth-of-type(7) .curriculum__block {
  width: 45%;
  margin-left: 22%;
}
.curriculum--block .curriculum__item:nth-of-type(8) .curriculum__block {
  width: 57%;
  margin-left: 13%;
}
.curriculum--block .curriculum__item:nth-of-type(9) .curriculum__block {
  width: 70%;
  margin-left: 3%;
}
.curriculum--block .curriculum__block {
  height: 25px;
  width: 400px;
  background: #ed125d;
  border-radius: 2rem;
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.5);
  max-height: 100vh;
  transition: ease 0.4s;
  opacity: 0;
  pointer-events: none;
}
.modal iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: -300%;
  bottom: 0;
  margin: auto;
  max-height: 485px;
  transition: ease 0.4s;
  opacity: 0;
}
.modal.active-js {
  opacity: 1;
  pointer-events: all;
}
.modal.active-js iframe {
  top: 0;
  opacity: 1;
  background: #333;
}
.modal__close {
  position: fixed;
  top: -10rem;
  right: 2rem;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  background-image: url("/uploads/images/icon-cross-white.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transition: ease 0.3s;
}
.modal__close:hover {
  transform: rotate(90deg);
}

.homehero {
  background-repeat: no-repeat;
  background-size: 0;
  height: 83vh;
  display: flex;
  align-items: center;
  padding: 3.5rem 0 2rem;
  text-align: center;
  overflow: hidden;
}
.homehero::after {
  display: none;
}
.homehero__bg-video {
  position: absolute;
  top: calc(50% + 17px);
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  width: calc(((85vh - 35px) / 9) * 16);
  min-height: 100%;
  height: calc(85vh - 35px);
}
@media screen and (max-width: 1275px) {
  .homehero__bg-video {
    top: calc(50% + 35px);
  }
}
@media screen and (max-width: 1024px) {
  .homehero__bg-video {
    top: calc(50% + 40px);
  }
}
@media screen and (max-width: 740px) {
  .homehero__bg-video {
    width: calc(((40vh - 35px) / 9) * 16);
    height: calc(40vh - 35px);
  }
}
.homehero__bg-video video {
  width: 100%;
  background-image: url("/images/video-poster.jpg");
  background-size: cover;
  background-position: 50%;
  min-height: calc(85vh - 35px);
}
.homehero .intro__logo {
  position: absolute;
  top: 3.5rem;
  left: 2rem;
}
.homehero__heading h1 {
  font-size: calc(0.5rem + 7vw);
}
.homehero__statement {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 70%;
  text-align: center;
}
.homehero__statement-copy {
  font-size: 28px;
  font-weight: bold;
}
.homehero .shell {
  z-index: 1;
}
@media screen and (max-width: 740px) {
  .homehero {
    background-size: cover;
    height: 100vw;
    min-height: 450px;
  }
  .homehero .embed-container {
    display: none;
  }
  .homehero__statement-copy {
    font-size: 21px;
  }
}

.logoRow {
  padding: 2.75rem 2rem;
  position: relative;
  display: block;
}
.logoRow__logo {
  width: 100%;
}
.logoRow::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  bottom: -1rem;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
}

.includes__sliderDisplay {
  display: block;
  width: 100%;
  background: 0;
}
.includes__sliderDisplay .owl-carousel .owl-item p {
  font-size: 3rem;
}
.includes__arrow-animation {
  width: 100%;
  padding-bottom: 100%;
  background: #46b7df;
  position: relative;
}
.includes__arrow-animation__item {
  width: 8%;
  padding-bottom: 8%;
  background-image: url("/images/arrow-animation.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  position: absolute;
  margin: auto;
  -webkit-animation: arrows 8s infinite;
          animation: arrows 8s infinite;
}
.includes__arrow-animation__item:nth-of-type(1) {
  top: 5%;
  left: 5%;
  transform: rotate(229deg);
}
.includes__arrow-animation__item:nth-of-type(2) {
  top: 5%;
  left: 25%;
  transform: rotate(324deg);
}
.includes__arrow-animation__item:nth-of-type(3) {
  top: 5%;
  left: 45%;
  transform: rotate(121deg);
}
.includes__arrow-animation__item:nth-of-type(4) {
  top: 5%;
  left: 65%;
  transform: rotate(305deg);
}
.includes__arrow-animation__item:nth-of-type(5) {
  top: 5%;
  left: 85%;
  transform: rotate(168deg);
}
.includes__arrow-animation__item:nth-of-type(6) {
  top: 25%;
  left: 5%;
  transform: rotate(32deg);
}
.includes__arrow-animation__item:nth-of-type(7) {
  top: 25%;
  left: 25%;
  transform: rotate(261deg);
}
.includes__arrow-animation__item:nth-of-type(8) {
  top: 25%;
  left: 45%;
  transform: rotate(87deg);
}
.includes__arrow-animation__item:nth-of-type(9) {
  top: 25%;
  left: 65%;
  transform: rotate(266deg);
}
.includes__arrow-animation__item:nth-of-type(10) {
  top: 25%;
  left: 85%;
  transform: rotate(179deg);
}
.includes__arrow-animation__item:nth-of-type(11) {
  top: 45%;
  left: 5%;
  transform: rotate(353deg);
}
.includes__arrow-animation__item:nth-of-type(12) {
  top: 45%;
  left: 25%;
  transform: rotate(134deg);
}
.includes__arrow-animation__item:nth-of-type(13) {
  top: 45%;
  left: 45%;
  transform: rotate(244deg);
}
.includes__arrow-animation__item:nth-of-type(14) {
  top: 45%;
  left: 65%;
  transform: rotate(105deg);
}
.includes__arrow-animation__item:nth-of-type(15) {
  top: 45%;
  left: 85%;
  transform: rotate(122deg);
}
.includes__arrow-animation__item:nth-of-type(16) {
  top: 65%;
  left: 85%;
  transform: rotate(269deg);
}
.includes__arrow-animation__item:nth-of-type(17) {
  top: 65%;
  left: 5%;
  transform: rotate(232deg);
}
.includes__arrow-animation__item:nth-of-type(18) {
  top: 65%;
  left: 25%;
  transform: rotate(251deg);
}
.includes__arrow-animation__item:nth-of-type(19) {
  top: 65%;
  left: 45%;
  transform: rotate(130deg);
}
.includes__arrow-animation__item:nth-of-type(20) {
  top: 65%;
  left: 65%;
  transform: rotate(299deg);
}
.includes__arrow-animation__item:nth-of-type(21) {
  top: 85%;
  left: 85%;
  transform: rotate(337deg);
}
.includes__arrow-animation__item:nth-of-type(22) {
  top: 85%;
  left: 5%;
  transform: rotate(315deg);
}
.includes__arrow-animation__item:nth-of-type(23) {
  top: 85%;
  left: 25%;
  transform: rotate(19deg);
}
.includes__arrow-animation__item:nth-of-type(24) {
  top: 85%;
  left: 45%;
  transform: rotate(161deg);
}
.includes__arrow-animation__item:nth-of-type(25) {
  top: 85%;
  left: 65%;
  transform: rotate(14deg);
}
@-webkit-keyframes arrows {
  40% {
    transform: rotate(inherit);
  }
  50% {
    transform: rotate(-270deg);
  }
  75% {
    transform: rotate(-270deg);
  }
  100% {
    transform: rotate(inherit);
  }
}
@keyframes arrows {
  40% {
    transform: rotate(inherit);
  }
  50% {
    transform: rotate(-270deg);
  }
  75% {
    transform: rotate(-270deg);
  }
  100% {
    transform: rotate(inherit);
  }
}
.includes__chart-animation {
  width: 100%;
  padding-bottom: 100%;
  background: rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.includes__chart-animation__item {
  position: absolute;
  top: 15%;
  bottom: 0%;
  right: 0%;
  width: 30%;
  margin: 0 auto;
  transition: ease 1s;
  box-shadow: inset 0 0 0 0.4vw #eb005b;
  -webkit-animation: chart 5s infinite;
          animation: chart 5s infinite;
}
@media screen and (max-width: 590px) {
  .includes__chart-animation__item {
    box-shadow: inset 0 0 0 0.65vw #eb005b;
  }
}
.includes__chart-animation__item::before, .includes__chart-animation__item::after {
  position: absolute;
  top: inherit;
  left: 0%;
  bottom: 0%;
  right: 0%;
  content: "";
  box-shadow: inherit;
  transition: ease 0s;
}
.includes__chart-animation__item::before {
  transform: translate(-115%);
  margin-top: 55%;
}
.includes__chart-animation__item::after {
  transform: translate(-232%);
  margin-top: 150%;
}
@-webkit-keyframes chart {
  0% {
    top: 15%;
  }
  45% {
    top: 15%;
  }
  50% {
    top: 7%;
  }
  65% {
    top: 7%;
  }
  70% {
    top: 0;
  }
  95% {
    top: 0;
  }
  100% {
    top: 15%;
  }
}
@keyframes chart {
  0% {
    top: 15%;
  }
  45% {
    top: 15%;
  }
  50% {
    top: 7%;
  }
  65% {
    top: 7%;
  }
  70% {
    top: 0;
  }
  95% {
    top: 0;
  }
  100% {
    top: 15%;
  }
}
.includes__whereWeWork {
  margin: auto;
  text-align: center;
  color: #fff;
}
.includes__whereWeWork__icon {
  max-width: 70px;
  margin-bottom: 0.5rem;
  transition: ease 0.4s;
  position: relative;
  top: 0;
}
.includes__whereWeWork__content {
  position: relative;
  z-index: 1;
}
.includes__whereWeWork__absoluteLink {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  z-index: 2;
}
.includes__whereWeWork::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: ease 0.4s;
}
.includes__whereWeWork:hover .includes__whereWeWork__icon {
  top: 5px;
}
.includes__whereWeWork:hover::before {
  background: rgba(0, 0, 0, 0.5);
}
.includes__table {
  width: 100%;
  padding: 0;
}
.includes__table h3 {
  font-size: 1rem;
}
.includes__table__tick, .includes__table__cross {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 1.5rem;
}
.includes__table__tick {
  background-image: url("/uploads/images/icon-tick.png");
}
.includes__table__cross {
  background-image: url("/uploads/images/icon-cross.png");
}
@media screen and (max-width: 1080px) {
  .includes__table {
    min-width: 1160px;
    padding-right: 20px;
  }
}
.includes__ourProcess {
  margin-top: -5rem;
  background: linear-gradient(to top, #ff197b, #ff493a);
  color: #fff;
  display: flex;
}
.includes__ourProcess h3,
.includes__ourProcess p {
  font-size: 1.1rem;
}
.includes__ourProcess__item {
  width: 33.3333%;
  padding: 4rem 6rem 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.includes__ourProcess__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url("/uploads/images/icon-process-arrow.png");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.includes__engageWithChange {
  color: #fff;
  margin-top: -3rem;
  width: 100%;
  min-width: 720px;
  overflow: scroll;
}
.includes__engageWithChange__intro {
  width: 50%;
}
.includes__engageWithChange__tabs {
  position: relative;
}
.includes__engageWithChange__tabs input {
  display: none;
}
.includes__engageWithChange__tabs label {
  color: #fff;
  display: inline;
  font-size: 2rem;
  margin-right: 10px;
  font-weight: 800;
  cursor: pointer;
}
.includes__engageWithChange__tabs input:checked + label {
  color: #000;
}
.includes__engageWithChange__tabs .tab {
  transform: translateY(4rem);
  transition: ease 0.8s;
  opacity: 0;
}
.includes__engageWithChange__tabs .tab img {
  height: 0;
  opacity: 0;
}
.includes__engageWithChange__tabs input:nth-of-type(1):checked ~ .tab:nth-of-type(1),
.includes__engageWithChange__tabs input:nth-of-type(2):checked ~ .tab:nth-of-type(2),
.includes__engageWithChange__tabs input:nth-of-type(3):checked ~ .tab:nth-of-type(3) {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.includes__engageWithChange__tabs input:nth-of-type(1):checked ~ .tab:nth-of-type(1) img,
.includes__engageWithChange__tabs input:nth-of-type(2):checked ~ .tab:nth-of-type(2) img,
.includes__engageWithChange__tabs input:nth-of-type(3):checked ~ .tab:nth-of-type(3) img {
  height: auto;
  opacity: 1;
}
.includes__engageWithChange__image {
  display: block;
  margin: auto;
}
.includes__howWeHelpLists {
  display: flex;
  width: 100%;
  margin-top: -5rem;
}
.includes__howWeHelpLists__item {
  width: 50%;
  background: #e8ebec;
}
.includes__howWeHelpLists__item:first-of-type {
  margin-right: 5px;
}
.includes__howWeHelpLists__title {
  padding: 1.5rem;
  background: #eb005b;
  color: #fff;
  font-size: 1.56rem !important;
}
.includes__howWeHelpLists__list {
  padding: 1.5rem 1.5rem 2.5rem;
  margin: 0;
  list-style: none;
}
.includes__howWeHelpLists__list li {
  position: relative;
  padding-left: 0.5rem;
  padding-left: 0.7rem;
  padding-bottom: 0.7rem;
}
.includes__howWeHelpLists__list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}

.ourPeople {
  padding: 5rem 0;
  display: flex;
  flex-wrap: wrap;
  z-index: 100;
  position: relative;
  width: 100%;
  text-align: center;
}
.ourPeople--included {
  padding: 3rem 0 0;
  margin: 0 0 -2rem;
}
.ourPeople--included .ourPeople__item {
  width: 33.3333%;
}
.ourPeople--associates .ourPeople__item {
  width: 16.6666%;
}
.ourPeople--associates__intro {
  width: 100%;
  text-align: left;
  padding: 0 2rem 2rem;
}
.ourPeople__item {
  width: 25%;
  margin-bottom: 2.5rem;
  position: relative;
}
.ourPeople__item > div {
  position: relative;
}
.ourPeople__item > div::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0);
  transition: ease 0.4s;
}
.ourPeople__item:hover > div::after {
  background: rgba(0, 0, 0, 0.5);
}
.ourPeople__photo {
  width: 100%;
  display: block;
}
.ourPeople__heading {
  font-size: 1rem !important;
  padding: 0.8rem;
}
.ourPeople__link {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.ourPeople__intro {
  padding-bottom: 5rem;
}
.ourPeople__intro h1 {
  margin-bottom: 0;
}
.ourPeople__intro .introPara {
  margin-top: 3rem;
}
.ourPeople__intro .intro__content {
  max-width: 44%;
}
.ourPeople__intro .intro__colorOverlay {
  background-repeat: no-repeat;
  background-position: 95% 100%;
  background-size: contain;
}
.ourPeople__social {
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  width: 2.5rem;
  flex-wrap: wrap;
  align-content: center;
}
.ourPeople__social__item {
  width: 2rem;
  margin: auto 0 !important;
  padding: 0.25rem 0;
}
.ourPeople__social__item img {
  opacity: 0.8;
  transition: ease 0.4s;
}
.ourPeople__social__item:hover img {
  opacity: 1;
}
.ourPeople__pageContent {
  display: flex;
}
.ourPeople__copy {
  padding: 5rem 8rem 5rem 2rem;
  width: 66.6666%;
}
.ourPeople__copy figure > iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
}
.ourPeople__stats {
  width: 33.3333%;
}
.ourPeople__stats__item {
  padding: 0 2rem;
}
.ourPeople__leadershipTitle {
  width: 100%;
  font-weight: 100;
  margin: -4rem 0 3rem;
}
@media screen and (max-width: 730px) {
  .ourPeople__item {
    width: 33.3333%;
  }
  .ourPeople__social {
    position: static;
    width: 100%;
  }
  .ourPeople__social__item {
    width: 1.5rem;
  }
  .ourPeople__social__item img {
    padding-top: 0.5rem;
  }
  .ourPeople__pageContent {
    flex-wrap: wrap;
  }
  .ourPeople__stats {
    width: 100%;
  }
  .ourPeople__stats__item {
    padding: 2rem;
  }
  .ourPeople__copy {
    padding: 5rem 2rem;
    width: 100%;
  }
}
@media screen and (max-width: 660px) {
  .ourPeople__intro {
    padding-bottom: 45vw;
  }
  .ourPeople__intro .intro__content {
    max-width: 100%;
  }
  .ourPeople__intro .intro__colorOverlay {
    background-size: 50vw;
    background-position: 0 100%;
  }
}
@media screen and (max-width: 520px) {
  .ourPeople__item {
    width: 50%;
  }
}
@media screen and (max-width: 360px) {
  .ourPeople__item {
    width: 100%;
  }
}

.accordion {
  padding: 5rem 2rem 7rem;
}
.accordion > h2 {
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 100;
}
.accordion__item {
  overflow: hidden;
  position: relative;
  border-top: 1px solid #91979b;
  padding: 0.6rem 0;
}
.accordion__item:last-of-type {
  border-bottom: 1px solid #91979b;
}
.accordion__copy {
  width: 66%;
  display: inline-block;
}
.accordion__include, .accordion__image {
  width: 26%;
  display: inline-block;
  float: right;
}
.accordion__include img, .accordion__image img {
  float: none;
  width: 100%;
  margin: 0;
  max-width: unset;
}
.accordion__icon {
  position: absolute;
  left: 0;
  top: 0.9rem;
  height: 2rem;
  width: 2rem;
  z-index: 2;
  pointer-events: none;
}
.accordion__icon div {
  height: 0.2rem;
  width: 2rem;
  background: #91979b;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: ease 0.3s;
}
.accordion__icon div:last-of-type {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: rotate(90deg);
}
.accordion__toggle {
  color: #eb005b;
  text-decoration: none;
  padding: 0;
  background: #fff;
  display: block;
  z-index: 1;
  position: relative;
}
.accordion__toggle h3 {
  padding-left: 5rem;
}
.accordion__draw {
  padding: 0;
  padding-left: 5rem;
  overflow: hidden;
  height: 100%;
  position: relative;
  display: none;
  margin: 1rem 0 1.5rem;
}
.accordion__draw p {
  max-width: 900px;
}
.accordion--active .accordion__draw {
  max-height: 1000px;
}
.accordion--active .accordion__icon div:last-of-type {
  transform: rotate(180deg);
}
@media screen and (max-width: 880px) {
  .accordion__copy {
    width: 50%;
  }
  .accordion__include, .accordion__image {
    width: 42%;
  }
}
@media screen and (max-width: 740px) {
  .accordion__icon {
    top: 0.5rem;
  }
}
@media screen and (max-width: 590px) {
  .accordion__copy {
    width: 100%;
    display: inline-block;
  }
  .accordion__include, .accordion__image {
    width: 100%;
    max-width: 300px;
    margin-top: 2rem;
    display: inline-block;
    float: none;
  }
}

.careers {
  align-items: baseline;
  border-left: 1px solid;
  height: 100%;
  padding: 2rem 0 2rem 2rem;
  width: 100%;
}
.careers__item {
  margin-top: 2rem;
}
.careers__item h3 {
  font-size: 1.8rem;
}
@media screen and (max-width: 769px) {
  .careers {
    border-left: 0;
    padding: 0;
    margin-top: -160px;
  }
}

.arrowList {
  padding: 5rem 2rem;
  z-index: 100;
  position: relative;
}
.arrowList h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.arrowList__shifts {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.arrowList__shifts h3 {
  width: 50%;
  padding: 0 0 0 3rem;
  position: relative;
}
.arrowList__shifts h3:first-of-type {
  text-align: right;
  padding: 0 3rem 0 0;
}
.arrowList__shifts h3:first-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1rem;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 1.125rem solid transparent;
  border-bottom: 1.125rem solid transparent;
  border-left: 1.5rem solid currentColor;
}
@media screen and (max-width: 500px) {
  .arrowList__shifts {
    display: block;
    margin-bottom: 2.5rem;
  }
  .arrowList__shifts h3 {
    text-align: center !important;
    width: 100%;
    padding: 0 !important;
  }
  .arrowList__shifts h3:first-of-type {
    margin-bottom: 2rem;
  }
  .arrowList__shifts h3:first-of-type::after {
    transform: rotate(90deg);
    left: 0;
    right: 0;
    bottom: -4.3rem;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-left: 1rem solid currentColor;
  }
}

.ctaBlock {
  padding: 3rem 2rem;
}
.ctaBlock--banner {
  position: relative;
  background-color: #46b8e0;
  color: #fff;
  overflow: hidden;
}
.ctaBlock--banner > * {
  position: relative;
  z-index: 2;
}
.ctaBlock--banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-style: solid;
  border-width: 514px 0 0 653px;
  border-color: transparent transparent transparent #fff;
  opacity: 0.1;
}
.ctaBlock--banner .ctaBlock__logo {
  max-width: 70px;
  display: block;
  margin-bottom: 40px;
}
.ctaBlock--banner .ctaBlock__logo img {
  display: block;
  width: 100%;
}
.ctaBlock--banner .btn {
  margin-top: 2.5rem;
  display: inline-block;
  line-height: 1.3;
  height: unset;
}
.ctaBlock--banner .ctaBlock__copy {
  max-width: 670px;
}
.ctaBlock--banner .ctaBlock__copy h1,
.ctaBlock--banner .ctaBlock__copy h2,
.ctaBlock--banner .ctaBlock__copy h3,
.ctaBlock--banner .ctaBlock__copy h4,
.ctaBlock--banner .ctaBlock__copy h5,
.ctaBlock--banner .ctaBlock__copy h6 {
  font-family: "AvantGarde", sans-serif;
  line-height: 1.1;
}
.ctaBlock .grad__button {
  margin-bottom: 1.5rem;
}

.stepSlider {
  counter-reset: section;
  position: relative;
  margin: -3rem 0 0 -2rem;
  width: calc(100% + 4rem);
}
.stepSlider__slide {
  text-align: center;
  padding: 1rem;
  max-width: 900px;
  margin: auto;
}
.stepSlider__slide h2 {
  position: relative;
  margin: 1rem 0;
  font-size: 30px;
}
@media screen and (min-width: 860px) {
  .stepSlider__slide h2 {
    margin: 2rem 0 1rem;
  }
}
.stepSlider__slide h2::before {
  margin: auto;
  counter-increment: section;
  content: counter(section);
  font-size: 7rem;
  font-weight: 600;
  color: #56005f;
  position: relative;
  top: -2rem;
}
@media screen and (min-width: 860px) {
  .stepSlider__slide h2::before {
    top: -4rem;
  }
}
.stepSlider__slide p {
  font-size: 1.25rem !important;
}
.stepSlider .slider-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 8rem;
}
@media screen and (min-width: 860px) {
  .stepSlider .slider-nav {
    top: 9rem;
  }
}
.stepSlider .slider-nav__item {
  background: #ccb2ce;
  margin-left: 0;
  margin: 0 1.5%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 460px) {
  .stepSlider .slider-nav__item {
    margin: 0 3%;
  }
}
@media screen and (min-width: 860px) {
  .stepSlider .slider-nav__item {
    margin: 0 4%;
  }
}
.stepSlider .slider-nav__item.active {
  background: #56005f;
}
.stepSlider .slider-nav__item.active::before {
  color: #56005f;
}
@media screen and (min-width: 860px) {
  .stepSlider .slider-nav__item::before {
    color: #888;
    position: absolute;
    left: 50%;
    top: -2rem;
    transform: translateX(-50%);
    font-size: 0.65em;
  }
  .stepSlider .slider-nav__item:nth-of-type(1n)::before {
    content: "Onboarding";
  }
  .stepSlider .slider-nav__item:nth-of-type(2n)::before {
    content: "Engagement";
  }
  .stepSlider .slider-nav__item:nth-of-type(3n)::before {
    content: "Recommendations";
  }
  .stepSlider .slider-nav__item:nth-of-type(4n)::before {
    content: "Development";
  }
  .stepSlider .slider-nav__item:nth-of-type(5n)::before {
    content: "Training";
  }
  .stepSlider .slider-nav__item:nth-of-type(6n)::before {
    content: "Go\A0Live";
  }
  .stepSlider .slider-nav__item:nth-of-type(7n)::before {
    content: "Change";
  }
  .stepSlider .slider-nav__item:nth-of-type(8n)::before {
    content: "Measure";
  }
}
.stepSlider .slider-nav::before {
  position: absolute;
  height: 5px;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: linear-gradient(to right, #000 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 10px 3px;
  background-repeat: repeat-x;
  opacity: 0.4;
}

.logos {
  overflow: hidden;
  position: relative;
  height: 20vw;
  width: 100%;
  margin-top: -5rem;
  margin-bottom: -5rem;
}
@media screen and (min-width: 540px) {
  .logos {
    height: 13vw;
  }
}
@media screen and (min-width: 880px) {
  .logos {
    height: 11vw;
  }
}
.logos__bgImage {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-animation: logoTransitionTwo 80s infinite;
          animation: logoTransitionTwo 80s infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  background-position: center -9vw;
  background-image: url("/images/logo-row-02.jpg");
}
@media screen and (min-width: 540px) {
  .logos__bgImage {
    -webkit-animation: logoTransitionFour 40s infinite;
            animation: logoTransitionFour 40s infinite;
    background-image: url("/images/logo-row-04.jpg");
    background-position: center -4vw;
    background-size: 100%;
  }
}
@media screen and (min-width: 880px) {
  .logos__bgImage {
    -webkit-animation: logoTransitionSeven 20s infinite;
            animation: logoTransitionSeven 20s infinite;
    background-image: url("/uploads/images/logo-row-01.png"), url("/uploads/images/logo-row-02.png"), url("/uploads/images/logo-row-03.png"), url("/uploads/images/logo-row-04.png");
    background-position: 50% 0, 50% 10vw, 50% 20vw, 50% 30vw;
    background-size: 100%;
  }
}
.logos::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 0.75vw;
  background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (min-width: 540px) {
  .logos::after {
    height: 1.5vw;
  }
}
@media screen and (min-width: 880px) {
  .logos::after {
    height: 2.5vw;
  }
}
.logos::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 0.75vw;
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media screen and (min-width: 540px) {
  .logos::before {
    height: 1.5vw;
  }
}
@media screen and (min-width: 880px) {
  .logos::before {
    height: 2.5vw;
  }
}

@-webkit-keyframes logoTransitionSeven {
  0% {
    top: 0;
  }
  20% {
    top: 0;
  }
  25% {
    top: -10vw;
  }
  45% {
    top: -10vw;
  }
  50% {
    top: -20vw;
  }
  70% {
    top: -20vw;
  }
  75% {
    top: -30vw;
  }
  95% {
    top: -30vw;
  }
  100% {
    top: -30vw;
  }
}

@keyframes logoTransitionSeven {
  0% {
    top: 0;
  }
  20% {
    top: 0;
  }
  25% {
    top: -10vw;
  }
  45% {
    top: -10vw;
  }
  50% {
    top: -20vw;
  }
  70% {
    top: -20vw;
  }
  75% {
    top: -30vw;
  }
  95% {
    top: -30vw;
  }
  100% {
    top: -30vw;
  }
}
@-webkit-keyframes logoTransitionFour {
  0% {
    top: 0;
  }
  8.88% {
    top: 0;
  }
  11.1% {
    top: -20vw;
  }
  19.98% {
    top: -20vw;
  }
  22.2% {
    top: -40vw;
  }
  31.08% {
    top: -40vw;
  }
  33.3% {
    top: -60vw;
  }
  42.18% {
    top: -60vw;
  }
  44.4% {
    top: -80vw;
  }
  53.28% {
    top: -80vw;
  }
  55.5% {
    top: -100vw;
  }
  64.38% {
    top: -100vw;
  }
  66.6% {
    top: -120vw;
  }
  75.48% {
    top: -120vw;
  }
  77.7% {
    top: -140vw;
  }
  86.58% {
    top: -140vw;
  }
  88.8% {
    top: -140vw;
  }
  100% {
    top: -140vw;
  }
}
@keyframes logoTransitionFour {
  0% {
    top: 0;
  }
  8.88% {
    top: 0;
  }
  11.1% {
    top: -20vw;
  }
  19.98% {
    top: -20vw;
  }
  22.2% {
    top: -40vw;
  }
  31.08% {
    top: -40vw;
  }
  33.3% {
    top: -60vw;
  }
  42.18% {
    top: -60vw;
  }
  44.4% {
    top: -80vw;
  }
  53.28% {
    top: -80vw;
  }
  55.5% {
    top: -100vw;
  }
  64.38% {
    top: -100vw;
  }
  66.6% {
    top: -120vw;
  }
  75.48% {
    top: -120vw;
  }
  77.7% {
    top: -140vw;
  }
  86.58% {
    top: -140vw;
  }
  88.8% {
    top: -140vw;
  }
  100% {
    top: -140vw;
  }
}
@-webkit-keyframes logoTransitionTwo {
  0% {
    top: 0;
  }
  4.706% {
    top: 0;
  }
  5.882% {
    top: -34.5vw;
  }
  10.588% {
    top: -34.5vw;
  }
  11.764% {
    top: -69vw;
  }
  16.588% {
    top: -69vw;
  }
  17.647% {
    top: -103.5vw;
  }
  22.353% {
    top: -103.5vw;
  }
  23.529% {
    top: -138vw;
  }
  28.236% {
    top: -138vw;
  }
  29.412% {
    top: -174vw;
  }
  34.118% {
    top: -174vw;
  }
  35.294% {
    top: -211vw;
  }
  40% {
    top: -211vw;
  }
  41.176% {
    top: -246.5vw;
  }
  45.883% {
    top: -246.5vw;
  }
  47.059% {
    top: -282vw;
  }
  51.765% {
    top: -282vw;
  }
  52.941% {
    top: -316.5vw;
  }
  57.648% {
    top: -316.5vw;
  }
  58.824% {
    top: -353vw;
  }
  63.530% {
    top: -353vw;
  }
  64.706% {
    top: -389.5vw;
  }
  69.412% {
    top: -389.5vw;
  }
  70.588% {
    top: -424vw;
  }
  75.295% {
    top: -424vw;
  }
  76.471% {
    top: -458.5vw;
  }
  81.177% {
    top: -458.5vw;
  }
  82.353% {
    top: -495vw;
  }
  87.059% {
    top: -495vw;
  }
  88.235% {
    top: -531.5vw;
  }
  92.942% {
    top: -531.5vw;
  }
  94.118% {
    top: -531.5vw;
  }
  100% {
    top: -531.5vw;
  }
}
@keyframes logoTransitionTwo {
  0% {
    top: 0;
  }
  4.706% {
    top: 0;
  }
  5.882% {
    top: -34.5vw;
  }
  10.588% {
    top: -34.5vw;
  }
  11.764% {
    top: -69vw;
  }
  16.588% {
    top: -69vw;
  }
  17.647% {
    top: -103.5vw;
  }
  22.353% {
    top: -103.5vw;
  }
  23.529% {
    top: -138vw;
  }
  28.236% {
    top: -138vw;
  }
  29.412% {
    top: -174vw;
  }
  34.118% {
    top: -174vw;
  }
  35.294% {
    top: -211vw;
  }
  40% {
    top: -211vw;
  }
  41.176% {
    top: -246.5vw;
  }
  45.883% {
    top: -246.5vw;
  }
  47.059% {
    top: -282vw;
  }
  51.765% {
    top: -282vw;
  }
  52.941% {
    top: -316.5vw;
  }
  57.648% {
    top: -316.5vw;
  }
  58.824% {
    top: -353vw;
  }
  63.530% {
    top: -353vw;
  }
  64.706% {
    top: -389.5vw;
  }
  69.412% {
    top: -389.5vw;
  }
  70.588% {
    top: -424vw;
  }
  75.295% {
    top: -424vw;
  }
  76.471% {
    top: -458.5vw;
  }
  81.177% {
    top: -458.5vw;
  }
  82.353% {
    top: -495vw;
  }
  87.059% {
    top: -495vw;
  }
  88.235% {
    top: -531.5vw;
  }
  92.942% {
    top: -531.5vw;
  }
  94.118% {
    top: -531.5vw;
  }
  100% {
    top: -531.5vw;
  }
}
.map {
  margin: -5rem -2rem;
  position: relative;
  background-color: #323d4f;
  z-index: 50;
  overflow: hidden;
  width: calc(100% + 4rem);
}
.map__background {
  width: 100%;
}
.map__pin {
  pointer-events: all;
  position: absolute;
  text-align: center;
  text-decoration: none;
  color: #fff;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.map__pin .map__spot {
  margin: auto;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  background: rgba(255, 25, 123, 0.7);
  transition: ease 1.2s;
  position: absolute;
  left: calc(50% - 112px);
  top: calc(50% - 92px);
  transform: scale(0.1, 0.1);
  transform: scale3d(calc(1 / 14), calc(1 / 14), 1) translate(0%, 0%);
  z-index: 0;
  -webkit-filter: none;
          filter: none;
}
.map__pin--us {
  top: 18%;
  left: 15%;
}
.map__pin--us .map__spot {
  height: 336px;
  width: 336px;
  left: calc(50% - 168px);
  top: calc(50% - 144px);
}
.map__pin--panama {
  top: 50%;
  left: 15%;
}
.map__pin--brazil {
  top: 60%;
  left: 31%;
}
.map__pin--eu {
  top: 16.5%;
  left: 51%;
}
.map__pin--eu .map__spot {
  height: 280px;
  width: 280px;
  left: calc(50% - 140px);
  top: calc(50% - 119px);
}
.map__pin--uk {
  top: 14%;
  left: 46%;
}
.map__pin--marocco {
  top: 27%;
  left: 46%;
}
.map__pin--dubai {
  top: 36%;
  left: 67.5%;
}
.map__pin--russia {
  top: 12%;
  left: 76%;
}
.map__pin--japan {
  top: 27%;
  left: 94.5%;
}
.map__pin--india {
  top: 41%;
  left: 75.5%;
}
.map__pin--china {
  top: 26%;
  left: 77%;
}
.map__pin--thailand {
  top: 44%;
  left: 85%;
}
.map__pin--australia {
  top: 76%;
  left: 94%;
}
.map__pin--australia .map__spot {
  height: 280px;
  width: 280px;
  left: calc(50% - 140px);
  top: calc(50% - 119px);
}
.map__pin:hover .map__spot {
  transform: scale(1, 1);
}
.map__pin:hover .map__info {
  transition: ease 1s;
  transform: translateY(16px);
}
.map__pin:hover .map__info p {
  max-height: 500px;
  opacity: 1;
}
.map__info {
  position: relative;
  z-index: 100;
  opacity: 1;
  pointer-events: none;
  transition: ease 0.8s;
}
.map__info h3 {
  margin: 0;
  font-size: 28px;
}
@media screen and (max-width: 1250px) {
  .map__info h3 {
    font-size: calc(1px + 2vw);
  }
}
@media screen and (max-width: 700px) {
  .map__info h3 {
    font-size: 22px;
  }
}
.map__info p {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  line-height: 1;
  font-size: 1.25rem;
  transition: all 1s ease;
}
@media screen and (max-width: 900px) {
  .map__info p {
    font-size: 1rem;
    line-height: 1.1;
  }
}

@media screen and (max-width: 700px) {
  #map {
    padding: 2rem 0;
  }
  #map .map__pin {
    position: relative;
    top: unset;
    left: unset;
  }
  #map .map__pin .map__spot {
    display: none;
  }
  #map .map__info {
    max-height: 500px;
  }
  #map .map__info p {
    opacity: 1;
  }
  #map .map__background {
    position: absolute;
    top: 0;
    min-height: 400px;
    opacity: 0.2;
  }
}

.case-studies {
  display: flex;
  flex-wrap: wrap;
}
.case-studies__entry {
  width: 50vw;
  height: 50vw;
  position: relative;
  transition: ease-out 0.3s;
  z-index: 1;
  overflow: hidden;
}
.case-studies__entry:hover {
  z-index: 2;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.case-studies__entry:hover .case-studies__entry-link {
  background: #000;
  opacity: 0.2;
  transition: ease 0.3s;
}
.case-studies__entry:hover .case-studies__entry-logo {
  transform: translate(-50%, -50%) scale3d(1.1, 1.1, 1);
  transition: ease 0.5s;
}
@media screen and (min-width: 740px) {
  .case-studies__entry {
    width: 33.33vw;
    height: 33.33vw;
  }
}
@media screen and (min-width: 1200px) {
  .case-studies__entry {
    width: 25vw;
    height: 25vw;
  }
}
.case-studies__entry-heading {
  position: absolute;
  bottom: 0;
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  padding: 1rem 0;
  margin: 0;
}
.case-studies__entry-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 2px);
  max-width: 400px;
  transform: translate(-50%, -50%);
}
.case-studies__entry-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 10;
}
.case-studies .feature {
  padding: 0;
  margin: 0;
  width: 25%;
}
@media screen and (max-width: 870px) {
  .case-studies .feature {
    width: 50%;
  }
}
@media screen and (max-width: 420px) {
  .case-studies .feature {
    width: 100%;
  }
}
.case-studies .feature__box {
  padding: 30px 0 0;
}
.case-studies .feature__box p {
  font-weight: 400;
}
.case-studies .feature__box::after {
  display: none;
}
.case-studies .feature__icon span {
  width: 100%;
}
.case-studies .feature__icon img {
  max-width: 100%;
}
.case-studies .feature .case-studies-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  margin: auto;
  z-index: 5;
}
.case-studies .feature::before {
  content: "";
  width: 1px;
  margin-left: -1px;
  float: left;
  height: 0;
  padding-top: 100%;
}
.case-studies .feature::after {
  content: "";
  display: table;
  clear: both;
}

.arrowblock {
  position: relative;
  z-index: 100;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
}
.arrowblock__item {
  width: 50%;
  text-align: center;
  position: relative;
}
.arrowblock__item:first-of-type::after {
  width: 100px;
  height: 100px;
  content: "";
  background: inherit;
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -5px;
  margin: auto;
  z-index: 1;
}
.arrowblock__item:last-of-type {
  z-index: 0;
}
.arrowblock__heading {
  padding: 3.5rem 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 650px) {
  .arrowblock__item {
    width: 100%;
  }
  .arrowblock__item:first-of-type::after {
    width: 100px;
    height: 100px;
    content: "";
    background: inherit;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: -55px;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
  }
}

.arrowList {
  padding: 5rem 2rem;
  z-index: 100;
  position: relative;
}
.arrowList h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.arrowList__shifts {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.arrowList__shifts h3 {
  width: 50%;
  padding: 0 0 0 3rem;
  position: relative;
}
.arrowList__shifts h3:first-of-type {
  text-align: right;
  padding: 0 3rem 0 0;
}
.arrowList__shifts h3:first-of-type::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1rem;
  margin: auto;
  width: 0;
  height: 0;
  border-top: 1.125rem solid transparent;
  border-bottom: 1.125rem solid transparent;
  border-left: 1.5rem solid currentColor;
}
@media screen and (max-width: 500px) {
  .arrowList__shifts {
    display: block;
    margin-bottom: 2.5rem;
  }
  .arrowList__shifts h3 {
    text-align: center !important;
    width: 100%;
    padding: 0 !important;
  }
  .arrowList__shifts h3:first-of-type {
    margin-bottom: 2rem;
  }
  .arrowList__shifts h3:first-of-type::after {
    transform: rotate(90deg);
    left: 0;
    right: 0;
    bottom: -4.3rem;
    border-top: 1rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-left: 1rem solid currentColor;
  }
}

/* ------------------------------------------------------------ *\
	Article Bio
\* ------------------------------------------------------------ */
.article-bio {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 17px;
}
.article-bio .article__image,
.article-bio .article__content {
  width: 50%;
}
@media (max-width: 1023px) {
  .article-bio .article__image,
.article-bio .article__content {
    width: 100%;
  }
}
.article-bio .article__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media (max-width: 1023px) {
  .article-bio .article__image {
    padding-top: 69%;
  }
}
.article-bio .article__content {
  padding: 47px 70px 70px 83px;
  background: #00cc97;
  color: #fff;
}
@media (max-width: 1023px) {
  .article-bio .article__content {
    padding: 40px;
  }
}
@media (max-width: 767px) {
  .article-bio .article__content {
    padding: 20px;
  }
}
.article-bio .article__content h3 {
  margin-bottom: 34px;
}
@media (max-width: 767px) {
  .article-bio .article__content h3 {
    margin-bottom: 20px;
  }
}
.article-bio .article__content p {
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.5;
}
.article-bio .article__content p strong {
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: -0.006em;
}
.article-bio .article__content p span {
  display: block;
}
@media (max-width: 767px) {
  .article-bio .article__content p {
    margin-bottom: 20px;
    font-size: 16px;
  }
}

/* ------------------------------------------------------------ *\
	Article
\* ------------------------------------------------------------ */
.article .article__head {
  margin-bottom: 64px;
}
.article .article__head h2 {
  font-weight: 400;
  letter-spacing: -0.03em;
}
@media (max-width: 1023px) {
  .article .article__head {
    margin-bottom: 30px;
  }
}
.article .article__body {
  display: flex;
  flex-wrap: wrap;
}
.article .article__content {
  width: 56%;
  padding-right: 25px;
}
.article .article__content h4 {
  margin-bottom: 28px;
  letter-spacing: -0.005em;
}
.article .article__content p {
  margin-bottom: 26px;
  font-size: 25px;
  color: #666;
  letter-spacing: -0.007em;
}
.article .article__content blockquote {
  font-style: italic;
  font-weight: 300;
  color: #c40052;
  margin-bottom: 26px;
  font-size: 25px;
  letter-spacing: -0.025em;
}
@media (max-width: 1023px) {
  .article .article__content {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
}
.article .article__aside {
  width: 44%;
  padding-left: 165px;
}
.article .article__aside h3 {
  line-height: 1.15;
}
@media (max-width: 1023px) {
  .article .article__aside {
    width: 100%;
    padding: 0;
  }
}

/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */
body {
  min-width: 320px;
  background: #fff;
  font-family: "Albert", sans-serif;
  font-size: 20px;
  line-height: 1.3;
  color: #000;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 10px 0;
  font-weight: 900;
}

h1 {
  font-size: 56px;
  font-family: "AvantGarde", sans-serif;
  line-height: 1.1;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 21px;
}

h6 {
  font-size: 20px;
}

p,
ul,
ol,
dl,
table,
blockquote {
  margin-bottom: 10px;
  margin-top: 0;
}

h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
h5:last-child,
h6:last-child,
p:last-child,
ul:last-child,
ol:last-child,
dl:last-child,
table:last-child,
blockquote:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 28px;
  }

  h4 {
    font-size: 21px;
  }

  h5 {
    font-size: 19px;
  }

  h6 {
    font-size: 17px;
  }
}
/* ------------------------------------------------------------ *\
Blogpost
\* ------------------------------------------------------------ */
.blogpost {
  margin-bottom: 48px;
  padding: 0 2rem 5rem;
  position: relative;
  /*  Blogpost Layout  */
  /*  Blogpost Info  */
  /*  Blogpost Content  */
  /*  Blogpost Meta  */
  /*  Blogpost Image  */
}
.blogpost__container, .blogpost__inner {
  display: flex;
  flex-wrap: wrap;
}
.blogpost__container {
  justify-content: flex-start;
}
.blogpost__aside, .blogpost__inner {
  margin-bottom: 15px;
}
.blogpost__inner {
  width: 100%;
  margin: 7px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.blogpost__inner:hover {
  opacity: 0.8;
}
@media (min-width: 1023px) {
  .blogpost__inner {
    width: calc(75% - 14px);
    margin: 7px;
  }
}
@media (min-width: 1550px) {
  .blogpost__inner {
    width: calc(50% - 14px);
  }
}
.blogpost__aside {
  width: 100%;
  margin: 7px;
  display: block;
  transition: opacity 0.3s;
  text-decoration: none;
  background: #222221;
  color: #222221;
}
.blogpost__aside:nth-of-type(2n) {
  background: #ff493a;
  color: #ff493a;
}
.blogpost__aside:nth-of-type(3n) {
  background: #00009d;
  color: #00009d;
}
.blogpost__aside:nth-of-type(4n) {
  background: #eb005b;
  color: #eb005b;
}
.blogpost__aside:nth-of-type(5n) {
  background: #233d8d;
  color: #233d8d;
}
.blogpost__aside:nth-of-type(6n) {
  background: #4ab7de;
  color: #4ab7de;
}
.blogpost__aside:hover {
  opacity: 0.8;
}
.blogpost__aside-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  padding-top: 79%;
}
@media (max-width: 1023px) {
  .blogpost__aside-image {
    padding-top: 50%;
  }
}
@media (min-width: 479px) {
  .blogpost__aside {
    width: calc(50% - 14px);
  }
}
@media (min-width: 1023px) {
  .blogpost__aside {
    width: calc(25% - 14px);
  }
}
.blogpost__content, .blogpost__image {
  width: 50%;
}
@media (max-width: 767px) {
  .blogpost__content, .blogpost__image {
    width: 100%;
  }
}
.blogpost__container {
  margin-bottom: 29px;
}
.blogpost__info {
  position: relative;
  padding: 15px 20px 52px 10px;
  color: currentColor;
  background: inherit;
}
.blogpost__info::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 21px solid currentColor;
}
.blogpost__info h6 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.blogpost__info p {
  margin-bottom: 24px;
  font-size: 27px;
  font-weight: 700;
  color: #fff;
}
.blogpost__info p::after {
  content: "";
  display: block;
  width: 12px;
  height: 3px;
  margin-top: 14px;
  background: #fff;
}
.blogpost__content {
  position: relative;
  padding: 16px 140px 16px 16px;
  background: inherit;
  color: #001c67;
}
@media (max-width: 767px) {
  .blogpost__content {
    padding: 20px;
  }
}
.blogpost__content::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 61px;
  width: 0;
  height: 0;
  border-top: 47px solid transparent;
  border-left: 47px solid currentColor;
  border-bottom: 47px solid transparent;
}
@media (max-width: 767px) {
  .blogpost__content::before {
    left: 0;
    right: 0;
    margin: auto;
    top: 100%;
    border-bottom: none;
    border-left-color: transparent;
    border-right: 47px solid transparent;
    border-top-color: inherit;
  }
}
.blogpost__content h6 {
  margin-bottom: 3px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.blogpost__content p {
  margin-bottom: 24px;
  font-size: 35px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}
.blogpost__content p::after {
  content: "";
  display: block;
  width: 12px;
  height: 3px;
  margin-top: 14px;
  background: currentColor;
}
.blogpost__content .blogpost__meta p {
  color: #fff;
}
.blogpost__meta p {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  color: #fff;
}
.blogpost__meta p::after {
  content: none;
}
.blogpost__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-top: 50%;
}
@media (max-width: 767px) {
  .blogpost__image {
    padding-top: 100%;
  }
}
.blogpost__topic {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.blogpost__replace {
  display: none;
}
@media screen and (max-width: 768px) {
  .blogpost__replace {
    display: block;
  }
  .blogpost__inner {
    display: none;
  }
}
@media screen and (max-width: 478px) {
  .blogpost {
    padding: 0;
  }
  .blogpost__aside {
    margin: 0 1rem 1rem;
  }
  .blogpost__info {
    padding: 1rem;
  }
  .blogpost__info h6 {
    font-size: 12px;
  }
  .blogpost__info > p {
    font-size: 24px;
  }
  .blogpost__actions {
    padding: 0 1rem;
  }
}

.blogArrow::before {
  position: absolute;
  content: "";
  width: 150%;
  padding-bottom: 150%;
  background-color: #e5f7fa;
  margin: auto;
  bottom: 0;
  right: unset;
  left: -76%;
  top: -5%;
  z-index: -1;
  transform: rotate(45deg);
}
@media screen and (max-width: 1022px) {
  .blogArrow::before {
    display: none;
  }
}

/* ------------------------------------------------------------ *\
	Btn
\* ------------------------------------------------------------ */
.btn {
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ------------------------------------------------------------ *\
	Btn Default
\* ------------------------------------------------------------ */
.btn--default {
  position: relative;
  min-width: 147px;
  height: 38px;
  padding: 0 22px 0 7px;
  border: 0;
  border-radius: 0;
  line-height: 38px;
  font-size: 20px;
  color: #000;
  text-decoration: none;
  text-align: left;
}

/* ------------------------------------------------------------ *\
	Btn Light
\* ------------------------------------------------------------ */
.btn--light {
  background: rgba(255, 255, 255, 0.71);
  transition: color 0.3s, background 0.3s;
}
.btn--light:hover {
  background: rgba(113, 53, 67, 0.71);
  color: #fff;
}

/* ------------------------------------------------------------ *\
	Btn Gradient
\* ------------------------------------------------------------ */
.btn--gradient {
  background: linear-gradient(to right, #ff197b, #ff493a);
  color: #fff;
  transition: opacity 0.3s;
}
.btn--gradient:hover {
  opacity: 0.85;
}

/* ------------------------------------------------------------ *\
	Btn Large
\* ------------------------------------------------------------ */
.btn--large {
  min-width: 252px;
  height: 46px;
  padding: 0 7px;
  line-height: 46px;
}
.btn--large i {
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* ------------------------------------------------------------ *\
	Btn Thin
\* ------------------------------------------------------------ */
.btn--thin {
  min-width: 214px;
  padding: 0 10px;
  height: 35px;
  line-height: 35px;
  font-size: 14px;
}
.btn--thin i {
  position: absolute;
  right: 9px;
  top: 0;
  bottom: 0;
  margin: auto;
}

/* ------------------------------------------------------------ *\
	Btn Dark
\* ------------------------------------------------------------ */
.btn--dark {
  background: #222221;
  color: #fff;
  transition: opacity 0.3s;
}
.btn--dark:hover {
  opacity: 0.8;
}

/* ------------------------------------------------------------ *\
	Btn Darken
\* ------------------------------------------------------------ */
.btn--darken {
  background: #535e74;
  color: #fff;
  transition: opacity 0.3s;
}
.btn--darken:hover {
  opacity: 0.8;
}

/* ------------------------------------------------------------ *\
	Btn Higher
\* ------------------------------------------------------------ */
.btn--high {
  height: 50px;
  padding: 0 22px 0 11px;
  line-height: 50px;
}

/* ------------------------------------------------------------ *\
	Btn Purple
\* ------------------------------------------------------------ */
.btn--purple {
  background: #b70073;
  color: #fff;
  transition: opacity 0.3s;
}
.btn--purple:hover {
  opacity: 0.8;
}

.btn--border {
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  background: transparent;
  padding: 0.6rem 1.2rem;
  display: inline;
}
.btn--border:hover {
  color: #ff3a7a;
  border: 1px solid transparent;
  background: #fff;
}

.grad__button {
  font-weight: 600;
  color: #fff;
  background: linear-gradient(to right, #ff197b, #ff493a);
  background-repeat: no-repeat;
  transition: ease 0.4s;
  text-align: left;
  position: relative;
  display: inline-block;
}
.grad__button a {
  padding: 1rem 4rem 1rem 1rem;
  display: block;
  text-decoration: none;
}
.grad__button::after {
  position: absolute;
  content: "";
  width: 1.3rem;
  height: 1.3rem;
  background-image: url(/uploads/images/icon-solid-arrow-right.svg);
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
  background-repeat: no-repeat;
  transition: ease 0.3s;
}
.grad__button:hover::after {
  right: 0.8rem;
}

/* ------------------------------------------------------------ *\
	Cards
\* ------------------------------------------------------------ */
.cards {
  padding: 2rem;
}
.cards__container {
  margin: 0 -8px;
}
.cards__container::after {
  content: "";
  clear: both;
  display: table;
  line-height: 0;
}
.cards .card {
  float: left;
  width: 25%;
  padding: 0 8px;
  margin: 0 0 16px;
}
@media (max-width: 1023px) {
  .cards .card {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .cards .card {
    width: 100%;
  }
}

.card__inner {
  position: relative;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-top: 100%;
}
.card__inner h4 {
  position: absolute;
  top: 8px;
  left: 10px;
  max-width: 180px;
  color: #fff;
  font-size: 27px;
  line-height: 1.2;
}
.card__inner a, .card__inner .card__action {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 15px;
  color: #fff;
  text-decoration: none;
  background-color: rgba(0, 0, 0, 0.2);
  transition: color 0.3s, background 0.3s;
}
.card__inner a i, .card__inner .card__action i {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.card__inner a:hover, .card__inner .card__action:hover {
  background-color: black;
}

/* ------------------------------------------------------------ *\
	Card Transparent
\* ------------------------------------------------------------ */
.card--transparent .card__inner {
  padding-top: 73%;
  border: 1px solid #c3c7cf;
}
.card--transparent .card__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 7px;
  z-index: -1;
  background: #b70073;
}
.card--transparent .card__inner h4 {
  top: 15px;
  left: 12px;
  color: #535e74;
  font-size: 28px;
}
.card--transparent .card__inner a, .card--transparent .card__inner .card__action {
  background-color: #fff;
  color: #2e4049;
}

/* ------------------------------------------------------------ *\
	Card Green
\* ------------------------------------------------------------ */
.card--green .card__inner::after {
  background: #00cc97;
}
.card--green .card__inner:hover .card__action {
  background-color-color: #00cc97;
  color: #fff;
}

/* ------------------------------------------------------------ *\
	Card Purple
\* ------------------------------------------------------------ */
.card--purple .card__inner:hover .card__action {
  background-color: #b70073;
  color: #fff;
}

/* ------------------------------------------------------------ *\
	Card Brown
\* ------------------------------------------------------------ */
.card--brown .card__inner::after {
  background-color: #c3625c;
}
.card--brown .card__inner:hover .card__action {
  background-color: #c3625c;
  color: #fff;
}

/* ------------------------------------------------------------ *\
	Card Pink
\* ------------------------------------------------------------ */
.card--pink .card__inner::after {
  background-color: #ff76ad;
}
.card--pink .card__inner:hover .card__action {
  background: #ff76ad;
  color: #fff;
}

.careers {
  align-items: baseline;
  border-left: 1px solid;
  height: 100%;
  padding: 2rem 0 2rem 2rem;
  width: 100%;
}
.careers__item {
  margin-top: 2rem;
}
.careers__item h3 {
  font-size: 1.8rem;
}
@media screen and (max-width: 769px) {
  .careers {
    border-left: 0;
    padding: 0;
    margin-top: -160px;
  }
}

.case-studies {
  display: flex;
  flex-wrap: wrap;
}
.case-studies__entry {
  width: 50vw;
  height: 50vw;
  position: relative;
  transition: ease-out 0.3s;
  z-index: 1;
  overflow: hidden;
}
.case-studies__entry:hover {
  z-index: 2;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}
.case-studies__entry:hover .case-studies__entry-link {
  background: #000;
  opacity: 0.2;
  transition: ease 0.3s;
}
.case-studies__entry:hover .case-studies__entry-logo {
  transform: translate(-50%, -50%) scale3d(1.1, 1.1, 1);
  transition: ease 0.5s;
}
@media screen and (min-width: 740px) {
  .case-studies__entry {
    width: 33.33vw;
    height: 33.33vw;
  }
}
@media screen and (min-width: 1200px) {
  .case-studies__entry {
    width: 25vw;
    height: 25vw;
  }
}
.case-studies__entry-heading {
  position: absolute;
  bottom: 0;
  width: 60%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 5;
  padding: 1rem 0;
  margin: 0;
}
.case-studies__entry-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 2px);
  max-width: 400px;
  transform: translate(-50%, -50%);
}
.case-studies__entry-link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 10;
}
.case-studies .feature {
  padding: 0;
  margin: 0;
  width: 25%;
}
@media screen and (max-width: 870px) {
  .case-studies .feature {
    width: 50%;
  }
}
@media screen and (max-width: 420px) {
  .case-studies .feature {
    width: 100%;
  }
}
.case-studies .feature__box {
  padding: 30px 0 0;
}
.case-studies .feature__box p {
  font-weight: 400;
}
.case-studies .feature__box::after {
  display: none;
}
.case-studies .feature__icon span {
  width: 100%;
}
.case-studies .feature__icon img {
  max-width: 100%;
}
.case-studies .feature .case-studies-title {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  margin: auto;
  z-index: 5;
}
.case-studies .feature::before {
  content: "";
  width: 1px;
  margin-left: -1px;
  float: left;
  height: 0;
  padding-top: 100%;
}
.case-studies .feature::after {
  content: "";
  display: table;
  clear: both;
}

.challengeBlocks {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 1rem;
  justify-content: center;
  position: relative;
  z-index: 100;
}
.challengeBlocks__headingCenter {
  width: 100%;
  text-align: center;
  font-weight: 100;
}
.challengeBlocks__buttonContainer {
  width: 100%;
  padding: 1rem;
}
.challengeBlocks--embed {
  padding-top: 1rem;
  padding: 1rem 1.6rem 5rem;
}
.challengeBlocks--embed .challengeBlocks__buttonContainer {
  padding: 8px;
}
.challengeBlocks--grey {
  background: #f6f7f8;
}
.challengeBlocks__item {
  width: 100%;
  padding: 8px;
}
.challengeBlocks__content {
  display: flex;
  /*align-items: center;*/
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-size: 100%;
  background-position: 50%;
}
.challengeBlocks__content::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.4;
  background-color: inherit;
  position: absolute;
}
.challengeBlocks__content img {
  width: 100%;
  height: 100%;
  opacity: 1;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.2, 0, 0.4, 1);
}
.challengeBlocks__content:hover img {
  transition: all 0.6s cubic-bezier(0.2, 0, 0.4, 1);
  transform: scale(1.1);
}
.challengeBlocks__content:hover::before {
  background-color: #000;
  opacity: 0.7;
}
.challengeBlocks__content:hover .challengeBlocks__hover-intro {
  transition: all 0.6s ease-in;
  max-height: 350px;
  opacity: 1;
}
.challengeBlocks__content:hover .challengeBlocks__link {
  background-color: #000 !important;
  opacity: 0.7;
}
.challengeBlocks__title {
  padding: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  width: 100%;
  z-index: 10;
  pointer-events: none;
  height: auto;
}
.challengeBlocks__title h2 {
  font-size: 2rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-shadow: 0 0 80px #000;
  transition: ease 0.2s;
}
.challengeBlocks__link {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  z-index: 5;
  transition: 0.5s ease;
  opacity: 0.4;
}
.challengeBlocks__fullWidth {
  width: 100%;
  padding-left: 1rem;
}
.challengeBlocks__viewAll {
  width: 100%;
  margin: 1rem;
}
.challengeBlocks__hover-intro {
  transition: all 0.3s cubic-bezier(0.2, 0, 0.4, 1);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  color: #fff;
  font-size: 1rem;
}
@media screen and (min-width: 650px) {
  .challengeBlocks__item {
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  .challengeBlocks__item {
    width: 33.3%;
  }
}
@media screen and (min-width: 1200px) {
  .challengeBlocks__item {
    width: 25%;
  }
}

/* ------------------------------------------------------------ *\
	Contacts
\* ------------------------------------------------------------ */
.contacts {
  display: flex;
  flex-wrap: wrap;
}
.contacts .grad__button {
  border: 0;
  margin-top: 0.5rem;
}
.contacts__info {
  width: 38%;
}
@media (max-width: 1023px) {
  .contacts__info {
    width: 100%;
    margin-bottom: 20px;
  }
}
.contacts__form {
  width: 62%;
}
@media (max-width: 1023px) {
  .contacts__form {
    width: 100%;
  }
}
.contacts__info {
  padding: 1rem 2rem 0 0;
}
.contacts__info h6 {
  margin-bottom: 47px;
}
@media (max-width: 1023px) {
  .contacts__info h6 {
    margin-bottom: 20px;
  }
}
.contacts__info ul {
  margin-bottom: 35px;
  font-weight: 700;
  list-style-type: none;
}
.contacts__info li + li {
  margin-top: 4px;
}
.contacts__info a {
  display: block;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.contacts__info a + a {
  margin-top: 4px;
}
@media (max-width: 767px) {
  .contacts__info {
    padding-top: 0;
  }
}
.contacts__form {
  padding: 15px;
  background: #ffffff;
}

.ctaBlock {
  padding: 3rem 2rem;
}
.ctaBlock--banner {
  position: relative;
  background-color: #46b8e0;
  color: #fff;
  overflow: hidden;
}
.ctaBlock--banner > * {
  position: relative;
  z-index: 2;
}
.ctaBlock--banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  border-style: solid;
  border-width: 514px 0 0 653px;
  border-color: transparent transparent transparent #fff;
  opacity: 0.1;
}
.ctaBlock--banner .ctaBlock__logo {
  max-width: 70px;
  display: block;
  margin-bottom: 40px;
}
.ctaBlock--banner .ctaBlock__logo img {
  display: block;
  width: 100%;
}
.ctaBlock--banner .btn {
  margin-top: 2.5rem;
  display: inline-block;
  line-height: 1.3;
  height: unset;
}
.ctaBlock--banner .ctaBlock__copy {
  max-width: 670px;
}
.ctaBlock--banner .ctaBlock__copy h1,
.ctaBlock--banner .ctaBlock__copy h2,
.ctaBlock--banner .ctaBlock__copy h3,
.ctaBlock--banner .ctaBlock__copy h4,
.ctaBlock--banner .ctaBlock__copy h5,
.ctaBlock--banner .ctaBlock__copy h6 {
  font-family: "AvantGarde", sans-serif;
  line-height: 1.1;
}
.ctaBlock .grad__button {
  margin-bottom: 1.5rem;
}

.curriculum {
  padding: 2rem;
}
.curriculum > h2 {
  margin-bottom: 3rem;
}
.curriculum__item {
  align-items: center;
  display: flex;
}
.curriculum__item h3 {
  padding: 1.5rem;
  font-size: 1.5rem;
  width: 33.3333%;
  margin: 0;
}
.curriculum__item:nth-of-type(odd) {
  background-color: #f2f2f2;
}
.curriculum__item:nth-of-type(even) {
  background-color: #fbfbfb;
}
.curriculum__item:first-of-type {
  background-color: #ed125d;
}
.curriculum__head {
  color: #fff;
}
.curriculum--block {
  padding-top: 0;
  margin-top: -5rem;
}
.curriculum--block h3 {
  width: 100% !important;
}
.curriculum--block h2 {
  margin-top: 5rem;
}
.curriculum--block .curriculum__item.curriculum__head {
  text-align: center;
}
.curriculum--block .curriculum__headItem {
  width: 25%;
  padding: 1.5rem;
}
.curriculum--block .curriculum__headItem h3 {
  padding: 0;
}
.curriculum--block .curriculum__itemCell {
  width: 25%;
}
.curriculum--block .curriculum__itemCell h3 {
  padding: 1rem !important;
  font-size: 1.2rem !important;
}
.curriculum--block .curriculum__item h3 {
  font-size: 1.5rem;
}
.curriculum--block .curriculum__item:nth-of-type(2) .curriculum__block {
  width: 10%;
}
.curriculum--block .curriculum__item:nth-of-type(3) .curriculum__block {
  width: 27%;
  margin-left: 9%;
}
.curriculum--block .curriculum__item:nth-of-type(4) .curriculum__block {
  width: 30%;
  margin-left: 20%;
}
.curriculum--block .curriculum__item:nth-of-type(5) .curriculum__block {
  width: 21%;
  margin-left: 29%;
}
.curriculum--block .curriculum__item:nth-of-type(6) .curriculum__block {
  width: 35%;
  margin-left: 27%;
}
.curriculum--block .curriculum__item:nth-of-type(7) .curriculum__block {
  width: 45%;
  margin-left: 22%;
}
.curriculum--block .curriculum__item:nth-of-type(8) .curriculum__block {
  width: 57%;
  margin-left: 13%;
}
.curriculum--block .curriculum__item:nth-of-type(9) .curriculum__block {
  width: 70%;
  margin-left: 3%;
}
.curriculum--block .curriculum__block {
  height: 25px;
  width: 400px;
  background: #ed125d;
  border-radius: 2rem;
}

/* ------------------------------------------------------------ *\
	Entry
\* ------------------------------------------------------------ */
.entry {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 50;
}
.entry__icon, .entry__content {
  width: 50%;
}
@media (max-width: 1023px) {
  .entry__icon, .entry__content {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .entry__icon {
    margin-bottom: 20px;
  }
}
.entry__icon-holder {
  position: relative;
  width: 267px;
  height: 267px;
  border-radius: 50%;
  margin: auto;
}
.entry__icon i {
  position: absolute;
  top: 30px;
  left: 0;
  right: 0;
  margin: auto;
}
.entry__content {
  padding: 0 81px 0 48px;
}
.entry__content h3 {
  margin-bottom: 27px;
}
.entry__content p {
  line-height: 1.5;
  letter-spacing: -0.003em;
}
@media (max-width: 1023px) {
  .entry__content {
    padding: 0;
    text-align: center;
  }
}

/* ------------------------------------------------------------ *\
	Features
\* ------------------------------------------------------------ */
.features {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
  position: relative;
  z-index: 100;
}

.features-container {
  padding: 5rem 2rem;
}
.features-container__heading {
  margin: 0;
  padding: 0 0 3rem;
  font-weight: 100;
}
.features-container__heading a {
  font-weight: bold;
}

.feature {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 8px;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .feature {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .feature {
    width: 25%;
  }
}
.feature__box {
  width: 100%;
  position: relative;
  padding: 30px 30px 59px;
  background-color: #ca1c65;
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
}
.feature__box .feature__hover {
  position: absolute;
  padding: 2rem;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: ease 0.4s;
  transform: translateX(-100%);
  background: inherit;
  z-index: 5;
  font-size: 1.2rem;
  text-align: left;
}
.feature__box:hover .feature__hover {
  transform: translateX(0);
}
@media (max-width: 1023px) {
  .feature__box {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .feature__box {
    padding: 20px;
  }
}
.feature__box h3 {
  position: relative;
  z-index: 5;
  font-size: 34px;
  line-height: 1.1;
  font-weight: 400;
  word-break: break-word;
}
.feature__box::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 0;
  z-index: 1;
  border-style: solid;
  border-width: 0 204px 135px 0;
  border-color: transparent #000 transparent transparent;
  opacity: 0.075;
}
@media (max-width: 767px) {
  .feature__box::after {
    border-width: 0 100px 50px 0;
  }
}
.feature__box p {
  position: relative;
  z-index: 2;
  line-height: 1.2;
  letter-spacing: -0.01em;
  font-weight: 400;
}
.feature__icon {
  position: relative;
  z-index: 5;
}
.feature__icon img {
  max-width: 90px;
}
.feature__box--alt {
  padding: 17px 50px 74px 13px;
  text-align: left;
}
@media (max-width: 1023px) {
  .feature__box--alt {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .feature__box--alt {
    padding: 20px;
  }
}
.feature__box + .feature__box {
  margin-top: 20px;
}
@media screen and (max-width: 766px) {
  .feature {
    height: auto !important;
  }
}

/* ------------------------------------------------------------ *\
	Feature Green
\* ------------------------------------------------------------ */
.feature--green .feature__box,
.feature--green .feature__body {
  background: #1cd2a2;
}
.feature--green .feature__box::after {
  border-color: transparent #00cc97 transparent transparent;
}

/* ------------------------------------------------------------ *\
	Feature Purple
\* ------------------------------------------------------------ */
.feature--purple .feature__box,
.feature--purple .feature__body {
  background: #7e1ce6;
}
.feature--purple .feature__box::after {
  border-color: transparent #6e00e3 transparent transparent;
}

/* ------------------------------------------------------------ *\
	Feature Blue
\* ------------------------------------------------------------ */
.feature--blue .feature__box,
.feature--blue .feature__body {
  background: #1cc0e4;
}
.feature--blue .feature__box::after {
  border-color: transparent #00b8e1 transparent transparent;
}

/* ------------------------------------------------------------ *\
	Filters
\* ------------------------------------------------------------ */
.filters h6 {
  display: inline-block;
  margin-right: 30px;
}
.filters a {
  text-decoration: none;
  font-weight: 700;
  color: #a0afb6;
  transition: color 0.3s;
}
.filters a span {
  margin-right: 4px;
}
.filters a:hover {
  color: #000;
}
.filters a + a {
  margin-left: 14px;
}

@font-face {
  font-family: "AvantGarde";
  src: url("/fonts/AvantGardeITCbyBT-Medium.eot");
  src: url("/fonts/AvantGardeITCbyBT-Medium.eot?#iefix") format("embedded-opentype"), url("/fonts/AvantGardeITCbyBT-Medium.woff") format("woff"), url("/fonts/AvantGardeITCbyBT-Medium.ttf") format("truetype"), url("/fonts/AvantGardeITCbyBT-Medium.svg#AvantGardeITCbyBT-Medium") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Albert";
  src: url("/fonts/FSAlbert-Italic.eot");
  src: url("/fonts/FSAlbert-Italic.eot?#iefix") format("embedded-opentype"), url("/fonts/FSAlbert-Italic.woff") format("woff"), url("/fonts/FSAlbert-Italic.ttf") format("truetype"), url("/fonts/FSAlbert-Italic.svg#FSAlbert-Italic") format("svg");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Albert";
  src: url("/fonts/FSAlbert.eot");
  src: url("/fonts/FSAlbert.eot?#iefix") format("embedded-opentype"), url("/fonts/FSAlbert.woff") format("woff"), url("/fonts/FSAlbert.ttf") format("truetype"), url("/fonts/FSAlbert.svg#FSAlbert") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Akzidenz";
  src: url("/fonts/AkzidenzGroteskBE-Md.eot");
  src: url("/fonts/AkzidenzGroteskBE-Md.eot?#iefix") format("embedded-opentype"), url("/fonts/AkzidenzGroteskBE-Md.woff") format("woff"), url("/fonts/AkzidenzGroteskBE-Md.ttf") format("truetype"), url("/fonts/AkzidenzGroteskBE-Md.svg#AkzidenzGroteskBE-Md") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Albert";
  src: url("/fonts/FSAlbert-Light.eot");
  src: url("/fonts/FSAlbert-Light.eot?#iefix") format("embedded-opentype"), url("/fonts/FSAlbert-Light.woff") format("woff"), url("/fonts/FSAlbert-Light.ttf") format("truetype"), url("/fonts/FSAlbert-Light.svg#FSAlbert-Light") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Albert";
  src: url("/fonts/FSAlbert-Bold.eot");
  src: url("/fonts/FSAlbert-Bold.eot?#iefix") format("embedded-opentype"), url("/fonts/FSAlbert-Bold.woff") format("woff"), url("/fonts/FSAlbert-Bold.ttf") format("truetype"), url("/fonts/FSAlbert-Bold.svg#FSAlbert-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
}
/* ------------------------------------------------------------ *\
	Footer
\* ------------------------------------------------------------ */
.footer {
  color: #fff;
  border-top: 1px solid #fff;
}
.footer__inner {
  padding: 1.5rem 2rem;
  background: linear-gradient(to right, #ff197b, #ff493a);
}
.footer__container::after {
  content: "";
  display: table;
  clear: both;
  line-height: 0;
}
.footer .socials img {
  max-width: 2.5rem;
  opacity: 0.6;
}
.footer__container {
  margin: 0 -25px;
}
.footer__info {
  float: left;
  width: 33.33%;
  padding: 0 25px;
}
.footer__info p {
  margin-bottom: 48px;
}
.footer h5 {
  margin-bottom: 18px;
}
.footer ul {
  list-style-type: none;
}
.footer li a {
  font-size: 17px;
}
.footer li + li {
  margin-top: -5px;
}
.footer a {
  text-decoration: none;
  transition: color 0.3s;
}
.footer a:hover {
  color: #0c2239;
}
.footer p {
  font-size: 17px;
}
.footer .form-subscribe {
  margin-bottom: 37px;
  padding-right: 41px;
}
.footer .form-subscribe form {
  display: flex;
}
.footer__bar {
  padding: 1rem 2rem 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}
.footer__bar::after {
  content: "";
  display: table;
  clear: both;
  line-height: 0;
}
.footer__copyright {
  float: left;
  font-weight: 700;
}
.footer__copyright p {
  font-size: 14px;
  color: #b2b2b2;
}
.footer__credits {
  float: right;
}
.footer__credits a {
  font-size: 14px;
  font-weight: 700;
  color: #b2b2b2;
  vertical-align: top;
  padding-left: 0.5rem;
}
.footer__credits a:hover {
  color: #fff;
}
@media (max-width: 767px) {
  .footer__inner {
    padding: 15px;
  }
  .footer__info {
    width: 50%;
    margin-bottom: 20px;
  }
  .footer__info p {
    margin-bottom: 20px;
  }
  .footer__info:nth-of-type(5n-4) {
    width: 100%;
  }
  .footer .form-subscribe {
    margin-bottom: 20px;
    max-width: 280px;
    padding-right: 0;
  }
  .footer .socials {
    margin-top: 20px;
  }
  .footer__bar {
    padding: 1rem;
  }
}
@media (max-width: 479px) {
  .footer__info {
    width: 100%;
  }
  .footer__copyright, .footer__credits {
    width: 100%;
  }
}

/* ------------------------------------------------------------ *\
	Form
\* ------------------------------------------------------------ */
.form-contact {
  /*  Row  */
  /*  Form Parts  */
  /*  Fields  */
}
.form-contact .form__row {
  display: flex;
  flex-wrap: wrap;
  background: #f9f9f9;
}
.form-contact .form__row--error {
  color: #c40052;
}
.form-contact .form__row + .form__row {
  margin-top: 17px;
}
.form-contact .form__head {
  margin-bottom: 39px;
}
.form-contact .form__body {
  margin-bottom: 11px;
}
.form-contact .form__controls {
  width: 77%;
}
.form-contact label {
  width: 23%;
  padding: 9px 3px;
  font-weight: 700;
}
.form-contact .field {
  height: 55px;
  width: 100%;
  padding: 0 5px;
  border: 0;
  background: #f9f9f9;
  font-size: 18px;
  color: #535e74;
}
.form-contact .field::-webkit-input-placeholder {
  color: inherit;
}
.form-contact .field::-moz-placeholder {
  color: inherit;
}
.form-contact .field:-ms-input-placeholder {
  color: inherit;
}
.form-contact .field::-ms-input-placeholder {
  color: inherit;
}
.form-contact .field::placeholder {
  color: inherit;
}
.form-contact .textarea {
  height: 165px;
  width: 100%;
  padding: 10px 5px;
  border: 0;
  background: #f9f9f9;
  resize: none;
  color: #535e74;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .form-contact .form__controls,
.form-contact .form__label {
    width: 100%;
  }
  .form-contact .form__head {
    margin-bottom: 20px;
  }
  .form-contact .form__foot .btn {
    display: block;
    width: 100%;
  }
}

/* ------------------------------------------------------------ *\
	Form Subscribe
\* ------------------------------------------------------------ */
.form-subscribe .subscribe__field {
  width: calc(100% - 72px);
  padding: 0 15px;
  border-radius: 7px 0 0 7px;
  border: 1px solid #ddd5d8;
  border-right: 0;
  height: 35px;
  line-height: 35px;
  font-size: 17px;
  color: #999;
  font-family: "Akzidenz", sans-serif;
}
.form-subscribe .subscribe__submit {
  background: #fff;
  padding: 0 7px;
  border-radius: 0 7px 7px 0;
  height: 35px;
  border: 1px solid #ddd5d8;
  color: #999;
  font-family: "Akzidenz", sans-serif;
  line-height: 35px;
  vertical-align: middle;
  font-size: 17px;
}

/* ------------------------------------------------------------ *\
	Header
\* ------------------------------------------------------------ */
body.header--hide .header {
  top: -5.6rem;
  position: fixed;
  width: 100%;
}
body.header--show .header {
  position: fixed;
  width: 100%;
  z-index: 200;
}

.header {
  position: absolute;
  width: 100%;
  background: #fbfbfb;
  transition: 0.4s ease;
  z-index: 200;
  top: 0;
  padding: 0 2rem;
}
.header__inner {
  float: left;
  margin-top: 10px;
  font-size: 0;
}
.header .nav {
  float: right;
}
.header .nav-dropdown {
  z-index: 102;
  display: none;
  align-items: baseline;
  padding: 1rem;
}
@media (min-width: 1023px) {
  .header .nav-dropdown {
    display: flex;
  }
}
.header .nav-dropdown strong {
  color: #fff;
  opacity: 0.6;
  font-size: 20px;
}
.header .nav-dropdown a {
  font-size: 17px;
}
.header .nav-dropdown__small a {
  font-size: 15px;
  padding-left: 10px;
}
.header .nav-dropdown--thumbnails img {
  display: none;
}
@media (min-width: 1023px) {
  .header .nav-dropdown--right-align {
    left: auto;
    right: 0;
  }
  .header .nav-dropdown--thumbnails {
    width: calc(630px + 3rem);
    background: #2F2524 !important;
    right: -106px;
  }
  .header .nav-dropdown--thumbnails ul {
    display: flex;
    width: 100%;
    gap: 1rem;
  }
  .header .nav-dropdown--thumbnails li {
    margin: 0;
  }
  .header .nav-dropdown--thumbnails img {
    min-width: 150px;
    margin: 0 0 0.5rem;
    display: block;
  }
}
.header .logo {
  display: inline;
  font-weight: 600;
  color: #37424a;
}
.header .logo a {
  text-decoration: none;
}
.header__slogan {
  display: inline;
  vertical-align: middle;
  font-family: "AvantGarde", sans-serif;
  font-size: 16px;
  color: #888;
  letter-spacing: -0.017em;
}
.header__slogan p {
  display: inline;
}
.header__slogan svg {
  width: 100%;
  max-height: 16px;
}
@media screen and (max-width: 440px) {
  .header__slogan .pathtwo {
    display: none;
  }
}
@media screen and (max-width: 1120px) {
  .header .navHide {
    display: none;
  }
}
@media screen and (max-width: 1020px) {
  .header .navHide {
    display: block;
  }
  .header .nav > ul > li > a {
    padding: 8px 10px 7px 2rem;
  }
  .header .nav-dropdown {
    padding: 1rem 2rem;
  }
  .header .nav-dropdown > ul {
    margin-bottom: 1rem;
  }
}
@media (max-width: 1023px) {
  .header {
    padding: 0.8rem 2rem;
  }
  .header__inner {
    margin-top: 0;
  }
  .header .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 60;
    background: #fff;
    transform: translateX(-150%);
    transition: transform 0.4s;
    overflow: auto;
  }
  .header .nav.open {
    transform: translateX(0%);
  }
}

/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */
/*  Clear  */
.clear:after {
  content: "";
  line-height: 0;
  display: table;
  clear: both;
}

/*  Notext  */
.notext {
  white-space: nowrap;
  text-indent: 100%;
  text-shadow: none;
  overflow: hidden;
}

.notext-old {
  font-size: 0;
  line-height: 0;
  text-indent: -4000px;
}

/*  No Scroll  */
.no-scroll {
  position: fixed;
  overflow: hidden;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

/*  Hidden  */
[hidden],
.hidden {
  display: none;
}

/*  Alignleft  */
.alignleft {
  float: left;
}

/*  Alignright  */
.alignright {
  float: right;
}

/*  Disabled  */
[disabled],
.disabled {
  cursor: default;
}

/*  Grid  */
.cols {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
}

.col {
  width: 100%;
  float: none;
  padding: 0 8px;
}

.col--1of2 {
  width: 50%;
}

.col--1of3 {
  width: 33.33%;
}

.col--1of4 {
  width: 25%;
}

.col--flex {
  display: flex;
  flex-wrap: wrap;
}

/*  Responsive Helpers  */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }

  .visible-xs-block {
    display: block !important;
  }

  .visible-xs-inline {
    display: inline !important;
  }

  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .hidden-sm {
    display: none !important;
  }

  .visible-sm-block {
    display: block !important;
  }

  .visible-sm-inline {
    display: inline !important;
  }

  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1024px) and (max-width: 1200px) {
  .hidden-md {
    display: none !important;
  }

  .visible-md-block {
    display: block !important;
  }

  .visible-md-inline {
    display: inline !important;
  }

  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media (min-width: 1201px) {
  .hidden-lg {
    display: none !important;
  }

  .visible-lg-block {
    display: block !important;
  }

  .visible-lg-inline {
    display: inline !important;
  }

  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
.homeChallengeBlocks {
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 1rem;
  justify-content: center;
  position: relative;
  z-index: 100;
}
.homeChallengeBlocks__headingCenter {
  width: 100%;
  text-align: center;
  font-weight: 100;
}
.homeChallengeBlocks__buttonContainer {
  width: 100%;
  padding: 1rem;
}
.homeChallengeBlocks--embed {
  padding-top: 1rem;
  padding: 1rem 1.6rem 9rem;
}
.homeChallengeBlocks--embed .homeChallengeBlocks__item {
  width: 100%;
  padding: 8px;
}
@media screen and (min-width: 980px) {
  .homeChallengeBlocks--embed .homeChallengeBlocks__item__item {
    width: 50%;
  }
}
@media screen and (min-width: 700px) {
  .homeChallengeBlocks--embed .homeChallengeBlocks__item__item {
    width: 25%;
  }
}
.homeChallengeBlocks--embed .homeChallengeBlocks__buttonContainer {
  padding: 8px;
}
.homeChallengeBlocks--grey {
  background: #f6f7f8;
}
.homeChallengeBlocks__item {
  width: 33.3333%;
  padding: 1rem;
}
.homeChallengeBlocks__content {
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background-color: #000;
  background-size: 100%;
  background-position: 50%;
  transition: ease 0.5s;
}
.homeChallengeBlocks__content::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  opacity: 0.4;
  background-color: inherit;
  position: absolute;
}
.homeChallengeBlocks__content img {
  transition: all 0.5s cubic-bezier(0.2, 0, 0.6, 1);
  width: 100%;
  opacity: 1;
  z-index: 1;
}
.homeChallengeBlocks__content:hover img {
  transition: all 0.8s cubic-bezier(0.2, 0, 0.6, 1);
  transform: scale(1.1);
}
.homeChallengeBlocks__content:hover::before {
  background-color: #000;
  opacity: 0.7;
}
.homeChallengeBlocks__content:hover .homeChallengeBlocks__hover-intro {
  max-height: 350px;
  opacity: 1;
}
.homeChallengeBlocks__content:hover .homeChallengeBlocks__link {
  background-color: #000 !important;
  opacity: 0.7;
}
.homeChallengeBlocks__title {
  padding: 1rem;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 10;
  pointer-events: none;
}
.homeChallengeBlocks__title h2 {
  font-size: 2.5rem;
  color: #fff;
  line-height: 1;
  font-weight: 400;
  text-shadow: 0 0 80px #000;
  transition: ease 0.2s;
}
.homeChallengeBlocks__link {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  z-index: 5;
  transition: 0.5s ease;
  opacity: 0.4;
}
.homeChallengeBlocks__fullWidth {
  width: 100%;
  padding-left: 1rem;
}
.homeChallengeBlocks__viewAll {
  width: 100%;
  margin: 1rem;
}
.homeChallengeBlocks__hover-intro {
  transition: 0.8s ease;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  color: #fff;
}

.homehero {
  background-repeat: no-repeat;
  background-size: 0;
  height: 83vh;
  display: flex;
  align-items: center;
  padding: 3.5rem 0 2rem;
  text-align: center;
  overflow: hidden;
}
.homehero::after {
  display: none;
}
.homehero__bg-video {
  position: absolute;
  top: calc(50% + 17px);
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  width: calc(((85vh - 35px) / 9) * 16);
  min-height: 100%;
  height: calc(85vh - 35px);
}
@media screen and (max-width: 1275px) {
  .homehero__bg-video {
    top: calc(50% + 35px);
  }
}
@media screen and (max-width: 1024px) {
  .homehero__bg-video {
    top: calc(50% + 40px);
  }
}
@media screen and (max-width: 740px) {
  .homehero__bg-video {
    width: calc(((40vh - 35px) / 9) * 16);
    height: calc(40vh - 35px);
  }
}
.homehero__bg-video video {
  width: 100%;
  background-image: url("/images/video-poster.jpg");
  background-size: cover;
  background-position: 50%;
  min-height: calc(85vh - 35px);
}
.homehero .intro__logo {
  position: absolute;
  top: 3.5rem;
  left: 2rem;
}
.homehero__heading h1 {
  font-size: calc(0.5rem + 7vw);
}
.homehero__statement {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 70%;
  text-align: center;
}
.homehero__statement-copy {
  font-size: 28px;
  font-weight: bold;
}
.homehero .shell {
  z-index: 1;
}
@media screen and (max-width: 740px) {
  .homehero {
    background-size: cover;
    height: 100vw;
    min-height: 450px;
  }
  .homehero .embed-container {
    display: none;
  }
  .homehero__statement-copy {
    font-size: 21px;
  }
}

.includes__sliderDisplay {
  display: block;
  width: 100%;
  background: 0;
}
.includes__sliderDisplay .owl-carousel .owl-item p {
  font-size: 3rem;
}
.includes__arrow-animation {
  width: 100%;
  padding-bottom: 100%;
  background: #46b7df;
  position: relative;
}
.includes__arrow-animation__item {
  width: 8%;
  padding-bottom: 8%;
  background-image: url("/images/arrow-animation.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50%;
  position: absolute;
  margin: auto;
  -webkit-animation: arrows 8s infinite;
          animation: arrows 8s infinite;
}
.includes__arrow-animation__item:nth-of-type(1) {
  top: 5%;
  left: 5%;
  transform: rotate(341deg);
}
.includes__arrow-animation__item:nth-of-type(2) {
  top: 5%;
  left: 25%;
  transform: rotate(10deg);
}
.includes__arrow-animation__item:nth-of-type(3) {
  top: 5%;
  left: 45%;
  transform: rotate(39deg);
}
.includes__arrow-animation__item:nth-of-type(4) {
  top: 5%;
  left: 65%;
  transform: rotate(126deg);
}
.includes__arrow-animation__item:nth-of-type(5) {
  top: 5%;
  left: 85%;
  transform: rotate(181deg);
}
.includes__arrow-animation__item:nth-of-type(6) {
  top: 25%;
  left: 5%;
  transform: rotate(154deg);
}
.includes__arrow-animation__item:nth-of-type(7) {
  top: 25%;
  left: 25%;
  transform: rotate(252deg);
}
.includes__arrow-animation__item:nth-of-type(8) {
  top: 25%;
  left: 45%;
  transform: rotate(356deg);
}
.includes__arrow-animation__item:nth-of-type(9) {
  top: 25%;
  left: 65%;
  transform: rotate(41deg);
}
.includes__arrow-animation__item:nth-of-type(10) {
  top: 25%;
  left: 85%;
  transform: rotate(242deg);
}
.includes__arrow-animation__item:nth-of-type(11) {
  top: 45%;
  left: 5%;
  transform: rotate(20deg);
}
.includes__arrow-animation__item:nth-of-type(12) {
  top: 45%;
  left: 25%;
  transform: rotate(43deg);
}
.includes__arrow-animation__item:nth-of-type(13) {
  top: 45%;
  left: 45%;
  transform: rotate(277deg);
}
.includes__arrow-animation__item:nth-of-type(14) {
  top: 45%;
  left: 65%;
  transform: rotate(135deg);
}
.includes__arrow-animation__item:nth-of-type(15) {
  top: 45%;
  left: 85%;
  transform: rotate(292deg);
}
.includes__arrow-animation__item:nth-of-type(16) {
  top: 65%;
  left: 85%;
  transform: rotate(163deg);
}
.includes__arrow-animation__item:nth-of-type(17) {
  top: 65%;
  left: 5%;
  transform: rotate(86deg);
}
.includes__arrow-animation__item:nth-of-type(18) {
  top: 65%;
  left: 25%;
  transform: rotate(154deg);
}
.includes__arrow-animation__item:nth-of-type(19) {
  top: 65%;
  left: 45%;
  transform: rotate(192deg);
}
.includes__arrow-animation__item:nth-of-type(20) {
  top: 65%;
  left: 65%;
  transform: rotate(212deg);
}
.includes__arrow-animation__item:nth-of-type(21) {
  top: 85%;
  left: 85%;
  transform: rotate(177deg);
}
.includes__arrow-animation__item:nth-of-type(22) {
  top: 85%;
  left: 5%;
  transform: rotate(284deg);
}
.includes__arrow-animation__item:nth-of-type(23) {
  top: 85%;
  left: 25%;
  transform: rotate(284deg);
}
.includes__arrow-animation__item:nth-of-type(24) {
  top: 85%;
  left: 45%;
  transform: rotate(142deg);
}
.includes__arrow-animation__item:nth-of-type(25) {
  top: 85%;
  left: 65%;
  transform: rotate(4deg);
}
@keyframes arrows {
  40% {
    transform: rotate(inherit);
  }
  50% {
    transform: rotate(-270deg);
  }
  75% {
    transform: rotate(-270deg);
  }
  100% {
    transform: rotate(inherit);
  }
}
.includes__chart-animation {
  width: 100%;
  padding-bottom: 100%;
  background: rgba(0, 0, 0, 0);
  position: relative;
  overflow: hidden;
}
.includes__chart-animation__item {
  position: absolute;
  top: 15%;
  bottom: 0%;
  right: 0%;
  width: 30%;
  margin: 0 auto;
  transition: ease 1s;
  box-shadow: inset 0 0 0 0.4vw #eb005b;
  -webkit-animation: chart 5s infinite;
          animation: chart 5s infinite;
}
@media screen and (max-width: 590px) {
  .includes__chart-animation__item {
    box-shadow: inset 0 0 0 0.65vw #eb005b;
  }
}
.includes__chart-animation__item::before, .includes__chart-animation__item::after {
  position: absolute;
  top: inherit;
  left: 0%;
  bottom: 0%;
  right: 0%;
  content: "";
  box-shadow: inherit;
  transition: ease 0s;
}
.includes__chart-animation__item::before {
  transform: translate(-115%);
  margin-top: 55%;
}
.includes__chart-animation__item::after {
  transform: translate(-232%);
  margin-top: 150%;
}
@keyframes chart {
  0% {
    top: 15%;
  }
  45% {
    top: 15%;
  }
  50% {
    top: 7%;
  }
  65% {
    top: 7%;
  }
  70% {
    top: 0;
  }
  95% {
    top: 0;
  }
  100% {
    top: 15%;
  }
}
.includes__whereWeWork {
  margin: auto;
  text-align: center;
  color: #fff;
}
.includes__whereWeWork__icon {
  max-width: 70px;
  margin-bottom: 0.5rem;
  transition: ease 0.4s;
  position: relative;
  top: 0;
}
.includes__whereWeWork__content {
  position: relative;
  z-index: 1;
}
.includes__whereWeWork__absoluteLink {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  position: absolute;
  z-index: 2;
}
.includes__whereWeWork::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  transition: ease 0.4s;
}
.includes__whereWeWork:hover .includes__whereWeWork__icon {
  top: 5px;
}
.includes__whereWeWork:hover::before {
  background: rgba(0, 0, 0, 0.5);
}
.includes__table {
  width: 100%;
  padding: 0;
}
.includes__table h3 {
  font-size: 1rem;
}
.includes__table__tick, .includes__table__cross {
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 1.5rem;
}
.includes__table__tick {
  background-image: url("/uploads/images/icon-tick.png");
}
.includes__table__cross {
  background-image: url("/uploads/images/icon-cross.png");
}
@media screen and (max-width: 1080px) {
  .includes__table {
    min-width: 1160px;
    padding-right: 20px;
  }
}
.includes__ourProcess {
  margin-top: -5rem;
  background: linear-gradient(to top, #ff197b, #ff493a);
  color: #fff;
  display: flex;
}
.includes__ourProcess h3,
.includes__ourProcess p {
  font-size: 1.1rem;
}
.includes__ourProcess__item {
  width: 33.3333%;
  padding: 4rem 6rem 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.includes__ourProcess__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  background-image: url("/uploads/images/icon-process-arrow.png");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}
.includes__engageWithChange {
  color: #fff;
  margin-top: -3rem;
  width: 100%;
  min-width: 720px;
  overflow: scroll;
}
.includes__engageWithChange__intro {
  width: 50%;
}
.includes__engageWithChange__tabs {
  position: relative;
}
.includes__engageWithChange__tabs input {
  display: none;
}
.includes__engageWithChange__tabs label {
  color: #fff;
  display: inline;
  font-size: 2rem;
  margin-right: 10px;
  font-weight: 800;
  cursor: pointer;
}
.includes__engageWithChange__tabs input:checked + label {
  color: #000;
}
.includes__engageWithChange__tabs .tab {
  transform: translateY(4rem);
  transition: ease 0.8s;
  opacity: 0;
}
.includes__engageWithChange__tabs .tab img {
  height: 0;
  opacity: 0;
}
.includes__engageWithChange__tabs input:nth-of-type(1):checked ~ .tab:nth-of-type(1),
.includes__engageWithChange__tabs input:nth-of-type(2):checked ~ .tab:nth-of-type(2),
.includes__engageWithChange__tabs input:nth-of-type(3):checked ~ .tab:nth-of-type(3) {
  display: block;
  transform: translateY(0);
  opacity: 1;
}
.includes__engageWithChange__tabs input:nth-of-type(1):checked ~ .tab:nth-of-type(1) img,
.includes__engageWithChange__tabs input:nth-of-type(2):checked ~ .tab:nth-of-type(2) img,
.includes__engageWithChange__tabs input:nth-of-type(3):checked ~ .tab:nth-of-type(3) img {
  height: auto;
  opacity: 1;
}
.includes__engageWithChange__image {
  display: block;
  margin: auto;
}
.includes__howWeHelpLists {
  display: flex;
  width: 100%;
  margin-top: -5rem;
}
.includes__howWeHelpLists__item {
  width: 50%;
  background: #e8ebec;
}
.includes__howWeHelpLists__item:first-of-type {
  margin-right: 5px;
}
.includes__howWeHelpLists__title {
  padding: 1.5rem;
  background: #eb005b;
  color: #fff;
  font-size: 1.56rem !important;
}
.includes__howWeHelpLists__list {
  padding: 1.5rem 1.5rem 2.5rem;
  margin: 0;
  list-style: none;
}
.includes__howWeHelpLists__list li {
  position: relative;
  padding-left: 0.5rem;
  padding-left: 0.7rem;
  padding-bottom: 0.7rem;
}
.includes__howWeHelpLists__list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "-";
}

/* ------------------------------------------------------------ *\
	Info
\* ------------------------------------------------------------ */
.info {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .info {
    padding: 20px 0;
  }
}
.info__content, .info__image {
  width: 50%;
}
@media (max-width: 767px) {
  .info__content, .info__image {
    width: 100%;
  }
}
.info__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}
@media (max-width: 767px) {
  .info__image {
    padding-top: 100%;
  }
}
.info__content {
  padding: 168px 76px 160px;
}
.info__content h3 {
  margin-bottom: 33px;
  letter-spacing: -0.016em;
}
.info__content p {
  letter-spacing: -0.021em;
  line-height: 1.5;
}
.info__content strong {
  display: block;
  margin-bottom: 17px;
  line-height: 1.45;
  letter-spacing: -0.005em;
}
@media (max-width: 1023px) {
  .info__content {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .info__content {
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
  }
}

/* ------------------------------------------------------------ *\
	Intro
\* ------------------------------------------------------------ */
.intro {
  position: relative;
  z-index: 45;
  padding: 3.5rem 2rem 2rem;
  background: linear-gradient(to right, #ff197b, #ff493a);
  color: #fff;
  overflow: hidden;
}
.intro h1 {
  margin-bottom: 26px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.intro p {
  margin-bottom: 30px;
  letter-spacing: -0.02em;
  max-width: 600px;
}
.intro__icon {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}
@media screen and (max-width: 510px) {
  .intro__icon {
    position: relative;
    bottom: 0;
    right: 0;
  }
}
.intro__vbLogo {
  max-width: 490px;
}
.intro__content {
  position: relative;
  z-index: 45;
  max-width: 670px;
}
.intro__logo {
  max-width: 70px;
  display: block;
  margin-bottom: 40px !important;
}
.intro__logo img {
  width: 100%;
}
.intro__actions {
  margin-bottom: -10px;
  font-size: 0;
}
.intro__actions a {
  margin-bottom: 10px;
}
.intro__actions a + a {
  margin-left: 8px;
}
.intro__sub-nav {
  position: absolute;
  top: 4rem;
  right: 2rem;
  z-index: 46;
}
.intro__sub-nav .btn {
  white-space: nowrap;
}
@media screen and (max-width: 740px) {
  .intro__sub-nav {
    position: relative;
    top: unset;
    right: unset;
  }
}
@media screen and (max-width: 480px) {
  .intro__sub-nav .btn {
    display: block;
    margin: 1rem 0 0 0;
    padding: 0;
  }
}
.intro__item {
  text-align: right;
  padding: 0.8rem 0 0.8rem 0.8rem;
  font-size: 1rem;
  text-decoration: none;
  transition: ease 0.4s;
}
.intro__item:hover {
  opacity: 0.7;
}
.intro__colorOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.intro .logo-ab {
  margin-bottom: 22px;
}
@media (max-width: 767px) {
  .intro p {
    margin-bottom: 30px;
  }
  .intro a {
    margin: 0 8px 10px 0;
  }
  .intro a + a {
    margin-left: 0;
  }
}
.intro::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-style: solid;
  border-width: 514px 0 0 653px;
  border-color: transparent transparent transparent #fff;
  opacity: 0.1;
}

/* ------------------------------------------------------------ *\
	Link More
\* ------------------------------------------------------------ */
.link-more {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.028em;
  text-decoration: none;
}
.link-more:hover {
  text-decoration: underline;
}
@media (max-width: 767px) {
  .link-more {
    font-size: 14px;
  }
}

/* ------------------------------------------------------------ *\
	Location
\* ------------------------------------------------------------ */
.location {
  display: flex;
  flex-wrap: wrap;
}
.location__image, .location__content {
  width: 50%;
}
.location__image {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.location__image:hover {
  opacity: 0.8;
}
.location__image i {
  margin-bottom: 11px;
}
.location__image h3 {
  font-weight: 300;
  font-size: 36px;
  color: #fff;
}
.location__content {
  padding: 122px 0 138px;
  background: #303030;
}
.location__content p {
  max-width: 475px;
  margin: auto;
  color: #00ffff;
  font-size: 25px;
  font-weight: 300;
  letter-spacing: -0.012em;
  text-align: center;
}
@media (max-width: 767px) {
  .location__image, .location__content {
    width: 100%;
  }
  .location__image {
    padding: 40px 0;
  }
  .location__content {
    padding: 30px;
  }
  .location__content p {
    font-size: 20px;
  }
}

.logoRow {
  padding: 2.75rem 2rem;
  position: relative;
  display: block;
}
.logoRow__logo {
  width: 100%;
}
.logoRow::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 50px;
  transform: rotate(45deg);
  bottom: -1rem;
  left: 0;
  right: 0;
  margin: auto;
  background-color: #fff;
}

.logos {
  overflow: hidden;
  position: relative;
  height: 20vw;
  width: 100%;
  margin-top: -5rem;
  margin-bottom: -5rem;
}
@media screen and (min-width: 540px) {
  .logos {
    height: 13vw;
  }
}
@media screen and (min-width: 880px) {
  .logos {
    height: 11vw;
  }
}
.logos__bgImage {
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  background-size: 100%;
  background-repeat: no-repeat;
  -webkit-animation: logoTransitionTwo 80s infinite;
          animation: logoTransitionTwo 80s infinite;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  background-position: center -9vw;
  background-image: url("/images/logo-row-02.jpg");
}
@media screen and (min-width: 540px) {
  .logos__bgImage {
    -webkit-animation: logoTransitionFour 40s infinite;
            animation: logoTransitionFour 40s infinite;
    background-image: url("/images/logo-row-04.jpg");
    background-position: center -4vw;
    background-size: 100%;
  }
}
@media screen and (min-width: 880px) {
  .logos__bgImage {
    -webkit-animation: logoTransitionSeven 20s infinite;
            animation: logoTransitionSeven 20s infinite;
    background-image: url("/uploads/images/logo-row-01.png"), url("/uploads/images/logo-row-02.png"), url("/uploads/images/logo-row-03.png"), url("/uploads/images/logo-row-04.png");
    background-position: 50% 0, 50% 10vw, 50% 20vw, 50% 30vw;
    background-size: 100%;
  }
}
.logos::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 0.75vw;
  background: linear-gradient(to top, white 0%, rgba(255, 255, 255, 0) 100%);
}
@media screen and (min-width: 540px) {
  .logos::after {
    height: 1.5vw;
  }
}
@media screen and (min-width: 880px) {
  .logos::after {
    height: 2.5vw;
  }
}
.logos::before {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  content: "";
  width: 100%;
  height: 0.75vw;
  background: linear-gradient(to bottom, white 0%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
}
@media screen and (min-width: 540px) {
  .logos::before {
    height: 1.5vw;
  }
}
@media screen and (min-width: 880px) {
  .logos::before {
    height: 2.5vw;
  }
}

@keyframes logoTransitionSeven {
  0% {
    top: 0;
  }
  20% {
    top: 0;
  }
  25% {
    top: -10vw;
  }
  45% {
    top: -10vw;
  }
  50% {
    top: -20vw;
  }
  70% {
    top: -20vw;
  }
  75% {
    top: -30vw;
  }
  95% {
    top: -30vw;
  }
  100% {
    top: -30vw;
  }
}
@keyframes logoTransitionFour {
  0% {
    top: 0;
  }
  8.88% {
    top: 0;
  }
  11.1% {
    top: -20vw;
  }
  19.98% {
    top: -20vw;
  }
  22.2% {
    top: -40vw;
  }
  31.08% {
    top: -40vw;
  }
  33.3% {
    top: -60vw;
  }
  42.18% {
    top: -60vw;
  }
  44.4% {
    top: -80vw;
  }
  53.28% {
    top: -80vw;
  }
  55.5% {
    top: -100vw;
  }
  64.38% {
    top: -100vw;
  }
  66.6% {
    top: -120vw;
  }
  75.48% {
    top: -120vw;
  }
  77.7% {
    top: -140vw;
  }
  86.58% {
    top: -140vw;
  }
  88.8% {
    top: -140vw;
  }
  100% {
    top: -140vw;
  }
}
@keyframes logoTransitionTwo {
  0% {
    top: 0;
  }
  4.706% {
    top: 0;
  }
  5.882% {
    top: -34.5vw;
  }
  10.588% {
    top: -34.5vw;
  }
  11.764% {
    top: -69vw;
  }
  16.588% {
    top: -69vw;
  }
  17.647% {
    top: -103.5vw;
  }
  22.353% {
    top: -103.5vw;
  }
  23.529% {
    top: -138vw;
  }
  28.236% {
    top: -138vw;
  }
  29.412% {
    top: -174vw;
  }
  34.118% {
    top: -174vw;
  }
  35.294% {
    top: -211vw;
  }
  40% {
    top: -211vw;
  }
  41.176% {
    top: -246.5vw;
  }
  45.883% {
    top: -246.5vw;
  }
  47.059% {
    top: -282vw;
  }
  51.765% {
    top: -282vw;
  }
  52.941% {
    top: -316.5vw;
  }
  57.648% {
    top: -316.5vw;
  }
  58.824% {
    top: -353vw;
  }
  63.530% {
    top: -353vw;
  }
  64.706% {
    top: -389.5vw;
  }
  69.412% {
    top: -389.5vw;
  }
  70.588% {
    top: -424vw;
  }
  75.295% {
    top: -424vw;
  }
  76.471% {
    top: -458.5vw;
  }
  81.177% {
    top: -458.5vw;
  }
  82.353% {
    top: -495vw;
  }
  87.059% {
    top: -495vw;
  }
  88.235% {
    top: -531.5vw;
  }
  92.942% {
    top: -531.5vw;
  }
  94.118% {
    top: -531.5vw;
  }
  100% {
    top: -531.5vw;
  }
}
.map {
  margin: -5rem -2rem;
  position: relative;
  background-color: #323d4f;
  z-index: 50;
  overflow: hidden;
  width: calc(100% + 4rem);
}
.map__background {
  width: 100%;
}
.map__pin {
  pointer-events: all;
  position: absolute;
  text-align: center;
  text-decoration: none;
  color: #fff;
  z-index: 1;
  transform: translate(-50%, -50%);
}
.map__pin .map__spot {
  margin: auto;
  width: 224px;
  height: 224px;
  border-radius: 50%;
  background: rgba(255, 25, 123, 0.7);
  transition: ease 1.2s;
  position: absolute;
  left: calc(50% - 112px);
  top: calc(50% - 92px);
  transform: scale(0.1, 0.1);
  transform: scale3d(calc(1 / 14), calc(1 / 14), 1) translate(0%, 0%);
  z-index: 0;
  -webkit-filter: none;
          filter: none;
}
.map__pin--us {
  top: 18%;
  left: 15%;
}
.map__pin--us .map__spot {
  height: 336px;
  width: 336px;
  left: calc(50% - 168px);
  top: calc(50% - 144px);
}
.map__pin--panama {
  top: 50%;
  left: 15%;
}
.map__pin--brazil {
  top: 60%;
  left: 31%;
}
.map__pin--eu {
  top: 16.5%;
  left: 51%;
}
.map__pin--eu .map__spot {
  height: 280px;
  width: 280px;
  left: calc(50% - 140px);
  top: calc(50% - 119px);
}
.map__pin--uk {
  top: 14%;
  left: 46%;
}
.map__pin--marocco {
  top: 27%;
  left: 46%;
}
.map__pin--dubai {
  top: 36%;
  left: 67.5%;
}
.map__pin--russia {
  top: 12%;
  left: 76%;
}
.map__pin--japan {
  top: 27%;
  left: 94.5%;
}
.map__pin--india {
  top: 41%;
  left: 75.5%;
}
.map__pin--china {
  top: 26%;
  left: 77%;
}
.map__pin--thailand {
  top: 44%;
  left: 85%;
}
.map__pin--australia {
  top: 76%;
  left: 94%;
}
.map__pin--australia .map__spot {
  height: 280px;
  width: 280px;
  left: calc(50% - 140px);
  top: calc(50% - 119px);
}
.map__pin:hover .map__spot {
  transform: scale(1, 1);
}
.map__pin:hover .map__info {
  transition: ease 1s;
  transform: translateY(16px);
}
.map__pin:hover .map__info p {
  max-height: 500px;
  opacity: 1;
}
.map__info {
  position: relative;
  z-index: 100;
  opacity: 1;
  pointer-events: none;
  transition: ease 0.8s;
}
.map__info h3 {
  margin: 0;
  font-size: 28px;
}
@media screen and (max-width: 1250px) {
  .map__info h3 {
    font-size: calc(1px + 2vw);
  }
}
@media screen and (max-width: 700px) {
  .map__info h3 {
    font-size: 22px;
  }
}
.map__info p {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  line-height: 1;
  font-size: 1.25rem;
  transition: all 1s ease;
}
@media screen and (max-width: 900px) {
  .map__info p {
    font-size: 1rem;
    line-height: 1.1;
  }
}

@media screen and (max-width: 700px) {
  #map {
    padding: 2rem 0;
  }
  #map .map__pin {
    position: relative;
    top: unset;
    left: unset;
  }
  #map .map__pin .map__spot {
    display: none;
  }
  #map .map__info {
    max-height: 500px;
  }
  #map .map__info p {
    opacity: 1;
  }
  #map .map__background {
    position: absolute;
    top: 0;
    min-height: 400px;
    opacity: 0.2;
  }
}

/* ------------------------------------------------------------ *\
	Members
\* ------------------------------------------------------------ */
.members__container {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -14px;
}
.members .member {
  padding: 0 14px;
  width: 25%;
}
@media (max-width: 767px) {
  .members .member {
    width: 100%;
    margin-bottom: 20px;
  }
}

.member__image {
  position: relative;
}
.member__image img {
  border-radius: 100%;
}
.member__overlay {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  color: #fff;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.3s, opacity 0.3s;
}
.member__overlay h4 {
  margin-bottom: 0px;
}
.member__overlay p {
  font-weight: 300;
  font-size: 25px;
}
.member:hover .member__overlay {
  visibility: visible;
  opacity: 1;
}
@media (max-width: 767px) {
  .member__image img {
    width: 100%;
  }
}

.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.5);
  max-height: 100vh;
  transition: ease 0.4s;
  opacity: 0;
  pointer-events: none;
}
.modal iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: -300%;
  bottom: 0;
  margin: auto;
  max-height: 485px;
  transition: ease 0.4s;
  opacity: 0;
}
.modal.active-js {
  opacity: 1;
  pointer-events: all;
}
.modal.active-js iframe {
  top: 0;
  opacity: 1;
  background: #333;
}
.modal__close {
  position: fixed;
  top: -10rem;
  right: 2rem;
  z-index: 99;
  width: 2rem;
  height: 2rem;
  background-image: url("/uploads/images/icon-cross-white.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  transition: ease 0.3s;
}
.modal__close:hover {
  transform: rotate(90deg);
}

.multistepColumns {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  padding: 5rem 2rem 6rem;
  justify-content: center;
  counter-reset: section;
  background-size: cover;
  background-repeat: no-repeat;
}
.multistepColumns__introduction {
  width: 100%;
  margin-bottom: 4rem;
}
.multistepColumns__introduction p {
  font-weight: 600;
}
.multistepColumns__button {
  width: 100%;
  margin-top: 5rem;
}
.multistepColumns__button a {
  text-decoration: none;
}
.multistepColumns__content {
  max-width: 620px;
  margin: auto;
}
.multistepColumns__framedLinkContainer {
  position: relative;
}
.multistepColumns__framedLinkContainer > div {
  position: relative;
  pointer-events: none;
  z-index: 10;
}
.multistepColumns__framedLink {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: ease 0.4s;
  z-index: 1;
}
.multistepColumns__framedLink:hover {
  background: rgba(0, 0, 0, 0.35);
}
.multistepColumns__item {
  padding: 1rem;
  margin: 1rem;
}
.multistepColumns__item--framed {
  border: 5px solid #fff;
}
.multistepColumns__item--left {
  text-align: left;
}
.multistepColumns__item--counter::before {
  line-height: 1;
  display: block;
  counter-increment: section;
  content: counter(section);
  font-size: 7rem;
  font-weight: 600;
  color: currentColor;
}
@media screen and (max-width: 740px) {
  .multistepColumns__item--counter::before {
    font-size: 5rem;
  }
}
.multistepColumns__item--stat {
  text-align: left;
}
.multistepColumns__item--stat h2 {
  font-size: 4.5rem;
  margin-bottom: 1rem !important;
}
.multistepColumns__item--stat p {
  margin-top: 0;
}
.multistepColumns__image {
  max-width: 55px;
  margin-bottom: 1rem;
}
.multistepColumns h3 {
  font-size: 30px;
}
.multistepColumns p {
  font-family: "Albert", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  line-height: 1.35;
}
.multistepColumns h4 {
  font-size: 20px;
  margin-bottom: 2rem;
  opacity: 0.8;
}
.multistepColumns h2 {
  line-height: 1.1;
  margin-bottom: 2rem;
}
.multistepColumns.colTwo .multistepColumns__item {
  width: calc(50% - 2rem);
}
@media screen and (max-width: 530px) {
  .multistepColumns.colTwo .multistepColumns__item {
    width: 100%;
    margin: 0;
  }
  .multistepColumns.colTwo .multistepColumns__item--framed {
    margin-bottom: 2rem;
  }
}
.multistepColumns.colThree .multistepColumns__item {
  width: calc(33.3333% - 2rem);
}
@media screen and (max-width: 940px) {
  .multistepColumns.colThree .multistepColumns__item {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 530px) {
  .multistepColumns.colThree .multistepColumns__item {
    width: 100%;
    margin: 0;
  }
  .multistepColumns.colThree .multistepColumns__item--framed {
    margin-bottom: 2rem;
  }
}
.multistepColumns.colFour .multistepColumns__item {
  width: calc(25% - 2rem);
}
@media screen and (max-width: 940px) {
  .multistepColumns.colFour .multistepColumns__item {
    width: calc(50% - 2rem);
  }
}
@media screen and (max-width: 530px) {
  .multistepColumns.colFour .multistepColumns__item {
    width: 100%;
    margin: 0;
  }
  .multistepColumns.colFour .multistepColumns__item--framed {
    margin-bottom: 2rem;
  }
}
.multistepColumns--arrows {
  position: relative;
  overflow: hidden;
}
.multistepColumns--arrows::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 50vw solid transparent;
  border-bottom: 50vw solid transparent;
  border-left: 75vw solid rgba(255, 255, 255, 0.1);
  position: absolute;
  margin: auto;
  top: 0;
  bottom: -20vw;
  left: 0;
}
.multistepColumns--arrows .multistepColumns__item {
  position: relative;
}
.multistepColumns--arrows .multistepColumns__item:first-of-type::after {
  display: none;
}
.multistepColumns--arrows .multistepColumns__item::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 1.125rem solid transparent;
  border-bottom: 1.125rem solid transparent;
  border-left: 1.5rem solid rgba(255, 255, 255, 0.5);
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: -0.75rem;
}
.multistepColumns--arrows .multistepColumns__framedLink:hover {
  background: rgba(0, 0, 0, 0);
}
.multistepColumns--arrows .multistepColumns__framedLinkContainer > div {
  transition: ease 0.4s;
}
.multistepColumns--arrows .multistepColumns__framedLinkContainer:hover > div {
  opacity: 0.6;
}
@media screen and (max-width: 940px) {
  .multistepColumns--arrows .multistepColumns__item::after {
    display: none;
  }
}

/* ------------------------------------------------------------ *\
	Nav
\* ------------------------------------------------------------ */
.nav {
  font-size: 16px;
  color: #888;
  letter-spacing: -0.021em;
}
.nav--active {
  color: #ff2669;
}
.nav--active:hover, .nav--active--hover {
  color: #fff;
}

.nav > ul {
  position: relative;
  list-style-type: none;
}

.nav > ul::after {
  content: "";
  display: table;
  clear: both;
  line-height: 0;
}

.nav > ul > li {
  float: left;
}
@media (max-width: 1023px) {
  .nav > ul > li {
    float: none;
  }
}

.nav > ul > li:hover,
.nav > ul > .current {
  background: linear-gradient(to right, #ff197b, #ff493a);
  color: #fff;
}

.nav > ul > .login {
  background-color: #36B263;
  color: #fff;
  display: none;
}

.nav > ul > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav > ul > li + li {
  margin-left: 3px;
}
@media (max-width: 1023px) {
  .nav > ul > li + li {
    margin-left: 0;
  }
}

.nav > ul > li > a {
  display: block;
  padding: 8px 10px 7px;
  text-decoration: none;
}

.nav > ul > li > a span {
  vertical-align: middle;
}

.nav > ul > li > a span + i {
  margin-left: 12px;
}

/* ------------------------------------------------------------ *\
	Nav Dropdown
\* ------------------------------------------------------------ */
.nav-dropdown {
  padding-top: 1rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #2f2524, #443e42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  width: 100vw;
}
@media (max-width: 1023px) {
  .nav-dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
  }
}
.nav-dropdown ul {
  margin-bottom: 0;
  width: 24%;
  max-width: 260px;
  margin-right: 1rem;
}
@media screen and (max-width: 1024px) {
  .nav-dropdown ul {
    width: 100%;
  }
}
.nav-dropdown li + li {
  margin-top: 4px;
}
.nav-dropdown a {
  font-family: "Akzidenze", sans-serif;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}
.nav-dropdown a:hover {
  color: #fff;
}

.nav .has-dropdown,
.nav .has-dropdown > a {
  position: relative;
}

.has-dropdown__arrow {
  width: 10px;
  height: 10px;
  position: absolute;
  right: calc(2rem + 10px);
  top: 50%;
  border-right: 2px solid #2f2524;
  border-bottom: 2px solid #2f2524;
  transform: translateY(-6px) rotate(45deg);
}
@media screen and (min-width: 1023px) {
  .has-dropdown__arrow {
    display: none;
  }
}

.has-dropdown > a.clicked .has-dropdown__arrow {
  transition: opacity 0.75s ease;
  opacity: 0;
}

/* ------------------------------------------------------------ *\
	Nav Btn
\* ------------------------------------------------------------ */
.nav-btn {
  display: none;
  vertical-align: middle;
  position: absolute;
  top: 14px;
  right: 2rem;
  height: 18px;
  width: 30px;
  transform: rotate(0deg);
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .nav-btn {
    display: inline-block;
  }
}
.nav-btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #ff197b, #ff493a);
  opacity: 1;
  transform: rotate(0deg);
  transition: all 0.3s;
}
.nav-btn span:nth-child(1) {
  top: 0;
}
.nav-btn span:nth-child(2) {
  top: 7px;
}
.nav-btn span:nth-child(3) {
  top: 14px;
}

.nav-btn.active span:nth-child(1) {
  top: 7px;
  transform: rotate(135deg);
}
.nav-btn.active span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.nav-btn.active span:nth-child(3) {
  top: 7px;
  transform: rotate(-135deg);
}

.ourPeople {
  padding: 5rem 0;
  display: flex;
  flex-wrap: wrap;
  z-index: 100;
  position: relative;
  width: 100%;
  text-align: center;
}
.ourPeople--included {
  padding: 3rem 0 0;
  margin: 0 0 -2rem;
}
.ourPeople--included .ourPeople__item {
  width: 33.3333%;
}
.ourPeople--associates .ourPeople__item {
  width: 16.6666%;
}
.ourPeople--associates__intro {
  width: 100%;
  text-align: left;
  padding: 0 2rem 2rem;
}
.ourPeople__item {
  width: 25%;
  margin-bottom: 2.5rem;
  position: relative;
}
.ourPeople__item > div {
  position: relative;
}
.ourPeople__item > div::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0);
  transition: ease 0.4s;
}
.ourPeople__item:hover > div::after {
  background: rgba(0, 0, 0, 0.5);
}
.ourPeople__photo {
  width: 100%;
  display: block;
}
.ourPeople__heading {
  font-size: 1rem !important;
  padding: 0.8rem;
}
.ourPeople__link {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}
.ourPeople__intro {
  padding-bottom: 5rem;
}
.ourPeople__intro h1 {
  margin-bottom: 0;
}
.ourPeople__intro .introPara {
  margin-top: 3rem;
}
.ourPeople__intro .intro__content {
  max-width: 44%;
}
.ourPeople__intro .intro__colorOverlay {
  background-repeat: no-repeat;
  background-position: 95% 100%;
  background-size: contain;
}
.ourPeople__social {
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  width: 2.5rem;
  flex-wrap: wrap;
  align-content: center;
}
.ourPeople__social__item {
  width: 2rem;
  margin: auto 0 !important;
  padding: 0.25rem 0;
}
.ourPeople__social__item img {
  opacity: 0.8;
  transition: ease 0.4s;
}
.ourPeople__social__item:hover img {
  opacity: 1;
}
.ourPeople__pageContent {
  display: flex;
}
.ourPeople__copy {
  padding: 5rem 8rem 5rem 2rem;
  width: 66.6666%;
}
.ourPeople__copy figure > iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16/9;
}
.ourPeople__stats {
  width: 33.3333%;
}
.ourPeople__stats__item {
  padding: 0 2rem;
}
.ourPeople__leadershipTitle {
  width: 100%;
  font-weight: 100;
  margin: -4rem 0 3rem;
}
@media screen and (max-width: 730px) {
  .ourPeople__item {
    width: 33.3333%;
  }
  .ourPeople__social {
    position: static;
    width: 100%;
  }
  .ourPeople__social__item {
    width: 1.5rem;
  }
  .ourPeople__social__item img {
    padding-top: 0.5rem;
  }
  .ourPeople__pageContent {
    flex-wrap: wrap;
  }
  .ourPeople__stats {
    width: 100%;
  }
  .ourPeople__stats__item {
    padding: 2rem;
  }
  .ourPeople__copy {
    padding: 5rem 2rem;
    width: 100%;
  }
}
@media screen and (max-width: 660px) {
  .ourPeople__intro {
    padding-bottom: 45vw;
  }
  .ourPeople__intro .intro__content {
    max-width: 100%;
  }
  .ourPeople__intro .intro__colorOverlay {
    background-size: 50vw;
    background-position: 0 100%;
  }
}
@media screen and (max-width: 520px) {
  .ourPeople__item {
    width: 50%;
  }
}
@media screen and (max-width: 360px) {
  .ourPeople__item {
    width: 100%;
  }
}

/* ------------------------------------------------------------ *\
	Reset
\* ------------------------------------------------------------ */
*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}

html {
  tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
     -moz-text-size-adjust: none;
      -ms-text-size-adjust: none;
          text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
  max-width: 100%;
}

img,
iframe {
  border: 0 none;
}

img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

b,
strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

svg:not(:root) {
  overflow: hidden;
}

a,
button,
input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
input[type=image],
label[for] {
  cursor: pointer;
}

a[href^=tel],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
textarea,
a[href^=tel] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

button,
select {
  text-transform: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

nav ul,
nav ol {
  list-style: none outside none;
}

/* ------------------------------------------------------------ *\
	Resources
\* ------------------------------------------------------------ */
.resources {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}
.resources:hover {
  opacity: 0.8;
}
.resources__image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
  padding-top: 40%;
}
.resources__content {
  position: relative;
  padding: 14px 120px 91px 14px;
  background: #00b8e1;
  color: #fff;
}
.resources__content::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 15px;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-bottom: 22px solid #00b8e1;
}
.resources__content h6 {
  margin-bottom: 0px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
}
.resources__content p {
  font-size: 27px;
  font-weight: 700;
}

/* ------------------------------------------------------------ *\
	Section
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Section Default
\* ------------------------------------------------------------ */
.section--default {
  padding: 153px 0 180px;
}
@media (max-width: 1023px) {
  .section--default {
    padding: 50px 0;
  }
}

/* ------------------------------------------------------------ *\
	Section Light
\* ------------------------------------------------------------ */
.section--light {
  background: #eeeeee;
}

/* ------------------------------------------------------------ *\
	Section Dark
\* ------------------------------------------------------------ */
.section--dark {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 0 0;
}

/* ------------------------------------------------------------ *\
	Section Statistics
\* ------------------------------------------------------------ */
.section--statistics {
  padding: 62px 0 94px;
}
@media (max-width: 1023px) {
  .section--statistics {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  .section--statistics {
    padding: 20px 0;
  }
}

/* ------------------------------------------------------------ *\
	Section Contacts
\* ------------------------------------------------------------ */
.section--contacts {
  padding: 30px 0 21px;
}

/* ------------------------------------------------------------ *\
	Section Large
\* ------------------------------------------------------------ */
.section--large {
  padding: 26px 0;
}

/* ------------------------------------------------------------ *\
	Section Elements
\* ------------------------------------------------------------ */
.section--elements {
  padding: 26px 0;
}
.section--elements .section__head {
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .section--elements .section__head {
    margin-bottom: 20px;
  }
}
@media (max-width: 1023px) {
  .section--elements {
    padding: 26px 0;
  }
}
.section--elements.section--margin-collapse {
  margin: -52px 0 0;
}

/* ------------------------------------------------------------ *\
	Section Gutter
\* ------------------------------------------------------------ */
.section-gutter {
  margin-bottom: 39px;
}

.section-gutter--large {
  margin-bottom: 103px;
}

.section-gutter--larger {
  margin-bottom: 140px;
}

.section-gutter--largest {
  margin-bottom: 264px;
}

.section-gutter--small {
  margin-bottom: 9px;
}

.section-gutter--medium {
  margin-bottom: 69px;
}

.section-gutter--empty {
  margin-bottom: 0;
}

.section-gutter--alt {
  margin-bottom: 56px;
}

/* ------------------------------------------------------------ *\
	Section Triangle
\* ------------------------------------------------------------ */
.section--triangle {
  position: relative;
}
.section--triangle::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
  border-style: solid;
  border-width: 1054px 0 0 1500px;
  border-color: transparent transparent transparent #e8e8e8;
}
@media (max-width: 1100px) {
  .section--triangle::after {
    content: none;
  }
}

.section--slider {
  padding: 32px 0;
}

/* ------------------------------------------------------------ *\
	Shell
\* ------------------------------------------------------------ */
.shell {
  max-width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}
.shell::after {
  content: "";
  display: table;
  clear: both;
  line-height: 0;
}

/* ------------------------------------------------------------ *\
	Slider
\* ------------------------------------------------------------ */
.slider .slider__slide {
  display: flex;
  flex-wrap: wrap;
}
.slider .slider__slide-content, .slider .slider__slide-image {
  width: 50%;
}
@media (max-width: 1023px) {
  .slider .slider__slide-content, .slider .slider__slide-image {
    width: 100%;
  }
}
.slider__buttonContainer {
  text-align: center;
  margin-top: 3rem;
}
.slider__text {
  color: #fff !important;
}
.slider .slider__slide-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50%;
  padding-bottom: 50%;
}
@media (max-width: 767px) {
  .slider .slider__slide-image {
    padding-top: 80%;
  }
}
.slider .slider__slide-content {
  position: relative;
  padding: 74px 120px 74px 33px;
  background: #0c2239;
  color: #fff;
}
@media (max-width: 767px) {
  .slider .slider__slide-content {
    padding: 20px;
  }
}
.slider .slider__slide-content h3 {
  margin-bottom: 25px;
  font-size: 32px;
}
@media (max-width: 767px) {
  .slider .slider__slide-content h3 {
    font-size: 25px;
  }
}
.slider .slider__slide-content p {
  margin-bottom: 0;
  font-size: 28px;
  letter-spacing: -0.017em;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .slider .slider__slide-content p {
    font-size: 20px;
  }
}
.slider .slider__slide-content p + p {
  margin-top: 25px;
}
.slider .slider__slide-content::before {
  content: "";
  position: absolute;
  left: 100%;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-left: 47px solid;
  border-color: inherit;
  border-top: 47px solid transparent;
  border-bottom: 47px solid transparent;
}
.slider__heading {
  text-align: center;
  max-width: 780px;
  margin: 3rem auto;
}

/* ------------------------------------------------------------ *\
	Slider Nav
\* ------------------------------------------------------------ */
.slider-nav {
  margin-bottom: 32px;
  text-align: center;
  font-size: 0;
}
.slider-nav__item {
  display: inline-block;
  height: 30px;
  width: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #a0afb6;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
}
.slider-nav__item a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}
.slider-nav__item a:hover {
  opacity: 0.5;
}
.slider-nav__item span {
  vertical-align: middle;
  line-height: 1;
}
.slider-nav__item.active {
  background: #c51e48;
}
.slider-nav__item + .slider-nav__item {
  margin-left: 13px;
}

.section--slider .slider-nav {
  position: absolute;
  top: -4.3rem;
  text-align: center;
  display: block;
  width: 100%;
}

.section--slider .slider-nav.slider-nav--custom {
  position: relative;
  top: unset;
}
.section--slider .slider-nav.slider-nav--custom .slider-nav__item {
  border-radius: 0;
  width: auto;
  height: auto;
  padding: 0.25rem 1rem;
  margin: 0.25rem 0.5rem 0;
}

/* ------------------------------------------------------------ *\
	Socials
\* ------------------------------------------------------------ */
.socials ul {
  font-size: 0;
}
.socials li {
  display: inline-block;
}
.socials li + li {
  margin-left: 13px;
}
.socials a {
  display: block;
  transition: opacity 0.3s;
}
.socials a:hover {
  opacity: 0.8;
}

.stepSlider {
  counter-reset: section;
  position: relative;
  margin: -3rem 0 0 -2rem;
  width: calc(100% + 4rem);
}
.stepSlider__slide {
  text-align: center;
  padding: 1rem;
  max-width: 900px;
  margin: auto;
}
.stepSlider__slide h2 {
  position: relative;
  margin: 1rem 0;
  font-size: 30px;
}
@media screen and (min-width: 860px) {
  .stepSlider__slide h2 {
    margin: 2rem 0 1rem;
  }
}
.stepSlider__slide h2::before {
  margin: auto;
  counter-increment: section;
  content: counter(section);
  font-size: 7rem;
  font-weight: 600;
  color: #56005f;
  position: relative;
  top: -2rem;
}
@media screen and (min-width: 860px) {
  .stepSlider__slide h2::before {
    top: -4rem;
  }
}
.stepSlider__slide p {
  font-size: 1.25rem !important;
}
.stepSlider .slider-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 8rem;
}
@media screen and (min-width: 860px) {
  .stepSlider .slider-nav {
    top: 9rem;
  }
}
.stepSlider .slider-nav__item {
  background: #ccb2ce;
  margin-left: 0;
  margin: 0 1.5%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 460px) {
  .stepSlider .slider-nav__item {
    margin: 0 3%;
  }
}
@media screen and (min-width: 860px) {
  .stepSlider .slider-nav__item {
    margin: 0 4%;
  }
}
.stepSlider .slider-nav__item.active {
  background: #56005f;
}
.stepSlider .slider-nav__item.active::before {
  color: #56005f;
}
@media screen and (min-width: 860px) {
  .stepSlider .slider-nav__item::before {
    color: #888;
    position: absolute;
    left: 50%;
    top: -2rem;
    transform: translateX(-50%);
    font-size: 0.65em;
  }
  .stepSlider .slider-nav__item:nth-of-type(1n)::before {
    content: "Onboarding";
  }
  .stepSlider .slider-nav__item:nth-of-type(2n)::before {
    content: "Engagement";
  }
  .stepSlider .slider-nav__item:nth-of-type(3n)::before {
    content: "Recommendations";
  }
  .stepSlider .slider-nav__item:nth-of-type(4n)::before {
    content: "Development";
  }
  .stepSlider .slider-nav__item:nth-of-type(5n)::before {
    content: "Training";
  }
  .stepSlider .slider-nav__item:nth-of-type(6n)::before {
    content: "Go\A0Live";
  }
  .stepSlider .slider-nav__item:nth-of-type(7n)::before {
    content: "Change";
  }
  .stepSlider .slider-nav__item:nth-of-type(8n)::before {
    content: "Measure";
  }
}
.stepSlider .slider-nav::before {
  position: absolute;
  height: 5px;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: linear-gradient(to right, #000 33%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 10px 3px;
  background-repeat: repeat-x;
  opacity: 0.4;
}

/* ------------------------------------------------------------ *\
	Subscribes
\* ------------------------------------------------------------ */
.subscribes {
  position: relative;
  z-index: 100;
}
.subscribes .subscribes__container {
  margin: 0 -10px;
  padding: 2rem 1rem;
}
.subscribes .subscribes__container > h2 {
  padding-left: 1rem;
  margin: 2rem 0;
}
.subscribes .subscribes__container::after {
  content: "";
  display: table;
  clear: both;
  line-height: 0;
}
.subscribes .subscribe {
  float: left;
  width: 33.33%;
  padding: 1rem;
}
.subscribes .subscribe--wide {
  width: 50%;
}
@media (max-width: 1023px) {
  .subscribes .subscribe {
    width: 50%;
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .subscribes .subscribe {
    width: 100%;
  }
}

.subscribe {
  position: relative;
}
.subscribe__image {
  width: 100%;
}
.subscribe__image img {
  display: block;
  margin: 1rem auto;
  max-width: 55px;
}
.subscribe__inner {
  position: relative;
  background: #ff5d50;
  color: #fff;
}
.subscribe__inner::before {
  content: "";
  background: rgba(255, 255, 255, 0.08);
  position: absolute;
  top: 0;
  right: 0;
  width: 50rem;
  height: 50rem;
  transform: rotate(35deg);
}
.subscribe__inner .subscribe__holder {
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 177px;
  text-decoration: none;
  transition: opacity 0.3s;
  flex-wrap: wrap;
}
.subscribe__inner .subscribe__holder:hover {
  opacity: 0.8;
}
.subscribe__inner h4 {
  position: relative;
  z-index: 30;
  text-align: center;
}
.subscribe__inner .subscribe__actions {
  display: block;
  position: relative;
  padding: 12px 13px;
  background-color: rgba(0, 0, 0, 0.2);
  text-decoration: none;
}
.subscribe__inner .subscribe__actions i {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  margin: auto;
}
.subscribe__inner .subscribe__actions:hover {
  opacity: 0.8;
}

/* ------------------------------------------------------------ *\
	Subscribe Purple
\* ------------------------------------------------------------ */
.subscribe--purple .subscribe__inner {
  background: #cb375c;
}
.subscribe--purple .subscribe__inner .subscribe__actions {
  background: #a22c4a;
}
.subscribe--purple .subscribe__inner::after {
  border-color: transparent #c51e48 transparent transparent;
}

/* ------------------------------------------------------------ *\
	Subscribe Blue
\* ------------------------------------------------------------ */
.subscribe--blue .subscribe__inner {
  background: #1cc0e4;
}
.subscribe--blue .subscribe__inner .subscribe__actions {
  background: #169ab6;
}
.subscribe--blue .subscribe__inner::after {
  border-color: transparent #00b8e1 transparent transparent;
}

/* our programs */
.ourProgrammes.subscribes .subscribe {
  margin: 0;
}
.ourProgrammes.subscribes .subscribes__container {
  padding: 0 1rem 5rem;
}
.ourProgrammes.subscribes .subscribes__container .subscribe__inner::after {
  content: "";
  display: none;
}
.ourProgrammes.subscribes .subscribes__container .subscribe__inner::after a {
  position: relative;
  padding: 0;
  background-color: none;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .ourProgrammes.subscribes {
    padding: 1rem 0.5rem;
  }
  .ourProgrammes.subscribes .subscribe {
    padding: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .ourProgrammes.subscribes .subscribe {
    margin-bottom: 0.5rem;
  }
}

.ourProgrammes {
  padding-top: 1rem;
}
.ourProgrammes .subscribe__inner {
  overflow: hidden;
}
.ourProgrammes .subscribe__inner:hover .ourProgrammes__hover {
  transform: translateX(0);
}
.ourProgrammes__hover {
  text-decoration: none;
  position: absolute;
  padding: 2rem;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: ease 0.4s;
  transform: translateX(-100%);
  background: inherit;
  z-index: 100;
  font-size: 1.2rem;
  text-align: left;
}

/* ------------------------------------------------------------ *\
	Testimonials
\* ------------------------------------------------------------ */
.testimonials {
  padding: 60px 0 40px;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to right, #ff197b, #ff493a);
  z-index: -1;
}
.testimonials .slider__slide-content {
  padding: 0 2rem;
  max-width: 700px;
  margin: auto;
}
.testimonials .slider-nav a {
  opacity: 0;
}
.testimonials .slider-nav a:hover {
  opacity: 0;
}
.testimonials .slider-nav__item {
  width: 15px;
  height: 15px;
  background: #fff;
  opacity: 0.7;
}
.testimonials .slider-nav__item.active {
  background: #fff;
  opacity: 1;
}
.testimonials__quote blockquote {
  max-width: 650px;
  margin: 0 auto 3rem;
  text-align: center;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 100;
  line-height: 1.27;
}
.testimonials__quote p {
  font-size: 33px;
  font-style: italic;
  font-weight: 300;
}
.testimonials__quote cite {
  margin-top: 1rem;
  font-style: normal;
  display: block;
}
.testimonials__heading {
  text-align: center;
  margin-bottom: 6.5rem !important;
}
.testimonials__textBlock {
  text-align: center;
  font-size: 3rem;
  font-style: bold;
  font-weight: 600;
  margin-bottom: 6.5rem !important;
}
@media (max-width: 767px) {
  .testimonials {
    padding: 20px 0;
  }
  .testimonials p {
    font-size: 25px;
  }
  .testimonials cite {
    font-size: 21px;
  }
}

.twoColumContent {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
  background-position: 100% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.twoColumContent__item {
  min-height: 450px;
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 5rem 2rem;
  background-position: 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 767px) {
  .twoColumContent__item {
    width: 50%;
  }
}
.twoColumContent__item--home {
  padding: 5rem 0 3rem;
}
.twoColumContent__item--image {
  padding: 0;
  padding-bottom: 50%;
}
.twoColumContent__item--image img {
  display: none;
}
.twoColumContent__item--imageParallax {
  background-attachment: fixed;
  opacity: 0;
  transition: ease 0.2s;
}
.twoColumContent__item--contained {
  background-size: contain;
}
.twoColumContent__item--include {
  overflow-x: auto;
}
.twoColumContent__item--include.twoColumContent__item--fullWidth {
  padding-right: 2rem;
}
.twoColumContent__item--center {
  padding: 5rem 2rem 8rem;
  background-position: 50%;
}
.twoColumContent__item--center .twoColumContent__content {
  width: 100%;
}
.twoColumContent__item--center .twoColumContent__content--textCenter {
  text-align: center;
}
.twoColumContent__item--center .twoColumContent__content--textCenter ul {
  list-style: inside;
  padding: 0;
}
.twoColumContent__item--center .twoColumContent__link {
  display: inline;
}
.twoColumContent__item--center .twoColumContent__content {
  max-width: 750px;
  margin: auto;
}
.twoColumContent__item--textCenter {
  text-align: center;
}
.twoColumContent__item--alignTop {
  align-items: baseline;
}
.twoColumContent__item--fullWidth {
  min-height: 0;
  width: 100%;
  background-attachment: fixed;
}
.twoColumContent__item--fullWidth.twoColumContent__item--center {
  margin: auto;
  padding: 5rem 2rem;
}
.twoColumContent__item--fullWidth h4 {
  margin-bottom: 1rem;
  opacity: 1 !important;
}
.twoColumContent__item--hoverContainer .twoColumContent__content {
  pointer-events: none;
}
.twoColumContent__item--hoverContainer h2,
.twoColumContent__item--hoverContainer p {
  position: relative;
  z-index: 1;
}
.twoColumContent__item p,
.twoColumContent__item li {
  font-family: "Albert", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  line-height: 1.35;
}
.twoColumContent__item ul {
  padding-left: 1.2rem;
}
@media screen and (max-width: 768px) {
  .twoColumContent__item {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .twoColumContent__item {
    min-height: 100vw;
  }
  .twoColumContent__item--fullWidth {
    min-height: auto;
  }
}
.twoColumContent__button {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-weight: 600;
  color: #fff;
  background-image: url("/uploads/images/icon-solid-arrow-right.svg");
  background-position: 95% 50%;
  background-repeat: no-repeat;
  background-size: 0.8rem;
  transition: ease 0.4s;
  text-align: left;
}
.twoColumContent__button .twoColumContent__link {
  display: block;
  padding: 0.8rem;
}
.twoColumContent__button .twoColumContent__link::after {
  display: none;
}
.twoColumContent__button:hover {
  background-position: 95.5% 50%;
}
.twoColumContent__absoluteLink {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  cursor: pointer;
  z-index: 1;
}
.twoColumContent__playButton {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 8rem;
  height: 8rem;
  display: block !important;
}
.twoColumContent__link {
  text-decoration: none;
  display: block;
  position: relative;
  padding-left: 1rem;
}
.twoColumContent__link::after {
  content: ">";
  position: absolute;
  left: 0;
  transition: ease 0.4s;
}
.twoColumContent__link:hover::after {
  left: 2px;
}
.twoColumContent--framed {
  padding: 2rem;
  justify-content: space-between;
}
.twoColumContent--framed .twoColumContent__item {
  width: calc(50% - 1rem);
}
.twoColumContent--framed .twoColumContent__item--fullWidth {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .twoColumContent--framed {
    padding: 2rem;
  }
  .twoColumContent--framed .twoColumContent__item {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0 2rem !important;
  }
}
@media screen and (max-width: 478px) {
  .twoColumContent--framed {
    padding: 1rem;
  }
}
.twoColumContent__content ul {
  list-style: disc;
}
.twoColumContent__content--textCenter {
  text-align: center;
}
.twoColumContent__hover {
  pointer-events: all;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  background-size: 0;
}
.twoColumContent__hover::before {
  content: "";
  background-image: inherit;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: ease 0.6s;
}
.twoColumContent__hover::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0);
  transition: ease 0.6s;
}
.twoColumContent__hover:hover::before {
  transform: scale(1.1);
}
.twoColumContent__hover:hover::after {
  background-color: rgba(0, 0, 0, 0.5);
}
.twoColumContent__arrow {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #fff;
  margin: auto;
  transform: rotate(45deg);
}
.twoColumContent__arrow--left {
  bottom: 0;
  right: unset;
  left: -20px;
  top: 0;
}
.twoColumContent__arrow--right {
  bottom: 0;
  right: -20px;
  left: unset;
  top: 0;
}
.twoColumContent__arrow--top {
  bottom: unset;
  right: 0;
  left: 0;
  top: -20px;
}

/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */
.wrapper {
  overflow: hidden;
}

/* import layouts */
.hubspotBlogOpen__triangle {
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  width: 120vw;
}
.hubspotBlogOpen .intro__logo {
  margin-bottom: 0 !important;
}
.hubspotBlogOpen__intro {
  padding-bottom: 9rem !important;
  position: relative;
}
.hubspotBlogOpen__intro::after {
  content: "";
  width: 100px;
  height: 100px;
  background-color: inherit;
  position: absolute;
  z-index: 1;
  right: -50px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
}
.hubspotBlogOpen__intro h1 {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .hubspotBlogOpen__intro h1 {
    font-size: 2.5rem !important;
  }
}
@media screen and (max-width: 768px) {
  .hubspotBlogOpen__intro::after {
    right: 0;
    left: 0;
    top: unset;
    bottom: -20px;
  }
}
.hubspotBlogOpen__blogInfo .smallHeading {
  margin-bottom: 0;
  margin-top: 2rem;
}
.hubspotBlogOpen__headingInfo {
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 1.5rem;
}
.hubspotBlogOpen__body h2 {
  font-family: "Albert", sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  margin: 1.43rem 0;
  line-height: 1.2;
}
.hubspotBlogOpen__body img {
  width: 100%;
  margin: 1.43rem 0;
}
.hubspotBlogOpen__author {
  display: flex;
  position: absolute;
  bottom: 0;
  align-items: center;
  z-index: 2;
}
.hubspotBlogOpen__author h3 {
  margin-left: 1rem;
}
.hubspotBlogOpen__authorImage {
  max-width: 100px;
}
.hubspotBlogOpen .blogpost {
  margin-bottom: 0;
  position: relative;
  z-index: 100;
}
.hubspotBlogOpen .footer {
  position: relative;
  z-index: 100;
}
.hubspotBlogOpen__socials {
  padding-top: 2rem;
}
.hubspotBlogOpen__socials img {
  max-width: 2.5rem;
  margin: 0 0 1rem;
}
.hubspotBlogOpen__socials ul {
  padding: 0 !important;
}
.hubspotBlogOpen__socials h3 {
  font-weight: 100;
}
@media screen and (min-width: 1100px) {
  .hubspotBlogOpen__socials {
    position: absolute;
    top: 6.43rem;
    left: 2rem;
    padding: 0;
  }
  .hubspotBlogOpen__socials li {
    display: block !important;
    margin: 0 !important;
  }
}

.hubspotBlogListing {
  overflow-x: hidden;
}
.hubspotBlogListing__pagination {
  width: 100%;
  margin-top: 3rem;
  text-align: center;
}
.hubspotBlogListing__pagination a {
  text-decoration: none;
  font-size: 20px;
  border: 1px solid #333;
  margin: 0.23rem;
  padding: 0.6rem 1.2rem;
  background: #fff;
  transition: ease 0.4s;
}
.hubspotBlogListing__pagination a:hover {
  color: #fff;
  background: #333;
  font-weight: 400;
}
.hubspotBlogListing__pagination .previous-posts-link {
  margin-left: -24px;
}
.hubspotBlogListing .blogpost {
  margin-bottom: 0;
  position: relative;
  z-index: 100;
}
.hubspotBlogListing .blogpost::before {
  display: none;
}
.hubspotBlogListing .blogpost__content p::after {
  background: currentColor !important;
}
.hubspotBlogListing .blogpost__content::before {
  border-left: 47px solid currentColor !important;
}
.hubspotBlogListing .blogpost__meta {
  color: inherit;
}
@media screen and (max-width: 478px) {
  .hubspotBlogListing .blogpost > h3 {
    padding-left: 1rem;
  }
}
.hubspotBlogListing__blogType {
  padding: 2.5rem 2rem 0;
  margin-bottom: 5rem;
}
.hubspotBlogListing__blogType .features {
  justify-content: space-around;
}
.hubspotBlogListing__blogTypeItem {
  padding: 0 15px;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  width: 50%;
}
.hubspotBlogListing__blogTypeItem .feature__box,
.hubspotBlogListing__blogTypeItem .feature__hover {
  display: flex;
  align-items: center;
  padding: 20px 30px;
}
.hubspotBlogListing__blogTypeItem h3 {
  margin: auto;
}
.hubspotBlogListing__blogTypeItem:nth-of-type(1) .feature__box {
  background: #ff4a3d;
}
.hubspotBlogListing__blogTypeItem:nth-of-type(2) .feature__box {
  background: #ee2253;
}
.hubspotBlogListing__blogTypeItem:nth-of-type(3) .feature__box {
  background: #46b8e0;
}
@media screen and (max-width: 890px) {
  .hubspotBlogListing__blogTypeItem {
    width: 100%;
    height: auto !important;
  }
  .hubspotBlogListing__blogTypeItem .feature__box {
    padding: 30px;
  }
}

.leadershipSlider {
  min-width: 0;
  flex-shrink: 1;
}

.bg--white {
  background: #fff;
}
.bg--grey {
  background: #ececec;
}

.center {
  text-align: center;
  margin: 2rem 0;
}

.marginBottom--2 {
  margin-bottom: 2rem !important;
}
.marginBottom--4 {
  margin-bottom: 4rem !important;
}

.paddingBottom--2 {
  padding-bottom: 2rem;
}
.paddingBottom--4 {
  padding-bottom: 4rem;
}

.how-we-help__features {
  margin-bottom: -5rem !important;
}
.how-we-help__features .feature:nth-of-type(1) .feature__box {
  background: linear-gradient(to right, #ff197b, #ff493a);
}
.how-we-help__features .feature:nth-of-type(2) .feature__box {
  background-color: #52d3a6;
}
.how-we-help__features .feature:nth-of-type(3) .feature__box {
  background-color: #6e00df;
}
.how-we-help__features .feature:nth-of-type(4) .feature__box {
  background-color: #5cbfe1;
}

.arrowLink {
  background-image: url("/uploads/images/icon-solid-arrow-right.svg");
  background-repeat: no-repeat;
  background-position: 95% 50%;
  background-size: 1rem;
  transition: 0.4s ease;
}
.arrowLink:hover {
  background-position: 97% 50%;
  transition: 0.4s ease;
}

.ourProgrammes .subscribes__container:nth-of-type(1) .subscribe:nth-of-type(1) .subscribe__inner {
  background: #59c0e3;
}
.ourProgrammes .subscribes__container:nth-of-type(1) .subscribe:nth-of-type(2) .subscribe__inner {
  background: #3b559b;
}
.ourProgrammes .subscribes__container:nth-of-type(1) .subscribe:nth-of-type(3) .subscribe__inner {
  background: #6f1ee3;
}
.ourProgrammes .subscribes__container:nth-of-type(1) .subscribe:nth-of-type(4) .subscribe__inner {
  background: #33d280;
}
.ourProgrammes .subscribes__container:nth-of-type(1) .subscribe:nth-of-type(5) .subscribe__inner {
  background: #f03a66;
}
.ourProgrammes .subscribes__container:nth-of-type(1) .subscribe:nth-of-type(6) .subscribe__inner {
  background: #f47f39;
}
.ourProgrammes .subscribe__inner .subscribe__holder {
  height: 220px;
}
.ourProgrammes .subscribe__inner .subscribe__holder h4 {
  margin-bottom: 1rem;
  max-width: 85%;
}
.ourProgrammes .subscribe__inner .ourProgrammes__hover .subscribe__holder {
  height: 156px;
  margin: 0 -32px;
}
.ourProgrammes a.subscribe__actions.arrowLink {
  background-color: none;
  text-decoration: none;
  text-align: center;
  background: none;
  font-weight: 900;
  padding: 2.6rem 1rem 1rem;
}

.linkColor {
  color: #000;
}

.brand-slider__link {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
}

/* import base styles */
.columns {
  margin: 0 0 -12px;
  font-size: 0;
}
@media (min-width: 568px) {
  .columns {
    margin: 0 -6px -12px;
  }
}
.columns + .columns {
  margin: 12px -6px -12px;
}
.columns--gutterless {
  margin: 0 0 -12px;
}
.columns--gutterless > .columns__column {
  padding: 0;
  margin: 0 0 12px;
}
.columns--center > .columns__column {
  vertical-align: middle;
}
.columns--rel {
  position: relative;
}
@media (min-width: 992px) {
  .columns--swap {
    direction: rtl;
  }
  .columns--swap > .columns__column {
    direction: ltr;
  }
}
.columns__column {
  width: 100%;
  vertical-align: top;
  display: inline-block;
  font-size: 20px;
  padding: 0 6px;
  margin: 0 0 12px;
}
@media (max-width: 567px) {
  .columns__column {
    width: 100% !important;
  }
}
.columns__column--rel {
  position: relative;
}
.columns--gutter-sm {
  margin: 0 0 -6px;
}
@media (min-width: 568px) {
  .columns--gutter-sm {
    margin: 0 -3px -6px;
  }
}
.columns--gutter-sm > .columns__column {
  padding: 0 3px;
  margin: 0 0 6px;
}
.columns--two > .columns__column {
  width: 50%;
}
.columns--two > .columns__column--double {
  width: 100%;
}
.columns--two-thirds > .columns__column {
  width: 33.33333%;
}
.columns--two-thirds > .columns__column:nth-of-type(2n+1) {
  width: 66.66666%;
}
.columns--two-thirds-swap > .columns__column {
  width: 66.66666%;
}
.columns--two-thirds-swap > .columns__column:nth-of-type(2n+1) {
  width: 33.33333%;
}
.columns--two-quarters > .columns__column {
  width: 25%;
}
.columns--two-quarters > .columns__column:nth-of-type(2n+1) {
  width: 75%;
}
.columns--two-quarters > .columns__column--double {
  width: 50%;
}
.columns--two-quarters-swap > .columns__column {
  width: 75%;
}
.columns--two-quarters-swap > .columns__column:nth-of-type(2n+1) {
  width: 25%;
}
.columns--two-fifths > .columns__column {
  width: 20%;
}
.columns--two-fifths > .columns__column:nth-of-type(2n+1) {
  width: 80%;
}
.columns--two-fifths > .columns__column--double {
  width: 40%;
}
.columns--two-fifths-swap > .columns__column {
  width: 80%;
}
.columns--two-fifths-swap > .columns__column:nth-of-type(2n+1) {
  width: 20%;
}
.columns--two-sixths > .columns__column {
  width: 16.66666%;
}
.columns--two-sixths > .columns__column:nth-of-type(2n+1) {
  width: 83.33333%;
}
.columns--two-sixths > .columns__column--double {
  width: 33.33333%;
}
.columns--two-sixths-swap > .columns__column {
  width: 83.33333%;
}
.columns--two-sixths-swap > .columns__column:nth-of-type(2n+1) {
  width: 16.66666%;
}
.columns--three > .columns__column {
  width: 33.33333%;
}
.columns--three > .columns__column--double {
  width: 66.66666%;
}
.columns--three-offset > .columns__column {
  width: 25%;
}
.columns--three-offset > .columns__column:nth-of-type(3n+1) {
  width: 50%;
}
.columns--three-offset-swap > .columns__column {
  width: 25%;
}
.columns--three-offset-swap > .columns__column:nth-of-type(3n+3) {
  width: 50%;
}
.columns--three-wide > .columns__column {
  width: 50%;
}
.columns--three-wide > .columns__column:nth-of-type(3n+1), .columns--three-wide > .columns__column:nth-of-type(3n+3) {
  width: 25%;
}
.columns--four > .columns__column {
  width: 25%;
}
.columns--four > .columns__column--double {
  width: 50%;
}
.columns--five > .columns__column {
  width: 20%;
}
.columns--five > .columns__column--double {
  width: 40%;
}
.columns--six > .columns__column {
  width: 16.66667%;
}
.columns--six > .columns__column--double {
  width: 33.33333%;
}
@media (min-width: 568px) {
  .columns--two-sm > .columns__column {
    width: 50%;
  }
  .columns--two-sm > .columns__column--double {
    width: 100%;
  }
  .columns--two-thirds-sm > .columns__column {
    width: 33.33333%;
  }
  .columns--two-thirds-sm > .columns__column:nth-of-type(2n+1) {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-sm > .columns__column {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-sm > .columns__column:nth-of-type(2n+1) {
    width: 33.33333%;
  }
  .columns--two-quarters-sm > .columns__column {
    width: 25%;
  }
  .columns--two-quarters-sm > .columns__column:nth-of-type(2n+1) {
    width: 75%;
  }
  .columns--two-quarters-sm > .columns__column--double {
    width: 50%;
  }
  .columns--two-quarters-swap-sm > .columns__column {
    width: 75%;
  }
  .columns--two-quarters-swap-sm > .columns__column:nth-of-type(2n+1) {
    width: 25%;
  }
  .columns--two-fifths-sm > .columns__column {
    width: 20%;
  }
  .columns--two-fifths-sm > .columns__column:nth-of-type(2n+1) {
    width: 80%;
  }
  .columns--two-fifths-sm > .columns__column--double {
    width: 40%;
  }
  .columns--two-fifths-swap-sm > .columns__column {
    width: 80%;
  }
  .columns--two-fifths-swap-sm > .columns__column:nth-of-type(2n+1) {
    width: 20%;
  }
  .columns--two-sixths-sm > .columns__column {
    width: 16.66666%;
  }
  .columns--two-sixths-sm > .columns__column:nth-of-type(2n+1) {
    width: 83.33333%;
  }
  .columns--two-sixths-sm > .columns__column--double {
    width: 33.33333%;
  }
  .columns--two-sixths-swap-sm > .columns__column {
    width: 80%;
  }
  .columns--two-sixths-swap-sm > .columns__column:nth-of-type(2n+1) {
    width: 16.66666%;
  }
  .columns--three-sm > .columns__column {
    width: 33.33333%;
  }
  .columns--three-sm > .columns__column--double {
    width: 66.66666%;
  }
  .columns--three-offset-sm > .columns__column {
    width: 25%;
  }
  .columns--three-offset-sm > .columns__column:nth-of-type(3n+1) {
    width: 50%;
  }
  .columns--three-offset-swap-sm > .columns__column {
    width: 25%;
  }
  .columns--three-offset-swap-sm > .columns__column:nth-of-type(3n+3) {
    width: 50%;
  }
  .columns--three-wide-sm > .columns__column {
    width: 50%;
  }
  .columns--three-wide-sm > .columns__column:nth-of-type(3n+1), .columns--three-wide-sm > .columns__column:nth-of-type(3n+3) {
    width: 25%;
  }
  .columns--four-sm > .columns__column {
    width: 25%;
  }
  .columns--four-sm > .columns__column--double {
    width: 50%;
  }
  .columns--five-sm > .columns__column {
    width: 20%;
  }
  .columns--five-sm > .columns__column--double {
    width: 40%;
  }
  .columns--six-sm > .columns__column {
    width: 16.66667%;
  }
  .columns--six-sm > .columns__column--double {
    width: 33.33333%;
  }
}
@media (min-width: 768px) {
  .columns--two-md > .columns__column {
    width: 50%;
  }
  .columns--two-md > .columns__column--double {
    width: 100%;
  }
  .columns--two-thirds-md > .columns__column {
    width: 33.33333%;
  }
  .columns--two-thirds-md > .columns__column:nth-of-type(2n+1) {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-md > .columns__column {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-md > .columns__column:nth-of-type(2n+1) {
    width: 33.33333%;
  }
  .columns--two-quarters-md > .columns__column {
    width: 25%;
  }
  .columns--two-quarters-md > .columns__column:nth-of-type(2n+1) {
    width: 75%;
  }
  .columns--two-quarters-md > .columns__column--double {
    width: 50%;
  }
  .columns--two-quarters-swap-md > .columns__column {
    width: 75%;
  }
  .columns--two-quarters-swap-md > .columns__column:nth-of-type(2n+1) {
    width: 25%;
  }
  .columns--two-fifths-md > .columns__column {
    width: 20%;
  }
  .columns--two-fifths-md > .columns__column:nth-of-type(2n+1) {
    width: 80%;
  }
  .columns--two-fifths-md > .columns__column--double {
    width: 40%;
  }
  .columns--two-fifths-swap-md > .columns__column {
    width: 80%;
  }
  .columns--two-fifths-swap-md > .columns__column:nth-of-type(2n+1) {
    width: 20%;
  }
  .columns--two-sixths-md > .columns__column {
    width: 16.66666%;
  }
  .columns--two-sixths-md > .columns__column:nth-of-type(2n+1) {
    width: 83.33333%;
  }
  .columns--two-sixths-md > .columns__column--double {
    width: 33.33333%;
  }
  .columns--two-sixths-swap-md > .columns__column {
    width: 80%;
  }
  .columns--two-sixths-swap-md > .columns__column:nth-of-type(2n+1) {
    width: 16.66666%;
  }
  .columns--three-md > .columns__column {
    width: 33.33333%;
  }
  .columns--three-md > .columns__column--double {
    width: 66.66666%;
  }
  .columns--three-offset-md > .columns__column {
    width: 25%;
  }
  .columns--three-offset-md > .columns__column:nth-of-type(3n+1) {
    width: 50%;
  }
  .columns--three-offset-swap-md > .columns__column {
    width: 25%;
  }
  .columns--three-offset-swap-md > .columns__column:nth-of-type(3n+3) {
    width: 50%;
  }
  .columns--three-wide-md > .columns__column {
    width: 50%;
  }
  .columns--three-wide-md > .columns__column:nth-of-type(3n+1), .columns--three-wide-md > .columns__column:nth-of-type(3n+3) {
    width: 25%;
  }
  .columns--four-md > .columns__column {
    width: 25%;
  }
  .columns--four-md > .columns__column--double {
    width: 50%;
  }
  .columns--five-md > .columns__column {
    width: 20%;
  }
  .columns--five-md > .columns__column--double {
    width: 40%;
  }
  .columns--six-md > .columns__column {
    width: 16.66667%;
  }
  .columns--six-md > .columns__column--double {
    width: 33.33333%;
  }
}
@media (min-width: 992px) {
  .columns--two-lg > .columns__column {
    width: 50%;
  }
  .columns--two-lg > .columns__column--double {
    width: 100%;
  }
  .columns--two-thirds-lg > .columns__column {
    width: 33.33333%;
  }
  .columns--two-thirds-lg > .columns__column:nth-of-type(2n+1) {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-lg > .columns__column {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-lg > .columns__column:nth-of-type(2n+1) {
    width: 33.33333%;
  }
  .columns--two-quarters-lg > .columns__column {
    width: 25%;
  }
  .columns--two-quarters-lg > .columns__column:nth-of-type(2n+1) {
    width: 75%;
  }
  .columns--two-quarters-lg > .columns__column--double {
    width: 50%;
  }
  .columns--two-quarters-swap-lg > .columns__column {
    width: 75%;
  }
  .columns--two-quarters-swap-lg > .columns__column:nth-of-type(2n+1) {
    width: 25%;
  }
  .columns--two-fifths-lg > .columns__column {
    width: 20%;
  }
  .columns--two-fifths-lg > .columns__column:nth-of-type(2n+1) {
    width: 80%;
  }
  .columns--two-fifths-lg > .columns__column--double {
    width: 40%;
  }
  .columns--two-fifths-swap-lg > .columns__column {
    width: 80%;
  }
  .columns--two-fifths-swap-lg > .columns__column:nth-of-type(2n+1) {
    width: 20%;
  }
  .columns--two-sixths-lg > .columns__column {
    width: 16.66666%;
  }
  .columns--two-sixths-lg > .columns__column:nth-of-type(2n+1) {
    width: 83.33333%;
  }
  .columns--two-sixths-lg > .columns__column--double {
    width: 33.33333%;
  }
  .columns--two-sixths-swap-lg > .columns__column {
    width: 80%;
  }
  .columns--two-sixths-swap-lg > .columns__column:nth-of-type(2n+1) {
    width: 16.66666%;
  }
  .columns--three-lg > .columns__column {
    width: 33.33333%;
  }
  .columns--three-lg > .columns__column--double {
    width: 66.66666%;
  }
  .columns--three-offset-lg > .columns__column {
    width: 25%;
  }
  .columns--three-offset-lg > .columns__column:nth-of-type(3n+1) {
    width: 50%;
  }
  .columns--three-offset-swap-lg > .columns__column {
    width: 25%;
  }
  .columns--three-offset-swap-lg > .columns__column:nth-of-type(3n+3) {
    width: 50%;
  }
  .columns--three-wide-lg > .columns__column {
    width: 50%;
  }
  .columns--three-wide-lg > .columns__column:nth-of-type(3n+1), .columns--three-wide-lg > .columns__column:nth-of-type(3n+3) {
    width: 25%;
  }
  .columns--four-lg > .columns__column {
    width: 25%;
  }
  .columns--four-lg > .columns__column--double {
    width: 50%;
  }
  .columns--five-lg > .columns__column {
    width: 20%;
  }
  .columns--five-lg > .columns__column--double {
    width: 40%;
  }
  .columns--six-lg > .columns__column {
    width: 16.66667%;
  }
  .columns--six-lg > .columns__column--double {
    width: 33.33333%;
  }
}
@media (min-width: 1280px) {
  .columns--two-xl > .columns__column {
    width: 50%;
  }
  .columns--two-xl > .columns__column--double {
    width: 100%;
  }
  .columns--two-thirds-xl > .columns__column {
    width: 33.33333%;
  }
  .columns--two-thirds-xl > .columns__column:nth-of-type(2n+1) {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-xl > .columns__column {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-xl > .columns__column:nth-of-type(2n+1) {
    width: 33.33333%;
  }
  .columns--two-quarters-xl > .columns__column {
    width: 25%;
  }
  .columns--two-quarters-xl > .columns__column:nth-of-type(2n+1) {
    width: 75%;
  }
  .columns--two-quarters-xl > .columns__column--double {
    width: 50%;
  }
  .columns--two-quarters-swap-xl > .columns__column {
    width: 75%;
  }
  .columns--two-quarters-swap-xl > .columns__column:nth-of-type(2n+1) {
    width: 25%;
  }
  .columns--two-fifths-xl > .columns__column {
    width: 20%;
  }
  .columns--two-fifths-xl > .columns__column:nth-of-type(2n+1) {
    width: 80%;
  }
  .columns--two-fifths-xl > .columns__column--double {
    width: 40%;
  }
  .columns--two-fifths-swap-xl > .columns__column {
    width: 80%;
  }
  .columns--two-fifths-swap-xl > .columns__column:nth-of-type(2n+1) {
    width: 20%;
  }
  .columns--two-sixths-xl > .columns__column {
    width: 16.66666%;
  }
  .columns--two-sixths-xl > .columns__column:nth-of-type(2n+1) {
    width: 83.33333%;
  }
  .columns--two-sixths-xl > .columns__column--double {
    width: 33.33333%;
  }
  .columns--two-sixths-swap-xl > .columns__column {
    width: 80%;
  }
  .columns--two-sixths-swap-xl > .columns__column:nth-of-type(2n+1) {
    width: 16.66666%;
  }
  .columns--three-xl > .columns__column {
    width: 33.33333%;
  }
  .columns--three-xl > .columns__column--double {
    width: 66.66666%;
  }
  .columns--three-offset-xl > .columns__column {
    width: 25%;
  }
  .columns--three-offset-xl > .columns__column:nth-of-type(3n+1) {
    width: 50%;
  }
  .columns--three-offset-swap-xl > .columns__column {
    width: 25%;
  }
  .columns--three-offset-swap-xl > .columns__column:nth-of-type(3n+3) {
    width: 50%;
  }
  .columns--three-wide-xl > .columns__column {
    width: 50%;
  }
  .columns--three-wide-xl > .columns__column:nth-of-type(3n+1), .columns--three-wide-xl > .columns__column:nth-of-type(3n+3) {
    width: 25%;
  }
  .columns--four-xl > .columns__column {
    width: 25%;
  }
  .columns--four-xl > .columns__column--double {
    width: 50%;
  }
  .columns--five-xl > .columns__column {
    width: 20%;
  }
  .columns--five-xl > .columns__column--double {
    width: 40%;
  }
  .columns--six-xl > .columns__column {
    width: 16.66667%;
  }
  .columns--six-xl > .columns__column--double {
    width: 33.33333%;
  }
}
@media (min-width: 1500px) {
  .columns--two-xxl > .columns__column {
    width: 50%;
  }
  .columns--two-xxl > .columns__column--double {
    width: 100%;
  }
  .columns--two-thirds-xxl > .columns__column {
    width: 33.33333%;
  }
  .columns--two-thirds-xxl > .columns__column:nth-of-type(2n+1) {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-xxl > .columns__column {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-xxl > .columns__column:nth-of-type(2n+1) {
    width: 33.33333%;
  }
  .columns--two-quarters-xxl > .columns__column {
    width: 25%;
  }
  .columns--two-quarters-xxl > .columns__column:nth-of-type(2n+1) {
    width: 75%;
  }
  .columns--two-quarters-xxl > .columns__column--double {
    width: 50%;
  }
  .columns--two-quarters-swap-xxl > .columns__column {
    width: 75%;
  }
  .columns--two-quarters-swap-xxl > .columns__column:nth-of-type(2n+1) {
    width: 25%;
  }
  .columns--two-fifths-xxl > .columns__column {
    width: 20%;
  }
  .columns--two-fifths-xxl > .columns__column:nth-of-type(2n+1) {
    width: 80%;
  }
  .columns--two-fifths-xxl > .columns__column--double {
    width: 40%;
  }
  .columns--two-fifths-swap-xxl > .columns__column {
    width: 80%;
  }
  .columns--two-fifths-swap-xxl > .columns__column:nth-of-type(2n+1) {
    width: 20%;
  }
  .columns--two-sixths-xxl > .columns__column {
    width: 16.66666%;
  }
  .columns--two-sixths-xxl > .columns__column:nth-of-type(2n+1) {
    width: 83.33333%;
  }
  .columns--two-sixths-xxl > .columns__column--double {
    width: 33.33333%;
  }
  .columns--two-sixths-swap-xxl > .columns__column {
    width: 80%;
  }
  .columns--two-sixths-swap-xxl > .columns__column:nth-of-type(2n+1) {
    width: 16.66666%;
  }
  .columns--three-xxl > .columns__column {
    width: 33.33333%;
  }
  .columns--three-xxl > .columns__column--double {
    width: 66.66666%;
  }
  .columns--three-offset-xxl > .columns__column {
    width: 25%;
  }
  .columns--three-offset-xxl > .columns__column:nth-of-type(3n+1) {
    width: 50%;
  }
  .columns--three-offset-swap-xxl > .columns__column {
    width: 25%;
  }
  .columns--three-offset-swap-xxl > .columns__column:nth-of-type(3n+3) {
    width: 50%;
  }
  .columns--three-wide-xxl > .columns__column {
    width: 50%;
  }
  .columns--three-wide-xxl > .columns__column:nth-of-type(3n+1), .columns--three-wide-xxl > .columns__column:nth-of-type(3n+3) {
    width: 25%;
  }
  .columns--four-xxl > .columns__column {
    width: 25%;
  }
  .columns--four-xxl > .columns__column--double {
    width: 50%;
  }
  .columns--five-xxl > .columns__column {
    width: 20%;
  }
  .columns--five-xxl > .columns__column--double {
    width: 40%;
  }
  .columns--six-xxl > .columns__column {
    width: 16.66667%;
  }
  .columns--six-xxl > .columns__column--double {
    width: 33.33333%;
  }
}
@media (max-width: 767px) {
  .columns--two-sm-down > .columns__column {
    width: 50%;
  }
  .columns--two-sm-down > .columns__column--double {
    width: 100%;
  }
  .columns--two-thirds-sm-down > .columns__column {
    width: 33.33333%;
  }
  .columns--two-thirds-sm-down > .columns__column:nth-of-type(2n+1) {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-sm-down > .columns__column {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-sm-down > .columns__column:nth-of-type(2n+1) {
    width: 33.33333%;
  }
  .columns--two-quarters-sm-down > .columns__column {
    width: 25%;
  }
  .columns--two-quarters-sm-down > .columns__column:nth-of-type(2n+1) {
    width: 75%;
  }
  .columns--two-quarters-sm-down > .columns__column--double {
    width: 50%;
  }
  .columns--two-quarters-swap-sm-down > .columns__column {
    width: 75%;
  }
  .columns--two-quarters-swap-sm-down > .columns__column:nth-of-type(2n+1) {
    width: 25%;
  }
  .columns--two-fifths-sm-down > .columns__column {
    width: 20%;
  }
  .columns--two-fifths-sm-down > .columns__column:nth-of-type(2n+1) {
    width: 80%;
  }
  .columns--two-fifths-sm-down > .columns__column--double {
    width: 40%;
  }
  .columns--two-fifths-swap-sm-down > .columns__column {
    width: 80%;
  }
  .columns--two-fifths-swap-sm-down > .columns__column:nth-of-type(2n+1) {
    width: 20%;
  }
  .columns--two-sixths-sm-down > .columns__column {
    width: 16.66666%;
  }
  .columns--two-sixths-sm-down > .columns__column:nth-of-type(2n+1) {
    width: 83.33333%;
  }
  .columns--two-sixths-sm-down > .columns__column--double {
    width: 33.33333%;
  }
  .columns--two-sixths-swap-sm-down > .columns__column {
    width: 80%;
  }
  .columns--two-sixths-swap-sm-down > .columns__column:nth-of-type(2n+1) {
    width: 16.66666%;
  }
  .columns--three-sm-down > .columns__column {
    width: 33.33333%;
  }
  .columns--three-sm-down > .columns__column--double {
    width: 66.66666%;
  }
  .columns--three-offset-sm-down > .columns__column {
    width: 25%;
  }
  .columns--three-offset-sm-down > .columns__column:nth-of-type(3n+1) {
    width: 50%;
  }
  .columns--three-offset-swap-sm-down > .columns__column {
    width: 25%;
  }
  .columns--three-offset-swap-sm-down > .columns__column:nth-of-type(3n+3) {
    width: 50%;
  }
  .columns--three-wide-sm-down > .columns__column {
    width: 50%;
  }
  .columns--three-wide-sm-down > .columns__column:nth-of-type(3n+1), .columns--three-wide-sm-down > .columns__column:nth-of-type(3n+3) {
    width: 25%;
  }
  .columns--four-sm-down > .columns__column {
    width: 25%;
  }
  .columns--four-sm-down > .columns__column--double {
    width: 50%;
  }
  .columns--five-sm-down > .columns__column {
    width: 20%;
  }
  .columns--five-sm-down > .columns__column--double {
    width: 40%;
  }
  .columns--six-sm-down > .columns__column {
    width: 16.66667%;
  }
  .columns--six-sm-down > .columns__column--double {
    width: 33.33333%;
  }
}
@media (max-width: 991px) {
  .columns--two-md-down > .columns__column {
    width: 50%;
  }
  .columns--two-md-down > .columns__column--double {
    width: 100%;
  }
  .columns--two-thirds-md-down > .columns__column {
    width: 33.33333%;
  }
  .columns--two-thirds-md-down > .columns__column:nth-of-type(2n+1) {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-md-down > .columns__column {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-md-down > .columns__column:nth-of-type(2n+1) {
    width: 33.33333%;
  }
  .columns--two-quarters-md-down > .columns__column {
    width: 25%;
  }
  .columns--two-quarters-md-down > .columns__column:nth-of-type(2n+1) {
    width: 75%;
  }
  .columns--two-quarters-md-down > .columns__column--double {
    width: 50%;
  }
  .columns--two-quarters-swap-md-down > .columns__column {
    width: 75%;
  }
  .columns--two-quarters-swap-md-down > .columns__column:nth-of-type(2n+1) {
    width: 25%;
  }
  .columns--two-fifths-md-down > .columns__column {
    width: 20%;
  }
  .columns--two-fifths-md-down > .columns__column:nth-of-type(2n+1) {
    width: 80%;
  }
  .columns--two-fifths-md-down > .columns__column--double {
    width: 40%;
  }
  .columns--two-fifths-swap-md-down > .columns__column {
    width: 80%;
  }
  .columns--two-fifths-swap-md-down > .columns__column:nth-of-type(2n+1) {
    width: 20%;
  }
  .columns--two-sixths-md-down > .columns__column {
    width: 16.66666%;
  }
  .columns--two-sixths-md-down > .columns__column:nth-of-type(2n+1) {
    width: 83.33333%;
  }
  .columns--two-sixths-md-down > .columns__column--double {
    width: 33.33333%;
  }
  .columns--two-sixths-swap-md-down > .columns__column {
    width: 80%;
  }
  .columns--two-sixths-swap-md-down > .columns__column:nth-of-type(2n+1) {
    width: 16.66666%;
  }
  .columns--three-md-down > .columns__column {
    width: 33.33333%;
  }
  .columns--three-md-down > .columns__column--double {
    width: 66.66666%;
  }
  .columns--three-offset-md-down > .columns__column {
    width: 25%;
  }
  .columns--three-offset-md-down > .columns__column:nth-of-type(3n+1) {
    width: 50%;
  }
  .columns--three-offset-swap-md-down > .columns__column {
    width: 25%;
  }
  .columns--three-offset-swap-md-down > .columns__column:nth-of-type(3n+3) {
    width: 50%;
  }
  .columns--three-wide-md-down > .columns__column {
    width: 50%;
  }
  .columns--three-wide-md-down > .columns__column:nth-of-type(3n+1), .columns--three-wide-md-down > .columns__column:nth-of-type(3n+3) {
    width: 25%;
  }
  .columns--four-md-down > .columns__column {
    width: 25%;
  }
  .columns--four-md-down > .columns__column--double {
    width: 50%;
  }
  .columns--five-md-down > .columns__column {
    width: 20%;
  }
  .columns--five-md-down > .columns__column--double {
    width: 40%;
  }
  .columns--six-md-down > .columns__column {
    width: 16.66667%;
  }
  .columns--six-md-down > .columns__column--double {
    width: 33.33333%;
  }
}
@media (max-width: 1279px) {
  .columns--two-lg-down > .columns__column {
    width: 50%;
  }
  .columns--two-lg-down > .columns__column--double {
    width: 100%;
  }
  .columns--two-thirds-lg-down > .columns__column {
    width: 33.33333%;
  }
  .columns--two-thirds-lg-down > .columns__column:nth-of-type(2n+1) {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-lg-down > .columns__column {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-lg-down > .columns__column:nth-of-type(2n+1) {
    width: 33.33333%;
  }
  .columns--two-quarters-lg-down > .columns__column {
    width: 25%;
  }
  .columns--two-quarters-lg-down > .columns__column:nth-of-type(2n+1) {
    width: 75%;
  }
  .columns--two-quarters-lg-down > .columns__column--double {
    width: 50%;
  }
  .columns--two-quarters-swap-lg-down > .columns__column {
    width: 75%;
  }
  .columns--two-quarters-swap-lg-down > .columns__column:nth-of-type(2n+1) {
    width: 25%;
  }
  .columns--two-fifths-lg-down > .columns__column {
    width: 20%;
  }
  .columns--two-fifths-lg-down > .columns__column:nth-of-type(2n+1) {
    width: 80%;
  }
  .columns--two-fifths-lg-down > .columns__column--double {
    width: 40%;
  }
  .columns--two-fifths-swap-lg-down > .columns__column {
    width: 80%;
  }
  .columns--two-fifths-swap-lg-down > .columns__column:nth-of-type(2n+1) {
    width: 20%;
  }
  .columns--two-sixths-lg-down > .columns__column {
    width: 16.66666%;
  }
  .columns--two-sixths-lg-down > .columns__column:nth-of-type(2n+1) {
    width: 83.33333%;
  }
  .columns--two-sixths-lg-down > .columns__column--double {
    width: 33.33333%;
  }
  .columns--two-sixths-swap-lg-down > .columns__column {
    width: 80%;
  }
  .columns--two-sixths-swap-lg-down > .columns__column:nth-of-type(2n+1) {
    width: 16.66666%;
  }
  .columns--three-lg-down > .columns__column {
    width: 33.33333%;
  }
  .columns--three-lg-down > .columns__column--double {
    width: 66.66666%;
  }
  .columns--three-offset-lg-down > .columns__column {
    width: 25%;
  }
  .columns--three-offset-lg-down > .columns__column:nth-of-type(3n+1) {
    width: 50%;
  }
  .columns--three-offset-swap-lg-down > .columns__column {
    width: 25%;
  }
  .columns--three-offset-swap-lg-down > .columns__column:nth-of-type(3n+3) {
    width: 50%;
  }
  .columns--three-wide-lg-down > .columns__column {
    width: 50%;
  }
  .columns--three-wide-lg-down > .columns__column:nth-of-type(3n+1), .columns--three-wide-lg-down > .columns__column:nth-of-type(3n+3) {
    width: 25%;
  }
  .columns--four-lg-down > .columns__column {
    width: 25%;
  }
  .columns--four-lg-down > .columns__column--double {
    width: 50%;
  }
  .columns--five-lg-down > .columns__column {
    width: 20%;
  }
  .columns--five-lg-down > .columns__column--double {
    width: 40%;
  }
  .columns--six-lg-down > .columns__column {
    width: 16.66667%;
  }
  .columns--six-lg-down > .columns__column--double {
    width: 33.33333%;
  }
}
@media (max-width: 1499px) {
  .columns--two-xl-down > .columns__column {
    width: 50%;
  }
  .columns--two-xl-down > .columns__column--double {
    width: 100%;
  }
  .columns--two-thirds-xl-down > .columns__column {
    width: 33.33333%;
  }
  .columns--two-thirds-xl-down > .columns__column:nth-of-type(2n+1) {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-xl-down > .columns__column {
    width: 66.66666%;
  }
  .columns--two-thirds-swap-xl-down > .columns__column:nth-of-type(2n+1) {
    width: 33.33333%;
  }
  .columns--two-quarters-xl-down > .columns__column {
    width: 25%;
  }
  .columns--two-quarters-xl-down > .columns__column:nth-of-type(2n+1) {
    width: 75%;
  }
  .columns--two-quarters-xl-down > .columns__column--double {
    width: 50%;
  }
  .columns--two-quarters-swap-xl-down > .columns__column {
    width: 75%;
  }
  .columns--two-quarters-swap-xl-down > .columns__column:nth-of-type(2n+1) {
    width: 25%;
  }
  .columns--two-fifths-xl-down > .columns__column {
    width: 20%;
  }
  .columns--two-fifths-xl-down > .columns__column:nth-of-type(2n+1) {
    width: 80%;
  }
  .columns--two-fifths-xl-down > .columns__column--double {
    width: 40%;
  }
  .columns--two-fifths-swap-xl-down > .columns__column {
    width: 80%;
  }
  .columns--two-fifths-swap-xl-down > .columns__column:nth-of-type(2n+1) {
    width: 20%;
  }
  .columns--two-sixths-xl-down > .columns__column {
    width: 16.66666%;
  }
  .columns--two-sixths-xl-down > .columns__column:nth-of-type(2n+1) {
    width: 83.33333%;
  }
  .columns--two-sixths-xl-down > .columns__column--double {
    width: 33.33333%;
  }
  .columns--two-sixths-swap-xl-down > .columns__column {
    width: 80%;
  }
  .columns--two-sixths-swap-xl-down > .columns__column:nth-of-type(2n+1) {
    width: 16.66666%;
  }
  .columns--three-xl-down > .columns__column {
    width: 33.33333%;
  }
  .columns--three-xl-down > .columns__column--double {
    width: 66.66666%;
  }
  .columns--three-offset-xl-down > .columns__column {
    width: 25%;
  }
  .columns--three-offset-xl-down > .columns__column:nth-of-type(3n+1) {
    width: 50%;
  }
  .columns--three-offset-swap-xl-down > .columns__column {
    width: 25%;
  }
  .columns--three-offset-swap-xl-down > .columns__column:nth-of-type(3n+3) {
    width: 50%;
  }
  .columns--three-wide-xl-down > .columns__column {
    width: 50%;
  }
  .columns--three-wide-xl-down > .columns__column:nth-of-type(3n+1), .columns--three-wide-xl-down > .columns__column:nth-of-type(3n+3) {
    width: 25%;
  }
  .columns--four-xl-down > .columns__column {
    width: 25%;
  }
  .columns--four-xl-down > .columns__column--double {
    width: 50%;
  }
  .columns--five-xl-down > .columns__column {
    width: 20%;
  }
  .columns--five-xl-down > .columns__column--double {
    width: 40%;
  }
  .columns--six-xl-down > .columns__column {
    width: 16.66667%;
  }
  .columns--six-xl-down > .columns__column--double {
    width: 33.33333%;
  }
}
.columns--two-xxl-down > .columns__column {
  width: 50%;
}
.columns--two-xxl-down > .columns__column--double {
  width: 100%;
}
.columns--two-thirds-xxl-down > .columns__column {
  width: 33.33333%;
}
.columns--two-thirds-xxl-down > .columns__column:nth-of-type(2n+1) {
  width: 66.66666%;
}
.columns--two-thirds-swap-xxl-down > .columns__column {
  width: 66.66666%;
}
.columns--two-thirds-swap-xxl-down > .columns__column:nth-of-type(2n+1) {
  width: 33.33333%;
}
.columns--two-quarters-xxl-down > .columns__column {
  width: 25%;
}
.columns--two-quarters-xxl-down > .columns__column:nth-of-type(2n+1) {
  width: 75%;
}
.columns--two-quarters-xxl-down > .columns__column--double {
  width: 50%;
}
.columns--two-quarters-swap-xxl-down > .columns__column {
  width: 75%;
}
.columns--two-quarters-swap-xxl-down > .columns__column:nth-of-type(2n+1) {
  width: 25%;
}
.columns--two-fifths-xxl-down > .columns__column {
  width: 20%;
}
.columns--two-fifths-xxl-down > .columns__column:nth-of-type(2n+1) {
  width: 80%;
}
.columns--two-fifths-xxl-down > .columns__column--double {
  width: 40%;
}
.columns--two-fifths-swap-xxl-down > .columns__column {
  width: 80%;
}
.columns--two-fifths-swap-xxl-down > .columns__column:nth-of-type(2n+1) {
  width: 20%;
}
.columns--two-sixths-xxl-down > .columns__column {
  width: 16.66666%;
}
.columns--two-sixths-xxl-down > .columns__column:nth-of-type(2n+1) {
  width: 83.33333%;
}
.columns--two-sixths-xxl-down > .columns__column--double {
  width: 33.33333%;
}
.columns--two-sixths-swap-xxl-down > .columns__column {
  width: 80%;
}
.columns--two-sixths-swap-xxl-down > .columns__column:nth-of-type(2n+1) {
  width: 16.66666%;
}
.columns--three-xxl-down > .columns__column {
  width: 33.33333%;
}
.columns--three-xxl-down > .columns__column--double {
  width: 66.66666%;
}
.columns--three-offset-xxl-down > .columns__column {
  width: 25%;
}
.columns--three-offset-xxl-down > .columns__column:nth-of-type(3n+1) {
  width: 50%;
}
.columns--three-offset-swap-xxl-down > .columns__column {
  width: 25%;
}
.columns--three-offset-swap-xxl-down > .columns__column:nth-of-type(3n+3) {
  width: 50%;
}
.columns--three-wide-xxl-down > .columns__column {
  width: 50%;
}
.columns--three-wide-xxl-down > .columns__column:nth-of-type(3n+1), .columns--three-wide-xxl-down > .columns__column:nth-of-type(3n+3) {
  width: 25%;
}
.columns--four-xxl-down > .columns__column {
  width: 25%;
}
.columns--four-xxl-down > .columns__column--double {
  width: 50%;
}
.columns--five-xxl-down > .columns__column {
  width: 20%;
}
.columns--five-xxl-down > .columns__column--double {
  width: 40%;
}
.columns--six-xxl-down > .columns__column {
  width: 16.66667%;
}
.columns--six-xxl-down > .columns__column--double {
  width: 33.33333%;
}

.js-hover {
  cursor: pointer;
}

.js .js-bg-img {
  visibility: hidden;
}

.hidden {
  display: none;
}

@media (max-width: 567px) {
  .hidden--xs {
    display: none !important;
  }
}
@media (min-width: 568px) and (max-width: 767px) {
  .hidden--sm {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden--md {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .hidden--lg {
    display: none !important;
  }
}
@media (min-width: 1280px) and (max-width: 1499px) {
  .hidden--xl {
    display: none !important;
  }
}
@media (min-width: 1500px) {
  .hidden--xxl {
    display: none !important;
  }
}

.text--left {
  text-align: left !important;
}
.text--right {
  text-align: right !important;
}
.text--center {
  text-align: center !important;
}
@media (min-width: 568px) and (max-width: 767px) {
  .text--left-sm {
    text-align: left !important;
  }
  .text--right-sm {
    text-align: right !important;
  }
  .text--center-sm {
    text-align: center !important;
  }
}
@media (min-width: 568px) {
  .text--left-sm-up {
    text-align: left !important;
  }
  .text--right-sm-up {
    text-align: right !important;
  }
  .text--center-sm-up {
    text-align: center !important;
  }
}
@media (max-width: 767px) {
  .text--left-sm-down {
    text-align: left !important;
  }
  .text--right-sm-down {
    text-align: right !important;
  }
  .text--center-sm-down {
    text-align: center !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .text--left-md {
    text-align: left !important;
  }
  .text--right-md {
    text-align: right !important;
  }
  .text--center-md {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .text--left-md-up {
    text-align: left !important;
  }
  .text--right-md-up {
    text-align: right !important;
  }
  .text--center-md-up {
    text-align: center !important;
  }
}
@media (max-width: 991px) {
  .text--left-md-down {
    text-align: left !important;
  }
  .text--right-md-down {
    text-align: right !important;
  }
  .text--center-md-down {
    text-align: center !important;
  }
}
@media (min-width: 992px) and (max-width: 1279px) {
  .text--left-lg {
    text-align: left !important;
  }
  .text--right-lg {
    text-align: right !important;
  }
  .text--center-lg {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .text--left-lg-up {
    text-align: left !important;
  }
  .text--right-lg-up {
    text-align: right !important;
  }
  .text--center-lg-up {
    text-align: center !important;
  }
}
@media (max-width: 1279px) {
  .text--left-lg-down {
    text-align: left !important;
  }
  .text--right-lg-down {
    text-align: right !important;
  }
  .text--center-lg-down {
    text-align: center !important;
  }
}
@media (min-width: 1280px) and (max-width: 1499px) {
  .text--left-xl {
    text-align: left !important;
  }
  .text--right-xl {
    text-align: right !important;
  }
  .text--center-xl {
    text-align: center !important;
  }
}
@media (min-width: 1280px) {
  .text--left-xl-up {
    text-align: left !important;
  }
  .text--right-xl-up {
    text-align: right !important;
  }
  .text--center-xl-up {
    text-align: center !important;
  }
}
@media (max-width: 1499px) {
  .text--left-xl-down {
    text-align: left !important;
  }
  .text--right-xl-down {
    text-align: right !important;
  }
  .text--center-xl-down {
    text-align: center !important;
  }
}
@media (min-width: 1500px) {
  .text--left-xxl {
    text-align: left !important;
  }
  .text--right-xxl {
    text-align: right !important;
  }
  .text--center-xxl {
    text-align: center !important;
  }
}
@media (min-width: 1500px) {
  .text--left-xxl-up {
    text-align: left !important;
  }
  .text--right-xxl-up {
    text-align: right !important;
  }
  .text--center-xxl-up {
    text-align: center !important;
  }
}
.text--left-xxl-down {
  text-align: left !important;
}
.text--right-xxl-down {
  text-align: right !important;
}
.text--center-xxl-down {
  text-align: center !important;
}

* {
  box-sizing: border-box;
}

.container {
  margin: 0 auto;
}
@media (min-width: 568px) {
  .container {
    width: 520px;
  }
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 940px;
  }
}
@media (min-width: 1280px) {
  .container {
    width: 1220px;
  }
}
@media (min-width: 1500px) {
  .container {
    width: 1420px;
  }
}

.smallParagraph {
  font-family: "Albert", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 0.62rem;
  line-height: 1.3;
}
.smallParagraph--bold {
  font-weight: 600;
}

.mediumParagraph {
  font-family: "Albert", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.7rem;
  line-height: 1.35;
}
.mediumParagraph--bold {
  font-weight: 600;
}

.largeParagraph {
  font-family: "Albert", sans-serif;
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 0.85rem;
  line-height: 1.4;
}
.largeParagraph--bold {
  font-weight: 600;
}

.smallHeading {
  font-family: "Albert", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.smallHeading--above {
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  opacity: 0.7;
}

.mediumHeading {
  font-family: "Albert", sans-serif;
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 1.43rem;
  line-height: 1.2;
}

.largeHeading {
  font-family: "Albert", sans-serif;
  font-size: 3.1rem;
  font-weight: 400;
  margin-bottom: 1.62rem;
  line-height: 1.2;
}
.largeHeading--light {
  font-weight: 100;
}

.x-largeHeading {
  font-family: "AvantGarde", sans-serif;
  font-size: 3.25rem;
  font-weight: 400;
  line-height: 1.2;
}

@media screen and (max-width: 740px) {
  .mediumHeading {
    font-size: 1.7rem;
  }

  .largeHeading {
    font-size: 2.1rem;
  }

  .x-largeHeading {
    font-size: 2.5rem;
  }
}
/*# sourceMappingURL=style.css.map*/