/*
 * 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: #b3d4fc;
  text-shadow: none; }

::selection {
  background: #b3d4fc;
  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%; }

/* ==========================================================================
   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), (-o-min-device-pixel-ratio: 5/4), (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; } }

@font-face {
  font-family: "Burbank";
  src: url("../fonts/BurbankBigRegular-Bold.eot");
  src: url("../fonts/BurbankBigRegular-Bold.woff") format("woff"), url("../fonts/BurbankBigRegular-Bold.ttf") format("truetype"), url("../fonts/BurbankBigRegular-Bold.otf") format("opentype"), url("../fonts/BurbankBigRegular-Bold.svg") format("svg"), url("../fonts/BurbankBigRegular-Bold.eot?#iefix") format("embedded-opentype");
  font-weight: "bold";
  font-style: normal; }

.font-a {
  font-family: 'Burbank', sans-serif;
  font-size: 1.188em; }

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */ }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
   * 	Owl Carousel - Auto Height Plugin
   */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out; }

/*
   * 	Owl Carousel - Lazy Load Plugin
   */
.owl-carousel .owl-item {
  /**
              This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
              calculation of the height of the owl-item that breaks page layouts
           */ }

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

/*
   * 	Owl Carousel - Video Plugin
   */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  -o-transition: transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

/*!
 * fullPage 3.0.4
 * https://github.com/alvarotrigo/fullPage.js
 *
 * @license GPLv3 for open source use only
 * or Fullpage Commercial License for commercial use
 * http://alvarotrigo.com/fullPage/pricing/
 *
 * Copyright (C) 2018 http://alvarotrigo.com/fullPage - A project by Alvaro Trigo
 */
html.fp-enabled,
.fp-enabled body {
  margin: 0;
  padding: 0;
  overflow: hidden;
  /*Avoid flicker on slides transitions for mobile phones #336 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

.fp-section {
  position: relative;
  -webkit-box-sizing: border-box;
  /* Safari<=5 Android<=3 */
  -moz-box-sizing: border-box;
  /* <=28 */
  box-sizing: border-box; }

.fp-slide {
  float: left; }

.fp-slide, .fp-slidesContainer {
  height: 100%;
  display: block; }

.fp-slides {
  z-index: 1;
  height: 100%;
  overflow: hidden;
  position: relative;
  -webkit-transition: all 0.3s ease-out;
  /* Safari<=6 Android<=4.3 */
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out; }

.fp-section.fp-table, .fp-slide.fp-table {
  display: table;
  table-layout: fixed;
  width: 100%; }

.fp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%; }

.fp-slidesContainer {
  float: left;
  position: relative; }

.fp-controlArrow {
  -webkit-user-select: none;
  /* webkit (safari, chrome) browsers */
  -moz-user-select: none;
  /* mozilla browsers */
  -khtml-user-select: none;
  /* webkit (konqueror) browsers */
  -ms-user-select: none;
  /* IE10+ */
  position: absolute;
  z-index: 4;
  top: 50%;
  cursor: pointer;
  width: 0;
  height: 0;
  border-style: solid;
  margin-top: -38px;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.fp-controlArrow.fp-prev {
  left: 15px;
  width: 0;
  border-width: 38.5px 34px 38.5px 0;
  border-color: transparent #fff transparent transparent; }

.fp-controlArrow.fp-next {
  right: 15px;
  border-width: 38.5px 0 38.5px 34px;
  border-color: transparent transparent transparent #fff; }

.fp-scrollable {
  overflow: hidden;
  position: relative; }

.fp-scroller {
  overflow: hidden; }

.iScrollIndicator {
  border: 0 !important; }

.fp-notransition {
  -webkit-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

#fp-nav {
  position: fixed;
  z-index: 100;
  margin-top: -32px;
  top: 50%;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0); }

#fp-nav.fp-right {
  right: 17px; }

#fp-nav.fp-left {
  left: 17px; }

.fp-slidesNav {
  position: absolute;
  z-index: 4;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  left: 0 !important;
  right: 0;
  margin: 0 auto !important; }

.fp-slidesNav.fp-bottom {
  bottom: 17px; }

.fp-slidesNav.fp-top {
  top: 17px; }

#fp-nav ul,
.fp-slidesNav ul {
  margin: 0;
  padding: 0; }

#fp-nav ul li,
.fp-slidesNav ul li {
  display: block;
  width: 14px;
  height: 13px;
  margin: 7px;
  position: relative; }

.fp-slidesNav ul li {
  display: inline-block; }

#fp-nav ul li a,
.fp-slidesNav ul li a {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  text-decoration: none; }

#fp-nav ul li a.active span,
.fp-slidesNav ul li a.active span,
#fp-nav ul li:hover a.active span,
.fp-slidesNav ul li:hover a.active span {
  height: 12px;
  width: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 100%; }

#fp-nav ul li a span,
.fp-slidesNav ul li a span {
  border-radius: 50%;
  position: absolute;
  z-index: 1;
  height: 4px;
  width: 4px;
  border: 0;
  background: #333;
  left: 50%;
  top: 50%;
  margin: -2px 0 0 -2px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }

#fp-nav ul li:hover a span,
.fp-slidesNav ul li:hover a span {
  width: 10px;
  height: 10px;
  margin: -5px 0px 0px -5px; }

#fp-nav ul li .fp-tooltip {
  position: absolute;
  top: -2px;
  color: #fff;
  font-size: 14px;
  font-family: arial, helvetica, sans-serif;
  white-space: nowrap;
  max-width: 220px;
  overflow: hidden;
  display: block;
  opacity: 0;
  width: 0;
  cursor: pointer; }

#fp-nav ul li:hover .fp-tooltip,
#fp-nav.fp-show-active a.active + .fp-tooltip {
  -webkit-transition: opacity 0.2s ease-in;
  -o-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
  width: auto;
  opacity: 1; }

#fp-nav ul li .fp-tooltip.fp-right {
  right: 20px; }

#fp-nav ul li .fp-tooltip.fp-left {
  left: 20px; }

.fp-auto-height.fp-section,
.fp-auto-height .fp-slide,
.fp-auto-height .fp-tableCell {
  height: auto !important; }

.fp-responsive .fp-auto-height-responsive.fp-section,
.fp-responsive .fp-auto-height-responsive .fp-slide,
.fp-responsive .fp-auto-height-responsive .fp-tableCell {
  height: auto !important; }

