@charset "UTF-8";
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  background: #FFBCD6;
  text-shadow: none;
}

::selection {
  background: #FFBCD6;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/*********************
BREAKPOINTS
*********************/
/*********************
BOOTSTRAP BREAKPOINTS
*********************/
/*********************
BREAKPOINTS: Usage
*********************/
/*
@include breakpoint(breakpointname) {
    ==== STYLES ====    
}
*/
.table {
  display: table;
}
.table-full {
  width: 100%;
  height: 100%;
  min-height: inherit;
  position: relative;
}
.table-full:after {
  content: "";
  display: table;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.v-align-top {
  vertical-align: top;
}

.v-align-middle {
  vertical-align: middle;
}

.v-align-bottom {
  vertical-align: bottom;
}

.clearfix {
  overflow: auto;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

ul.inline-block-group {
  list-style: none;
  padding-left: initial;
}
ul.inline-block-group li {
  display: inline-block;
  vertical-align: middle;
}

.case-upper {
  text-transform: uppercase;
}

.case-lower {
  text-transform: lowercase;
}

.case-proper {
  text-transform: capitalize;
}

.m-auto {
  margin: auto;
}

.img-responsive {
  width: 100%;
  height: auto;
}

.center-block {
  display: block;
  margin: 0 auto;
}

.bp-rel {
  position: relative;
}

.o-hidden {
  overflow: hidden;
}

.w100 {
  width: 100%;
}

.h100 {
  height: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.mobile-only {
  display: block;
}

.tablet-up {
  display: none;
}

.overflow-hidden {
  overflow: hidden;
  position: relative;
  height: 100%;
}

br.mobile-only {
  display: none;
}
@media screen and (max-width: 991px) {
  br.mobile-only {
    display: block;
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden {
  display: none !important;
}

/*
* Hide only visually, but have it available for screen readers:
* https://snook.ca/archives/html_and_css/hiding-content-for-accessibility
*
* 1. For long content, line feeds are not interpreted as spaces and small width
*    causes content to wrap 1 word per line:
*    https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
*/
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap; /* 1 */
}

/*
* Extends the .visuallyhidden class to allow the element
* to be focusable when navigated to via the keyboard:
* https://www.drupal.org/node/897638
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
  white-space: inherit;
}

/*
* Hide visually and from screen readers, but maintain layout
*/
.invisible {
  visibility: hidden;
}

/*
* Clearfix: contain floats
*
* For modern browsers
* 1. The space content is one way to avoid an Opera bug when the
*    `contenteditable` attribute is included anywhere else in the document.
*    Otherwise it causes space to appear at the top and bottom of elements
*    that receive the `clearfix` class.
* 2. The use of `table` rather than `block` is only necessary if using
*    `:before` to contain the top-margins of child elements.
*/
.clearfix:before,
.clearfix:after {
  content: " "; /* 1 */
  display: table; /* 2 */
}

.clearfix:after {
  clear: both;
}

/* ==========================================================================
 EXAMPLE Media Queries for Responsive Design.
 These examples override the primary ('mobile first') styles.
 Modify as content requires.
 ========================================================================== */
@media only screen and (min-width: 35em) {
  /* Style adjustments for viewports that meet the condition */
}
@media print, (-webkit-min-device-pixel-ratio: 1.25), (min-resolution: 1.25dppx), (min-resolution: 120dpi) {
  /* Style adjustments for high resolution devices */
}
/* ==========================================================================
 Print styles.
 Inlined to avoid the additional HTTP request:
 https://www.phpied.com/delay-loading-your-print-css/
 ========================================================================== */
@media print {
  *,
  *:before,
  *:after {
    background: transparent !important;
    color: #000 !important; /* Black prints faster */
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]:after,
  a[href^="javascript:"]:after {
    content: "";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  /*
   * Printing Tables:
   * http://css-discuss.incutio.com/wiki/Printing_Tables
   */
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
.parallax__container {
  clip: rect(0, auto, auto, 0);
  height: 100%;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.parallax__container .parallax {
  /* can be put in a seperate class for better control */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* --------------------------- */
  position: fixed;
  top: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  width: 100%;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(-180deg);
          transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg);
          transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg) rotateY(180deg);
          transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  -webkit-perspective: 80px;
          perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  -webkit-transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  -webkit-transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
          transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22), -webkit-transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
          transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  -webkit-transition-property: none;
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
          transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner::before {
  -webkit-transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(45deg);
          transform: translate3d(0, -10px, 0) rotate(45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: -1px;
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  -webkit-transition-duration: 0.275s;
          transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
          transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  -webkit-transition: opacity 0.125s 0.275s ease;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55), -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
          transform: translate3d(0, 10px, 0) rotate(-135deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
          transform: translate3d(0, -20px, 0) rotate(270deg);
  -webkit-transition-delay: 0.075s;
          transition-delay: 0.075s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg);
          transform: translate3d(80px, 80px, 0) rotate(45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg);
          transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  -webkit-transition: background-color 0.125s 0.175s ease-in;
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  -webkit-transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  -webkit-transform: translate3d(80px, -80px, 0) rotate(-45deg);
          transform: translate3d(80px, -80px, 0) rotate(-45deg);
  -webkit-transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  -webkit-transform: translate3d(-80px, -80px, 0) rotate(45deg);
          transform: translate3d(-80px, -80px, 0) rotate(45deg);
  -webkit-transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1), -webkit-transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  -webkit-transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  -webkit-transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

.hamburger--minus.is-active .hamburger-inner::before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner::before {
  top: 10px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
          transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
          transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
          transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
          transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
          transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  -webkit-transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
          transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(90deg);
          transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
      -ms-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-225deg);
      -ms-transform: rotate(-225deg);
          transform: rotate(-225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  -webkit-transition: background-color 0s 0.13s linear;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
          transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
          transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-duration: 0.13s;
          transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  -webkit-transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  -webkit-transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
          transform: translate3d(0, -10px, 0) rotate(-45deg);
  -webkit-transition-delay: 0.22s;
          transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
  background-color: transparent !important;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  -webkit-transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear, -webkit-transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::before {
  -webkit-transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  -webkit-transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  background-color: transparent !important;
  -webkit-transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear, -webkit-transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.text-pink {
  color: #DD3475;
}

.text-violet {
  color: #30213C;
}

.text-white {
  color: #FFFFFF;
}

.text-dWhite {
  color: #F4F4F4;
}

.text-gray {
  color: #454343;
}

.text-dark {
  color: #292828;
}

@font-face {
  font-family: "Raleway";
  font-display: auto;
  src: url("../fonts/Raleway-Regular.eot");
  src: url("../fonts/Raleway-Regular.woff") format("woff"), url("../fonts/Raleway-Regular.ttf") format("truetype"), url("../fonts/Raleway-Regular.otf") format("opentype"), url("../fonts/Raleway-Regular.svg") format("svg"), url("../fonts/Raleway-Regular.eot?#iefix") format("embedded-opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  font-display: auto;
  src: url("../fonts/Raleway-Medium.eot");
  src: url("../fonts/Raleway-Medium.woff") format("woff"), url("../fonts/Raleway-Medium.ttf") format("truetype"), url("../fonts/Raleway-Medium.otf") format("opentype"), url("../fonts/Raleway-Medium.svg") format("svg"), url("../fonts/Raleway-Medium.eot?#iefix") format("embedded-opentype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  font-display: auto;
  src: url("../fonts/Raleway-MediumItalic.eot");
  src: url("../fonts/Raleway-MediumItalic.woff") format("woff"), url("../fonts/Raleway-MediumItalic.ttf") format("truetype"), url("../fonts/Raleway-MediumItalic.otf") format("opentype"), url("../fonts/Raleway-MediumItalic.svg") format("svg"), url("../fonts/Raleway-MediumItalic.eot?#iefix") format("embedded-opentype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Raleway";
  font-display: auto;
  src: url("../fonts/Raleway-Bold.eot");
  src: url("../fonts/Raleway-Bold.woff") format("woff"), url("../fonts/Raleway-Bold.ttf") format("truetype"), url("../fonts/Raleway-Bold.otf") format("opentype"), url("../fonts/Raleway-Bold.svg") format("svg"), url("../fonts/Raleway-Bold.eot?#iefix") format("embedded-opentype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Raleway";
  font-display: auto;
  src: url("../fonts/Raleway-BoldItalic.eot");
  src: url("../fonts/Raleway-BoldItalic.woff") format("woff"), url("../fonts/Raleway-BoldItalic.ttf") format("truetype"), url("../fonts/Raleway-BoldItalic.otf") format("opentype"), url("../fonts/Raleway-BoldItalic.svg") format("svg"), url("../fonts/Raleway-BoldItalic.eot?#iefix") format("embedded-opentype");
  font-weight: bold;
  font-style: italic;
}
@font-face {
  font-family: "Gibson";
  font-display: auto;
  src: url("../fonts/Gibson-Regular.eot");
  src: url("../fonts/Gibson-Regular.woff") format("woff"), url("../fonts/Gibson-Regular.ttf") format("truetype"), url("../fonts/Gibson-Regular.otf") format("opentype"), url("../fonts/Gibson-Regular.svg") format("svg"), url("../fonts/Gibson-Regular.eot?#iefix") format("embedded-opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gibson";
  font-display: auto;
  src: url("../fonts/Gibson-Italic.eot");
  src: url("../fonts/Gibson-Italic.woff") format("woff"), url("../fonts/Gibson-Italic.ttf") format("truetype"), url("../fonts/Gibson-Italic.otf") format("opentype"), url("../fonts/Gibson-Italic.svg") format("svg"), url("../fonts/Gibson-Italic.eot?#iefix") format("embedded-opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Gibson";
  font-display: auto;
  src: url("../fonts/Gibson-Bold.eot");
  src: url("../fonts/Gibson-Bold.woff") format("woff"), url("../fonts/Gibson-Bold.ttf") format("truetype"), url("../fonts/Gibson-Bold.otf") format("opentype"), url("../fonts/Gibson-Bold.svg") format("svg"), url("../fonts/Gibson-Bold.eot?#iefix") format("embedded-opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gibson";
  font-display: auto;
  src: url("../fonts/Gibson-BoldItalic.eot");
  src: url("../fonts/Gibson-BoldItalic.woff") format("woff"), url("../fonts/Gibson-BoldItalic.ttf") format("truetype"), url("../fonts/Gibson-BoldItalic.otf") format("opentype"), url("../fonts/Gibson-BoldItalic.svg") format("svg"), url("../fonts/Gibson-BoldItalic.eot?#iefix") format("embedded-opentype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Gotham";
  font-display: auto;
  src: url("../fonts/Gotham-Extra-Light.eot");
  src: url("../fonts/Gotham-Extra-Light.woff") format("woff"), url("../fonts/Gotham-Extra-Light.ttf") format("truetype"), url("../fonts/Gotham-Extra-Light.otf") format("opentype"), url("../fonts/Gotham-Extra-Light.svg") format("svg"), url("../fonts/Gotham-Extra-Light.eot?#iefix") format("embedded-opentype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  font-display: auto;
  src: url("../fonts/Gotham-Light.eot");
  src: url("../fonts/Gotham-Light.woff") format("woff"), url("../fonts/Gotham-Light.ttf") format("truetype"), url("../fonts/Gotham-Light.otf") format("opentype"), url("../fonts/Gotham-Light.svg") format("svg"), url("../fonts/Gotham-Light.eot?#iefix") format("embedded-opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  font-display: auto;
  src: url("../fonts/Gotham-Bold.eot");
  src: url("../fonts/Gotham-Bold.woff") format("woff"), url("../fonts/Gotham-Bold.ttf") format("truetype"), url("../fonts/Gotham-Bold.otf") format("opentype"), url("../fonts/Gotham-Bold.svg") format("svg"), url("../fonts/Gotham-Bold.eot?#iefix") format("embedded-opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  font-display: auto;
  src: url("../fonts/Gotham-Book.eot");
  src: url("../fonts/Gotham-Book.woff") format("woff"), url("../fonts/Gotham-Book.ttf") format("truetype"), url("../fonts/Gotham-Book.otf") format("opentype"), url("../fonts/Gotham-Book.svg") format("svg"), url("../fonts/Gotham-Book.eot?#iefix") format("embedded-opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  font-display: auto;
  src: url("../fonts/GothamBlack.eot");
  src: url("../fonts/GothamBlack.woff") format("woff"), url("../fonts/GothamBlack.ttf") format("truetype"), url("../fonts/GothamBlack.otf") format("opentype"), url("../fonts/GothamBlack.svg") format("svg"), url("../fonts/GothamBlack.eot?#iefix") format("embedded-opentype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  font-display: auto;
  src: url("../fonts/GothamBookItalic.eot");
  src: url("../fonts/GothamBookItalic.woff") format("woff"), url("../fonts/GothamBookItalic.ttf") format("truetype"), url("../fonts/GothamBookItalic.otf") format("opentype"), url("../fonts/GothamBookItalic.svg") format("svg"), url("../fonts/GothamBookItalic.eot?#iefix") format("embedded-opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Gotham";
  font-display: auto;
  src: url("../fonts/GothamUltra.eot");
  src: url("../fonts/GothamUltra.woff") format("woff"), url("../fonts/GothamUltra.ttf") format("truetype"), url("../fonts/GothamUltra.otf") format("opentype"), url("../fonts/GothamUltra.svg") format("svg"), url("../fonts/GothamUltra.eot?#iefix") format("embedded-opentype");
  font-weight: 900;
  font-style: normal;
}
.font-raleway {
  font-family: "Raleway", "san-serif";
}

.font-gibson {
  font-family: "Gibson", "san-serif";
}

.font-gotham {
  font-family: "Gotham", "san-serif";
}

.btn-container {
  width: 100%;
  max-width: 30.625em;
}
@media screen and (max-width: 991px) {
  .btn-container {
    max-width: none;
    width: auto;
  }
}
.btn-container .btn {
  color: #30213C;
  padding: 1.15em 0;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-container {
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .btn-container {
    margin: 0 auto;
    max-width: 50vw;
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .btn-container {
    margin: 0 0.9375rem;
    max-width: none;
  }
}
.btn-container .btn {
  font-size: 1.25em;
  color: #292828;
  font-family: "Gotham";
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  background-color: transparent;
  text-decoration: none;
  border: none;
  border: 1px solid #30213C;
  border-radius: 10px;
  cursor: pointer;
  font-style: normal;
}
.btn-container .btn:focus {
  outline: none;
}
@media only screen and (max-width: 991px) {
  .btn-container .btn {
    font-size: 16px;
  }
}
.btn-container .btn-dedicated {
  background-color: #DD3475;
  color: #FFFFFF;
  border: 1px solid #30213C;
  border-radius: 10px;
  padding-left: 1em;
  padding-right: 1em;
}
.btn-container .btn-dedicated:hover {
  background-color: #fff;
  color: #DD3475;
}
.btn-container .btn-apply {
  padding-left: 1em;
  padding-right: 1em;
}
@media only screen and (max-width: 767px) {
  .btn-container .btn-apply {
    font-size: 14px;
  }
}
.btn-container .btn-apply:hover {
  background-color: #30213C;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .apply-container--talk-to-us .btn-container {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-size: 1.168vw !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
body.overflow-hide {
  overflow: hidden;
}
body .main {
  overflow: hidden;
  background-color: #FFFFFF;
}
body .main .social-media-icons {
  z-index: 999;
  padding: 2.856em 3.659em;
  display: none;
}
@media only screen and (max-width: 991px) {
  body .main .social-media-icons {
    padding-left: 15px;
  }
}
body .main .social-media-icons img {
  width: 17px;
}
body .main .social-media-icons img.fb-icon {
  width: 10px;
}
body .main .social-media-icons .instagram-icon {
  padding: 0 37px;
}
body .main .section-violet:before {
  background-color: rgba(48, 33, 60, 0.94);
  position: absolute;
  bottom: 0;
  top: 0;
  z-index: 0;
  width: 100%;
  content: "";
  height: auto;
}
body .main .hide-element {
  display: none;
}
body .main .opac-hide {
  opacity: 0 !important;
}
body .main .opac-hide .logo {
  opacity: 0;
}

.content-wrapper {
  width: 59.125em;
  height: auto;
  position: relative;
  z-index: 9;
  margin-bottom: 4.051em;
}
@media only screen and (max-width: 991px) {
  .content-wrapper {
    width: auto;
    margin-bottom: 0;
  }
}

.section-center-fix {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.blank-section {
  height: 11.6em;
}

.screen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 0%;
  opacity: 0;
  pointer-events: none;
  z-index: 99;
  background-color: #FFFFFF;
}

.logo-container, .nav-menu-container {
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}

.slant-svg {
  height: 100%;
}

#homepage_animation_container {
  height: 100vh;
  width: 100vw;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
@media screen and (max-width: 991px) and (orientation: portrait) {
  #homepage_animation_container {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 0;
    height: 100vh !important;
    width: 100vw !important;
  }
  #homepage_animation_container canvas {
    height: 100vh !important;
    width: 100vw !important;
  }
}
@media screen and (max-width: 991px) {
  #homepage_animation_container canvas {
    width: auto;
  }
}

#homepage_m_animation_container {
  width: 100vw;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
}
@media screen and (max-width: 991px) and (orientation: portrait) {
  #homepage_m_animation_container {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    top: 0;
    width: 100vw !important;
  }
  #homepage_m_animation_container canvas {
    width: 100vw !important;
  }
}
#homepage_m_animation_container canvas {
  top: -50%;
  -webkit-transform: translateY(40%);
  -ms-transform: translateY(40%);
  transform: translateY(40%);
}
@media screen and (max-width: 991px) {
  #homepage_m_animation_container canvas {
    width: auto;
  }
}

#homepage_animation_container {
  display: block;
}
@media screen and (max-width: 991px) and (orientation: portrait) {
  #homepage_animation_container {
    display: none;
  }
}
@media screen and (max-width: 812px) and (min-width: 480px) and (orientation: landscape) {
  #homepage_animation_container {
    display: block;
  }
}
@media screen and (max-width: 479px) {
  #homepage_animation_container {
    display: none;
  }
}

#homepage_m_animation_container {
  display: none;
}
@media screen and (max-width: 991px) and (orientation: portrait) {
  #homepage_m_animation_container {
    display: block;
  }
}
@media screen and (max-width: 812px) and (min-width: 480px) and (orientation: landscape) {
  #homepage_m_animation_container {
    display: none;
  }
}
@media screen and (max-width: 479px) {
  #homepage_m_animation_container {
    display: block;
  }
}

#logo_animation_container {
  width: 4.063em !important;
  height: 4.063em !important;
  -webkit-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
}
@media screen and (max-width: 991px) {
  #logo_animation_container {
    font-size: 16px;
  }
}
#logo_animation_container canvas, #logo_animation_container #logo_dom_overlay_container {
  width: 3.841875rem !important;
  height: 3.841875rem !important;
}
@media screen and (max-width: 991px) {
  #logo_animation_container canvas, #logo_animation_container #logo_dom_overlay_container {
    width: 3.841875rem;
    height: 3.841875rem;
  }
}

.client-active {
  text-decoration: underline;
}

.client-list-active {
  opacity: 1 !important;
  height: auto;
  position: relative;
}

.trigger-scroll {
  min-height: 1px;
}

span.wpcf7-not-valid-tip {
  color: #DD3475 !important;
  font-size: 0.875em !important;
  font-weight: normal;
  display: inline-block;
  font-family: "Gotham";
  line-height: 1.25;
  padding-top: 9px;
}

input.wpcf7-not-valid {
  border: 1px solid #DD3475 !important;
  -webkit-appearance: none;
}

textarea.wpcf7-not-valid {
  border: 1px solid #DD3475 !important;
  -webkit-appearance: none;
}

div.wpcf7-validation-errors, div.wpcf7-acceptance-missing {
  display: none !important;
}

.wpcf7-mail-sent-ok {
  display: none !important;
}

div.wpcf7 .ajax-loader {
  display: none !important;
}

div.wpcf7-spam-blocked {
  border: none !important;
  font-family: "Gotham";
  color: #DD3475 !important;
}

em {
  font-style: italic;
}

@media screen and (min-width: 992px) {
  .team-carousel.owl-carousel .owl-stage {
    width: auto !important;
    pointer-events: none;
  }
  .team-carousel.owl-carousel .owl-item {
    margin-bottom: 30px;
  }
  .team-carousel.owl-carousel .owl-item:nth-child(3n+3) {
    margin-right: 0 !important;
  }
}
.section-padding {
  padding: 100px 0;
}
@media only screen and (max-width: 991px) {
  .section-padding.generic-section--whatwedo {
    padding-top: 100px !important;
  }
}

.section-padding-banner {
  padding: 5px 0 0;
}
@media only screen and (max-width: 767px) {
  .section-padding-banner {
    padding: 0;
  }
}

.canvas-container {
  position: absolute;
  width: 100%;
  height: 100vh;
}

.homepage-bg {
  background-color: #e8e7e6;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  padding: 2.855625em 2.65875em 0;
}
@media only screen and (max-width: 991px) {
  header {
    padding: 1.25rem 0.9375rem 0;
  }
}
header .header-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  pointer-events: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
header .logo-container {
  width: 3.841875rem !important;
  width: 5.4em !important;
  height: 3.841875rem !important;
  opacity: 1;
  position: relative;
  top: -0.223em;
  left: -0.313em;
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
@media only screen and (max-width: 991px) {
  header .logo-container {
    top: 0.77em;
    font-size: 16px;
    left: 0.313em;
  }
}
@media only screen and (max-width: 767px) {
  header .logo-container {
    left: -0.513em;
  }
}
header .logo-container #dotty-logo, header .logo-container #dotty-logo-purple {
  width: 4em;
  height: 100%;
  -webkit-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
}
@media screen and (max-width: 991px) {
  header .logo-container #dotty-logo, header .logo-container #dotty-logo-purple {
    width: 3.841875rem;
  }
}
@media screen and (max-width: 767px) {
  header .logo-container #dotty-logo, header .logo-container #dotty-logo-purple {
    width: 4.841875rem;
  }
}
header .logo-container.logo-invisible {
  opacity: 0;
}
header .nav-menu-container {
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}
header .nav-menu-container .nav-menu {
  cursor: pointer;
}
header .nav-menu-container .nav-menu .line {
  background-color: #FFFFFF;
  border-radius: 20%;
  position: absolute;
  height: 2px;
}
header .nav-menu-container .nav-menu .line-1 {
  width: 15.02px;
}
header .nav-menu-container .nav-menu .line-2 {
  width: 7.02px;
  margin-top: 5px;
  margin-left: 7.02px;
}
header .nav-menu-container .nav-menu .line-3 {
  width: 15.02px;
  margin-top: 10px;
}
header div {
  pointer-events: all;
}
header.sticky {
  position: fixed;
  left: 0;
  right: 0;
  top: -79px;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: transform 0.5s ease;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  header.sticky {
    top: -101px;
  }
}
@media screen and (min-width: 1024px) {
  header.sticky {
    top: -105px;
  }
}
header.sticky.nav-visible {
  -webkit-transform: translateY(79px);
  -ms-transform: translateY(79px);
  transform: translateY(79px);
}
@media screen and (min-width: 768px) {
  header.sticky.nav-visible {
    -webkit-transform: translateY(99px);
    -ms-transform: translateY(99px);
    transform: translateY(99px);
  }
}
@media screen and (min-width: 1024px) {
  header.sticky.nav-visible {
    -webkit-transform: translateY(99px);
    -ms-transform: translateY(99px);
    transform: translateY(99px);
  }
}

footer {
  position: relative;
  width: 100%;
  background-color: #FFFFFF;
  top: -1px;
  z-index: 2;
}
footer:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
footer .footer-line {
  border-bottom: 0.5px solid #b4b3b3;
  opacity: 0.4;
  height: 1px;
  position: relative;
}
@media only screen and (max-width: 991px) {
  footer .footer-line {
    margin: 0 0 35px;
  }
}
footer .footer-copy {
  padding: 1.53125rem 0;
  position: relative;
  margin: 0 2.65875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 991px) {
  footer .footer-copy {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: auto;
    padding: 0 30px;
  }
}
footer .footer-copy .rights-reserved {
  font-family: "Gotham";
  font-weight: 900;
  font-size: 0.438em;
  letter-spacing: 0.2em;
  color: #454343;
  margin: 0;
  font-style: normal;
}
@media only screen and (max-width: 991px) {
  footer .footer-copy .rights-reserved {
    font-size: 0.75rem;
    text-align: center;
    letter-spacing: 2.4px;
    line-height: 14px;
    padding-bottom: 35px;
  }
}
footer .footer-copy .right-align {
  right: 0;
}
footer .footer-copy .right-align a {
  color: #30213C;
  text-decoration: none;
}
@media only screen and (max-width: 767px) {
  footer .footer-copy .right-align a {
    display: block;
  }
}
@media only screen and (max-width: 991px) {
  footer .footer-copy .right-align {
    padding: 0 35px 35px;
  }
}

.burger-wrap {
  position: absolute;
  width: 100%;
  padding: 2.855625em 2.65875em 0;
  top: 0;
  pointer-events: none;
}
@media only screen and (max-width: 991px) {
  .burger-wrap {
    padding: 1.25rem 0.9375rem 0;
  }
}
.burger-wrap .burger-holder {
  height: 3.841875rem !important;
  position: relative;
}
.burger-wrap .hamburger--elastic.hamburger--closer {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
}

.hamburger {
  padding: 0 0.3125em;
  position: relative;
  top: 0;
  pointer-events: auto;
}
@media only screen and (max-width: 767px) {
  .hamburger {
    padding: 0 0px 0 15px;
  }
}
.hamburger .hamburger-box {
  width: 18px;
  height: 16px;
  position: relative;
  top: 6px;
}
.hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
  width: 16px;
  height: 2px;
}
.hamburger-inner.violet-menu, .hamburger-inner:after.violet-menu, .hamburger-inner:before.violet-menu {
  background-color: #DD3475 !important;
}

.hamburger-inner.violet-menu, .hamburger-inner.violet-menu:after, .hamburger-inner.violet-menu:before {
  background-color: #DD3475 !important;
}

.hamburger-inner.violet-menu, .hamburger-inner.violet-menu:after, .hamburger-inner.violet-menu:before {
  background-color: #DD3475 !important;
}

.hamburger--elastic {
  cursor: pointer;
  border-color: transparent;
  background: none;
}
.hamburger--elastic .hamburger-inner:before {
  top: 7px;
  width: 10px;
  right: 0;
}
.hamburger--elastic.show .hamburger-inner:after {
  top: 14px;
}
.hamburger--elastic .hamburger-inner:after {
  top: 14px;
}
.hamburger--elastic:focus {
  outline: none;
}

.hamburger.is-active .hamburger-inner.violet-menu, .hamburger.is-active .hamburger-inner.violet-menu:after, .hamburger.is-active .hamburger-inner.violet-menu:before {
  background-color: #FFFFFF !important;
}

.hamburger--elastic.hamburger--closer {
  opacity: 0;
  -webkit-transition: opacity 300ms ease-in;
  transition: opacity 300ms ease-in;
}
.hamburger--elastic.hamburger--closer .hamburger-inner {
  -webkit-transform: translate3d(0, 5px, 0) rotate(135deg);
  -ms-transform: translate3d(0, 5px, 0) rotate(135deg);
  transform: translate3d(0, 5px, 0) rotate(135deg);
  background-color: #fff !important;
}
.hamburger--elastic.hamburger--closer .hamburger-inner:before {
  opacity: 0;
  background-color: #fff !important;
}
.hamburger--elastic.hamburger--closer .hamburger-inner:after {
  -webkit-transform: translate3d(0, -14px, 0) rotate(-270deg);
  -ms-transform: translate3d(0, -14px, 0) rotate(-270deg);
  transform: translate3d(0, -14px, 0) rotate(-270deg);
  background-color: #fff !important;
}
@media screen and (max-width: 991px) {
  .hamburger--elastic.hamburger--closer {
    right: 0.9375rem;
    top: calc(1.25rem + 6px);
  }
}
.hamburger--elastic.hamburger--closer.show {
  opacity: 1;
}

h1 {
  font-size: 8.438em;
  line-height: 0.733;
  letter-spacing: -0.022em;
  font-family: "Gibson", sans-serif;
  font-weight: 700;
  font-display: auto;
}
@media only screen and (max-width: 991px) {
  h1 {
    font-size: 80px;
  }
}

h2 {
  font-family: "Gibson", sans-serif;
  font-weight: 700;
  line-height: 0.8125;
  font-size: 4.8125em;
  font-display: auto;
}
@media only screen and (max-width: 991px) {
  h2 {
    font-size: 40px;
    line-height: 0.85;
  }
}
@media screen and (max-width: 320px) {
  h2 {
    font-size: 32px;
  }
}

h3 {
  font-family: "Gotham", sans-serif;
  font-size: 2em;
  text-transform: uppercase;
  line-height: 1.1;
  font-weight: 400;
  margin-bottom: 0;
  margin-top: 0;
  color: #30213C;
  font-display: auto;
}
@media screen and (max-width: 991px) {
  h3 {
    font-size: 30px;
  }
}

h4 {
  font-family: "Gotham";
  font-weight: 800;
  font-size: 0.875em;
  letter-spacing: 0.2em;
  line-height: 0.0125rem;
  margin-bottom: 1.4375rem;
  font-display: auto;
}
@media only screen and (max-width: 991px) {
  h4 {
    font-size: 16px;
    letter-spacing: 3.2px;
    margin-bottom: 0.625rem;
  }
}

p {
  font-size: 1em;
  line-height: 1.875;
  font-family: "Gotham";
  color: #30213C;
  margin-top: 1.25em;
  color: #30213C;
  font-display: auto;
}
p:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  p {
    font-size: 16px;
  }
}

.text-italic {
  font-style: italic !important;
}

a, li {
  font-display: auto;
}

.testimonial {
  font-family: "Gotham", sans-serif;
}
.testimonial__statement {
  text-align: center;
  margin-bottom: 2.375em;
}
.testimonial__statement span {
  color: #FFFFFF;
  font-size: 2em;
  font-style: italic;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 991px) {
  .testimonial__statement span {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .testimonial__statement {
    margin-bottom: 30px;
  }
}
.testimonial__author {
  text-align: center;
  font-size: 0.875em;
  text-transform: uppercase;
  color: #DD3475;
  font-weight: bold;
  margin-bottom: 0.4375em;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 991px) {
  .testimonial__author {
    font-size: 14px;
  }
}
.testimonial__position {
  text-align: center;
  color: #FFFFFF;
  font-size: 0.875em;
  font-style: italic;
  line-height: 1;
}
.testimonial__position .title {
  display: block;
}
.testimonial__position .company {
  display: block;
}
@media screen and (max-width: 991px) {
  .testimonial__position {
    font-size: 14px;
  }
}

.testimonial-section .disabled {
  display: none;
}

.section-page-banner {
  width: 50%;
  position: relative;
}
@media only screen and (max-width: 991px) {
  .section-page-banner {
    background-color: #FFFFFF;
  }
}
@media only screen and (max-width: 991px) {
  .section-page-banner {
    width: 100%;
  }
}
.section-page-banner .section-banner-title {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: #FFFFFF;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 600px;
}
@media only screen and (max-width: 991px) {
  .section-page-banner .section-banner-title {
    min-height: auto;
    height: 50vh;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .section-page-banner .section-banner-title {
    height: 100vh;
    width: 50%;
  }
}
.section-page-banner .section-banner-title .header-section-container {
  width: 26.875em;
  position: relative;
  margin: 0 auto 0;
}
@media screen and (max-width: 991px) {
  .section-page-banner .section-banner-title .header-section-container {
    margin: auto 0 auto 50px;
  }
}
@media screen and (max-width: 767px) {
  .section-page-banner .section-banner-title .header-section-container {
    margin-left: 0;
  }
}
.section-page-banner .section-banner-title .header-section {
  font-size: 8.438em;
  line-height: 0.733;
  letter-spacing: -0.022em;
  color: #30213C;
  margin: 0;
  font-family: "Gibson";
  font-weight: 700;
}
@media only screen and (max-width: 991px) {
  .section-page-banner .section-banner-title .header-section {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    font-size: 150px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    padding-left: 0.188em;
    width: 4.162em;
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .section-page-banner .section-banner-title .header-section {
    top: calc(50% + 36px);
    font-size: 80px;
    padding-top: 0;
  }
}
@media screen and (max-height: 600px) and (max-width: 991px) and (orientation: landscape) {
  .section-page-banner .section-banner-title .header-section {
    font-size: 8.438em;
  }
}
@media screen and (max-width: 767px) and (min-width: 480px) and (orientation: landscape) {
  .section-page-banner .section-banner-title .header-section {
    font-size: 70px;
  }
}
@media only screen and (max-width: 320px) {
  .section-page-banner .section-banner-title .header-section {
    top: 60%;
    width: auto;
    -webkit-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
            transform: translateY(-30%);
    font-size: 60px;
  }
}
.section-page-banner .section-banner-title .header-section .pink {
  color: #DD3475;
}
.section-page-banner .section-banner-title .header-section > span {
  opacity: 0;
  display: block;
  -webkit-transform: translateX(-35px);
  -ms-transform: translateX(-35px);
  transform: translateX(-35px);
}
.section-page-banner .section-banner-title .quote-container {
  width: 25.188em;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .section-page-banner .section-banner-title .quote-container {
    font-size: 16px;
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .section-page-banner .section-banner-title .quote-container {
    padding: 0 15px;
  }
}
.section-page-banner .section-banner-title .quote-container p {
  margin: 0;
  font-family: "Gotham";
  font-style: italic;
  opacity: 0;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  line-height: 1.875;
}
.section-page-banner .section-banner-title .quote-container p.quote {
  line-height: 1.875;
}
.section-page-banner .section-banner-title .quote-container p.quote-author {
  font-weight: 800;
  font-style: normal;
  letter-spacing: -0.308;
}
.section-page-banner .section-banner-title .pink-line {
  display: block;
  width: 1.35px;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  font-size: 16px;
  margin: calc(4vh + 2em) auto;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .section-page-banner .section-banner-title .pink-line {
    display: none;
  }
}
@media only screen and (max-height: 900px) {
  .section-page-banner .section-banner-title .pink-line {
    margin: calc(4vh + 1.2em) auto;
  }
}
@media only screen and (max-height: 767px) {
  .section-page-banner .section-banner-title .pink-line {
    margin: 4vh auto;
  }
}
@media only screen and (max-height: 700px) {
  .section-page-banner .section-banner-title .pink-line {
    margin: 2vh auto;
  }
}
.section-page-banner .section-banner-title .pink-line img {
  width: 1px;
  height: 3.75em;
}
@media only screen and (max-height: 900px) {
  .section-page-banner .section-banner-title .pink-line img {
    height: 50px;
  }
}
@media only screen and (max-height: 600px) {
  .section-page-banner .section-banner-title .pink-line img {
    height: 40px;
  }
}
@media only screen and (max-height: 400px) {
  .section-page-banner .section-banner-title .pink-line img {
    display: none;
  }
}
.section-page-banner .section-banner-copy {
  position: relative;
  width: 25em;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .section-page-banner .section-banner-copy {
    width: auto;
    left: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
@media only screen and (max-width: 1024px) {
  .section-page-banner .section-banner-copy {
    padding: 75px 20px;
  }
}
.section-page-banner .section-banner-copy .content-header {
  font-family: "Gibson";
  font-style: italic;
  font-size: 2em;
  line-height: 1.2;
  font-weight: 400;
  margin-bottom: 0.9em;
  margin-top: 0;
}
@media only screen and (max-width: 991px) {
  .section-page-banner .section-banner-copy .content-header {
    margin-bottom: 0;
    font-size: 1.875rem;
  }
}
.section-page-banner .section-banner-copy p {
  line-height: 1.875em;
  font-style: normal;
  font-weight: 400;
}
.section-page-banner .section-banner-copy a {
  text-decoration: none;
  color: #30213C;
}
.section-page-banner .single-image-banner .box {
  background-image: url("../img/placeholder/team-placeholder.jpg");
  width: 100%;
}
.section-page-banner .single-image-banner .box.map-container {
  width: 50vw;
}

.section-feature-panel {
  width: 50%;
  height: 100vh;
  position: fixed;
  right: 0;
  top: 0;
  background-color: #fff;
  overflow: hidden;
  z-index: 0;
}
.section-feature-panel--talk {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .section-feature-panel--talk {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .section-feature-panel--talk {
    display: none;
  }
}
@media only screen and (max-width: 991px) {
  .section-feature-panel {
    position: static;
    width: 100%;
    height: 50vh;
    background-color: #f8f8f8;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .section-feature-panel {
    width: 50%;
    height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
  }
}
.section-feature-panel .slide-bg {
  position: absolute;
  background-color: #f8f8f8;
  width: 0;
  height: 100%;
}
@media only screen and (max-width: 991px) {
  .section-feature-panel .slide-bg {
    display: none;
  }
}
.section-feature-panel .single-image-banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  height: 100vh;
  position: relative;
}
.section-feature-panel .single-image-banner .box {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 991px) {
  .section-feature-panel .single-image-banner .box {
    height: 50vh;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .section-feature-panel .single-image-banner .box {
    height: 100vh;
  }
}
@media only screen and (max-width: 767px) {
  .section-feature-panel .single-image-banner .box {
    height: 50vh;
    min-height: calc(333px - 20em);
  }
}
@media only screen and (max-width: 767px) and (min-width: 375px) and (orientation: landscape) {
  .section-feature-panel .single-image-banner .box {
    height: 100vh;
  }
}
@media only screen and (max-width: 1024px) {
  .section-feature-panel .single-image-banner {
    height: 100vh;
  }
}
.section-feature-panel .grid-image-banner {
  background-color: transparent;
  height: 100vh;
  position: relative;
  z-index: 2;
  -webkit-transform: translate(4px, 2px) scale(1.01);
  -ms-transform: translate(4px, 2px) scale(1.01);
  transform: translate(4px, 2px) scale(1.01);
}
@media only screen and (min-width: 375px) and (max-width: 812px) and (orientation: landscape) {
  .section-feature-panel .grid-image-banner {
    height: 100vh !important;
  }
}
@media only screen and (max-width: 991px) {
  .section-feature-panel .grid-image-banner {
    height: 50vh;
    font-size: 16px;
    -webkit-transform: translate(1.5px, 2px) scale(1.01);
    -ms-transform: translate(1.5px, 2px) scale(1.01);
    transform: translate(1.5px, 2px) scale(1.01);
  }
}
.section-feature-panel .grid-image-banner .box {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-clip: border-box;
  -webkit-transform: scale(1.005);
  -ms-transform: scale(1.005);
  transform: scale(1.005);
  width: 25%;
  height: 25vh;
  float: left;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 1100px) {
  .section-feature-panel .grid-image-banner .box {
    width: 50%;
    height: 25vh;
  }
}
@media only screen and (max-width: 768px) {
  .section-feature-panel .grid-image-banner .box {
    width: calc(33.33vw - (33.33vw - 33.33%));
    height: 25vh;
  }
  .section-feature-panel .grid-image-banner .box:nth-of-type(n+7) {
    display: none;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .section-feature-panel .grid-image-banner .box {
    width: calc(25vw - (25vw - 50%));
    height: 50vh;
  }
  .section-feature-panel .grid-image-banner .box:nth-of-type(n+5) {
    display: none;
  }
}
@media only screen and (max-width: 480px) and (orientation: portrait) {
  .section-feature-panel .grid-image-banner .box {
    width: calc(50vw - (50vw - 50%));
    height: 25vh;
  }
  .section-feature-panel .grid-image-banner .box:nth-of-type(n+5) {
    display: none;
  }
}
.section-feature-panel .grid-image-banner .box > div {
  height: 100%;
  width: 100%;
  background-color: #F4F4F4;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  width: 100%;
  background-size: cover;
  background-position: center center;
  background-clip: border-box;
}
.section-feature-panel .grid-image-banner .box > div span {
  text-align: center;
  display: block;
  position: absolute;
  width: 100%;
  top: 50%;
  font-weight: bold;
  font-family: "Gibson", sans-serif;
  font-size: 2.5em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.section-feature-panel .grid-image-banner .box > div[data-origin=left] {
  left: -102%;
  right: 102%;
  top: 0;
  bottom: 0;
}
.section-feature-panel .grid-image-banner .box > div[data-origin=right] {
  left: 102%;
  right: -102%;
  top: 0;
  bottom: 0;
}
.section-feature-panel .grid-image-banner .box > div[data-origin=up] {
  left: 0;
  right: 0;
  top: -102%;
  bottom: 102%;
}
.section-feature-panel .grid-image-banner .box > div[data-origin=down] {
  left: 0;
  right: 0;
  top: 102%;
  bottom: -102%;
}

.icon-tiles__content {
  margin-top: 5em;
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
}
@media only screen and (max-width: 1024px) {
  .icon-tiles__content {
    padding-bottom: 0;
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media only screen and (max-width: 991px) {
  .icon-tiles__content {
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
  }
}
@media only screen and (max-width: 767px) {
  .icon-tiles__content {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.icon-tiles__content ul {
  margin: 0;
  text-align: center;
  list-style-type: none;
  opacity: 0;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
  padding: 0 1em !important;
}
.icon-tiles__content ul.client-list-active {
  opacity: 1;
  height: auto;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .icon-tiles__content ul {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .icon-tiles__content ul {
    font-size: 10px;
  }
}
.icon-tiles__content ul li {
  width: 7.313em;
  margin: 0;
  padding: 0;
}
.icon-tiles__content ul li .logo-panel img {
  width: 7.313em;
  height: auto;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
@media screen and (max-width: 991px) {
  .icon-tiles__content ul li .logo-panel img {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .icon-tiles__content ul li .logo-panel img {
    width: 7em;
  }
}
.icon-tiles__content ul li .logo-panel img.hide-icon {
  opacity: 0;
}
.icon-tiles__content ul li:nth-of-type(7n+0), .icon-tiles__content ul li:last-child {
  margin-right: 0px;
}
@media screen and (max-width: 991px) {
  .icon-tiles__content ul li:nth-of-type(4n+0), .icon-tiles__content ul li:last-child {
    margin-right: 0px;
  }
}
@media screen and (max-width: 320px) {
  .icon-tiles__content ul li:nth-of-type(3n+0), .icon-tiles__content ul li:last-child {
    margin-right: 0px;
  }
}
.icon-tiles__content .client-list {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
}
.icon-tiles__filter ul {
  padding: 0;
  margin: 0;
  text-align: center;
}
.icon-tiles__filter ul li {
  display: inline-block;
  text-align: center;
}
.icon-tiles__filter ul li a {
  font-family: "Raleway";
  text-decoration: none;
  font-weight: 600;
  margin: 0 24px;
  display: block;
}
.icon-tiles__filter ul li a:hover {
  text-decoration: underline;
  text-decoration-color: #FFFFFF;
}
.icon-tiles__filter ul li a p {
  text-align: center;
  font-size: 0.875em;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 767px) {
  .icon-tiles__filter ul li a p {
    font-size: 12px;
    letter-spacing: 0.1em;
  }
}

.location-container {
  width: 59.125em;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 9;
  margin-top: 2.375em;
}
@media only screen and (max-width: 991px) {
  .location-container {
    width: 100%;
    margin-top: 2.87em;
    margin-bottom: 0;
  }
}
.location-container .location-col {
  width: 33.33%;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .location-container .location-col {
    width: 100%;
    margin-bottom: 5.125em;
  }
}
@media only screen and (max-width: 991px) {
  .location-container .location-col:last-child {
    width: 100%;
    margin-bottom: 0;
  }
}
.location-container .location-col .number-image {
  margin-bottom: 2.85em;
  position: relative;
}
.location-container .location-col .number-image img {
  max-width: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .location-container .location-col .number-image {
    display: none;
  }
}
.location-container .location-col .contact-detail-location a {
  text-decoration: none;
  color: #FFFFFF;
  opacity: 0;
  display: block;
}
.location-container .location-col .contact-detail-location h4 {
  color: #FFFFFF;
  margin-bottom: 1.8rem;
}
.location-container .location-col .contact-detail-location p {
  line-height: 0.625;
  margin: 1em 0 0;
}
@media only screen and (max-width: 991px) {
  .location-container .location-col .contact-detail-location p {
    font-size: 16px;
  }
}

.slider-team-container {
  background-color: #FFFFFF;
  position: relative;
  height: auto;
  width: 100%;
}
.slider-team-container .team-header h2 {
  font-family: "Gibson";
  font-style: italic;
  font-size: 2em;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 1.656em;
  margin-top: 3.469em;
}
@media only screen and (max-width: 991px) {
  .slider-team-container .team-header h2 {
    margin-top: 3.5625rem;
    margin-bottom: 2.1875rem;
    font-size: 1.875rem;
  }
}
.slider-team-container .team-carousel .item {
  width: 17.875em;
  height: auto;
}
@media only screen and (max-width: 991px) {
  .slider-team-container .team-carousel .item {
    width: auto;
  }
}
.slider-team-container .team-carousel .item .team-image {
  margin-bottom: 1.5625rem;
  background-color: #f8f8f8;
}
.slider-team-container .team-carousel .item .team-image img {
  -o-object-fit: cover;
     object-fit: cover;
}
.slider-team-container .team-carousel .item .team-detail {
  text-align: center;
}
.slider-team-container .team-carousel .item .team-detail h4 {
  color: #30213C;
  font-family: "Gotham";
  font-weight: 800;
  font-size: 0.875em;
  letter-spacing: 0.2em;
  line-height: 0.12;
  margin-bottom: 0.4375rem;
  margin-top: 0;
}
@media only screen and (max-width: 991px) {
  .slider-team-container .team-carousel .item .team-detail h4 {
    font-size: 1rem;
  }
}
.slider-team-container .team-carousel .item .team-position p {
  font-style: italic;
  font-size: 0.963em;
  line-height: 1.2;
  font-weight: 400;
  color: #30213C;
  margin: 0.85em 0 0;
}
@media only screen and (max-width: 991px) {
  .slider-team-container .team-carousel .item .team-position p {
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
}

@media screen and (max-width: 991px) {
  .generic-section--slider-component .generic-section-wrapper {
    display: block;
    -webkit-box-align: normal;
        -ms-flex-align: normal;
            align-items: normal;
    -webkit-box-pack: normal;
        -ms-flex-pack: normal;
            justify-content: normal;
    -webkit-box-orient: initial;
    -webkit-box-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
  }
  .generic-section--slider-component .generic-section-wrapper .component-wrapper {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .generic-section--slider-component .generic-section-wrapper .component-wrapper .slider-team-container {
    width: 100vw;
    overflow: hidden;
    margin-top: 20px;
  }
}
.two-col-component {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.two-col-component .column {
  width: 24.938em;
}
@media screen and (max-width: 991px) {
  .two-col-component .column {
    width: 100%;
  }
}
.two-col-component .column a {
  color: #DD3475;
  font-weight: 500;
}
.two-col-component .column h3 {
  color: #DD3475;
}

.lego-team-container {
  text-align: center;
  margin: 3.4em 0 4em;
}
@media only screen and (max-width: 767px) {
  .lego-team-container {
    display: none;
  }
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.7.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  opacity: 1;
}
.animated .animated-child:not(.location-col) {
  opacity: 0;
}

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
      transform-origin: center bottom;
}

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
}

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}
.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
      transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes wobble {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
      transform-origin: center;
}

@-webkit-keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes heartBeat {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
@keyframes flip {
  from {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  to {
    -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    -webkit-transform: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: hinge;
  animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    -webkit-transform: scale(0.1) rotate(30deg);
    transform: scale(0.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}
.zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}
.zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animated.delay-1s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.animated.delay-2s {
  -webkit-animation-delay: 2s;
  animation-delay: 2s;
}

.animated.delay-3s {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.animated.delay-4s {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.animated.delay-5s {
  -webkit-animation-delay: 5s;
  animation-delay: 5s;
}

.animated.fast {
  -webkit-animation-duration: 800ms;
  animation-duration: 800ms;
}

.animated.faster {
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.animated.slow {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.animated.slower {
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
}

@media (prefers-reduced-motion) {
  .animated {
    -webkit-animation: unset !important;
    animation: unset !important;
    -webkit-transition: none !important;
    transition: none !important;
  }
}
.modal-wrapper {
  background-color: rgba(48, 33, 60, 0.5);
  height: 100vh;
  width: 100%;
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 99999;
  display: none;
}
@media only screen and (max-width: 991px) {
  .modal-wrapper {
    font-size: 16px;
  }
}
.modal-wrapper .success-modal-message {
  width: 31.938em;
  height: auto;
  background: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  padding: 2.188em 4.75em 2.188em;
  border-radius: 10px;
}
@media only screen and (max-width: 991px) {
  .modal-wrapper .success-modal-message {
    padding: 1em;
    width: auto;
  }
}
.modal-wrapper .success-modal-message h2 {
  font-size: 1.875em;
  font-family: "Gotham";
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
}
@media only screen and (max-width: 991px) {
  .modal-wrapper .success-modal-message h2 {
    font-size: 1.3em;
  }
}
.modal-wrapper .success-modal-message p {
  margin-bottom: 0.875em;
}
.modal-wrapper .success-modal-message #mail_animation_container {
  margin: 2.188em auto 0 !important;
  width: 15.625em !important;
  height: 250px;
  font-size: 16px;
  -webkit-transform: translateX(-2.4em);
      -ms-transform: translateX(-2.4em);
          transform: translateX(-2.4em);
}

.section-apply-now {
  background-color: #FFFFFF;
  position: relative;
  min-height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
}
@media only screen and (max-width: 1024px) {
  .section-apply-now {
    height: auto;
    min-height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .section-apply-now {
    height: auto;
    min-height: auto;
  }
}
.section-apply-now .apply-container {
  width: 46.938em;
  position: relative;
  margin: auto;
  text-align: center;
  min-height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 1024px) {
  .section-apply-now .apply-container {
    height: auto;
    min-height: auto;
  }
}
@media only screen and (max-width: 991px) {
  .section-apply-now .apply-container {
    width: auto;
  }
}
@media only screen and (max-width: 767px) {
  .section-apply-now .apply-container {
    min-height: auto;
  }
}
.section-apply-now .apply-container--home {
  width: 33.563em;
}
@media only screen and (max-width: 1024px) {
  .section-apply-now .apply-container--home {
    width: 50em;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .section-apply-now .apply-container--home {
    width: auto;
    padding: 0 30px;
  }
}
.section-apply-now .apply-container--page {
  width: 46.9375em;
}
@media only screen and (max-width: 991px) {
  .section-apply-now .apply-container--page {
    width: auto;
  }
}
@media screen and (max-width: 991px) {
  .section-apply-now .apply-container--talk-to-us {
    padding: 0px 15px 0px;
  }
}
@media screen and (max-width: 991px) {
  .section-apply-now .apply-container--talk-to-us {
    width: 100%;
  }
}
@media screen and (max-width: 991px) {
  .section-apply-now .apply-container--talk-to-us .btn-container {
    margin-top: 40px;
    margin-left: 0;
    margin-right: 0;
  }
}
.section-apply-now .apply-container .apply-home-header {
  padding-bottom: 3.063em;
}
@media only screen and (max-width: 991px) {
  .section-apply-now .apply-container .apply-home-header {
    padding: 0 0.9375rem 50px;
  }
}
@media only screen and (max-width: 320px) {
  .section-apply-now .apply-container .apply-home-header {
    padding: 0 0.9375rem 4em;
  }
}
.section-apply-now .apply-container .apply-home-header .header-content {
  color: #454343;
  margin-top: 0;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 991px) {
  .section-apply-now .apply-container .apply-home-header .header-content {
    margin-bottom: 1.9375rem;
    font-size: 1.875rem;
    color: #30213C;
  }
}
.section-apply-now .apply-container .apply-home-header .content-description {
  font-size: 1em;
  line-height: 1.875;
  font-family: "Gotham";
  font-weight: 500;
  color: #454343;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .section-apply-now .apply-container .apply-home-header .content-description {
    color: #30213C;
    font-size: 16px;
  }
}
@media only screen and (max-width: 991px) {
  .section-apply-now .select-form-option {
    font-size: 16px;
  }
}

#what-we-do .section-apply-now {
  margin-top: -17em;
}
@media only screen and (max-width: 767px) {
  #what-we-do .section-apply-now {
    margin-top: 0;
  }
}

.generic-section {
  position: relative;
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  background-color: transparent;
  height: auto;
}
.generic-section:not(.generic-section--header-only) {
  min-height: auto;
}
@media only screen and (max-width: 1024px) {
  .generic-section:not(.generic-section--header-only) {
    min-height: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .generic-section {
    min-height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .generic-section {
    min-height: 100vh;
  }
}
@media screen and (max-width: 320px) {
  .generic-section {
    padding-top: 6.375em;
    padding-bottom: 6.375em;
  }
}
.generic-section div.copy-wrapper {
  width: 30.438em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .generic-section div.copy-wrapper {
    width: auto;
    margin-left: 18px;
    margin-right: 18px;
  }
}
.generic-section div.copy-wrapper a {
  text-decoration: none;
}
.generic-section div.copy-wrapper > p {
  margin: 0;
  margin-top: 0.719em;
}
.generic-section div.component-wrapper {
  width: 59.125em;
  position: relative;
}
@media screen and (max-width: 991px) {
  .generic-section div.component-wrapper {
    width: 92.26%;
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 320px) {
  .generic-section div.component-wrapper {
    margin-top: 0px;
  }
}
.generic-section--purplebg {
  background-color: #30213C;
}
.generic-section--purplebg h2 {
  color: #FFFFFF;
  margin-top: 0;
  line-height: 0.8125;
  margin-bottom: 0.325em;
}
.generic-section--purplebg h3 {
  color: #DD3475;
}
.generic-section--purplebg p {
  color: #FFFFFF;
}
.generic-section--purple-whatwedo {
  margin-bottom: -1px;
  min-height: 41.962em;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .generic-section--purple-whatwedo {
    font-size: 16px;
  }
}
.generic-section--purple-whatwedo div.copy-wrapper {
  width: 41.625em;
}
@media only screen and (max-width: 991px) {
  .generic-section--purple-whatwedo div.copy-wrapper {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .generic-section--purple-whatwedo div.copy-wrapper h2 {
    margin-bottom: 25px;
  }
}
.generic-section--purple-whatwedo div.copy-wrapper p {
  font-size: 1em;
  line-height: 1.875;
  font-family: "Gotham";
  font-weight: 500;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .generic-section--purple-whatwedo div.copy-wrapper p {
    margin-bottom: 2em;
  }
}
.generic-section--purple-whatwedo div.copy-wrapper h3 {
  padding-bottom: 0.781em;
  text-transform: none;
}
@media screen and (max-width: 767px) {
  .generic-section--purple-whatwedo div.copy-wrapper h3 {
    padding-bottom: 20px;
    font-size: 20px;
  }
}
.generic-section--purple-whatwedo h3 {
  color: #FFFFFF;
}
@media only screen and (max-width: 991px) {
  .generic-section--purple-whatwedo h3 {
    font-size: 30px;
  }
}
.generic-section--purple-whatwedo .chair {
  position: absolute;
  right: -1.25em;
  bottom: 0;
  pointer-events: none;
}
.generic-section--purple-whatwedo .chair img {
  width: 58.25em;
  display: block;
}
@media screen and (max-width: 1024px) {
  .generic-section--purple-whatwedo .chair {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 991px) {
  .generic-section--purple-whatwedo .chair {
    display: none;
  }
}
.generic-section--header-only {
  display: none;
}
@media only screen and (max-width: 991px) {
  .generic-section--header-only {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 142px;
    min-height: auto !important;
    background-color: #FFFFFF;
  }
}
.generic-section--whatwedo {
  padding-top: 0 !important;
  background-size: auto;
  background-color: #F4F4F4;
  background-position: -14em -30em;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  margin-bottom: -11.6em;
}
@media only screen and (max-width: 991px) {
  .generic-section--whatwedo {
    background-image: none;
    margin-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .generic-section--whatwedo {
    margin-bottom: 0;
  }
}
.generic-section--whatwedo .whatwedo--wrapper {
  display: block;
  height: auto;
  width: 100%;
  min-height: 100vh;
  -webkit-transform: translateY(-11.6em);
      -ms-transform: translateY(-11.6em);
          transform: translateY(-11.6em);
}
@media only screen and (max-width: 1024px) {
  .generic-section--whatwedo .whatwedo--wrapper {
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
  }
}
.generic-section--whatwedo div.copy-wrapper h2 {
  color: #30213C;
}
.generic-section--whatwedo div.copy-wrapper h2 {
  margin-bottom: 0.495em;
  letter-spacing: -0.022em;
  margin-top: 0;
}
.generic-section--whatwedo div.copy-wrapper h2:first-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .generic-section--whatwedo div.copy-wrapper h2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 767px) {
  .generic-section--whatwedo div.copy-wrapper h2 {
    margin-bottom: 20px;
  }
}
.generic-section--whatwedo div.copy-wrapper h3 {
  line-height: 1.25;
  font-style: italic;
  text-transform: none;
  margin-bottom: 1.875em;
  color: #454343;
}
@media only screen and (max-width: 991px) {
  .generic-section--whatwedo div.copy-wrapper h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .generic-section--whatwedo div.copy-wrapper h3 {
    margin-bottom: 20px;
  }
}
.generic-section--whatwedo div.copy-wrapper h4 {
  color: #30213C;
  font-family: "Gotham";
  font-weight: 800;
  font-size: 0.875em;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 0.4375rem;
  margin-top: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 991px) {
  .generic-section--whatwedo div.copy-wrapper h4 {
    font-size: 1rem;
    margin-top: 3em;
  }
}
.generic-section--whatwedo div.copy-wrapper p {
  line-height: 1.25;
  color: #454343;
  margin-top: 1em;
}
.generic-section--imagebg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.generic-section--imagebg h3 {
  color: #DD3475;
}
.generic-section--imagebg p {
  color: #FFFFFF;
}
.generic-section--imagebg:before {
  background-color: rgba(48, 33, 60, 0.94);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  width: 100%;
  content: "";
  height: auto;
}
.generic-section--imagebg .component-wrapper {
  margin-top: 1.1em !important;
}
@media screen and (max-width: 991px) {
  .generic-section--imagebg .component-wrapper {
    margin-top: 18px !important;
  }
}
.generic-section--slider-component {
  background-color: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .generic-section--slider-component {
    min-height: 100vh;
  }
}
.generic-section--slider-component div.component-wrapper {
  margin-top: 2.58em;
}
.generic-section--slider-component div.copy-wrapper {
  margin-top: 0;
}
.generic-section--we-work-with {
  min-height: 100vh;
}
@media only screen and (max-width: 1024px) {
  .generic-section--we-work-with {
    min-height: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .generic-section--we-work-with {
    min-height: auto !important;
  }
}

.technology-section {
  background-color: #FFFFFF;
}
@media only screen and (max-width: 1024px) {
  .technology-section {
    min-height: auto !important;
  }
}
@media only screen and (max-width: 767px) {
  .technology-section {
    min-height: auto !important;
  }
}

.talk-to-us {
  z-index: 1;
}

.generic-section-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.project-section {
  background-color: #f8f8f8;
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.project-section > div {
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 50%;
  height: 28.84vw;
  -webkit-transform: translateZ(0) scale(1.004) !important;
  -ms-transform: translateZ(0) scale(1.004) !important;
  transform: translateZ(0) scale(1.004) !important;
}
@media screen and (max-width: 991px) {
  .project-section > div {
    width: 100%;
    height: 56.84vw;
  }
}
.project-section .project-img {
  position: relative;
  overflow: hidden;
}
.project-section .project-img .main-image {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: transform 600ms ease;
  -webkit-transition: -webkit-transform 600ms ease;
  transition: -webkit-transform 600ms ease;
  transition: transform 600ms ease;
  transition: transform 600ms ease, -webkit-transform 600ms ease;
}
.project-section .project-img .overlay-image {
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  -ms-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
.project-section .project-img .project-content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  opacity: 0;
  padding: 0 5.05em;
  -webkit-transition: opacity 600ms ease;
  transition: opacity 600ms ease;
}
@media screen and (max-width: 767px) {
  .project-section .project-img .project-content {
    display: none;
  }
}
.project-section .project-img .project-content .project-content-rates {
  text-align: center;
}
.project-section .project-img .project-content h3, .project-section .project-img .project-content p {
  color: #fff;
}
.project-section .project-img .project-content h3 {
  font-family: "Gotham", sans-serif;
  font-size: 1em;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 1.82em;
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  -ms-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
@media screen and (max-width: 991px) {
  .project-section .project-img .project-content h3 {
    font-size: 16px;
    margin-bottom: 0.82em;
  }
}
.project-section .project-img .project-content p {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0) scale(1, 1);
  -ms-transform: translateZ(0) scale(1, 1);
  transform: translateZ(0) scale(1, 1);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
}
@media screen and (max-width: 480px) {
  .project-section .project-img .project-content p {
    font-size: 12px;
  }
}
.project-section .project-img .project-content .task {
  position: relative;
  display: inline-block;
}
.project-section .project-img .project-content .task__circle {
  display: inline-block;
  position: relative;
  width: 6.2em;
  height: auto;
  min-width: 98px;
}
@media screen and (max-width: 480px) {
  .project-section .project-img .project-content .task__circle {
    min-width: 85px;
  }
}
.project-section .project-img .project-content .task__name {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.project-section .project-img .project-content .task__name p {
  font-weight: 900;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  font-size: 0.45em;
}
@media screen and (max-width: 1440px) {
  .project-section .project-img .project-content .task__name p {
    font-size: 0.6em;
  }
}
@media screen and (max-width: 991px) {
  .project-section .project-img .project-content .task__name p {
    font-size: 9px;
  }
}
@media screen and (max-width: 480px) {
  .project-section .project-img .project-content .task__name p {
    font-size: 7px;
  }
}
@media screen and (min-width: 768px) {
  .project-section .project-img:hover .overlay-image, .project-section .project-img:hover .main-image {
    opacity: 1;
    -webkit-transform: scale(1.01) translateZ(0) !important;
    -ms-transform: scale(1.01) translateZ(0) !important;
    transform: scale(1.01) translateZ(0) !important;
  }
  .project-section .project-img:hover .project-content {
    opacity: 1;
  }
}

.testimonial-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
  min-height: auto;
  height: auto;
}
.testimonial-section:not(.generic-section--header-only) {
  min-height: auto;
}
@media only screen and (max-width: 1024px) {
  .testimonial-section:not(.generic-section--header-only) {
    min-height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section:not(.generic-section--header-only) {
    min-height: auto;
  }
}
@media only screen and (max-width: 1024px) {
  .testimonial-section {
    min-height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section {
    min-height: auto;
  }
}
.testimonial-section .content-wrapper {
  width: 100%;
  margin-bottom: 0;
  position: static;
}
.testimonial-section:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(48, 33, 60, 0.85) !important;
}
@media screen and (max-width: 480px) {
  .testimonial-section .parallax {
    background-position: 38% center !important;
  }
}
.testimonial-section .testimonial-carousel {
  position: static;
}
.testimonial-section .testimonial-carousel .owl-stage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.testimonial-section .testimonial-carousel .owl-stage .owl-item {
  opacity: 0;
  -webkit-transition: opacity 1s ease-in;
  transition: opacity 1s ease-in;
}
.testimonial-section .testimonial-carousel .owl-stage .owl-item.active.center {
  opacity: 1;
}
.testimonial-section .testimonial-carousel .owl-dots {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  padding-bottom: 0.625em;
}
@media only screen and (max-width: 991px) {
  .testimonial-section .testimonial-carousel .owl-dots {
    font-size: 16px;
  }
}
.testimonial-section .testimonial-carousel .owl-dots button {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 0.55em;
  height: 0.55em;
  margin-right: 0.625em;
  outline: none;
}
.testimonial-section .testimonial-carousel .owl-dots button:last-child {
  margin-right: 0;
}
.testimonial-section .testimonial-carousel .owl-dots button.active {
  background-color: #fff;
}
.testimonial-section .testimonial-carousel .slide {
  width: 48.25em;
  margin: 0 auto;
}
@media only screen and (max-width: 991px) {
  .testimonial-section .testimonial-carousel .slide {
    font-size: 16px;
    padding: 0 20px;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section .testimonial-carousel .slide {
    width: 100%;
  }
}

.section-splash {
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: #e9e8e7;
}
.section-splash__texts {
  font-family: "Gibson";
  font-weight: bold;
  text-transform: uppercase;
  line-height: 0.73;
  font-size: 9.2em;
  -webkit-animation-delay: 1000ms;
          animation-delay: 1000ms;
}
@media screen and (max-width: 991px) {
  .section-splash__texts {
    font-size: 12em;
  }
}
@media screen and (max-width: 320px) {
  .section-splash__texts {
    font-size: 12.5em;
  }
}
.section-splash .constant-text {
  color: #30213C;
}
.section-splash .constant-text span {
  display: block;
  opacity: 0;
  -webkit-transform: translateX(-140px);
      -ms-transform: translateX(-140px);
          transform: translateX(-140px);
  webkit-transform: translateX(-140px);
}
.section-splash .animated-child {
  min-height: 100vh;
}
.section-splash .animated-text {
  color: #DD3475;
  position: relative;
  width: 5.967em;
}
@media screen and (max-width: 991px) {
  .section-splash .animated-text {
    width: 6.8em;
  }
}
@media screen and (max-width: 320px) {
  .section-splash .animated-text {
    width: 6.5em;
  }
}
.section-splash .animated-text > .app {
  position: absolute;
  top: 0;
  left: 0;
}
.section-splash .animated-text span {
  opacity: 0;
  -webkit-transform: translateX(-140px);
      -ms-transform: translateX(-140px);
          transform: translateX(-140px);
  webkit-transform: translateX(-140px);
  display: block;
}
.section-splash .animated-text .first {
  color: #30213C;
}
.section-splash .click-notif {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: calc(100% + 6vh);
  bottom: unset;
}
@media only screen and (max-width: 1366px) and (min-height: 768px) {
  .section-splash .click-notif {
    top: 120%;
  }
}
@media only screen and (max-width: 1024px) and (min-height: 600px) {
  .section-splash .click-notif {
    top: 125%;
  }
}
@media only screen and (max-width: 991px) {
  .section-splash .click-notif {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .section-splash .click-notif {
    bottom: -75%;
    top: unset;
  }
}
@media only screen and (max-width: 350px) {
  .section-splash .click-notif {
    bottom: -50%;
  }
}
.section-splash .click-notif .click-notif-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
.section-splash .click-notif .click-notif-wrapper span {
  height: 1px;
  width: 20px;
  background: #6c6c6c;
}
.section-splash .click-notif .click-notif-wrapper .notif-line {
  opacity: 0;
}
.section-splash .click-notif .click-notif-wrapper .click-line-left {
  -webkit-transform: translateX(-25px);
      -ms-transform: translateX(-25px);
          transform: translateX(-25px);
  margin-right: 25px;
}
.section-splash .click-notif .click-notif-wrapper .click-line-right {
  -webkit-transform: translateX(25px);
      -ms-transform: translateX(25px);
          transform: translateX(25px);
  margin-left: 25px;
}
.section-splash .click-notif .click-notif-wrapper .click-text {
  font-family: "Gotham";
  font-weight: 800;
  font-style: normal;
  font-size: 0.563em;
  color: #6c6c6c;
  letter-spacing: 0.2em;
}
@media only screen and (max-width: 1024px) {
  .section-splash .click-notif .click-notif-wrapper .click-text {
    font-size: 10px;
    display: none;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 320px) {
  .section-splash .click-notif .click-notif-wrapper .click-text {
    font-size: 8px;
  }
}
.section-splash .click-notif .click-notif-wrapper .click-text.mobile-tap {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .section-splash .click-notif .click-notif-wrapper .click-text.mobile-tap {
    display: block;
  }
}
.section-splash .laptop {
  position: absolute;
  bottom: -7em;
  left: 50%;
  -webkit-transform: translateX(-47%);
  -ms-transform: translateX(-47%);
  transform: translateX(-47%);
  width: auto;
}
@media screen and (max-width: 991px) {
  .section-splash .laptop {
    display: none;
  }
}
.section-splash .laptop img {
  width: 58.7em;
}
.section-splash .mobile {
  position: absolute;
  bottom: -21em;
  left: 50%;
  -webkit-transform: translateX(-9%);
  -ms-transform: translateX(-9%);
  transform: translateX(-9%);
  width: auto;
}
@media screen and (max-width: 991px) {
  .section-splash .mobile {
    display: none;
  }
}
.section-splash .mobile img {
  width: 33.6em;
}
.section-splash__content {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -57%);
  -ms-transform: translate(-50%, -57%);
  transform: translate(-50%, -57%);
}
@media screen and (max-width: 767px) {
  .section-splash__content {
    top: 40%;
  }
}
.section-splash__content .web, .section-splash__content .app {
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.section-splash__content.webshow .web {
  opacity: 1;
}
.section-splash__content.webshow .app {
  opacity: 0;
}
.section-splash__content.mobileshow .web {
  opacity: 0;
}
.section-splash__content.mobileshow .app {
  opacity: 1;
}
.section-splash .strip {
  position: fixed;
  bottom: 0;
  left: 0;
  background-color: #FFFFFF;
  width: 100%;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}
.section-splash .strip .strip-wrapper {
  padding: 0.875em 6.3125em;
}
@media only screen and (max-width: 991px) {
  .section-splash .strip .strip-wrapper {
    max-width: 94%;
    padding: 30px 0;
    margin: 0 auto;
  }
}
.section-splash .strip .strip-title {
  margin-bottom: 0.25em;
}
@media only screen and (max-width: 767px) {
  .section-splash .strip .strip-title {
    margin-bottom: 7px;
  }
}
.section-splash .strip .strip-title h5 {
  font-family: "Gotham";
  font-weight: 900;
  font-size: 0.813em;
  letter-spacing: 0;
  line-height: 1;
  font-display: auto;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .section-splash .strip .strip-title h5 {
    font-size: 13px;
  }
}
@media only screen and (max-width: 767px) {
  .section-splash .strip .strip-title h5 {
    font-size: 11px;
  }
}
.section-splash .strip .strip-content p {
  font-size: 0.5em;
  line-height: 1.2;
  font-family: "Gotham";
  color: #454343;
  font-display: auto;
  margin: 0;
}
@media only screen and (max-width: 991px) {
  .section-splash .strip .strip-content p {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) {
  .section-splash .strip .strip-content p {
    font-size: 11px;
  }
}
.section-splash .strip .strip-content a {
  text-decoration: underline;
  color: #454343;
}

.full-menu {
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 99;
  display: none;
}
.full-menu .menu-bgcolor {
  background-color: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.full-menu .menu-bgcolor .main-menu {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 0.9733333333vw;
}
@media only screen and (max-width: 767px) {
  .full-menu .menu-bgcolor .main-menu {
    padding: 0 85px 0 15px;
    width: 100%;
  }
}
.full-menu .menu-bgcolor .main-menu li {
  list-style-type: none;
  padding-bottom: 0.625em;
  opacity: 0;
  -webkit-transform: translateX(-20em);
  -ms-transform: translateX(-20em);
  transform: translateX(-20em);
}
.full-menu .menu-bgcolor .main-menu li.is-active a {
  color: #30213C;
}
.full-menu .menu-bgcolor .main-menu li a {
  text-decoration: none;
  color: #FFFFFF;
  font-family: "Gibson";
  font-weight: 700;
  font-size: 9.938em;
  line-height: 0.716;
  -webkit-transition: 300ms ease-in;
  transition: 300ms ease-in;
}
@media only screen and (max-width: 991px) {
  .full-menu .menu-bgcolor .main-menu li a {
    font-size: 120px;
  }
}
@media only screen and (max-width: 991px) and (orientation: landscape) {
  .full-menu .menu-bgcolor .main-menu li a {
    font-size: 9.938em;
  }
}
@media only screen and (max-width: 767px) {
  .full-menu .menu-bgcolor .main-menu li a {
    font-size: 62px;
    line-height: 0.746;
    letter-spacing: -1.65px;
  }
}
@media only screen and (max-width: 320px) {
  .full-menu .menu-bgcolor .main-menu li a {
    font-size: 50px;
  }
}

.svg-desktop {
  display: block;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 481px) and (max-width: 767px) and (orientation: landscape) {
  .svg-desktop {
    display: block;
  }
}

.svg-mobile {
  display: none;
  height: 100%;
}
@media screen and (min-width: 481px) and (max-width: 767px) and (orientation: landscape) {
  .svg-mobile {
    height: auto;
    display: none;
  }
}
@media screen and (max-width: 991px) {
  .svg-mobile {
    height: 100%;
  }
}

.your-own-team {
  padding: 0 0 0.867em;
  margin: 0 !important;
}
.your-own-team:last-child {
  padding-bottom: 0;
}

@media screen and (min-width: 480px) {
  .break-mobile {
    display: none;
  }
}

.break-desktop {
  display: none;
}
@media screen and (min-width: 480px) {
  .break-desktop {
    display: block;
  }
}

.section-page-banner .section-banner-title .header-section .pink {
  color: #DD3475;
}
.section-page-banner .section-banner-copy {
  position: relative;
  width: 25em;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 375px) and (max-width: 812px) and (orientation: landscape) {
  .section-page-banner .section-banner-copy {
    width: 35em !important;
  }
}
@media only screen and (max-width: 1024px) {
  .section-page-banner .section-banner-copy {
    width: auto;
    left: 0;
    -webkit-transform: translateX(0);
        -ms-transform: translateX(0);
            transform: translateX(0);
  }
}
.section-page-banner .section-banner-copy .content-header {
  font-family: "Gotham";
  font-size: 1.875em;
  line-height: 1.3;
  font-weight: 400;
  margin-top: 0;
  font-style: normal;
}
@media only screen and (max-width: 1024px) {
  .section-page-banner .section-banner-copy .content-header {
    margin-bottom: 0;
    font-size: 1.875rem;
  }
}
.section-page-banner .section-banner-copy p:last-child {
  margin-bottom: 1.85em;
}
.section-page-banner .section-banner-copy p:last-child:last-child {
  margin-bottom: 1.85em;
}
.section-page-banner .section-banner-copy .branch {
  margin-bottom: 5em;
}
.section-page-banner .section-banner-copy .branch:last-child {
  margin-bottom: 100px;
}
@media screen and (max-width: 1024px) {
  .section-page-banner .section-banner-copy .branch:last-child {
    margin-bottom: -1.85em;
  }
}
.section-page-banner .section-banner-copy .branch h3 {
  margin-bottom: 0.8em;
}
.section-page-banner .section-banner-copy .branch p {
  margin: 0;
}

.section-violet-home {
  background-image: url("../img/placeholder/car.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-violet-home .violet-home-header {
  z-index: 9;
  position: relative;
  width: 30.438em;
  text-align: center;
  margin: 6.375em auto 0;
}
@media only screen and (max-width: 991px) {
  .section-violet-home .violet-home-header {
    width: auto;
    padding: 0 15px;
    margin-top: 3.9375rem;
  }
}
.section-violet-home .violet-home-header .header-content {
  color: #DD3475;
  font-family: "Gibson";
  font-style: italic;
  font-size: 2em;
  text-align: center;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1.4375rem;
  font-weight: 400;
}
@media only screen and (max-width: 991px) {
  .section-violet-home .violet-home-header .header-content {
    padding: 0 3.75rem;
    font-size: 1.875rem;
    line-height: 2.375rem;
    margin-bottom: 1.625rem;
  }
}
.section-violet-home .violet-home-header .content-description {
  color: #FFFFFF;
  font-family: "Raleway";
  font-weight: 500;
  font-style: italic;
  font-size: 1em;
  line-height: 1.875em;
  margin-bottom: 0;
}
@media only screen and (max-width: 991px) {
  .section-violet-home .violet-home-header .content-description {
    width: auto;
    font-size: 16px;
  }
}
.section-violet-home .violet-contact {
  width: 59.125em;
  height: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 9;
  margin-top: 2.375em;
  margin-bottom: 4.051em;
}
@media only screen and (max-width: 991px) {
  .section-violet-home .violet-contact {
    width: 100%;
    margin-top: 2.875rem;
    margin-bottom: 0;
  }
}
.section-violet-home .violet-contact .violet-col {
  width: 33.33%;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .section-violet-home .violet-contact .violet-col {
    width: 100%;
    margin-bottom: 3.175625rem;
  }
}
.section-violet-home .violet-contact .violet-col .number-image {
  margin-bottom: 2.5em;
}
.section-violet-home .violet-contact .violet-col .number-image img {
  max-width: 100%;
}
@media only screen and (max-width: 991px) {
  .section-violet-home .violet-contact .violet-col .number-image {
    display: none;
  }
}
.section-violet-home .violet-contact .violet-col .contact-detail-violet h4 {
  color: #FFFFFF;
  font-family: "Gibson";
  font-weight: 700;
  font-size: 0.875em;
  letter-spacing: 0.2em;
  line-height: 0.0125rem;
  color: #FFFFFF;
  margin-bottom: 1.4375rem;
}
@media only screen and (max-width: 991px) {
  .section-violet-home .violet-contact .violet-col .contact-detail-violet h4 {
    font-size: 16px;
    letter-spacing: 3.2px;
    margin-bottom: 0.625rem;
  }
}
.section-violet-home .violet-contact .violet-col .contact-detail-violet p {
  color: #FFFFFF;
  font-family: "Raleway";
  font-weight: 500;
  font-size: 1em;
  color: #FFFFFF;
  line-height: 0.625rem;
}
@media only screen and (max-width: 991px) {
  .section-violet-home .violet-contact .violet-col .contact-detail-violet p {
    font-size: 16px;
  }
}

.section-instagram {
  background-color: #FFFFFF;
  position: relative;
  height: auto;
  width: 100%;
}
.section-instagram .instagram-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -0.5px;
  background-color: #f8f8f8;
  -webkit-transition: 300ms ease-in;
  transition: 300ms ease-in;
  width: 100%;
}
.section-instagram .instagram-container .instagram-images {
  max-width: 25%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: padding-box;
  height: 350px;
  -webkit-transform: scale(1.003);
  -ms-transform: scale(1.003);
  transform: scale(1.003);
}
@media only screen and (max-width: 991px) {
  .section-instagram .instagram-container .instagram-images {
    max-width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}
.section-instagram .instagram-container .instagram-images a img {
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-instagram .instagram-container.unloaded {
  min-height: 42.2em;
}
@media screen and (max-width: 767px) {
  .section-instagram .instagram-container.unloaded {
    min-height: 84.2em;
  }
}

.section-page-banner.showcase .section-feature-panel .single-image-banner .box {
  background-image: url("../img/placeholder/team-placeholder.jpg");
  width: 0%;
}

.partners .violet-home__menu {
  z-index: 3;
  position: relative;
}
.partners .violet-home__menu ul {
  padding: 0;
  margin: 0;
}
.partners .violet-home__menu ul li {
  display: inline-block;
  text-align: center;
}
.partners .violet-home__menu ul li a {
  color: #fff;
  font-family: "Raleway";
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  margin: 0 24px;
}
.partners .violet-home__menu ul li a:hover {
  text-decoration: underline;
}
.partners__clients {
  z-index: 1;
}
.partners__clients ul {
  margin: 0;
  padding: 0;
  text-align: center;
}
.partners__clients ul li {
  display: inline-block;
  margin-right: 0.875em;
}
.partners__clients ul li .client-logo img {
  width: 7.3125em;
  height: auto;
}

.projects {
  width: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.projects > div {
  display: inline-block;
  background-size: cover;
  background-repeat: no-repeat;
  width: 50%;
  height: 28.84vw;
}

.technology-section .logo-panel {
  opacity: 0.5;
}

.generic-section--whatwedo {
  overflow: hidden;
}

.service-block {
  height: 31.1em;
  margin-top: 34.8em;
  margin-bottom: 0;
  position: relative;
  width: 100%;
}
.service-block .copy-wrapper {
  width: 46.65em !important;
  text-align: center;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  position: absolute !important;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-45.6%);
  -ms-transform: translateY(-45.6%);
  transform: translateY(-45.6%);
}
@media only screen and (max-width: 1024px) {
  .service-block .copy-wrapper {
    width: auto !important;
    position: relative !important;
    top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  .service-block .copy-wrapper:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .service-block .copy-wrapper h2 {
    font-size: 7.5em;
  }
}
.service-block:last-child {
  margin-bottom: 34.8em;
}
@media only screen and (max-width: 1024px) {
  .service-block:last-child {
    margin-bottom: 10.8em;
  }
}
@media only screen and (max-width: 767px) {
  .service-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.service-block:first-child {
  padding-top: 0 !important;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .service-block:first-child {
    padding-top: 0 !important;
  }
}
@media screen and (max-width: 1024px) {
  .service-block {
    height: auto;
    margin-top: 0;
    padding: 5em 0;
  }
  .service-block .lego-animation {
    display: none;
  }
}

.road-container {
  position: absolute;
  top: -16.3em;
  left: -13%;
  right: 0;
  width: 105.75em;
  height: 334em;
}
.road-container > img {
  width: 100%;
  display: block;
}
@media screen and (max-width: 1024px) {
  .road-container {
    display: none;
  }
}

.lego-animation {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  margin: auto;
  pointer-events: none;
  z-index: 3;
  bottom: 0;
  -webkit-transform: translate(0.2em, 27.5em);
  -ms-transform: translate(0.2em, 27.5em);
  transform: translate(0.2em, 27.5em);
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .lego-animation {
    display: none;
  }
}
.lego-animation > div {
  display: inline-block;
  width: 35.1em !important;
  height: 24.438em !important;
}
.lego-animation > div > canvas {
  width: 35.1em !important;
  height: 24.438em !important;
}
.lego-animation img {
  width: 35.1em;
}
@media screen and (min-width: 1441px) {
  .lego-animation {
    bottom: 0;
    -webkit-transform: translate(-0.2em, 27em);
    -ms-transform: translate(-0.2em, 27em);
    transform: translate(-0.2em, 27em);
  }
}
@media screen and (min-width: 1600px) {
  .lego-animation {
    bottom: 0;
    -webkit-transform: translate(-0.2em, 27em);
    -ms-transform: translate(-0.2em, 27em);
    transform: translate(-0.2em, 27em);
  }
}

.ginger-cat {
  max-width: 5.625em;
  z-index: 3;
  position: absolute;
  height: 100%;
  width: 100%;
  max-height: 5.625em;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 1024px) {
  .ginger-cat {
    display: none;
  }
}
.ginger-cat-1 {
  top: 5%;
  left: 50%;
  -webkit-transform: translate(0em, 0em);
      -ms-transform: translate(0em, 0em);
          transform: translate(0em, 0em);
  background-image: url("../img/ginger-loop-right.gif");
}
.ginger-cat-2 {
  top: 16em;
  right: -7.625em;
  background-image: url("../img/ginger-loop-left.gif");
}
.ginger-cat-3 {
  top: 14.99em;
  left: -7.625em;
  background-image: url("../img/ginger-loop-right.gif");
}
.ginger-cat-4 {
  top: 10.99em;
  right: -7.625em;
  background-image: url("../img/ginger-loop-left.gif");
}
.ginger-cat-5 {
  top: 16.99em;
  left: -7.625em;
  z-index: 5;
  background-image: url("../img/ginger-loop-right.gif");
}
.ginger-cat img {
  width: 100%;
}

.ginger-gif {
  display: none;
}
.ginger-gif.active {
  display: block;
}

.section-page-banner.talk-to-us {
  z-index: 2;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .section-page-banner.talk-to-us {
    -webkit-transform: translate3d(0, 0, 0) !important;
            transform: translate3d(0, 0, 0) !important;
    height: auto;
  }
}
.section-page-banner.talk-to-us .section-contact-address {
  position: relative;
  width: 100%;
}
.section-page-banner.talk-to-us .section-contact-address .branch {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 25em;
}
@media screen and (max-width: 768px) {
  .section-page-banner.talk-to-us .section-contact-address .branch {
    width: 100%;
    height: auto;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    display: block;
    left: 0;
    text-align: center;
    padding-bottom: 9.2em;
    margin-top: 6.4em;
  }
}
@media screen and (max-width: 767px) {
  .section-page-banner.talk-to-us .section-contact-address .branch {
    padding-bottom: 9.2em;
    margin-top: 6.4em;
  }
}
.section-page-banner.talk-to-us .section-contact-address .branch .content-header {
  margin-bottom: 0.719em;
}
.section-page-banner.talk-to-us .section-contact-address .branch p {
  line-height: 0.6875;
}
.section-page-banner.talk-to-us .section-contact-address .branch p:last-child {
  margin-bottom: 0;
}
.section-page-banner.talk-to-us .section-contact-address .branch.auckland-wrapper {
  border-bottom: none;
}

.map-container {
  overflow: hidden;
}

.map-outer {
  width: 100vw;
  height: 100vh;
  position: fixed;
  z-index: 1;
  overflow: hidden;
}
.map-outer .parent-map {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.map-holder {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
}
.map-holder .map-frame {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 2;
}
.map-holder .map-frame.active {
  opacity: 1;
}
.map-holder .map-frame .map-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  background-size: cover !important;
  background-position: center center !important;
}

.frame-layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .map-outer {
    width: 1024px;
    height: 1024px;
  }
  .map-holder {
    width: 1024px;
    height: 1024px;
  }
}
@media screen and (max-width: 639px) {
  .map-outer {
    width: 640px;
    height: 640px;
  }
  .map-holder {
    width: 640px;
    height: 640px;
  }
}
.talk-to-us {
  height: 100vh;
}

#talk-to-us .section-apply-now {
  z-index: 2;
  margin-top: -1em;
}

#talk-to-us .section-apply-now {
  background-color: #F4F4F4;
  height: 100%;
  position: relative;
  bottom: 0;
}
#talk-to-us .section-apply-now .apply-header h3 {
  margin-bottom: 1.2em;
}

#section-panel-map {
  min-height: 100vh;
}

.form-container .input-form {
  margin-bottom: 2.55em;
  text-align: left;
}
@media screen and (max-width: 991px) {
  .form-container .input-form {
    margin-bottom: 20px;
  }
}
.form-container .input-form label {
  font-family: "Gibson";
  font-style: italic;
  font-size: 1em;
  line-height: 0.8;
  color: #454343;
  margin-bottom: 0.8em;
  display: block;
}
.form-container .input-form label p {
  margin: 0.4em 0 1em;
  font-size: 0.8em;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
  .form-container .input-form label {
    margin-bottom: 12px;
    font-size: 16px;
  }
  .form-container .input-form label p {
    line-height: 1.4;
  }
}
.form-container .input-form input, .form-container .input-form textarea, .form-container .input-form select {
  width: 100%;
  display: block;
  font-family: "Gibson";
  font-style: italic;
  font-size: 1em;
  padding: 0 1.34em;
  border-color: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 0;
  outline: none !important;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
  .form-container .input-form input, .form-container .input-form textarea, .form-container .input-form select {
    font-size: 1em;
    padding: 21px !important;
  }
}
.form-container .input-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url("../img/icon/select.png") 97%/5% no-repeat #fff;
  background-size: 3%;
  outline: none !important;
}
@media screen and (max-width: 767px) {
  .form-container .input-form select {
    background-size: 5.5%;
  }
}
.form-container .input-form select::-ms-expand {
  display: none;
}
.form-container .input-form input, .form-container .input-form select {
  height: 3.75em;
}
@media screen and (max-width: 991px) {
  .form-container .input-form input, .form-container .input-form select {
    height: 60px;
    font-size: 16px;
  }
}
.form-container .input-form textarea {
  height: 6.875em;
  min-height: 5.625em;
  padding-top: 1.34em;
  padding-bottom: 1.34em;
}
@media screen and (max-width: 991px) {
  .form-container .input-form textarea {
    height: 89px;
  }
}

.upload-btn-wrapper {
  position: relative;
  overflow: hidden;
  display: block;
  z-index: 2;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .upload-btn-wrapper {
    font-size: 16px;
  }
}
.upload-btn-wrapper .upload-btn.active {
  font-weight: 400;
  border-style: solid;
}
.upload-btn-wrapper .upload-btn {
  position: relative;
  z-index: 1;
}
.upload-btn-wrapper .upload-btn p {
  margin: 0;
  padding: 0;
}
.upload-btn-wrapper .upload-btn .file-name.active {
  text-align: center;
  font-size: 0.8em;
  padding-bottom: 0;
  color: #30213C;
  text-align: left;
}
.upload-btn-wrapper .upload-btn .file-size.active {
  display: block;
}
.upload-btn-wrapper .upload-btn .remove-button.active {
  display: block;
}
@media screen and (max-width: 767px) {
  .upload-btn-wrapper .upload-btn .remove-button.active {
    font-size: 20px;
  }
}
.upload-btn-wrapper .upload-btn .file-name {
  font-family: "Gotham";
  font-weight: 400;
  font-size: 1em;
  padding: 0 2em 0 1em;
  margin: 0;
  text-align: center;
  color: #9d9d9d;
}
.upload-btn-wrapper .upload-btn .upload-filename {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.upload-btn-wrapper .upload-btn .file-size {
  font-family: "Gotham";
  font-weight: 400;
  padding: 0em 1em 0 1.5em;
  font-size: 0.6em;
  opacity: 0.8;
  margin: 0;
  display: none;
}
.upload-btn-wrapper .upload-btn .remove-button {
  position: absolute;
  top: 50%;
  right: 1em;
  margin: 0;
  padding: 0;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: none;
  cursor: pointer;
  color: #c3c3c3;
}
@media screen and (max-width: 767px) {
  .upload-btn-wrapper .upload-btn .remove-button {
    right: 0.55em;
  }
}
.upload-btn-wrapper .upload-btn {
  border: 1px dashed #c3c3c3;
  background: #eaeaea;
  border-radius: 10px;
  width: 100%;
  padding: 1.5em 0;
  cursor: pointer;
  min-height: 5em;
  height: auto;
  position: relative;
}
.upload-btn-wrapper .upload-btn.curriculum-vitae.wpcf7-not-valid {
  border: 1px dashed #DD3475 !important;
  -webkit-appearance: none;
}
.upload-btn-wrapper input[type=file] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: auto;
  z-index: 3;
  cursor: pointer !important;
}
@media only screen and (max-width: 600px) {
  .upload-btn-wrapper input[type=file] {
    width: 300px;
  }
}
.upload-btn-wrapper .upload-text {
  font-family: "Gotham";
  font-weight: 400;
  font-style: normal;
  font-size: 1em;
  line-height: 1.25;
  padding-left: 0.938em;
}
.upload-btn-wrapper p {
  margin-top: 0;
}

form input {
  outline: none !important;
}

input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

.success-message {
  position: absolute;
  background-color: #F4F4F4;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 9;
}
.success-message.show {
  opacity: 1;
}
.success-message__content {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  right: 0;
  width: 46.938em;
  margin: auto;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .success-message__content {
    width: auto;
    font-size: 16px;
  }
}
.success-message h2 {
  font-size: 1.9em;
  font-family: "Gotham";
  font-style: normal;
  font-weight: 400;
  line-height: 1.33;
}
@media only screen and (max-width: 991px) {
  .success-message h2 {
    font-size: 1.3em;
  }
}
.success-message p {
  margin-bottom: 0.875em;
}
.success-message #mail_animation_container {
  margin: 2.188em auto 0 !important;
  width: 15.625em !important;
  height: 250px;
  font-size: 16px;
  -webkit-transform: translateX(-2.4em);
      -ms-transform: translateX(-2.4em);
          transform: translateX(-2.4em);
}

.wpcf7-form-control-wrap.curriculum-vitae input[type=file] {
  top: unset;
  bottom: 200%;
}

.section-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  min-height: 93vh;
}
.section-error .error-copy-container {
  padding-left: 1.875em;
  padding-right: 1.875em;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .section-error .error-copy-container {
    padding: 0 20px;
  }
}

.career-hero-container {
  position: relative;
  width: 100%;
  margin-bottom: 6.063em;
}
.career-hero-container .career-hero-bg-container {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 28.875em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 991px) {
  .career-hero-container .career-hero-bg-container {
    height: 50vh;
  }
}
@media screen and (max-width: 991px) and (orientation: landscape) {
  .career-hero-container .career-hero-bg-container {
    height: 100vh;
  }
}
.career-hero-container .career-hero-bg-container .career-hero-text-container {
  width: 100%;
  padding: 0 13.313em;
}
@media only screen and (max-width: 767px) {
  .career-hero-container .career-hero-bg-container .career-hero-text-container {
    padding: 0 25px;
  }
}
.career-hero-container .career-hero-bg-container .career-hero-text-container .career-hero-text-wrapper {
  width: 47.938em;
}
@media only screen and (max-width: 991px) {
  .career-hero-container .career-hero-bg-container .career-hero-text-container .career-hero-text-wrapper {
    width: 100%;
  }
}
.career-hero-container .career-hero-bg-container .career-hero-text-container .career-hero-text-wrapper h1 {
  font-size: 6.25em;
  line-height: 0.78;
  letter-spacing: -0.001em;
  color: white;
  margin: 0;
  font-family: "Gibson";
  font-weight: 700;
  text-transform: uppercase;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .career-hero-container .career-hero-bg-container .career-hero-text-container .career-hero-text-wrapper h1 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 360px) {
  .career-hero-container .career-hero-bg-container .career-hero-text-container .career-hero-text-wrapper h1 {
    font-size: 33px;
  }
}

.career-content-container {
  width: 100%;
  padding: 0 19.063em;
  margin-bottom: 2.594em;
}
@media only screen and (max-width: 1024px) {
  .career-content-container {
    font-size: 5px;
  }
}
@media only screen and (max-width: 767px) {
  .career-content-container {
    padding: 0 20px;
  }
}
.career-content-container .career-content-wrapper .career-generic-description-container {
  text-align: center;
  margin-bottom: 4.938em;
}
@media only screen and (max-width: 1024px) {
  .career-content-container .career-content-wrapper .career-generic-description-container {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .career-content-container .career-content-wrapper .career-generic-description-container {
    margin-bottom: 50px;
  }
}
.career-content-container .career-content-wrapper .career-generic-description-container p, .career-content-container .career-content-wrapper .career-generic-description-container h1, .career-content-container .career-content-wrapper .career-generic-description-container h2, .career-content-container .career-content-wrapper .career-generic-description-container h3, .career-content-container .career-content-wrapper .career-generic-description-container h4, .career-content-container .career-content-wrapper .career-generic-description-container h5, .career-content-container .career-content-wrapper .career-generic-description-container h6 {
  color: #30213C;
}
.career-content-container .career-content-wrapper .career-generic-description-container h4 {
  font-size: 1.25em;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}
.career-content-container .career-content-wrapper .career-generic-description-container .career-generic-description-wrapper p {
  font-size: 1.5em;
}
@media only screen and (max-width: 991px) {
  .career-content-container .career-content-wrapper .career-generic-description-container .career-generic-description-wrapper p {
    font-size: 16px;
  }
}
.career-content-container .career-content-wrapper .career-generic-description-container .career-list-wrapper {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 414px) {
  .career-content-container .career-content-wrapper .career-generic-description-container .career-list-wrapper {
    display: none;
  }
}
.career-content-container .career-content-wrapper .career-generic-description-container .career-list-wrapper .career-content li {
  text-align: left;
  margin-bottom: 10px;
}
.career-content-container .career-content-wrapper .career-generic-description-container .career-list-wrapper .career-content li a {
  color: #30213C;
  font-size: 1.25em;
  line-height: 1.875;
  font-family: "Gotham";
  font-weight: 700;
  margin: 0;
  text-decoration: none;
}
.career-content-container .career-content-wrapper .career-generic-description-container .career-dropdown-wrapper {
  display: none;
}
@media only screen and (max-width: 767px) {
  .career-content-container .career-content-wrapper .career-generic-description-container .career-dropdown-wrapper {
    display: block;
    margin: 50px 15px 0;
  }
}
.career-content-container .career-content-wrapper .career-generic-description-container .career-dropdown-wrapper .career-select {
  font-size: 1.25em;
  color: #292828;
  font-family: "Gotham";
  font-weight: 900;
  line-height: 1.5;
  text-align: center;
  width: 100%;
  background-color: transparent;
  text-decoration: none;
  border: none;
  text-align: center;
  border: 1px solid #30213C;
  border-radius: 10px;
  cursor: pointer;
  font-style: normal;
  color: #30213C;
  font-size: 16px;
  padding: 1em;
}
.career-content-container .career-content-wrapper .career-categories-container {
  margin-bottom: 2.594em;
  position: relative;
}
.career-content-container .career-content-wrapper .career-categories-container:last-child {
  margin-bottom: 20em;
}
@media only screen and (max-width: 767px) {
  .career-content-container .career-content-wrapper .career-categories-container:last-child {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1024px) {
  .career-content-container .career-content-wrapper .career-categories-container {
    font-size: 16px;
  }
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-title-container {
  margin-bottom: 1.5em;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-title-container h5 {
  color: #30213C;
  font-size: 1em;
  line-height: 1.875;
  font-family: "Gibson";
  font-weight: 700;
  margin: 0;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container {
  margin-bottom: 1.5em;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container p, .career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container h1, .career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container h2, .career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container h3, .career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container h4, .career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container h5, .career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container h6 {
  color: #454343;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container p {
  font-size: 1em;
  line-height: 1.875;
  font-family: "Gibson";
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container ul {
  list-style: none;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container ul li {
  font-size: 1em;
  line-height: 1.875;
  font-family: "Gibson";
  color: #454343;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-header-container .career-description-container ul li:before {
  content: "•";
  color: #DD3475;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-qualifications-container {
  margin-bottom: 1.75em;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-qualifications-container ul {
  list-style: none;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-qualifications-container ul li {
  font-size: 1em;
  line-height: 1.875;
  font-family: "Gibson";
  color: #454343;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-qualifications-container ul li:before {
  content: "•";
  color: #DD3475;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-btn-container {
  margin-bottom: 3.094em;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-btn-container button {
  background-color: #30213C;
  color: white;
}
.career-content-container .career-content-wrapper .career-categories-container .career-categories-wrapper .career-btn-container button:hover {
  color: #30213C;
  background-color: white;
}
.career-content-container .career-content-wrapper .career-categories-container .career-item-separator {
  margin: 0;
}

.careers-modal {
  display: none;
  position: relative;
}
.careers-modal .careers-modal-container {
  position: relative;
  background-color: #f4f4f4;
  width: 47.188em;
  padding: 6.5em 8.375em;
  z-index: 9;
  margin: 0 auto;
  min-height: 100vh;
}
@media only screen and (max-width: 1024px) {
  .careers-modal .careers-modal-container {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .careers-modal .careers-modal-container {
    width: 100%;
    padding: 100px 20px 60px;
    position: fixed;
    bottom: 0px;
    height: 100vh;
    overflow-y: auto;
  }
}
.careers-modal .careers-modal-container .close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.875em;
  color: #b4b3b3;
  line-height: 1;
  margin-right: 1.03em;
  margin-top: 0.697em;
  cursor: pointer;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  .careers-modal .careers-modal-container .close {
    font-size: 25px;
    margin-top: 60px;
    margin-right: 20px;
  }
}
.careers-modal .careers-modal-container .careers-modal-wrapper .careers-modal-header-container {
  margin-bottom: 2.25em;
  width: 100%;
  text-align: center;
}
.careers-modal .careers-modal-container .careers-modal-wrapper .careers-modal-header-container h3 {
  font-size: 2em;
  font-family: "Gotham";
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01px;
  line-height: 1;
  text-transform: uppercase;
}
@media only screen and (max-width: 767px) {
  .careers-modal .careers-modal-container .careers-modal-wrapper .careers-modal-header-container h3 {
    font-size: 25px;
  }
}
.careers-modal .btn-container button {
  color: #30213c;
  background-color: transparent;
}
.careers-modal .btn-container button:hover {
  color: white;
  background-color: #30213c;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(35, 26, 42, 0.7);
  z-index: 8;
}

.hidden-position {
  pointer-events: none;
}

.modal-wrapper-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  z-index: 9;
}

​ .modal-open {
  overflow: hidden;
}

.section-canvas-test .btn-container {
  position: absolute;
  bottom: 0;
  right: 0;
}
.section-canvas-test .service-block .lego-animation {
  display: block !important;
}

.what-we-do-v2 .canvas-control {
  position: absolute;
  bottom: 0;
  z-index: 99999;
}
/*# sourceMappingURL=build.css.map */