/*Only display content to screen readers*/
.fp-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.bg-red {
  background-color: #f00; }

.bg-yellow {
  background-color: #ff0; }

.bg-grey {
  background-color: #ccc; }

.btn {
  border-radius: 2em;
  width: 12.813em;
  height: 3.125em;
  font-size: 1.188em;
  font-family: 'Burbank', sans-serif; }
  .btn-bg {
    background-color: white; }
  .btn-shop {
    height: 3.600em;
    margin-top: 1.542em;
    min-width: 13.269em;
    width: auto;
    font-size: 0.790em;
    border: 1px white solid;
    font-family: poppins, sans-serif;
    background: none;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
    color: white; }
    @media only screen and (max-width: 767px) {
      .btn-shop {
        font-size: 12px;
        margin-top: .875em;
        min-width: auto;
        width: 100%;
        height: 40px; } }
    .btn-shop:hover {
      background: white;
      color: #333333;
      cursor: pointer; }
  .btn span {
    color: white; }
  .btn.btn-tickets {
    border: 1px solid #f07e26;
    color: white;
    font-size: 0.875em;
    height: 2.500em;
    width: 9.357em;
    background-color: #f07e26;
    line-height: 2.4;
    margin-right: 1.875em;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    @media only screen and (max-width: 767px) {
      .btn.btn-tickets {
        width: 112px;
        height: 30px;
        font-size: 14px;
        line-height: 2.1;
        margin-right: 0; } }
    .btn.btn-tickets:hover {
      background-color: white;
      color: #f07e26; }

.hamburger {
  display: none !important; }
  @media only screen and (max-width: 767px) {
    .hamburger {
      display: inline-block !important; } }

body {
  font-size: 1.171vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #012135;
  position: relative;
  height: 100%;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  color: #fff; }

b, strong {
  font-weight: bold; }

h1 {
  font-size: 2.438em;
  font-family: poppins, sans-serif;
  font-weight: 900;
  margin: 0;
  line-height: .86;
  letter-spacing: 0.035em; }
  @media only screen and (max-width: 767px) {
    h1 {
      font-size: 38px; } }

h2 {
  font-family: poppins, sans-serif;
  font-size: 2em;
  font-weight: 900;
  margin: 0; }

h3 {
  font-family: poppins, sans-serif;
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: 0.035em;
  margin: 0;
  padding: 0; }

h4 {
  font-family: poppins, sans-serif;
  font-size: 0.875em;
  font-weight: 900;
  margin: 0;
  line-height: 1.75;
  letter-spacing: 0.035em; }
  @media only screen and (max-width: 767px) {
    h4 {
      font-size: 14px; } }

h5 {
  font-family: poppins, sans-serif; }

span {
  font-size: 1.188em;
  font-family: 'Burbank', sans-serif; }

p {
  font-family: poppins, sans-serif;
  font-weight: 500;
  font-size: 0.875em;
  line-height: 1.57;
  margin: 0; }
  @media only screen and (max-width: 767px) {
    p {
      font-size: 14px; } }

* {
  outline: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.owl-carousel * {
  -webkit-box-sizing: initial;
  box-sizing: initial; }

.animated-header {
  opacity: 0; }

.animated .animated-child {
  -webkit-transform: translateY(25px);
  -ms-transform: translateY(25px);
  transform: translateY(25px);
  opacity: 0; }
  .animated .animated-child.animated-slide-down {
    -webkit-transform: translateY(-25px);
    -ms-transform: translateY(-25px);
    transform: translateY(-25px); }
  .animated .animated-child.animated-fade {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

.bg-layer {
  background-image: url("../img/content/home-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.opac-0 {
  opacity: 0; }

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 15;
  position: fixed; }
  header .header-wrapper {
    padding: 1.875em 2.188em; }
    @media only screen and (max-width: 991px) {
      header .header-wrapper {
        height: 80px;
        position: relative;
        padding: 0 15px; } }
    header .header-wrapper-SA {
      background-image: none; }
    header .header-wrapper .navigation.home-logo a {
      text-decoration: none; }
      header .header-wrapper .navigation.home-logo a::after {
        content: 'UglyDolls.com';
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        padding-left: 10px;
        font-size: 16px;
        font-family: 'Burbank', sans-serif;
        color: white; }
        @media only screen and (max-width: 767px) {
          header .header-wrapper .navigation.home-logo a::after {
            display: none; } }
      header .header-wrapper .navigation.home-logo a img {
        max-width: 2.078em;
        width: 100%; }
        @media only screen and (max-width: 991px) {
          header .header-wrapper .navigation.home-logo a img {
            width: 33.24px;
            max-width: 100%;
            margin: 24px 0 0 0; } }
    header .header-wrapper .navigation.nav-menu {
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden; }
      header .header-wrapper .navigation.nav-menu ul {
        padding: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        @media only screen and (max-width: 991px) {
          header .header-wrapper .navigation.nav-menu ul {
            padding-top: 87px;
            padding-bottom: 87px;
            -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; } }
        header .header-wrapper .navigation.nav-menu ul li {
          list-style: none;
          display: inline-block;
          text-align: center;
          padding: 3.750em 2.344em;
          position: relative;
          -webkit-backface-visibility: hidden;
          backface-visibility: hidden; }
          @media only screen and (max-width: 991px) {
            header .header-wrapper .navigation.nav-menu ul li {
              padding: 0;
              display: block;
              padding-bottom: 38px;
              padding-top: 0;
              opacity: 0;
              -webkit-transform: translateY(-10px);
              -ms-transform: translateY(-10px);
              transform: translateY(-10px); }
              header .header-wrapper .navigation.nav-menu ul li:last-child {
                padding-bottom: 0; } }
          header .header-wrapper .navigation.nav-menu ul li .active-state {
            background-image: url(../img/content/menu-hover.png);
            background-size: cover;
            background-repeat: no-repeat;
            background-position: top center;
            position: absolute;
            top: -0.526em;
            left: -50%;
            right: -50%;
            bottom: 0;
            width: 6.75em;
            margin: 0 auto;
            -webkit-transform: translateY(-100%);
            -ms-transform: translateY(-100%);
            transform: translateY(-100%); }
            @media only screen and (max-width: 991px) {
              header .header-wrapper .navigation.nav-menu ul li .active-state {
                display: none; } }
          header .header-wrapper .navigation.nav-menu ul li a {
            position: relative;
            text-decoration: none;
            font-family: 'Burbank', sans-serif;
            color: white;
            display: block;
            line-height: 1;
            position: relative; }
            @media only screen and (max-width: 991px) {
              header .header-wrapper .navigation.nav-menu ul li a {
                font-size: 40px; } }
            @media only screen and (max-width: 767px) {
              header .header-wrapper .navigation.nav-menu ul li a {
                font-size: 22px; } }
      header .header-wrapper .navigation.nav-menu.is-active {
        display: block; }
        @media only screen and (max-width: 991px) {
          header .header-wrapper .navigation.nav-menu.is-active {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: center;
            -ms-flex-align: center;
            align-items: center; } }
        @media only screen and (max-width: 767px) {
          header .header-wrapper .navigation.nav-menu.is-active {
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start; } }
      @media only screen and (max-width: 991px) {
        header .header-wrapper .navigation.nav-menu {
          background-image: url("../img/landingpage/menu-mobile.jpg");
          position: absolute;
          top: 0;
          left: 0;
          height: 0;
          right: 0;
          background-size: cover;
          background-repeat: no-repeat;
          background-position: top center;
          background-attachment: fixed; } }
    @media only screen and (max-width: 991px) {
      header .header-wrapper .audio {
        font-size: 16px; } }
    header .header-wrapper .audio-logo img {
      max-width: 2.938em;
      width: 100%; }
      @media only screen and (max-width: 991px) {
        header .header-wrapper .audio-logo img {
          max-width: 7.970em;
          width: 100%; } }
  header .hamburger, header .audio {
    z-index: 9; }
    @media screen and (max-width: 991px) {
      header .hamburger, header .audio {
        margin-top: -10px; } }
  header .hamburger {
    padding: 0; }
    @media screen and (max-width: 991px) {
      header .hamburger {
        display: none !important; } }
    header .hamburger .hamburger-inner {
      margin-top: -7px; }
      header .hamburger .hamburger-inner:before {
        top: -7px; }
      header .hamburger .hamburger-inner:after {
        bottom: -7px; }

footer {
  width: 100%;
  position: relative; }
  @media only screen and (max-width: 767px) {
    footer {
      height: auto; } }
  footer .footer-wrapper {
    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;
    padding: 0 1.438em; }
    @media only screen and (max-width: 991px) {
      footer .footer-wrapper {
        font-size: 16px; } }
    footer .footer-wrapper.footer-officialsite {
      text-align: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse; }
      @media only screen and (max-width: 991px) {
        footer .footer-wrapper.footer-officialsite {
          margin-top: 60px; } }
      @media only screen and (max-width: 991px) {
        footer .footer-wrapper.footer-officialsite {
          margin-top: 0; } }
    footer .footer-wrapper.footer-shop {
      background-color: rgba(0, 0, 0, 0.1);
      text-align: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
      flex-direction: column-reverse; }
    @media only screen and (max-width: 767px) {
      footer .footer-wrapper .footer-wrapper-left {
        margin-top: 39.14px; } }
    footer .footer-wrapper .footer-wrapper-left .footer-socialmedia {
      display: inline-block;
      margin-top: 1.169em;
      padding-bottom: 1.89em; }
      @media only screen and (max-width: 767px) {
        footer .footer-wrapper .footer-wrapper-left .footer-socialmedia {
          margin-top: 0;
          padding-bottom: 50.12px; } }
      footer .footer-wrapper .footer-wrapper-left .footer-socialmedia h5 {
        margin: 0;
        display: inline-block;
        vertical-align: middle;
        padding-right: 0.625em; }
      footer .footer-wrapper .footer-wrapper-left .footer-socialmedia img {
        padding: 0 0.469em; }
        @media only screen and (max-width: 767px) {
          footer .footer-wrapper .footer-wrapper-left .footer-socialmedia img {
            padding: 0 20px; } }
        footer .footer-wrapper .footer-wrapper-left .footer-socialmedia img a:first-child {
          display: inline-block;
          width: 9.37px;
          height: 20.17px; }
        footer .footer-wrapper .footer-wrapper-left .footer-socialmedia img a:nth-child(2) {
          display: inline-block;
          width: 21.1px;
          height: 21.1px; }
        footer .footer-wrapper .footer-wrapper-left .footer-socialmedia img a:last-child {
          padding-right: 1.563em; }
          @media only screen and (max-width: 767px) {
            footer .footer-wrapper .footer-wrapper-left .footer-socialmedia img a:last-child {
              padding-right: 25px; } }
    footer .footer-wrapper .footer-wrapper-left .footer-links {
      display: inline-block; }
      footer .footer-wrapper .footer-wrapper-left .footer-links h5 {
        margin: 0;
        padding-right: 0.625em;
        display: inline-block; }
    footer .footer-wrapper .footer-wrapper-right {
      text-align: right; }
      footer .footer-wrapper .footer-wrapper-right-official {
        text-align: center; }
      footer .footer-wrapper .footer-wrapper-right .footer-privacy {
        padding-bottom: 1.169em; }
        @media only screen and (max-width: 767px) {
          footer .footer-wrapper .footer-wrapper-right .footer-privacy {
            padding-top: 49px; } }
        footer .footer-wrapper .footer-wrapper-right .footer-privacy ul {
          padding: 0;
          margin-top: 0.875em;
          margin-bottom: 0.547em;
          line-height: 1; }
          @media only screen and (max-width: 767px) {
            footer .footer-wrapper .footer-wrapper-right .footer-privacy ul {
              margin: 0; } }
          footer .footer-wrapper .footer-wrapper-right .footer-privacy ul li {
            list-style: none;
            display: inline-block;
            padding: 0 0.225em;
            line-height: 1; }
            @media only screen and (max-width: 767px) {
              footer .footer-wrapper .footer-wrapper-right .footer-privacy ul li {
                padding-bottom: 32px;
                border: none;
                display: block; } }
            footer .footer-wrapper .footer-wrapper-right .footer-privacy ul li:last-child a::after {
              display: none; }
            @media only screen and (max-width: 767px) {
              footer .footer-wrapper .footer-wrapper-right .footer-privacy ul li:last-child {
                padding-bottom: 49.75px; } }
            footer .footer-wrapper .footer-wrapper-right .footer-privacy ul li a {
              font-family: poppins, sans-serif;
              font-weight: 900;
              font-size: 0.563em;
              text-decoration: none;
              color: white;
              position: relative;
              line-height: 1; }
              footer .footer-wrapper .footer-wrapper-right .footer-privacy ul li a::after {
                content: ' ';
                width: 2px;
                height: 1em;
                background-color: white;
                margin: 0 .45em;
                display: inline-block;
                position: absolute;
                right: -1.2em;
                bottom: 13%; }
                @media only screen and (max-width: 767px) {
                  footer .footer-wrapper .footer-wrapper-right .footer-privacy ul li a::after {
                    display: none; } }
              @media only screen and (max-width: 767px) {
                footer .footer-wrapper .footer-wrapper-right .footer-privacy ul li a {
                  font-size: 12px; } }
        footer .footer-wrapper .footer-wrapper-right .footer-privacy p {
          font-size: 0.500em; }
          @media only screen and (max-width: 767px) {
            footer .footer-wrapper .footer-wrapper-right .footer-privacy p {
              font-size: 12px;
              width: 283px;
              line-height: 1.5;
              margin: 0; } }
          footer .footer-wrapper .footer-wrapper-right .footer-privacy p a {
            text-decoration: none;
            color: white; }
    footer .footer-wrapper .footer-logos {
      padding-top: 1.510em; }
      @media only screen and (max-width: 767px) {
        footer .footer-wrapper .footer-logos {
          padding-top: 40px; } }
      @media only screen and (max-width: 767px) {
        footer .footer-wrapper .footer-logos .logos-wrapper-desktop {
          display: none; } }
      footer .footer-wrapper .footer-logos .logos-wrapper-desktop img {
        margin: 0 1em; }
        footer .footer-wrapper .footer-logos .logos-wrapper-desktop img:first-child {
          height: 2.500em;
          width: 3.813em; }
        footer .footer-wrapper .footer-logos .logos-wrapper-desktop img:nth-child(2) {
          height: 2.188em;
          width: 8.438em; }
        footer .footer-wrapper .footer-logos .logos-wrapper-desktop img:last-child {
          height: 2.188em;
          width: 3.856em; }
      footer .footer-wrapper .footer-logos .logos-wrapper-mobile {
        display: none; }
        @media only screen and (max-width: 767px) {
          footer .footer-wrapper .footer-logos .logos-wrapper-mobile {
            display: inline-block; } }
        footer .footer-wrapper .footer-logos .logos-wrapper-mobile img {
          height: 35px;
          width: 283px;
          line-height: 1.5;
          margin-top: 20px; }
          footer .footer-wrapper .footer-logos .logos-wrapper-mobile img:first-child {
            height: 40px;
            width: 165.50px;
            display: block;
            margin: auto;
            margin-bottom: 20px; }
          footer .footer-wrapper .footer-logos .logos-wrapper-mobile img:nth-child(2) {
            width: 61.69px;
            margin: 0 10px 0 0; }
          footer .footer-wrapper .footer-logos .logos-wrapper-mobile img:last-child {
            width: 61.69px;
            margin: 0 0 0 10px; }

/*!
 * 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;
  -o-transition-property: opacity, filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: linear;
  -o-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: 27px;
  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: 27px;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
  position: absolute;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 0.15s;
  -o-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-timing-function: ease;
  -o-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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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);
  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;
  -o-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;
  -o-transition-duration: 0.13s;
  transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
  -o-transition-delay: 0.13s;
  transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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;
  -o-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);
  -o-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);
  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;
  -o-transition-delay: 0.22s;
  transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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;
  -o-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);
  -o-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);
  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;
  -o-transition-duration: 0.13s;
  transition-duration: 0.13s;
  -webkit-transition-delay: 0.13s;
  -o-transition-delay: 0.13s;
  transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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;
  -o-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);
  -o-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);
  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;
  -o-transition-delay: 0.22s;
  transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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;
  -o-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);
  -o-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);
  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;
  -o-transition-duration: 0.275s;
  transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-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;
  -o-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);
  -o-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);
  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;
  -o-transition-duration: 0.275s;
  transition-duration: 0.275s;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -o-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;
  -o-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);
  -o-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);
  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;
  -o-transition-delay: 0.075s;
  transition-delay: 0.075s; }

.hamburger--elastic-r.is-active .hamburger-inner::before {
  -webkit-transition-delay: 0s;
  -o-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;
  -o-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;
  -o-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);
  -o-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;
  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);
  -o-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;
  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;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
  -o-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);
  -o-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);
  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);
  -o-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);
  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;
  -o-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);
  -o-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;
  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);
  -o-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;
  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;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
  -o-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);
  -o-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);
  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);
  -o-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);
  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;
  -o-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;
  -o-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;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
  -o-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;
  -o-transition-property: transform, opacity;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
  -o-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;
  -o-transition-duration: 0.22s;
  transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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;
  -o-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);
  -o-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);
  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;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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;
  -o-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);
  -o-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);
  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;
  -o-transition-duration: 0.22s;
  transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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;
  -o-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);
  -o-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);
  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;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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;
  -o-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);
  -o-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);
  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;
  -o-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);
  -o-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);
  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);
  -o-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);
  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;
  -o-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);
  -o-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);
  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);
  -o-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);
  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;
  -o-transition-duration: 0.13s;
  transition-duration: 0.13s;
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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;
  -o-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);
  -o-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);
  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;
  -o-transition-delay: 0.22s;
  transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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;
  -o-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);
  -o-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);
  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);
  -o-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;
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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;
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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;
  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);
  -o-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);
  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);
  -o-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);
  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);
  -o-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;
  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);
  -o-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);
  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);
  -o-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);
  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); }

.hamburger--squeeze .hamburger-inner {
  -webkit-transition-duration: 0.075s;
  -o-transition-duration: 0.075s;
  transition-duration: 0.075s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -o-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--squeeze .hamburger-inner::before {
    -webkit-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
    -o-transition: top 0.075s 0.12s ease, opacity 0.075s ease;
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
  .hamburger--squeeze .hamburger-inner::after {
    -webkit-transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    -o-transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition-delay: 0.12s;
  -o-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-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--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    -webkit-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
    -o-transition: top 0.075s ease, opacity 0.075s 0.12s ease;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
  .hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    -webkit-transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    -o-transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }

.shop-modal-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  background-color: #00000066; }
  @media only screen and (max-width: 1024px) {
    .shop-modal-container {
      font-size: 16px; } }
  .shop-modal-container .shop-modal-wrapper {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background-image: url("../img/content/Whitebg.jpg");
    width: 31.250em;
    height: 18.750em;
    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;
    padding: 0 2.500em;
    color: #333333; }
    @media only screen and (max-width: 767px) {
      .shop-modal-container .shop-modal-wrapper {
        width: 70%;
        height: 50%; } }
    .shop-modal-container .shop-modal-wrapper .sm-header-container {
      width: 26.000em;
      padding-bottom: 2.813em; }
      @media only screen and (max-width: 767px) {
        .shop-modal-container .shop-modal-wrapper .sm-header-container {
          width: auto;
          padding-bottom: 20px; } }
      @media only screen and (max-width: 767px) {
        .shop-modal-container .shop-modal-wrapper .sm-header-container h4 {
          font-size: 11px;
          line-height: 1;
          padding-bottom: 10px; } }
      .shop-modal-container .shop-modal-wrapper .sm-header-container h2 {
        line-height: .864;
        font-size: 2.375em; }
        @media only screen and (max-width: 767px) {
          .shop-modal-container .shop-modal-wrapper .sm-header-container h2 {
            font-size: 24px;
            line-height: 1; } }
      @media only screen and (max-width: 767px) {
        .shop-modal-container .shop-modal-wrapper .sm-header-container .btn-container {
          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; } }
      .shop-modal-container .shop-modal-wrapper .sm-header-container .close-btn {
        font-size: 2.688em;
        color: #333;
        font-weight: 500;
        text-decoration: none;
        font-family: poppins, sans-serif;
        line-height: 0;
        padding: 0.595em 0.357em;
        position: absolute;
        top: 0;
        right: 0; }
        @media only screen and (max-width: 767px) {
          .shop-modal-container .shop-modal-wrapper .sm-header-container .close-btn {
            font-size: 25px;
            line-height: 1;
            padding: 10px; } }
    .shop-modal-container .shop-modal-wrapper .btn-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row; }
      @media only screen and (max-width: 767px) {
        .shop-modal-container .shop-modal-wrapper .btn-container {
          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; } }
      .shop-modal-container .shop-modal-wrapper .btn-container a:first-child button {
        margin-right: 1.667em; }
      .shop-modal-container .shop-modal-wrapper .btn-container a:last-child button {
        margin-bottom: 0; }
      .shop-modal-container .shop-modal-wrapper .btn-container a button {
        border: 1px solid #333;
        border-radius: 2.500em;
        height: 3.333em;
        min-width: 16.667em;
        width: auto;
        font-size: 0.750em;
        background-color: transparent;
        margin-bottom: 10px;
        -webkit-transition: background-color 0.5s ease;
        -o-transition: background-color 0.5s ease;
        transition: background-color 0.5s ease; }
        @media only screen and (max-width: 767px) {
          .shop-modal-container .shop-modal-wrapper .btn-container a button {
            margin-bottom: 10px;
            height: 30px;
            min-width: 160px;
            margin-right: 0;
            font-size: 12px;
            border: 1px solid #333; } }
        .shop-modal-container .shop-modal-wrapper .btn-container a button:hover {
          background-color: #333;
          color: #fff;
          cursor: pointer; }

.section-hero {
  height: 48em;
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 1024px) and (orientation: portrait) {
    .section-hero {
      height: 42vh; } }
  @media only screen and (max-width: 767px) {
    .section-hero {
      min-height: 664px; } }
  @media only screen and (max-width: 414px) and (max-height: 736px) {
    .section-hero {
      min-height: 734px !important; } }
  @media only screen and (max-width: 414px) {
    .section-hero {
      min-height: 819px; } }
  @media only screen and (max-width: 375px) and (max-height: 667px) {
    .section-hero {
      min-height: 667px !important; } }
  @media only screen and (max-width: 375px) {
    .section-hero {
      min-height: 807px; } }
  @media only screen and (max-width: 360px) {
    .section-hero {
      min-height: 559px !important; } }
  @media only screen and (max-width: 320px) {
    .section-hero {
      min-height: 670px; } }
  @media only screen and (min-width: 812px) and (max-height: 375px) and (orientation: landscape) {
    .section-hero {
      min-height: 416px; } }
  @media only screen and (max-width: 767px) {
    .section-hero-wrapper .hero-container {
      position: absolute;
      left: 50%;
      top: 61%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%; } }
  @media only screen and (max-width: 360px) {
    .section-hero-wrapper .hero-container {
      position: absolute;
      left: 50%;
      top: 56%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 100%; } }
  .section-hero-wrapper .hero-container .section-wrapper-content {
    text-align: center; }
    .section-hero-wrapper .hero-container .section-wrapper-content.hero-logo {
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      padding-top: 9.188em; }
      @media only screen and (max-width: 767px) {
        .section-hero-wrapper .hero-container .section-wrapper-content.hero-logo {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-orient: vertical;
          -webkit-box-direction: reverse;
          -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          position: relative;
          padding: 0 21px; } }
      .section-hero-wrapper .hero-container .section-wrapper-content.hero-logo h2 {
        font-size: 1.688em;
        line-height: .703;
        letter-spacing: .035em;
        padding-bottom: 0.370em;
        text-shadow: 0px 0.139em 0px rgba(0, 0, 0, 0.4); }
        @media only screen and (max-width: 767px) {
          .section-hero-wrapper .hero-container .section-wrapper-content.hero-logo h2 {
            font-size: 16px;
            padding-top: 0.370em;
            padding-bottom: 0; } }
      .section-hero-wrapper .hero-container .section-wrapper-content.hero-logo img {
        max-width: 31.625em;
        width: 100%; }
        @media only screen and (max-width: 767px) {
          .section-hero-wrapper .hero-container .section-wrapper-content.hero-logo img {
            max-width: 100%; } }
    .section-hero-wrapper .hero-container .section-wrapper-content.hero-content {
      padding-top: 4.063em; }
      @media only screen and (max-width: 767px) {
        .section-hero-wrapper .hero-container .section-wrapper-content.hero-content {
          padding-top: 35px; } }
      .section-hero-wrapper .hero-container .section-wrapper-content.hero-content.bottom {
        padding-top: 3.222em;
        padding-bottom: 2.889em; }
        @media only screen and (max-width: 767px) {
          .section-hero-wrapper .hero-container .section-wrapper-content.hero-content.bottom {
            padding-top: 0;
            padding-bottom: 0; } }
      @media only screen and (max-width: 767px) {
        .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper {
          padding-top: 0; } }
      .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper ul {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0;
        padding: 0;
        -webkit-perspective: 1000;
        perspective: 1000; }
        @media only screen and (max-width: 767px) {
          .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper ul {
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden; } }
        .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper ul li {
          text-align: center;
          margin-left: 1.250em;
          list-style-type: none;
          letter-spacing: 0.097em;
          font-family: league-gothic, sans-serif;
          position: relative;
          font-size: 1.125em;
          line-height: 1.16;
          text-shadow: 0px 0.12em 0px #000000; }
          @media only screen and (max-width: 767px) {
            .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper ul li {
              font-size: 15px; } }
          .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper ul li:first-child {
            margin-left: 0; }
            .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper ul li:first-child::before {
              display: none; }
          .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper ul li::before {
            content: " ";
            background-color: white;
            height: 5px;
            width: 5px;
            border-radius: 50%;
            position: absolute;
            top: 44%;
            -webkit-transform: translateY(-44%);
            -ms-transform: translateY(-44%);
            transform: translateY(-44%);
            left: -0.813em;
            -webkit-box-shadow: 0px 0.139em 0px #000000;
            box-shadow: 0px 0.139em 0px #000000; }
        .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper ul.cast-desktop {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          @media only screen and (max-width: 767px) {
            .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper ul.cast-desktop {
              display: none; } }
        .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper ul.cast-mobile {
          display: none; }
          @media only screen and (max-width: 767px) {
            .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .cast-wrapper ul.cast-mobile {
              display: -webkit-box;
              display: -ms-flexbox;
              display: flex; } }
      .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .date-container {
        padding-top: 2.813em; }
        @media only screen and (max-width: 767px) {
          .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .date-container {
            padding-top: 38px; } }
        @media only screen and (max-width: 767px) {
          .section-hero-wrapper .hero-container .section-wrapper-content.hero-content .date-container h1 {
            font-size: 30px; } }
      .section-hero-wrapper .hero-container .section-wrapper-content.hero-content h4 {
        font-size: 0.750em;
        line-height: .666;
        letter-spacing: .035em;
        text-shadow: 0px 0.26em 0px rgba(0, 0, 0, 0.4); }
        @media only screen and (max-width: 767px) {
          .section-hero-wrapper .hero-container .section-wrapper-content.hero-content h4 {
            font-size: 12px; } }
      .section-hero-wrapper .hero-container .section-wrapper-content.hero-content h1 {
        padding-top: 0.211em;
        text-shadow: 0px 0.09em 0px rgba(0, 0, 0, 0.4); }
  .section-hero .character-container {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0; }
    .section-hero .character-container img {
      position: absolute;
      width: 100%;
      -o-object-fit: cover;
      object-fit: cover; }
    @media only screen and (max-width: 767px) {
      .section-hero .character-container.character-babo {
        -webkit-transform: translateY(-34em);
        -ms-transform: translateY(-34em);
        transform: translateY(-34em); } }
    .section-hero .character-container.character-babo img {
      max-width: 23.6em;
      z-index: 0;
      top: 9.813em;
      left: 57.8em; }
      @media only screen and (max-width: 767px) {
        .section-hero .character-container.character-babo img {
          max-width: 29.8em;
          z-index: 0;
          top: 0;
          left: 45.8em; } }
    @media only screen and (max-width: 767px) {
      .section-hero .character-container.character-lou {
        -webkit-transform: translateY(-21em);
        -ms-transform: translateY(-21em);
        transform: translateY(-21em); } }
    .section-hero .character-container.character-lou img {
      max-width: 16em;
      z-index: 0;
      top: 21em;
      left: .7em; }
      @media only screen and (max-width: 767px) {
        .section-hero .character-container.character-lou img {
          max-width: 22em;
          z-index: 0;
          top: 0;
          left: 4.063em; } }
    @media only screen and (max-width: 767px) {
      .section-hero .character-container.character-moxy {
        -webkit-transform: translateY(-40em);
        -ms-transform: translateY(-40em);
        transform: translateY(-40em); } }
    .section-hero .character-container.character-moxy img {
      max-width: 15.9em;
      z-index: 1;
      top: 21.5em;
      left: 53em; }
      @media only screen and (max-width: 767px) {
        .section-hero .character-container.character-moxy img {
          max-width: 20.8em;
          z-index: 1;
          left: 42em; } }
    @media only screen and (max-width: 767px) {
      .section-hero .character-container.character-uglydog {
        -webkit-transform: translateY(-14em);
        -ms-transform: translateY(-14em);
        transform: translateY(-14em); } }
    .section-hero .character-container.character-uglydog img {
      max-width: 11.5em;
      z-index: 0;
      top: 26em;
      left: 21.8em; }
      @media only screen and (max-width: 767px) {
        .section-hero .character-container.character-uglydog img {
          max-width: 16.6em;
          z-index: 0;
          top: 0;
          left: 33em; } }
    @media only screen and (max-width: 767px) {
      .section-hero .character-container.character-wage {
        -webkit-transform: translateY(-28em);
        -ms-transform: translateY(-28em);
        transform: translateY(-28em); } }
    .section-hero .character-container.character-wage img {
      max-width: 20.1em;
      z-index: 1;
      top: 15.438em;
      left: 11.1em; }
      @media only screen and (max-width: 767px) {
        .section-hero .character-container.character-wage img {
          max-width: 26.9em;
          z-index: 0;
          top: 0;
          left: 19.1em; } }
    .section-hero .character-container.character-luckybat {
      left: auto;
      right: 0;
      top: 0; }
      @media only screen and (max-width: 767px) {
        .section-hero .character-container.character-luckybat {
          -webkit-transform: translateY(-8px);
          -ms-transform: translateY(-8px);
          transform: translateY(-8px); } }
      .section-hero .character-container.character-luckybat img {
        max-width: 8.313em;
        z-index: 0;
        top: -1.65em;
        left: 60.063em; }
        @media only screen and (max-width: 767px) {
          .section-hero .character-container.character-luckybat img {
            max-width: 10.813em;
            z-index: 0;
            top: -5px;
            left: 41.063em; } }
    @media only screen and (max-width: 767px) {
      .section-hero .character-container.character-ox {
        -webkit-transform: translateY(-13em);
        -ms-transform: translateY(-13em);
        transform: translateY(-13em); } }
    .section-hero .character-container.character-ox img {
      max-width: 12em;
      z-index: 2;
      top: 26.738em;
      left: 4.875em; }
      @media only screen and (max-width: 767px) {
        .section-hero .character-container.character-ox img {
          max-width: 16em;
          z-index: 0;
          top: 0;
          left: 9.875em; } }
    @media only screen and (max-width: 767px) {
      .section-hero .character-container.character-mandy {
        -webkit-transform: translateY(-18em);
        -ms-transform: translateY(-18em);
        transform: translateY(-18em); } }
    .section-hero .character-container.character-mandy img {
      max-width: 15em;
      z-index: 0;
      top: 22em;
      left: 68.063em; }
      @media only screen and (max-width: 767px) {
        .section-hero .character-container.character-mandy img {
          max-width: 20em;
          z-index: 0;
          top: 0;
          left: 59.063em; } }

.scroll-container {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding-bottom: 4.188em;
  text-align: center;
  padding-top: 6.946em; }
  @media only screen and (max-width: 767px) {
    .scroll-container {
      bottom: -10px; } }
  @media only screen and (max-width: 360px) {
    .scroll-container {
      bottom: -11px; } }
  @media only screen and (max-width: 320px) {
    .scroll-container {
      bottom: 80px; } }
  .scroll-container h4 {
    text-shadow: 0px 0.26em 0px rgba(0, 0, 0, 0.4); }
  .scroll-container .scroll-notif {
    font-size: 0.688em;
    line-height: 1.091;
    padding-top: 0; }
    @media only screen and (max-width: 767px) {
      .scroll-container .scroll-notif {
        font-size: 11px; } }
  .scroll-container img {
    width: .850em;
    padding-top: 0.313em; }
    @media only screen and (max-width: 767px) {
      .scroll-container img {
        width: 14px;
        padding-top: 10px; } }

.section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: auto; }
  .section-content.story-bg {
    position: relative;
    background: rgba(0, 0, 0, 0.1) !important;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .section-content.story-bg {
        padding-top: 45px; } }
  .section-content .section-wrapper-header h1 {
    text-shadow: 0px 0.09em 0px rgba(0, 0, 0, 0.4); }
  .section-content .section-wrapper-content {
    padding-top: 2.813em; }
    .section-content .section-wrapper-content.partners {
      padding-top: 8.292em; }
      @media only screen and (max-width: 991px) {
        .section-content .section-wrapper-content.partners {
          font-size: 16px; } }
      @media only screen and (max-width: 767px) {
        .section-content .section-wrapper-content.partners {
          padding-top: 100.67px;
          padding-bottom: 108px;
          font-size: unset; } }
    .section-content .section-wrapper-content.shop {
      padding-top: 3.625em;
      padding-bottom: 7.034em; }
      @media only screen and (max-width: 767px) {
        .section-content .section-wrapper-content.shop {
          padding-top: 81.67px;
          padding-bottom: 85px;
          height: auto; } }
  .section-content .story-wrapper {
    text-align: center;
    padding-top: 5.438em; }
    @media only screen and (max-width: 1024px) and (min-width: 1023px) {
      .section-content .story-wrapper {
        padding-top: 93px; } }
    .section-content .story-wrapper .heading-content h1 {
      text-shadow: 0px 0.09em 0px rgba(0, 0, 0, 0.4); }
    @media only screen and (max-width: 1024px) {
      .section-content .story-wrapper .heading-content {
        font-size: 16px; } }
    .section-content .story-wrapper .story-content-wrapper {
      padding-top: 3.896em; }
      .section-content .story-wrapper .story-content-wrapper .story-intro {
        padding-bottom: 9.806em; }
        .section-content .story-wrapper .story-content-wrapper .story-intro p {
          margin: 0 auto;
          width: 28.000em;
          font-size: 1.313em;
          line-height: 1.47; }
          @media only screen and (max-width: 767px) {
            .section-content .story-wrapper .story-content-wrapper .story-intro p {
              width: auto;
              padding: 0 19px;
              font-size: 18px;
              line-height: 1.33; } }
          @media only screen and (max-width: 1024px) {
            .section-content .story-wrapper .story-content-wrapper .story-intro p {
              width: auto;
              font-size: 18px;
              padding: 0 19px; } }
      .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center; }
          @media only screen and (max-width: 767px) {
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper {
              -webkit-box-orient: vertical;
              -webkit-box-direction: reverse;
              -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }
          @media only screen and (max-width: 1024px) {
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper {
              -webkit-box-orient: vertical;
              -webkit-box-direction: reverse;
              -ms-flex-direction: column-reverse;
              flex-direction: column-reverse; } }
          .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper .content-story {
            text-align: left; }
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper .content-story p {
              width: 32.813em;
              line-height: 2.07; }
              @media only screen and (max-width: 767px) {
                .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper .content-story p {
                  width: auto;
                  padding: 0 19px 25px 19px;
                  line-height: 1.5; } }
              @media only screen and (max-width: 1024px) {
                .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper .content-story p {
                  font-size: 14px;
                  width: auto;
                  padding: 0 19px 25px 19px; } }
          .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper .content-image {
            padding-right: 3.384em; }
            @media only screen and (max-width: 767px) {
              .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper .content-image {
                padding: 0 15px 49.42px 15px; } }
            @media only screen and (max-width: 1024px) {
              .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper .content-image {
                padding: 0 15px 49.42px 15px;
                font-size: 16px; } }
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper .content-image img {
              width: 31.625em; }
              @media only screen and (max-width: 767px) {
                .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.right-image .first-story-wrapper .content-image img {
                  width: 100%; } }
        .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: center;
          -ms-flex-align: center;
          align-items: center;
          -webkit-box-pack: center;
          -ms-flex-pack: center;
          justify-content: center;
          padding-top: 8.466em; }
          @media only screen and (max-width: 767px) {
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper {
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -ms-flex-direction: column;
              flex-direction: column;
              padding-top: 0; } }
          @media only screen and (max-width: 1024px) {
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper {
              -webkit-box-orient: vertical;
              -webkit-box-direction: normal;
              -ms-flex-direction: column;
              flex-direction: column;
              padding-top: 0; } }
          .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper .content-story {
            text-align: left; }
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper .content-story #groupimg-mobile {
              display: none;
              padding-left: 2.938em;
              width: 100%;
              max-width: 36.625em; }
              @media only screen and (max-width: 767px) {
                .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper .content-story #groupimg-mobile {
                  display: block;
                  max-width: none;
                  padding-left: 0; } }
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper .content-story p {
              width: 24.250em;
              line-height: 2.07; }
              @media only screen and (max-width: 767px) {
                .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper .content-story p {
                  padding-left: 0;
                  width: auto;
                  padding: 0 19px;
                  font-size: 14px;
                  line-height: 1.5; } }
              @media only screen and (max-width: 1024px) {
                .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper .content-story p {
                  font-size: 14px;
                  padding-left: 0;
                  width: auto;
                  padding: 0 19px; } }
          @media only screen and (max-width: 767px) {
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper .content-image {
              padding-top: 53px; } }
          @media only screen and (max-width: 991px) {
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper .content-image {
              padding-top: 53px; } }
          .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper .content-image img {
            padding-left: 2.938em;
            width: 36.625em; }
            @media only screen and (max-width: 767px) {
              .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper .content-image img {
                display: none;
                width: 100%; } }
            @media only screen and (max-width: 991px) {
              .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper.left-image .second-story-wrapper .content-image img {
                max-width: none;
                padding-left: 0;
                font-size: 16px; } }
        .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper .third-story-wrapper {
          padding-top: 8.063em; }
          @media only screen and (max-width: 767px) {
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper .third-story-wrapper {
              padding-top: 0;
              margin-top: -20px; } }
          @media only screen and (max-width: 360px) {
            .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper .third-story-wrapper {
              padding-top: 0;
              margin-top: -10px; } }
          .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper .third-story-wrapper p {
            margin: 0 auto;
            width: 46.938em;
            line-height: 2.07;
            letter-spacing: 0.005em; }
            @media only screen and (max-width: 767px) {
              .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper .third-story-wrapper p {
                width: auto;
                padding: 0 19px;
                margin-bottom: 30px;
                font-size: 14px;
                line-height: 1.5;
                text-align: left;
                margin-top: -10px; } }
            @media only screen and (max-width: 1024px) {
              .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper .third-story-wrapper p {
                font-size: 14px;
                width: auto;
                padding: 0 19px; } }
            @media only screen and (max-width: 767px) {
              .section-content .story-wrapper .story-content-wrapper .story-proper-wrapper .third-story-wrapper p:nth-child(3) {
                display: none; } }

.section-trailer-container {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 767px) {
    .section-trailer-container {
      overflow: hidden; } }
  .section-trailer-container .section-wrapper {
    padding: 5.063em 3.250em;
    text-align: center; }
    @media only screen and (max-width: 767px) {
      .section-trailer-container .section-wrapper {
        padding: 69px 15px 80px;
        overflow: hidden; } }
    @media only screen and (max-width: 320px) {
      .section-trailer-container .section-wrapper {
        padding: 0 15px 80px;
        overflow: hidden; } }
    .section-trailer-container .section-wrapper-header {
      padding-bottom: 1.875em; }
      @media only screen and (max-width: 1024px) {
        .section-trailer-container .section-wrapper-header {
          font-size: 16px; } }
      @media only screen and (max-width: 767px) {
        .section-trailer-container .section-wrapper-header {
          padding-bottom: 38px; } }
      @media only screen and (max-width: 767px) {
        .section-trailer-container .section-wrapper-header h1 {
          font-size: 32px; } }
    @media only screen and (max-width: 812px) {
      .section-trailer-container .section-wrapper-characters {
        display: none; } }
    .section-trailer-container .section-wrapper-characters .character-container {
      display: none; }
      .section-trailer-container .section-wrapper-characters .character-container img {
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
        position: absolute; }
      .section-trailer-container .section-wrapper-characters .character-container:first-child img {
        max-width: 13.5em;
        left: 1.5em;
        top: 39.8em;
        -webkit-transform: rotate(-5deg);
        -ms-transform: rotate(-5deg);
        transform: rotate(-5deg); }
    .section-trailer-container .section-wrapper-content {
      text-align: center;
      padding: 1.063em 1em;
      width: 67.313em;
      border: 1px dashed #fff; }
      @media only screen and (max-width: 767px) {
        .section-trailer-container .section-wrapper-content {
          width: 345px;
          height: 210px;
          padding: 3px 3px 3px 3px;
          border: 2px dashed #fff; } }
      @media only screen and (max-width: 360px) {
        .section-trailer-container .section-wrapper-content {
          width: 320px;
          height: 193px; } }
      @media only screen and (max-width: 320px) {
        .section-trailer-container .section-wrapper-content {
          width: 280px;
          height: 169px; } }
      .section-trailer-container .section-wrapper-content .section-trailer-content {
        position: relative;
        overflow: hidden;
        padding-top: 56.25%; }
        @media only screen and (max-width: 767px) {
          .section-trailer-container .section-wrapper-content .section-trailer-content {
            padding-top: 58.5%; } }
        .section-trailer-container .section-wrapper-content .section-trailer-content video {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          border: 0; }

.section-character-container {
  padding: 8.250em 0; }
  @media only screen and (max-width: 767px) {
    .section-character-container {
      padding-bottom: 93px;
      padding-top: 69px; } }
  .section-character-container .section-wrapper-header {
    text-align: center; }
  @media only screen and (max-width: 1024px) {
    .section-character-container .character-carousel {
      font-size: 16px;
      height: 495.02px;
      position: relative; } }
  .section-character-container .character-carousel .center {
    z-index: 30;
    width: 37.500em !important; }
    @media only screen and (max-width: 767px) {
      .section-character-container .character-carousel .center {
        width: 30.500em !important; } }
    @media only screen and (max-width: 767px) {
      .section-character-container .character-carousel .center .item {
        width: 100%;
        opacity: 1;
        padding-bottom: 50px;
        padding-top: 103px; } }
    @media only screen and (max-width: 991px) {
      .section-character-container .character-carousel .center .item {
        width: 100%;
        opacity: 1;
        padding-bottom: 50px;
        padding-top: 103px; } }
    @media only screen and (max-width: 1024px) and (min-width: 1023px) {
      .section-character-container .character-carousel .center .item {
        width: 100%;
        opacity: 1;
        padding-bottom: 50px;
        padding-top: 103px; } }
    @media only screen and (max-width: 767px) {
      .section-character-container .character-carousel .center .item .cc-container {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
    @media only screen and (max-width: 1024px) {
      .section-character-container .character-carousel .center .item .cc-container {
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column; } }
    .section-character-container .character-carousel .center .item .cc-container .cc-character {
      -webkit-transform: scale(2.4);
      -ms-transform: scale(2.4);
      transform: scale(2.4);
      padding-left: 0;
      padding-right: 0;
      width: 8.750em; }
      @media only screen and (max-width: 767px) {
        .section-character-container .character-carousel .center .item .cc-container .cc-character {
          margin: auto; } }
      @media only screen and (max-width: 1024px) {
        .section-character-container .character-carousel .center .item .cc-container .cc-character {
          margin: auto; } }
      .section-character-container .character-carousel .center .item .cc-container .cc-character img {
        opacity: 1; }
        @media only screen and (max-width: 767px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-character img {
            margin: auto; } }
        @media only screen and (max-width: 991px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-character img {
            width: 50% !important; } }
        @media only screen and (max-width: 1024px) and (min-width: 1023px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-character img {
            padding: 16px 0 0 26px; } }
    .section-character-container .character-carousel .center .item .cc-container .cc-copy {
      opacity: 1;
      padding-left: 3em; }
      @media only screen and (max-width: 767px) {
        .section-character-container .character-carousel .center .item .cc-container .cc-copy {
          padding-left: 0;
          margin-top: 96px;
          width: 100% !important;
          text-align: center; } }
      @media only screen and (max-width: 991px) {
        .section-character-container .character-carousel .center .item .cc-container .cc-copy {
          padding-left: 0;
          margin-top: 96px;
          width: 72%;
          text-align: center; } }
      @media only screen and (max-width: 1024px) and (min-width: 1023px) {
        .section-character-container .character-carousel .center .item .cc-container .cc-copy {
          padding-left: 0;
          margin-top: 109px;
          width: 116%;
          text-align: center; } }
      .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-header h3 {
        font-size: 1.750em;
        text-shadow: 0px 0.09em 0px rgba(0, 0, 0, 0.4); }
        @media only screen and (max-width: 767px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-header h3 {
            font-size: 22px; } }
        @media only screen and (max-width: 991px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-header h3 {
            font-size: 22px; } }
        @media only screen and (max-width: 1024px) and (min-width: 1023px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-header h3 {
            font-size: 22px; } }
      .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-header h4 {
        font-size: 0.750em;
        text-shadow: 0px 0.26em 0px rgba(0, 0, 0, 0.4); }
        @media only screen and (max-width: 767px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-header h4 {
            font-size: 12px; } }
        @media only screen and (max-width: 991px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-header h4 {
            font-size: 12px; } }
        @media only screen and (max-width: 1024px) and (min-width: 1023px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-header h4 {
            font-size: 12px; } }
      .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-description p {
        font-size: 0.750em; }
        @media only screen and (max-width: 767px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-description p {
            font-size: 14px;
            width: 335px;
            margin: auto;
            padding: 0 15px; } }
        @media only screen and (max-width: 320px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-description p {
            font-size: 14px;
            width: 335px;
            margin: auto;
            padding: 0 15px; } }
        @media only screen and (max-width: 1024px) {
          .section-character-container .character-carousel .center .item .cc-container .cc-copy .cc-copy-description p {
            font-size: 14px;
            font-size: 14px;
            width: 335px;
            margin: auto;
            padding: 0 15px; } }
  .section-character-container .character-carousel .item {
    width: 30.063em;
    padding: 9.813em 0;
    margin: auto; }
    @media only screen and (max-width: 767px) {
      .section-character-container .character-carousel .item {
        opacity: 0; } }
    @media only screen and (max-width: 991px) {
      .section-character-container .character-carousel .item {
        opacity: 0; } }
    @media only screen and (max-width: 1024px) and (min-width: 1023px) {
      .section-character-container .character-carousel .item {
        opacity: 0; } }
    .section-character-container .character-carousel .item .cc-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
      .section-character-container .character-carousel .item .cc-container .cc-character {
        width: 9.938em;
        -webkit-transform-origin: right center;
        -ms-transform-origin: right center;
        transform-origin: right center;
        -webkit-transition: -webkit-transform .3s ease-in-out;
        transition: -webkit-transform .3s ease-in-out;
        -o-transition: transform .3s ease-in-out;
        transition: transform .3s ease-in-out;
        transition: transform .3s ease-in-out, -webkit-transform .3s ease-in-out;
        padding-left: 2.031em;
        padding-right: 2em; }
        @media only screen and (max-width: 767px) {
          .section-character-container .character-carousel .item .cc-container .cc-character {
            -webkit-transform-origin: center;
            -ms-transform-origin: center;
            transform-origin: center; } }
        @media only screen and (max-width: 1024px) {
          .section-character-container .character-carousel .item .cc-container .cc-character {
            -webkit-transform-origin: center;
            -ms-transform-origin: center;
            transform-origin: center; } }
        .section-character-container .character-carousel .item .cc-container .cc-character img {
          opacity: .5;
          -o-object-fit: cover;
          object-fit: cover;
          width: 100%; }
          @media only screen and (max-width: 1024px) {
            .section-character-container .character-carousel .item .cc-container .cc-character img {
              width: 80%; } }
      .section-character-container .character-carousel .item .cc-container .cc-copy {
        width: 18.063em;
        opacity: 0;
        -webkit-transition: opacity .3s ease-in;
        -o-transition: opacity .3s ease-in;
        transition: opacity .3s ease-in; }
        @media only screen and (max-width: 767px) {
          .section-character-container .character-carousel .item .cc-container .cc-copy {
            -webkit-transition: opacity 0s;
            -o-transition: opacity 0s;
            transition: opacity 0s; } }
        @media only screen and (max-width: 991px) {
          .section-character-container .character-carousel .item .cc-container .cc-copy {
            -webkit-transition: opacity 0s;
            -o-transition: opacity 0s;
            transition: opacity 0s; } }
        @media only screen and (max-width: 1024px) and (min-width: 1023px) {
          .section-character-container .character-carousel .item .cc-container .cc-copy {
            -webkit-transition: opacity 0s;
            -o-transition: opacity 0s;
            transition: opacity 0s; } }
        .section-character-container .character-carousel .item .cc-container .cc-copy .cc-copy-header {
          padding-bottom: 0.913em;
          padding-top: 0.563em; }
          .section-character-container .character-carousel .item .cc-container .cc-copy .cc-copy-header h3 {
            font-size: 1.750em;
            line-height: .89;
            padding-bottom: 0.179em;
            text-shadow: 0px 0.09em 0px rgba(0, 0, 0, 0.4);
            text-transform: uppercase; }
          .section-character-container .character-carousel .item .cc-container .cc-copy .cc-copy-header h4 {
            font-size: 0.750em;
            line-height: .75;
            letter-spacing: .035em;
            font-style: italic;
            text-shadow: 0px 0.09em 0px rgba(0, 0, 0, 0.4);
            text-transform: uppercase; }
        .section-character-container .character-carousel .item .cc-container .cc-copy .cc-copy-description p {
          font-size: 0.750em;
          line-height: 1.75; }
  .section-character-container .owl-dots {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media only screen and (max-width: 991px) {
      .section-character-container .owl-dots {
        position: absolute;
        bottom: -50px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); } }
    .section-character-container .owl-dots .owl-dot {
      background-color: transparent;
      width: 0.625em;
      height: 0.625em;
      border-radius: 50%;
      background-color: white;
      margin-left: 1.500em; }
      .section-character-container .owl-dots .owl-dot:first-child {
        margin-left: 0; }
      .section-character-container .owl-dots .owl-dot.active {
        border: 1px solid white;
        background-color: transparent; }
      @media only screen and (max-width: 767px) {
        .section-character-container .owl-dots .owl-dot {
          width: 7px;
          height: 7px;
          margin-left: 16.85px; } }
  .section-character-container .owl-nav {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    -webkit-box-sizing: initial;
    box-sizing: initial; }
    @media only screen and (max-width: 767px) {
      .section-character-container .owl-nav {
        top: 30%;
        -webkit-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
        transform: translateY(-30%); } }
    .section-character-container .owl-nav img {
      height: 2.625em;
      width: 1.625em; }
    .section-character-container .owl-nav .owl-prev {
      float: left; }
      .section-character-container .owl-nav .owl-prev.show-prev {
        display: block; }
        @media only screen and (max-width: 767px) {
          .section-character-container .owl-nav .owl-prev.show-prev {
            display: block; } }
      .section-character-container .owl-nav .owl-prev img {
        padding-left: 3.250em; }
        @media only screen and (max-width: 767px) {
          .section-character-container .owl-nav .owl-prev img {
            padding-left: 20px; } }
    .section-character-container .owl-nav .owl-next {
      float: right; }
      .section-character-container .owl-nav .owl-next img {
        padding-right: 3.250em; }
        @media only screen and (max-width: 767px) {
          .section-character-container .owl-nav .owl-next img {
            padding-right: 20px; } }

.section-partners-content {
  text-align: center;
  color: #333333; }
  @media only screen and (max-width: 767px) {
    .section-partners-content {
      padding: 0; } }
  .section-partners-content .partner-logo-wrapper {
    padding-bottom: 5.938em;
    width: 53.750em;
    margin: 0 auto; }
    .section-partners-content .partner-logo-wrapper .logo-wrapper {
      display: inline-block;
      padding-top: 3.875em;
      width: 33%; }
      @media only screen and (max-width: 767px) {
        .section-partners-content .partner-logo-wrapper .logo-wrapper {
          width: 100%;
          padding: 60.33px 0 0 0;
          text-align: center; } }
      .section-partners-content .partner-logo-wrapper .logo-wrapper .logo-image-wrapper {
        height: 11.313em;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center; }
        @media only screen and (max-width: 767px) {
          .section-partners-content .partner-logo-wrapper .logo-wrapper .logo-image-wrapper {
            height: auto;
            padding-bottom: 31px; } }
        .section-partners-content .partner-logo-wrapper .logo-wrapper .logo-image-wrapper img {
          width: 100%;
          max-width: 11.063em; }
          @media only screen and (max-width: 767px) {
            .section-partners-content .partner-logo-wrapper .logo-wrapper .logo-image-wrapper img {
              max-width: 177px; } }
      .section-partners-content .partner-logo-wrapper .logo-wrapper p {
        margin: auto;
        width: 15.563em;
        line-height: 1.63; }

#owl-shop {
  position: relative; }
  #owl-shop .owl-item .item-mobile {
    display: none; }
  #owl-shop .owl-item .item .item-container {
    width: 100%;
    height: 25.000em;
    position: relative; }
    @media only screen and (max-width: 767px) {
      #owl-shop .owl-item .item .item-container {
        height: 400px; } }
  #owl-shop .owl-item .item .bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1; }
    @media only screen and (max-width: 767px) {
      #owl-shop .owl-item .item .bg-image {
        display: none; } }
  #owl-shop .owl-item .item .mobile-img {
    display: none; }
    @media only screen and (max-width: 767px) {
      #owl-shop .owl-item .item .mobile-img {
        display: block; } }
  #owl-shop .owl-item .item .bg-overlay {
    background-color: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2; }
  #owl-shop .owl-item .item .carousel-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: inherit;
    height: inherit;
    position: relative;
    z-index: 3; }
    #owl-shop .owl-item .item .carousel-text h1 {
      padding-bottom: 0.393em; }
  #owl-shop .owl-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    transform: translate(-50%, 0); }
    #owl-shop .owl-dots .owl-dot {
      height: 0.563em;
      width: 0.563em;
      border-radius: 50%;
      border: 1px white solid;
      margin: 0 0.456em; }
      @media only screen and (max-width: 767px) {
        #owl-shop .owl-dots .owl-dot {
          height: 7px;
          width: 7px;
          margin: 0 5.25px; } }
      #owl-shop .owl-dots .owl-dot.active {
        background: white; }

@media only screen and (max-width: 991px) {
  .shop-wrapper {
    min-height: 92.625em !important; } }

@media only screen and (max-width: 1024px) {
  .shop-wrapper {
    min-height: 102em; } }

.section-shop-content {
  text-align: center;
  padding: 0 10em;
  color: white; }
  @media only screen and (max-width: 767px) {
    .section-shop-content {
      padding: 0; } }
  .section-shop-content h1 {
    text-shadow: 0px 0.09em 0px rgba(0, 0, 0, 0.4); }
  .section-shop-content .shop-items-wrapper .item-wrapper {
    display: inline-block;
    margin: 3.750em 1.406em 0 1.406em; }
    @media only screen and (max-width: 767px) {
      .section-shop-content .shop-items-wrapper .item-wrapper {
        max-width: initial;
        width: 44%;
        padding-top: 45px;
        margin: 0 7px 0 7px; } }
    @media only screen and (max-width: 767px) {
      .section-shop-content .shop-items-wrapper .item-wrapper img {
        width: 100%; } }
    .section-shop-content .shop-items-wrapper .item-wrapper h3 {
      padding-top: 0.688em;
      font-size: 1.375em; }
      @media only screen and (max-width: 767px) {
        .section-shop-content .shop-items-wrapper .item-wrapper h3 {
          font-size: 14px;
          padding-top: 10px !important; } }
      @media only screen and (min-width: 1367px) {
        .section-shop-content .shop-items-wrapper .item-wrapper h3 {
          font-size: 22px; } }
    .section-shop-content .shop-items-wrapper .item-wrapper h4 {
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        .section-shop-content .shop-items-wrapper .item-wrapper h4 {
          font-size: 14px; } }

.section-content-cast {
  background: rgba(0, 0, 0, 0.1);
  position: relative; }
  .section-content-cast .bottom-cast-wrapper {
    padding-top: 4.688em;
    padding-bottom: 3.438em; }
    @media only screen and (max-width: 767px) {
      .section-content-cast .bottom-cast-wrapper {
        padding-top: 43px;
        padding-bottom: 75px; } }
    .section-content-cast .bottom-cast-wrapper ul {
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin: 0;
      padding: 0;
      -webkit-perspective: 1000;
      perspective: 1000; }
      @media only screen and (max-width: 767px) {
        .section-content-cast .bottom-cast-wrapper ul {
          -webkit-backface-visibility: hidden;
          backface-visibility: hidden; } }
      .section-content-cast .bottom-cast-wrapper ul li {
        text-align: center;
        margin-left: 1.250em;
        list-style-type: none;
        letter-spacing: 0.097em;
        font-family: league-gothic, sans-serif;
        position: relative;
        font-size: 1.125em;
        line-height: 1.16;
        text-shadow: 0px 0.12em 0px #000000; }
        @media only screen and (max-width: 767px) {
          .section-content-cast .bottom-cast-wrapper ul li {
            font-size: 15px; } }
        .section-content-cast .bottom-cast-wrapper ul li.cast-desktop {
          display: inline-block; }
          @media only screen and (max-width: 767px) {
            .section-content-cast .bottom-cast-wrapper ul li.cast-desktop {
              display: none; } }
        .section-content-cast .bottom-cast-wrapper ul li.cast-mobile {
          display: none; }
          @media only screen and (max-width: 767px) {
            .section-content-cast .bottom-cast-wrapper ul li.cast-mobile {
              display: inline-block; } }
        .section-content-cast .bottom-cast-wrapper ul li:first-child {
          margin-left: 0; }
          .section-content-cast .bottom-cast-wrapper ul li:first-child::before {
            display: none; }
        .section-content-cast .bottom-cast-wrapper ul li::before {
          content: " ";
          background-color: white;
          height: 5px;
          width: 5px;
          border-radius: 50%;
          position: absolute;
          top: 44%;
          -webkit-transform: translateY(-44%);
          -ms-transform: translateY(-44%);
          transform: translateY(-44%);
          left: -0.813em;
          -webkit-box-shadow: 0px 0.139em 0px #000000;
          box-shadow: 0px 0.139em 0px #000000; }
      .section-content-cast .bottom-cast-wrapper ul.cast-desktop {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        @media only screen and (max-width: 767px) {
          .section-content-cast .bottom-cast-wrapper ul.cast-desktop {
            display: none; } }
      .section-content-cast .bottom-cast-wrapper ul.cast-mobile {
        display: none; }
        @media only screen and (max-width: 767px) {
          .section-content-cast .bottom-cast-wrapper ul.cast-mobile {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex; } }

.section-two-col .heading-content {
  text-align: center;
  padding-top: 5em; }
  .section-two-col .heading-content h1 {
    margin: 0; }

.section-two-col .col-item:last-child {
  padding-bottom: 7.500em; }

.section-two-col .col-item-wrapper {
  padding-top: 7.500em; }
  .section-two-col .col-item-wrapper.left-character {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .section-two-col .col-item-wrapper.right-character {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .section-two-col .col-item-wrapper .col-img {
    padding: 0 3.750em; }
  .section-two-col .col-item-wrapper .col-content {
    width: 26.250em; }
    .section-two-col .col-item-wrapper .col-content h2 {
      margin-bottom: 0; }
    .section-two-col .col-item-wrapper .col-content h4 {
      margin: 0; }
    .section-two-col .col-item-wrapper .col-content .photos .owl-carousel .character-image {
      margin: 5px; }

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