@charset "UTF-8";
@font-face {
  font-family: "CircularStdBold";
  src: url("../fonts/CircularXXSub-Bold.woff2") format("woff2"), url("../fonts/CircularXXSub-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "ff-good-headline-web-pro-com", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "ff-good-headline-web-pro-con", sans-serif;
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "ff-good-headline-web-pro-con", sans-serif;
  font-weight: 500;
  font-style: normal;
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  line-height: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 1;
}

.hamburger.is-active:hover {
  opacity: 1;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 30px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 2px;
  background-color: #000;
  border-radius: 25px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -9px;
}

.hamburger-inner::after {
  bottom: -9px;
}

/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  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);
}

.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg);
}

.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  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);
}

.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  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);
}

.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg);
}

.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  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);
}

.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  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);
}

.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg);
}

.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  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);
}

.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
  transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, 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;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22);
}

/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1);
}

.hamburger--arrowturn.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1);
}

.hamburger--arrowturn-r.is-active .hamburger-inner::after {
  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 {
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  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);
}

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  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;
  transform: rotate(-90deg);
  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);
}

/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r .hamburger-inner::after {
  top: -20px;
  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 {
  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);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  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;
  transform: rotate(90deg);
  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);
}

/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r .hamburger-inner::before {
  top: 10px;
  transition: opacity 0.125s 0.275s ease;
}

.hamburger--elastic-r .hamburger-inner::after {
  top: 20px;
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s;
}

.hamburger--elastic-r.is-active .hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(270deg);
  transition-delay: 0.075s;
}

/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  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;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  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;
}

.hamburger--emphatic.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -80px;
  top: -80px;
  transform: translate3d(80px, 80px, 0) rotate(45deg);
  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);
}

.hamburger--emphatic.is-active .hamburger-inner::after {
  right: -80px;
  top: -80px;
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  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);
}

/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  transition: background-color 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  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;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  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;
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -80px;
  top: 80px;
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
  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);
}

.hamburger--emphatic-r.is-active .hamburger-inner::after {
  right: -80px;
  top: 80px;
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
  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);
}

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  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;
  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;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner::before {
  top: 10px;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: 0.15s;
}

.hamburger--slider-r .hamburger-inner::after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner::before {
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear;
}

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  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);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  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);
}

.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  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);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  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);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner::before {
  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);
}

.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  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;
  transform: rotate(90deg);
  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);
}

/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}

.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}

.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}

.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}

.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/**
 * Swiper 8.2.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 1, 2022
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d,
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper,
.swiper-3d .swiper-slide,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active,
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev,
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/*
* Skeleton V2.0.4
* Copyright 2014, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 12/29/2014
*/
/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Variables
- Grid
- Base Styles
- Typography
- Links
- Buttons
- Forms
- Lists
- Code
- Tables
- Spacing
- Utilities
- Clearing
- Media Queries
*/
/* Variables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Grid
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.column,
.columns {
  width: 100%;
  float: left;
  box-sizing: border-box;
}

/* For devices larger than 400px */
@media (min-width: 400px) {
  .container {
    width: 85%;
    padding: 0;
  }
}
/* For devices larger than 550px */
@media (min-width: 600px) {
  .container {
    width: 90%;
  }
  .column,
  .columns {
    margin-left: 4%;
  }
  .column:first-child,
  .columns:first-child {
    margin-left: 0;
  }
  .one.column,
  .one.columns {
    width: 4.6666666667%;
  }
  .two.columns {
    width: 13.3333333333%;
  }
  .three.columns {
    width: 22%;
  }
  .four.columns {
    width: 30.6666666667%;
  }
  .five.columns {
    width: 39.3333333333%;
  }
  .six.columns {
    width: 48%;
  }
  .seven.columns {
    width: 56.6666666667%;
  }
  .eight.columns {
    width: 65.3333333333%;
  }
  .nine.columns {
    width: 74%;
  }
  .ten.columns {
    width: 82.6666666667%;
  }
  .eleven.columns {
    width: 91.3333333333%;
  }
  .twelve.columns {
    width: 100%;
    margin-left: 0;
  }
  .one-third.column {
    width: 30.6666666667%;
  }
  .two-thirds.column {
    width: 65.3333333333%;
  }
  .one-half.column {
    width: 48%;
  }
  /* Offsets */
  .offset-by-one.column,
  .offset-by-one.columns {
    margin-left: 8.6666666667%;
  }
  .offset-by-two.column,
  .offset-by-two.columns {
    margin-left: 17.3333333333%;
  }
  .offset-by-three.column,
  .offset-by-three.columns {
    margin-left: 26%;
  }
  .offset-by-four.column,
  .offset-by-four.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-five.column,
  .offset-by-five.columns {
    margin-left: 43.3333333333%;
  }
  .offset-by-six.column,
  .offset-by-six.columns {
    margin-left: 52%;
  }
  .offset-by-seven.column,
  .offset-by-seven.columns {
    margin-left: 60.6666666667%;
  }
  .offset-by-eight.column,
  .offset-by-eight.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-nine.column,
  .offset-by-nine.columns {
    margin-left: 78%;
  }
  .offset-by-ten.column,
  .offset-by-ten.columns {
    margin-left: 86.6666666667%;
  }
  .offset-by-eleven.column,
  .offset-by-eleven.columns {
    margin-left: 95.3333333333%;
  }
  .offset-by-one-third.column,
  .offset-by-one-third.columns {
    margin-left: 34.6666666667%;
  }
  .offset-by-two-thirds.column,
  .offset-by-two-thirds.columns {
    margin-left: 69.3333333333%;
  }
  .offset-by-one-half.column,
  .offset-by-one-half.columns {
    margin-left: 52%;
  }
}
/* Base Styles
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* NOTE
html is set to 62.5% so that all the REM measurements throughout Skeleton
are based on 10px sizing. So basically 1.5rem = 15px :) */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.5em; /* currently ems cause chrome bug misinterpreting rems on body element */
  line-height: 1.6;
  font-weight: 400;
  font-family: "Raleway", "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #222;
}

/* Typography
–––––––––––––––––––––––––––––––––––––––––––––––––– */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 2rem;
  font-weight: 300;
}

h1 {
  font-size: 4rem;
  line-height: 1.2;
  letter-spacing: -0.1rem;
}

h2 {
  font-size: 3.6rem;
  line-height: 1.25;
  letter-spacing: -0.1rem;
}

h3 {
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: -0.1rem;
}

h4 {
  font-size: 2.4rem;
  line-height: 1.35;
  letter-spacing: -0.08rem;
}

h5 {
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: -0.05rem;
}

h6 {
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: 0;
}

/* Larger than phablet */
@media (min-width: 550px) {
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 4.2rem;
  }
  h3 {
    font-size: 3.6rem;
  }
  h4 {
    font-size: 3rem;
  }
  h5 {
    font-size: 2.4rem;
  }
  h6 {
    font-size: 1.5rem;
  }
}
p {
  margin-top: 0;
}

/* Links
–––––––––––––––––––––––––––––––––––––––––––––––––– */
a {
  color: #1EAEDB;
}

a:hover {
  color: #0FA0CE;
}

/* Buttons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.button,
button,
input[type=submit],
input[type=reset],
input[type=button] {
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
}

.button:hover,
button:hover,
input[type=submit]:hover,
input[type=reset]:hover,
input[type=button]:hover,
.button:focus,
button:focus,
input[type=submit]:focus,
input[type=reset]:focus,
input[type=button]:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}

.button.button-primary,
button.button-primary,
input[type=submit].button-primary,
input[type=reset].button-primary,
input[type=button].button-primary {
  color: #FFF;
  background-color: #33C3F0;
  border-color: #33C3F0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type=submit].button-primary:hover,
input[type=reset].button-primary:hover,
input[type=button].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type=submit].button-primary:focus,
input[type=reset].button-primary:focus,
input[type=button].button-primary:focus {
  color: #FFF;
  background-color: #1EAEDB;
  border-color: #1EAEDB;
}

/* Forms
–––––––––––––––––––––––––––––––––––––––––––––––––– */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea,
select {
  height: 38px;
  padding: 6px 10px; /* The 6px vertically centers text on FF, ignored by Webkit */
  background-color: #fff;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-shadow: none;
  box-sizing: border-box;
}

/* Removes awkward default styles on some inputs for iOS */
input[type=email],
input[type=number],
input[type=search],
input[type=text],
input[type=tel],
input[type=url],
input[type=password],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

textarea {
  min-height: 65px;
  padding-top: 6px;
  padding-bottom: 6px;
}

input[type=email]:focus,
input[type=number]:focus,
input[type=search]:focus,
input[type=text]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
  border: 1px solid #33C3F0;
  outline: 0;
}

label,
legend {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

fieldset {
  padding: 0;
  border-width: 0;
}

input[type=checkbox],
input[type=radio] {
  display: inline;
}

label > .label-body {
  display: inline-block;
  margin-left: 0.5rem;
  font-weight: normal;
}

/* Lists
–––––––––––––––––––––––––––––––––––––––––––––––––– */
ul {
  list-style: circle inside;
}

ol {
  list-style: decimal inside;
}

ol, ul {
  padding-left: 0;
  margin-top: 0;
}

ul ul,
ul ol,
ol ol,
ol ul {
  margin: 1.5rem 0 1.5rem 3rem;
}

li {
  margin-bottom: 1rem;
}

/* Code
–––––––––––––––––––––––––––––––––––––––––––––––––– */
code {
  padding: 0.2rem 0.5rem;
  margin: 0 0.2rem;
  font-size: 90%;
  white-space: nowrap;
  background: #F1F1F1;
  border: 1px solid #E1E1E1;
  border-radius: 4px;
}

pre > code {
  display: block;
  padding: 1rem 1.5rem;
  white-space: pre;
}

/* Tables
–––––––––––––––––––––––––––––––––––––––––––––––––– */
th,
td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #E1E1E1;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th:last-child,
td:last-child {
  padding-right: 0;
}

/* Spacing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
button,
.button {
  margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
  margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
  margin-bottom: 2.5rem;
}

figcaption {
  margin: 15px 40px 25px 40px;
}

/* Utilities
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.u-full-width {
  width: 100%;
  box-sizing: border-box;
}

.u-max-full-width {
  max-width: 100%;
  box-sizing: border-box;
}

.u-pull-right {
  float: right;
}

.u-pull-left {
  float: left;
}

/* Misc
–––––––––––––––––––––––––––––––––––––––––––––––––– */
hr {
  margin-top: 3rem;
  margin-bottom: 3.5rem;
  border-width: 0;
  border-top: 1px solid #E1E1E1;
}

/* Clearing
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
  content: "";
  display: table;
  clear: both;
}

/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/
/* Larger than mobile */
@media (min-width: 400px) {
  .container {
    width: 360px;
  }
}
/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
  .container {
    width: 510px;
  }
}
/* Larger than tablet */
@media (min-width: 768px) {
  .container {
    width: 670px;
  }
}
/* Larger than desktop */
@media (min-width: 1000px) {
  .container {
    width: 920px;
  }
}
/* Larger than Desktop HD */
@media (min-width: 1200px) {
  .container {
    width: 1120px;
  }
}
/* Larger than Desktop HD */
@media (min-width: 1600px) {
  .container {
    width: 1520px;
  }
}
/* Lima Charlie addons
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.container {
  width: 100%;
  max-width: 100%;
  /* Larger than Desktop HD */
  /* Larger than Desktop HD */
}
@media (min-width: 0px) and (max-width: 999px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 359px) {
  .container {
    padding: 0 30px;
  }
}
@media (max-width: 599px) {
  .container {
    padding: 0;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 1580px;
    max-width: 1240px;
  }
}
@media (min-width: 1440px) {
  .container {
    width: 1850px;
    max-width: 1800px;
  }
}
.container.small {
  max-width: 920px;
}
.container.large {
  max-width: 1580px;
  /* Larger than Desktop HD */
  /* Larger than Desktop HD */
}
@media (min-width: 1440px) {
  .container.large {
    width: 1380px;
  }
}
@media (min-width: 1620px) {
  .container.large {
    width: 1560px;
  }
}
.container.larger {
  max-width: 1800px;
  /* Larger than Desktop HD */
  /* Larger than Desktop HD */
  /* Larger than Desktop HD */
}
@media (min-width: 1440px) {
  .container.larger {
    width: 1380px;
  }
}
@media (min-width: 1620px) {
  .container.larger {
    width: 1560px;
  }
}
@media (min-width: 1840px) {
  .container.larger {
    width: 1780px;
  }
}
@media (max-width: 599px) {
  .container.full-width-mobile {
    width: 100%;
    max-width: 100%;
    padding: 0px;
  }
}
.container.full-width {
  width: 100%;
  box-sizing: border-box;
  max-width: 100%;
  padding: 0px;
  margin: 0px;
}
.container.full-width-limit {
  width: 100%;
  box-sizing: border-box;
  max-width: 1240px;
  padding: 0px;
  margin: 0px auto;
}
.container.full-width-limit.large {
  max-width: 1580px;
}
.container.full-width-limit.larger {
  max-width: 1800px;
}

.vertical-middle {
  vertical-align: middle;
}

@media (min-width: 550px) {
  .one-fifth.columns {
    width: 19%;
    margin: 0 0.5%;
  }
  .container.no-margin .column,
  .container.no-margin .columns {
    margin-left: 0%;
  }
  .container.no-margin .column:first-child,
  .container.no-margin .columns:first-child {
    margin-left: 0;
  }
  .container.no-margin .one.column,
  .container.no-margin .one.columns {
    width: 8.3333333333%;
  }
  .container.no-margin .two.columns {
    width: 16.6666666667%;
  }
  .container.no-margin .three.columns {
    width: 25%;
  }
  .container.no-margin .four.columns {
    width: 33.3333333333%;
  }
  .container.no-margin .five.columns {
    width: 41.6666666667%;
  }
  .container.no-margin .six.columns {
    width: 50%;
  }
  .container.no-margin .seven.columns {
    width: 58.3333333333%;
  }
  .container.no-margin .eight.columns {
    width: 66.6666666667%;
  }
  .container.no-margin .nine.columns {
    width: 75%;
  }
  .container.no-margin .ten.columns {
    width: 83.3333333333%;
  }
  .container.no-margin .eleven.columns {
    width: 91.6666666667%;
  }
  .container.no-margin .twelve.columns {
    width: 100%;
  }
  .container.no-margin .one-third.column {
    width: 33.3333333333%;
  }
  .container.no-margin .two-thirds.column {
    width: 66.6666666667%;
  }
  .container.no-margin .one-half.column {
    width: 50%;
  }
}
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.6.0
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2018 Daniel Eden
 */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 50px, 0);
    transform: translate3d(0, 50px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.0075em !important;
}
*.centered {
  text-align: center;
}

html, body {
  font-family: "ff-good-headline-web-pro-con", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #084CBC;
  color: #FFF !important;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow-x: hidden;
}
body.disable-scroll {
  position: fixed;
  height: 100%;
  width: 100%;
  overflow: hidden;
}
body:not(.ready), body:not(.ready) * {
  transition: none !important;
}

#main:not(main[data-barba-namespace=privacy-policy]) {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
#main:not(main[data-barba-namespace=privacy-policy]) h1, #main:not(main[data-barba-namespace=privacy-policy]) h2, #main:not(main[data-barba-namespace=privacy-policy]) h3, #main:not(main[data-barba-namespace=privacy-policy]) h4, #main:not(main[data-barba-namespace=privacy-policy]) h5, #main:not(main[data-barba-namespace=privacy-policy]) h6 {
  font-weight: normal;
  text-transform: uppercase;
  line-height: 0.9;
}
#main:not(main[data-barba-namespace=privacy-policy]) h1, #main:not(main[data-barba-namespace=privacy-policy]) h2 {
  margin-bottom: 25px;
  line-height: 1.2;
  width: 100%;
}
#main:not(main[data-barba-namespace=privacy-policy]) h1 {
  font-weight: bold;
  font-size: 150px;
}
@media (max-width: 1649px) {
  #main:not(main[data-barba-namespace=privacy-policy]) h1 {
    font-size: 100px;
  }
}
@media (max-width: 767px) {
  #main:not(main[data-barba-namespace=privacy-policy]) h1 {
    font-size: 56px;
  }
}
#main:not(main[data-barba-namespace=privacy-policy]) h2 {
  font-weight: normal;
  font-size: 100px;
  line-height: 90%;
}
@media (max-width: 1649px) {
  #main:not(main[data-barba-namespace=privacy-policy]) h2 {
    font-size: 84px;
  }
}
@media (max-width: 767px) {
  #main:not(main[data-barba-namespace=privacy-policy]) h2 {
    font-size: 84px;
  }
}
@media (max-width: 1199px) {
  #main:not(main[data-barba-namespace=privacy-policy]) h2 {
    font-size: 86px;
  }
}
@media (max-width: 999px) {
  #main:not(main[data-barba-namespace=privacy-policy]) h2 {
    font-size: 80px;
  }
}
@media (max-width: 599px) {
  #main:not(main[data-barba-namespace=privacy-policy]) h2 {
    font-size: 60px;
  }
}
#main:not(main[data-barba-namespace=privacy-policy]) h3 {
  margin-bottom: 5px;
  line-height: 1.2;
  font-weight: bold;
  font-size: 55px;
  color: #051C39;
}
@media (max-width: 1649px) {
  #main:not(main[data-barba-namespace=privacy-policy]) h3 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  #main:not(main[data-barba-namespace=privacy-policy]) h3 {
    font-size: 28px;
  }
}
#main:not(main[data-barba-namespace=privacy-policy]) h4 {
  margin-bottom: 15px;
  line-height: 1.2;
  font-size: 50px;
}
@media (max-width: 1649px) {
  #main:not(main[data-barba-namespace=privacy-policy]) h4 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  #main:not(main[data-barba-namespace=privacy-policy]) h4 {
    font-size: 26px;
  }
}
#main:not(main[data-barba-namespace=privacy-policy]) p {
  margin-bottom: 25px;
  line-height: 1.4;
}
#main:not(main[data-barba-namespace=privacy-policy]) ol li {
  margin-bottom: 0;
}
#main:not(main[data-barba-namespace=privacy-policy]) ul {
  list-style-position: inside;
}
#main:not(main[data-barba-namespace=privacy-policy]) ul li {
  margin-bottom: 0;
}
@media (max-width: 599px) {
  #main:not(main[data-barba-namespace=privacy-policy]) blockquote,
  #main:not(main[data-barba-namespace=privacy-policy]) figcaption,
  #main:not(main[data-barba-namespace=privacy-policy]) figure {
    margin-left: 0;
    margin-right: 0;
  }
}

.in-view {
  visibility: hidden;
}

.grecaptcha-badge {
  visibility: hidden;
}

h1.hidden {
  display: none;
}

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

figcaption {
  text-align: center;
}

hr {
  margin: 20px 0;
  border-top: 1px solid #000 !important;
}

a:not(.cta-button):not(.icon):not(.download) {
  color: #1E2021;
  text-decoration: none;
  -webkit-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: color 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
a:not(.cta-button):not(.icon):not(.download):hover {
  color: #7DAA95;
}

a.sous-chapitre {
  display: list-item;
  margin-left: 20px;
  width: 100%;
}

.modal {
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  position: fixed;
  z-index: 15;
  display: none;
}

.modal-share {
  background-color: #FFF;
  position: fixed;
  width: 650px;
  height: 400px;
  z-index: 25;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: rgba(0, 0, 0, 0.33) 0px 5px 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  display: none;
}
@media (max-width: 767px) {
  .modal-share {
    width: 550px;
    height: 350px;
  }
}
@media (max-width: 599px) {
  .modal-share {
    width: 250px;
    height: 380px;
  }
}
.modal-share > span {
  font-weight: bold;
  font-size: 55px;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 1.2;
  color: #051C39;
  padding-bottom: 25px;
}
@media (max-width: 1649px) {
  .modal-share > span {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  .modal-share > span {
    font-size: 28px;
  }
}
@media (max-width: 599px) {
  .modal-share > span {
    font-size: 40px !important;
  }
}
@media (max-width: 599px) {
  .modal-share .buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 599px) {
  .modal-share .buttons a[class^=a2a_button] {
    margin: 0;
  }
}

div.download a.download {
  background-color: #051C39;
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  color: #FFF;
  min-width: 95px;
  text-align: center;
  padding: 9px 23px;
  border: none;
  height: 55px;
  display: flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  position: relative;
  font-size: 17px;
  line-height: normal;
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  padding: 0 75px 0 30px;
}
div.download a.download:active {
  opacity: 0.5;
}
@media (max-width: 999px) {
  div.download a.download:active {
    opacity: 1;
  }
}
div.download a.download:hover {
  opacity: 0.5;
}
@media (max-width: 999px) {
  div.download a.download:hover {
    opacity: 1;
  }
}
div.download a.download.uppercase {
  text-transform: uppercase;
}
@media (max-width: 359px) {
  div.download a.download {
    font-size: 15px;
    padding: 0 50px 0 15px;
  }
}
div.download a.download::before {
  content: "";
  background: url("../images/icons/download.svg") no-repeat center;
  width: 20px;
  height: 100%;
  position: absolute;
  right: 35px;
  top: 0;
}
@media (max-width: 359px) {
  div.download a.download::before {
    right: 15px;
  }
}
div.download .icon {
  border-radius: unset;
  background-color: #051C39;
  margin-left: 10px;
  min-width: 55px;
  height: 55px;
  cursor: pointer;
  margin-right: 0;
}
div.download .icon > span {
  background-color: transparent !important;
}

div.download-icon {
  background-color: #051C39;
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
div.download-icon:hover {
  opacity: 0.5;
}
@media (max-width: 999px) {
  div.download-icon:hover {
    opacity: 1;
  }
}
div.download-icon a.download {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
div.download-icon a.download img {
  width: 18px;
}
div.download-icon .icon {
  border-radius: unset;
  background-color: #051C39;
  margin-left: 10px;
  min-width: 55px;
  height: 55px;
  cursor: pointer;
  margin-right: 0;
}
div.download-icon .icon > span {
  background-color: transparent !important;
}

@media (max-width: 767px) {
  .hide-on-phablet {
    display: none;
  }
}

.icon {
  background-color: #868686;
  width: 45px;
  height: 45px;
  display: block;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.icon > span {
  background-color: transparent !important;
}
.icon:hover {
  opacity: 0.5;
}
@media (max-width: 999px) {
  .icon:hover {
    opacity: 1;
  }
}
.icon img {
  width: 25px;
  height: 25px;
}

.website img {
  width: 25px;
  height: 25px;
}

a.cta-button {
  background-color: #051C39;
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  color: #FFF;
  min-width: 95px;
  text-align: center;
  padding: 9px 23px;
  border: none;
  height: 55px;
  display: flex;
  align-items: center;
  width: fit-content;
  text-decoration: none;
  position: relative;
  font-size: 17px;
  line-height: normal;
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
a.cta-button:active {
  opacity: 0.5;
}
@media (max-width: 999px) {
  a.cta-button:active {
    opacity: 1;
  }
}
a.cta-button:hover {
  opacity: 0.5;
}
@media (max-width: 999px) {
  a.cta-button:hover {
    opacity: 1;
  }
}
a.cta-button.uppercase {
  text-transform: uppercase;
}
a.cta-button.disabled {
  pointer-events: none;
  opacity: 0.2;
}

.lds-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-block;
  width: 80px;
  height: 80px;
  z-index: 10;
  -webkit-transform: translate(-50%, calc(-50% - 45px));
  -ms-transform: translate(-50%, calc(-50% - 45px));
  transform: translate(-50%, calc(-50% - 45px));
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 64px;
  height: 64px;
  margin: 8px;
  border: 8px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#header {
  width: 100%;
  height: 165px;
  z-index: 20;
  margin: 60px 0 0;
  position: absolute;
}
@media (max-width: 1919px) {
  #header {
    margin-top: 30px;
  }
}
@media (max-width: 999px) {
  #header {
    height: 180px;
    margin-top: 0;
  }
}
#header > .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 0 30px;
  width: 100%;
}
@media (max-width: 1799px) {
  #header > .container {
    padding: 0 50px;
  }
}
#header > .container:after {
  display: none;
}
#header .site-logo {
  display: flex;
  align-items: center;
  height: 100%;
}
@media (max-width: 999px) {
  #header .site-logo {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
}
#header .site-logo a {
  line-height: 0;
  margin-left: 5px;
}
#header .site-logo a > img {
  width: 134px;
}
@media (max-width: 1649px) {
  #header .site-logo a > img {
    width: 97px;
  }
}
#header .site-logo h1 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  margin-bottom: 0;
}
#header .home-link {
  margin-left: auto;
  margin-right: 20px;
}
@media (max-width: 999px) {
  #header .home-link {
    position: absolute;
    top: 65px;
    left: 20px;
  }
}
#header .home-link a {
  height: 55px;
  width: 195px;
  background-color: #051C39;
  border-radius: unset;
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  padding: 6px 70px 6px 30px;
  display: flex;
  align-items: center;
  color: #FFF !important;
  font-size: 17px;
  margin-left: auto;
  position: relative;
  transition: opacity 0.3s ease;
}
#header .home-link a:hover {
  opacity: 0.5;
  color: #FFF;
}
@media (max-width: 999px) {
  #header .home-link a:hover {
    opacity: 1;
  }
}
@media (max-width: 1649px) {
  #header .home-link a {
    height: 50px;
    font-size: 15px;
    width: 175px;
  }
}
@media (max-width: 999px) {
  #header .home-link a {
    width: 50px;
    padding-right: 0;
    font-size: 0;
  }
}
#header .home-link a:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 1;
  width: 28px;
  height: 28px;
  background-image: url("../images/icons/website2.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media (max-width: 1649px) {
  #header .home-link a:before {
    width: 25px;
    height: 25px;
  }
}
@media (max-width: 999px) {
  #header .home-link a:before {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
#header .language-switcher-container {
  position: relative;
  transition: opacity 0.3s ease;
}
#header .language-switcher-container:hover {
  opacity: 0.5;
  color: #FFF;
}
@media (max-width: 999px) {
  #header .language-switcher-container:hover {
    opacity: 1;
  }
}
@media (max-width: 999px) {
  #header .language-switcher-container {
    position: absolute;
    top: 65px;
    right: 20px;
  }
}
#header .language-switcher-container:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  z-index: 1;
  width: 24px;
  height: 22px;
  background-image: url("../images/icons/translation.svg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}
@media (max-width: 999px) {
  #header .language-switcher-container:before {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
#header #language-switcher {
  height: 55px;
  background-color: #051C39;
  border-radius: unset;
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  padding-right: 60px;
  width: 195px;
  font-size: 17px;
  cursor: pointer;
}
@media (max-width: 1649px) {
  #header #language-switcher {
    height: 50px;
    font-size: 15px;
    width: 175px;
  }
}
@media (max-width: 999px) {
  #header #language-switcher {
    width: 50px;
    height: 50px;
    padding: 0;
    font-size: 0;
  }
}
#header #language-switcher option {
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  font-size: 17px;
}

body:not([data-barba-namespace=home]):not([data-barba-namespace=error]):not([data-barba-namespace=not-found]) #header.fixed {
  height: 100px;
  margin: 0;
  background: #084CBC url("../images/pattern.svg") no-repeat center 15%;
  background-size: 145%;
  box-shadow: rgba(0, 0, 0, 0.33) 0px 5px 10px;
  max-width: 100vw;
  position: fixed;
}
@media (max-width: 999px) {
  body:not([data-barba-namespace=home]):not([data-barba-namespace=error]):not([data-barba-namespace=not-found]) #header.fixed {
    background-size: 400%;
    background-position: 60% 23%;
    height: 100px;
  }
}
body:not([data-barba-namespace=home]):not([data-barba-namespace=error]):not([data-barba-namespace=not-found]) #header.fixed > .container {
  align-items: center;
}
@media (max-width: 999px) {
  body:not([data-barba-namespace=home]):not([data-barba-namespace=error]):not([data-barba-namespace=not-found]) #header.fixed > .container {
    padding: 30px 20px;
  }
}
@media (max-width: 999px) {
  body:not([data-barba-namespace=home]):not([data-barba-namespace=error]):not([data-barba-namespace=not-found]) #header.fixed > .container .site-logo {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
  }
}
@media (max-width: 999px) {
  body:not([data-barba-namespace=home]):not([data-barba-namespace=error]):not([data-barba-namespace=not-found]) #header.fixed > .container .site-logo a {
    height: 100%;
    display: flex;
    align-items: center;
  }
}
body:not([data-barba-namespace=home]):not([data-barba-namespace=error]):not([data-barba-namespace=not-found]) #header.fixed > .container .site-logo a > img {
  width: 65px;
}
@media (max-width: 999px) {
  body:not([data-barba-namespace=home]):not([data-barba-namespace=error]):not([data-barba-namespace=not-found]) #header.fixed > .container .site-logo a > img {
    width: 55px;
  }
}
@media (max-width: 999px) {
  body:not([data-barba-namespace=home]):not([data-barba-namespace=error]):not([data-barba-namespace=not-found]) #header.fixed > .container .site-logo h1 {
    margin-bottom: 0;
  }
}
@media (max-width: 999px) {
  body:not([data-barba-namespace=home]):not([data-barba-namespace=error]):not([data-barba-namespace=not-found]) #header.fixed > .container .language-switcher-container {
    top: 25px;
  }
}
body:not([data-barba-namespace=home]):not([data-barba-namespace=error]):not([data-barba-namespace=not-found]) .home-link {
  display: none;
}

#footer {
  color: #FFF;
  background: #084CBC;
  padding: 200px 0 0;
}
@media (max-width: 999px) {
  #footer {
    padding: 150px 0 0;
  }
}
#footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 55%;
  text-align: center;
}
@media (max-width: 999px) {
  #footer .container {
    max-width: 85%;
  }
}
#footer .container p {
  margin-top: 60px;
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  font-size: 18px;
  line-height: 18px;
  margin-bottom: 0;
}
#footer .policy {
  background-color: #FFF;
  height: 80px;
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 35px;
}
#footer .policy p {
  color: #051C39;
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  margin-bottom: 0 !important;
}
#footer .policy a {
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  font-size: 16px;
  text-decoration: underline;
  transition: opacity 0.3s ease;
  color: #051C39;
}
#footer .policy a:hover {
  opacity: 0.5;
}
@media (max-width: 999px) {
  #footer .policy a:hover {
    opacity: 1;
  }
}

select {
  margin: 0;
}
select#language-switcher {
  position: relative;
  color: #FFF;
  border: none;
  border-radius: 25px;
  padding-left: 40px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media (max-width: 359px) {
  select#language-switcher {
    padding-left: 25px;
  }
}

input[type=text], input[type=submit], button[type=submit] {
  border-radius: unset;
  font-size: 25px;
  height: 58px;
}
@media (max-width: 1649px) {
  input[type=text], input[type=submit], button[type=submit] {
    height: 50px;
    font-size: 22px;
  }
}
@media (max-width: 599px) {
  input[type=text], input[type=submit], button[type=submit] {
    height: 58px;
    font-size: 25px;
    width: 90%;
  }
}

input[type=submit], button[type=submit] {
  background-color: #051C39;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.36) 0px 3px 6px;
  color: #FFF;
  text-transform: none;
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  margin-left: 10px;
  line-height: 25px;
}
@media (max-width: 599px) {
  input[type=submit], button[type=submit] {
    margin-left: 0;
  }
}

.a2a_overlay {
  backdrop-filter: unset !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.a2a_mini {
  border-radius: 25px !important;
  padding: 20px 10px 10px !important;
  border: none !important;
  box-shadow: -2px -2px 20px 0px #878787;
}
.a2a_mini a.a2a_localize {
  padding: 10px 0 5px;
  margin-top: 10px;
  justify-content: center;
}

.a2a_menu_find_container, .a2a_full_header {
  display: none;
}

.a2a_full_services {
  display: flex;
  justify-content: center;
  align-items: center;
}

.a2a_full {
  background-color: #FFF;
  width: 650px !important;
  height: 400px !important;
  border-radius: 0 !important;
  border: none !important;
  top: 50% !important;
  transform: translate(-50%, -50%) !important;
  box-shadow: rgba(0, 0, 0, 0.33) 0px 5px 10px;
  margin-left: 0 !important;
}
.a2a_full .a2a_full_services {
  overflow: hidden;
}
.a2a_full .a2a_full_services > a {
  width: 55px;
  height: 55px;
  background-color: #051C39;
  margin: 0 10px;
  padding: 0 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0;
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.a2a_full .a2a_full_services > a span {
  background-color: transparent !important;
  width: 32px;
  height: 32px;
  margin: 0;
}
.a2a_full .a2a_full_services > a:hover, .a2a_full .a2a_full_services > a:active, .a2a_full .a2a_full_services > a:focus {
  opacity: 0.5 !important;
  background-color: #051C39;
}
@media (max-width: 999px) {
  .a2a_full .a2a_full_services > a:hover {
    opacity: 1;
  }
}
.a2a_full .a2a_full_services i.a2a_i {
  display: none;
}
.a2a_full .a2a_full_footer {
  display: none;
}

body[data-barba-namespace=home] {
  background-color: #084CBC;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}
@media (max-width: 599px) {
  body[data-barba-namespace=home] {
    min-height: calc(100% - 165px);
  }
}
body[data-barba-namespace=home]::before {
  content: "";
  background: url("../images/pattern.svg") no-repeat center;
  background-size: 100% auto;
  position: absolute;
  width: 145%;
  height: 100%;
  top: 0;
  right: -115px;
}
@media (max-width: 999px) {
  body[data-barba-namespace=home]::before {
    background-size: 150%;
    right: 0;
    top: 0;
  }
}
@media (max-width: 599px) {
  body[data-barba-namespace=home]::before {
    background-size: 280%;
    background-position: right;
  }
}
body[data-barba-namespace=home] main {
  position: relative;
  margin-top: 165px;
}
@media (max-width: 599px) {
  body[data-barba-namespace=home] main {
    margin-top: 200px;
  }
}
body[data-barba-namespace=home] #home-page {
  padding-bottom: 80px;
}
body[data-barba-namespace=home] #home-page img.viewprint-logo {
  width: 590px;
  max-width: 590px;
  margin: auto;
  display: block;
}
@media (max-width: 1799px) {
  body[data-barba-namespace=home] #home-page img.viewprint-logo {
    max-width: 85%;
  }
}
@media (max-width: 599px) {
  body[data-barba-namespace=home] #home-page img.viewprint-logo {
    width: 380px;
    margin-bottom: 40px;
  }
}
body[data-barba-namespace=home] #home-page #get-ticket-form {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-direction: column;
  align-items: center;
  max-width: 400px;
  margin: auto;
}
body[data-barba-namespace=home] #home-page #get-ticket-form input, body[data-barba-namespace=home] #home-page #get-ticket-form button, body[data-barba-namespace=home] #home-page #get-ticket-form label {
  margin: 0 0 10px 0;
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  line-height: normal;
  font-size: 18px;
}
@media (max-width: 999px) {
  body[data-barba-namespace=home] #home-page #get-ticket-form input, body[data-barba-namespace=home] #home-page #get-ticket-form button, body[data-barba-namespace=home] #home-page #get-ticket-form label {
    font-size: 16px;
  }
}
@media (max-width: 599px) {
  body[data-barba-namespace=home] #home-page #get-ticket-form input, body[data-barba-namespace=home] #home-page #get-ticket-form button, body[data-barba-namespace=home] #home-page #get-ticket-form label {
    font-size: 14px;
  }
}
@media (max-width: 999px) {
  body[data-barba-namespace=home] #home-page #get-ticket-form .ticket-group {
    width: 90%;
  }
}
body[data-barba-namespace=home] #home-page #get-ticket-form input[type=text] {
  width: 400px;
}
@media (max-width: 999px) {
  body[data-barba-namespace=home] #home-page #get-ticket-form input[type=text] {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
body[data-barba-namespace=home] #home-page #get-ticket-form input[type=text]::placeholder {
  text-align: center;
}
body[data-barba-namespace=home] #home-page #get-ticket-form button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  transition: opacity 0.3s ease;
  position: relative;
  font-size: 25px;
}
body[data-barba-namespace=home] #home-page #get-ticket-form button:hover {
  opacity: 0.5;
}
@media (max-width: 999px) {
  body[data-barba-namespace=home] #home-page #get-ticket-form button:hover {
    opacity: 1;
  }
}
@media (max-width: 999px) {
  body[data-barba-namespace=home] #home-page #get-ticket-form button {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 50px;
  }
}
body[data-barba-namespace=home] #home-page #get-ticket-form button img {
  transform: rotate(-90deg);
  position: absolute;
  right: 20px;
}
body[data-barba-namespace=home] #home-page p {
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  font-size: 25px;
  text-align: center;
  line-height: 28px;
  margin-top: 35px;
  margin-bottom: 50px;
}
@media (max-width: 1649px) {
  body[data-barba-namespace=home] #home-page p {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
@media (max-width: 1199px) {
  body[data-barba-namespace=home] #home-page p {
    font-size: 20px;
    margin-bottom: 15px;
    margin-top: 25px;
  }
}
@media (max-width: 599px) {
  body[data-barba-namespace=home] #home-page p {
    margin-top: 45px;
    margin-bottom: 25px;
    font-size: 18px;
    line-height: 22px;
  }
}

body[data-barba-namespace=ticket] #main {
  padding: 0;
  overflow-x: hidden;
}

#ticket-page {
  color: #FFF;
}
#ticket-page #ticket-itinerary, #ticket-page #ticket-landmarks, #ticket-page #ticket-selfies {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 150px 0;
  user-select: none;
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary, #ticket-page #ticket-landmarks, #ticket-page #ticket-selfies {
    padding: 50px 0;
  }
}
#ticket-page #ticket-itinerary .container, #ticket-page #ticket-landmarks .container, #ticket-page #ticket-selfies .container {
  width: 100%;
}
@media (max-width: 999px) {
  #ticket-page #ticket-itinerary .container, #ticket-page #ticket-landmarks .container, #ticket-page #ticket-selfies .container {
    padding: 0;
  }
}
#ticket-page #ticket-itinerary .container .row:first-of-type, #ticket-page #ticket-landmarks .container .row:first-of-type, #ticket-page #ticket-selfies .container .row:first-of-type {
  padding: 0 70px;
}
@media (max-width: 1199px) {
  #ticket-page #ticket-itinerary .container .row:first-of-type, #ticket-page #ticket-landmarks .container .row:first-of-type, #ticket-page #ticket-selfies .container .row:first-of-type {
    padding: 0 40px;
  }
}
@media (max-width: 999px) {
  #ticket-page #ticket-itinerary .container .row:first-of-type, #ticket-page #ticket-landmarks .container .row:first-of-type, #ticket-page #ticket-selfies .container .row:first-of-type {
    padding: 0 20px;
  }
}
#ticket-page #ticket-itinerary .container div.download, #ticket-page #ticket-landmarks .container div.download, #ticket-page #ticket-selfies .container div.download {
  height: 100%;
  margin: 25px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary .container div.download, #ticket-page #ticket-landmarks .container div.download, #ticket-page #ticket-selfies .container div.download {
    margin: 0 0 85px;
    padding: 0 20px;
  }
}
@media (max-width: 1999px) {
  #ticket-page #ticket-itinerary .six.columns, #ticket-page #ticket-landmarks .six.columns, #ticket-page #ticket-selfies .six.columns {
    width: 50%;
  }
}
@media (max-width: 1919px) {
  #ticket-page #ticket-itinerary .six.columns, #ticket-page #ticket-landmarks .six.columns, #ticket-page #ticket-selfies .six.columns {
    width: 70%;
  }
}
@media (max-width: 1199px) {
  #ticket-page #ticket-itinerary .six.columns, #ticket-page #ticket-landmarks .six.columns, #ticket-page #ticket-selfies .six.columns {
    width: 80%;
  }
}
@media (max-width: 999px) {
  #ticket-page #ticket-itinerary .six.columns, #ticket-page #ticket-landmarks .six.columns, #ticket-page #ticket-selfies .six.columns {
    width: 100%;
  }
}
#ticket-page #ticket-itinerary p.mobile, #ticket-page #ticket-landmarks p.mobile, #ticket-page #ticket-selfies p.mobile {
  display: none;
  font-family: "CircularStdBold";
  font-size: 22px;
  margin-bottom: 15px;
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary p.mobile, #ticket-page #ticket-landmarks p.mobile, #ticket-page #ticket-selfies p.mobile {
    display: block;
  }
}
#ticket-page #ticket-itinerary p.mobile span, #ticket-page #ticket-landmarks p.mobile span, #ticket-page #ticket-selfies p.mobile span {
  font-family: "CircularStdBold";
  font-size: 22px;
}
#ticket-page #ticket-itinerary .swiper, #ticket-page #ticket-itinerary div.download, #ticket-page #ticket-landmarks .swiper, #ticket-page #ticket-landmarks div.download {
  padding: 0 70px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  #ticket-page #ticket-itinerary .swiper, #ticket-page #ticket-itinerary div.download, #ticket-page #ticket-landmarks .swiper, #ticket-page #ticket-landmarks div.download {
    padding: 0 40px;
  }
}
@media (max-width: 999px) {
  #ticket-page #ticket-itinerary .swiper, #ticket-page #ticket-itinerary div.download, #ticket-page #ticket-landmarks .swiper, #ticket-page #ticket-landmarks div.download {
    padding: 0 20px;
  }
}
#ticket-page #ticket-itinerary .swiper-slide, #ticket-page #ticket-landmarks .swiper-slide {
  display: flex;
  flex-direction: column;
  padding: 40px 50px;
  margin-right: 45px;
  background-color: #FFF;
  width: auto;
  height: unset;
}
#ticket-page #ticket-itinerary .swiper-slide:last-child, #ticket-page #ticket-landmarks .swiper-slide:last-child {
  margin-right: 0;
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary .swiper-slide, #ticket-page #ticket-landmarks .swiper-slide {
    padding: 40px 25px;
    background-color: transparent;
    box-shadow: none;
    margin-right: 0;
  }
}
#ticket-page #ticket-itinerary .swiper-slide.alone, #ticket-page #ticket-landmarks .swiper-slide.alone {
  align-items: center;
}
#ticket-page #ticket-itinerary .swiper-slide.alone .group-landmarks, #ticket-page #ticket-landmarks .swiper-slide.alone .group-landmarks {
  width: fit-content;
}
#ticket-page #ticket-itinerary .swiper-slide.alone .group-landmarks::after, #ticket-page #ticket-landmarks .swiper-slide.alone .group-landmarks::after {
  display: none;
}
#ticket-page #ticket-itinerary .swiper-slide .group-landmarks, #ticket-page #ticket-landmarks .swiper-slide .group-landmarks {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
#ticket-page #ticket-itinerary .swiper-slide .group-landmarks:after, #ticket-page #ticket-landmarks .swiper-slide .group-landmarks:after {
  content: "";
  height: 3px;
  width: 100%;
  background: url("../images/dashed-line2.svg") repeat 20px 0;
  position: absolute;
  top: 50%;
  z-index: -1;
  left: 0;
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary .swiper-slide .group-landmarks:after, #ticket-page #ticket-landmarks .swiper-slide .group-landmarks:after {
    left: 0;
    background: url("../images/dashed-line2.svg") repeat 5px 0;
  }
}
#ticket-page #ticket-itinerary .swiper-slide .landmark-item, #ticket-page #ticket-landmarks .swiper-slide .landmark-item {
  margin-right: 90px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary .swiper-slide .landmark-item, #ticket-page #ticket-landmarks .swiper-slide .landmark-item {
    margin-right: 60px;
  }
}
#ticket-page #ticket-itinerary .swiper-slide .landmark-item .landmark-inner, #ticket-page #ticket-landmarks .swiper-slide .landmark-item .landmark-inner {
  display: flex;
  flex-direction: column;
  box-shadow: rgba(0, 0, 0, 0.32) 0px 3px 12px;
  background-color: #084CBC;
  height: 100%;
}
#ticket-page #ticket-itinerary .swiper-slide .landmark-item .group-top, #ticket-page #ticket-landmarks .swiper-slide .landmark-item .group-top {
  height: 180px;
}
#ticket-page #ticket-itinerary .swiper-slide .landmark-item .group-top img, #ticket-page #ticket-landmarks .swiper-slide .landmark-item .group-top img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}
#ticket-page #ticket-itinerary .swiper-slide .landmark-item .group-infos, #ticket-page #ticket-landmarks .swiper-slide .landmark-item .group-infos {
  padding: 14px;
  min-height: calc(100% - 180px);
  display: flex;
  flex-direction: column;
}
#ticket-page #ticket-itinerary .swiper-slide .landmark-item .group-infos > div, #ticket-page #ticket-landmarks .swiper-slide .landmark-item .group-infos > div {
  color: #FFF;
  font-size: 16px;
  text-transform: uppercase;
  white-space: pre-wrap;
  font-weight: 400;
  line-height: 15px;
  margin-bottom: 15px;
}
#ticket-page #ticket-itinerary .swiper-slide .landmark-item .group-infos > div:first-child, #ticket-page #ticket-landmarks .swiper-slide .landmark-item .group-infos > div:first-child {
  min-height: 30px;
}
#ticket-page #ticket-itinerary .swiper-slide .landmark-item .group-infos .group-share, #ticket-page #ticket-landmarks .swiper-slide .landmark-item .group-infos .group-share {
  margin-top: auto;
  margin-bottom: 0;
  min-height: 45px;
}
#ticket-page #ticket-itinerary .swiper-slide .landmark-item:last-of-type, #ticket-page #ticket-landmarks .swiper-slide .landmark-item:last-of-type {
  margin-right: 0;
}
#ticket-page #ticket-itinerary .swiper-slide .group-bottom, #ticket-page #ticket-landmarks .swiper-slide .group-bottom {
  width: 100%;
  background-color: #051C39;
  margin-top: 15px;
  box-shadow: rgba(0, 0, 0, 0.32) 0px 3px 12px;
}
#ticket-page #ticket-itinerary .swiper-slide .group-bottom a, #ticket-page #ticket-landmarks .swiper-slide .group-bottom a {
  color: #FFF;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  text-decoration: none;
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  font-size: 14px;
}
#ticket-page #ticket-itinerary .swiper-slide .group-bottom a img, #ticket-page #ticket-landmarks .swiper-slide .group-bottom a img {
  margin-left: 15px;
}
#ticket-page #ticket-itinerary .swiper-wrapper, #ticket-page #ticket-landmarks .swiper-wrapper {
  padding-bottom: 40px;
}
#ticket-page #ticket-itinerary .swiper-scrollbar, #ticket-page #ticket-landmarks .swiper-scrollbar {
  height: 7px;
  left: 70px;
  background: transparent;
  width: calc(100% - 140px);
}
@media (max-width: 1199px) {
  #ticket-page #ticket-itinerary .swiper-scrollbar, #ticket-page #ticket-landmarks .swiper-scrollbar {
    padding: 0;
    left: 40px;
    width: calc(100% - 80px);
  }
}
@media (max-width: 999px) {
  #ticket-page #ticket-itinerary .swiper-scrollbar, #ticket-page #ticket-landmarks .swiper-scrollbar {
    left: 20px;
    width: calc(100% - 40px);
  }
}
#ticket-page #ticket-itinerary .swiper-scrollbar .swiper-scrollbar-drag, #ticket-page #ticket-landmarks .swiper-scrollbar .swiper-scrollbar-drag {
  background-color: #FFF;
}
#ticket-page #ticket-hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #084CBC;
  min-height: var(--window-inner-height, 100vh);
  position: relative;
  overflow: hidden;
}
@media (max-width: 1919px) {
  #ticket-page #ticket-hero {
    padding: 0 30px;
  }
}
#ticket-page #ticket-hero:before {
  content: "";
  background: url("../images/pattern.svg") no-repeat center;
  background-size: cover;
  position: absolute;
  width: 145%;
  height: 100%;
  top: 10px;
  right: -115px;
  min-height: calc(100vh - 165px);
}
@media (max-width: 999px) {
  #ticket-page #ticket-hero:before {
    right: 0;
    top: 0;
  }
}
@media (max-width: 599px) {
  #ticket-page #ticket-hero:before {
    background-position-x: center;
  }
}
#ticket-page #ticket-hero .container {
  margin-top: 70px;
}
@media (max-width: 599px) {
  #ticket-page #ticket-hero .container {
    margin-top: 180px;
  }
}
#ticket-page #ticket-hero .container .row {
  display: flex;
  justify-content: center;
}
#ticket-page #ticket-hero .container .row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#ticket-page #ticket-hero .container .row > div p {
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  font-size: 25px;
  margin-bottom: 0;
  line-height: 28px;
  text-align: center;
}
@media (max-width: 1649px) {
  #ticket-page #ticket-hero .container .row > div p {
    font-size: 20px;
  }
}
@media (max-width: 599px) {
  #ticket-page #ticket-hero .container .row > div p {
    font-size: 15px;
    line-height: 16px;
  }
}
#ticket-page #ticket-hero .container .row > div img.viewprint-logo {
  margin-bottom: 35px;
}
@media (max-width: 1799px) {
  #ticket-page #ticket-hero .container .row > div img.viewprint-logo {
    max-width: 85%;
    display: block;
  }
}
@media (max-width: 599px) {
  #ticket-page #ticket-hero .container .row > div img.viewprint-logo {
    width: 380px;
    margin-bottom: 40px;
  }
}
#ticket-page #ticket-hero .container .row > div .anchors {
  display: none;
  margin-top: 40px;
}
@media (max-width: 599px) {
  #ticket-page #ticket-hero .container .row > div .anchors {
    display: block;
  }
}
#ticket-page #ticket-hero .container .row > div .anchors .item {
  background-color: #FFF;
  height: 60px;
  width: 275px;
  margin-bottom: 20px;
  line-height: 18px;
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.29) 0px 3px 5px;
  position: relative;
  cursor: pointer;
}
#ticket-page #ticket-hero .container .row > div .anchors .item.hidden {
  opacity: 0;
  pointer-events: none;
}
#ticket-page #ticket-hero .container .row > div .anchors .item::after {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: 100%;
  width: 15px;
  height: 15px;
  position: absolute;
  right: 20px;
}
#ticket-page #ticket-hero .container .row > div .anchors .item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 30px;
}
#ticket-page #ticket-hero .container .row > div .anchors .item a, #ticket-page #ticket-hero .container .row > div .anchors .item div, #ticket-page #ticket-hero .container .row > div .anchors .item div > span {
  color: #084CBC;
  font-weight: bold;
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
}
#ticket-page #ticket-hero .container .row > div .anchors .item a > div, #ticket-page #ticket-hero .container .row > div .anchors .item div > div, #ticket-page #ticket-hero .container .row > div .anchors .item div > span > div {
  opacity: 0.5;
}
#ticket-page #ticket-hero .viewprint-logo {
  width: 590px;
  max-width: 590px;
  margin: auto;
  display: block;
}
@media (max-width: 599px) {
  #ticket-page #ticket-hero .viewprint-logo {
    width: 380px;
  }
}
#ticket-page #ticket-hero #hero-arrow {
  margin-top: 20px;
  cursor: pointer;
}
@media (max-width: 599px) {
  #ticket-page #ticket-hero #hero-arrow {
    display: none;
  }
}
#ticket-page #ticket-itinerary {
  background-color: #7CD5DA;
  min-height: 100vh;
}
#ticket-page #ticket-itinerary .background {
  background-color: #FFF;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 16px;
  margin-bottom: 65px;
  position: relative;
  overflow: hidden;
}
#ticket-page #ticket-itinerary .background::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  background-image: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.7));
  z-index: 10;
  pointer-events: none;
}
#ticket-page #ticket-itinerary .container-scroll {
  background-color: #FFF;
}
#ticket-page #ticket-itinerary h2 {
  margin-bottom: 25px;
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary h2 {
    margin-bottom: 25px;
  }
}
#ticket-page #ticket-itinerary h2 span {
  color: #084CBC;
}
#ticket-page #ticket-itinerary p.mobile {
  color: #084CBC;
}
#ticket-page #ticket-itinerary p.landmark-index {
  color: #EA5D37;
  font-size: 14px;
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  margin-bottom: 0;
  align-self: flex-start;
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary .swiper.swiper-desktop {
    display: none;
  }
}
#ticket-page #ticket-itinerary .swiper.swiper-desktop .swiper-slide {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 16px;
}
#ticket-page #ticket-itinerary .swiper.swiper-desktop h3.landmark-title,
#ticket-page #ticket-itinerary .swiper.swiper-desktop span.landmark-title {
  font-size: 35px;
  font-weight: 400;
  white-space: pre-wrap;
  max-width: 450px;
  min-height: 90px;
  margin-bottom: 30px;
}
@media (max-width: 1199px) {
  #ticket-page #ticket-itinerary .swiper.swiper-desktop h3.landmark-title,
  #ticket-page #ticket-itinerary .swiper.swiper-desktop span.landmark-title {
    max-width: 400px;
  }
}
#ticket-page #ticket-itinerary .swiper.swiper-mobile {
  display: none;
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary .swiper.swiper-mobile {
    display: block;
  }
}
#ticket-page #ticket-itinerary .swiper.swiper-mobile .swiper-slide {
  padding: 0 25px;
}
#ticket-page #ticket-itinerary .swiper.swiper-mobile .alone .group-landmarks {
  margin: 0 auto;
}
#ticket-page #ticket-itinerary .swiper.swiper-mobile h3.landmark-title,
#ticket-page #ticket-itinerary .swiper.swiper-mobile span.landmark-title {
  font-size: 35px;
  line-height: 40px;
  font-weight: 400;
  margin-bottom: 0;
  z-index: 2;
  color: #051C39;
  text-transform: uppercase;
  white-space: pre-wrap;
  display: block;
  padding: 5px 25px 10px;
}
#ticket-page #ticket-itinerary .swiper.swiper-mobile p.landmark-index {
  padding: 40px 25px 0;
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary .swiper-wrapper {
    display: block;
  }
}
#ticket-page #ticket-itinerary .swiper-wrapper .container-scroll {
  display: none;
  position: relative;
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary .swiper-wrapper .container-scroll.one {
    width: 100%;
  }
  #ticket-page #ticket-itinerary .swiper-wrapper .container-scroll.one .swiper-slide {
    width: 100%;
  }
  #ticket-page #ticket-itinerary .swiper-wrapper .container-scroll.one .swiper-slide .group-landmarks {
    justify-content: center;
  }
  #ticket-page #ticket-itinerary .swiper-wrapper .container-scroll.one .swiper-slide .group-landmarks::after {
    display: none;
  }
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary .swiper-wrapper .container-scroll {
    white-space: nowrap;
    display: block;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    overflow-y: hidden;
    width: 100%;
    /* Designing for scroll-bar */
    /* Handle */
  }
  #ticket-page #ticket-itinerary .swiper-wrapper .container-scroll::-webkit-scrollbar {
    height: 57px;
  }
  #ticket-page #ticket-itinerary .swiper-wrapper .container-scroll::-webkit-scrollbar-thumb {
    background: #D8D8D8;
    background-clip: content-box;
    border-color: #FFF;
    border-width: 25px;
    border-style: solid;
    border-radius: 200px;
  }
}
@media (max-width: 599px) {
  #ticket-page #ticket-itinerary .swiper-wrapper .swiper-slide {
    display: inline-block;
    width: fit-content;
  }
}
#ticket-page #ticket-itinerary .landmark-item {
  width: 220px;
  height: auto;
  padding-top: 30px;
}
#ticket-page #ticket-itinerary .landmark-item .landmark-inner {
  width: 220px;
}
#ticket-page #ticket-itinerary .recommend {
  margin: 0;
  background: none;
  position: absolute;
  color: #051C39;
  top: 0;
  width: 180px;
  opacity: 0.5;
}
#ticket-page #ticket-itinerary .recommend span {
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
}
#ticket-page #ticket-landmarks {
  background-color: #051C39;
  min-height: 100vh;
}
@media (max-width: 599px) {
  #ticket-page #ticket-landmarks {
    padding: 50px 20px;
  }
}
@media (max-width: 599px) {
  #ticket-page #ticket-landmarks .container .row, #ticket-page #ticket-landmarks .container {
    padding: 0 !important;
  }
}
#ticket-page #ticket-landmarks h2 {
  margin-bottom: 85px;
}
@media (max-width: 599px) {
  #ticket-page #ticket-landmarks h2 {
    margin-bottom: 25px;
  }
}
#ticket-page #ticket-landmarks h2 span {
  color: #EA5D37;
}
#ticket-page #ticket-landmarks p.mobile {
  color: #FFF;
}
@media (max-width: 599px) {
  #ticket-page #ticket-landmarks p.mobile {
    margin-bottom: 50px;
  }
}
@media (max-width: 599px) {
  #ticket-page #ticket-landmarks .swiper {
    padding: 0 !important;
  }
}
@media (max-width: 599px) {
  #ticket-page #ticket-landmarks .swiper .swiper-scrollbar {
    display: none;
  }
}
@media (max-width: 599px) {
  #ticket-page #ticket-landmarks .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 599px) {
  #ticket-page #ticket-landmarks .swiper-wrapper .swiper-slide {
    width: 48%;
    margin-bottom: 50px;
  }
}
@media (max-width: 359px) {
  #ticket-page #ticket-landmarks .swiper-wrapper .swiper-slide {
    width: 220px;
    margin: 0 auto 50px;
  }
}
#ticket-page #ticket-landmarks .swiper-slide {
  background-color: unset;
  padding: 0;
}
@media (max-width: 599px) {
  #ticket-page #ticket-landmarks .swiper-slide .group-share {
    justify-content: flex-start !important;
  }
}
#ticket-page #ticket-landmarks .landmark-item {
  width: 220px;
}
@media (max-width: 599px) {
  #ticket-page #ticket-landmarks .landmark-item {
    width: 100%;
    padding-top: 35px;
  }
}
#ticket-page #ticket-landmarks .landmark-item .group-bottom {
  background: #FFF;
}
#ticket-page #ticket-landmarks .landmark-item .group-bottom a {
  color: #000;
}
#ticket-page #ticket-landmarks .landmark-item .group-bottom a img {
  content: url("../images/icons/map-black.svg");
}
@media (max-width: 449px) {
  #ticket-page #ticket-landmarks .landmark-item .group-share {
    justify-content: space-between;
  }
}
#ticket-page #ticket-landmarks .landmark-item .group-share .icon {
  margin-right: 15px;
}
#ticket-page #ticket-landmarks .landmark-item .group-share .icon:last-child {
  margin-right: 0;
}
#ticket-page #ticket-landmarks .recommend {
  margin: 0;
  background: none;
  position: absolute;
  color: #FFF;
  top: 0;
  width: 180px;
  opacity: 0.5;
}
#ticket-page #ticket-landmarks .recommend span {
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
}
#ticket-page #ticket-selfies {
  background-color: #084CBC;
  position: relative;
  padding: 150px 0 50px;
}
@media (max-width: 599px) {
  #ticket-page #ticket-selfies {
    padding: 50px 0;
  }
}
#ticket-page #ticket-selfies.hidden {
  display: none;
}
#ticket-page #ticket-selfies h2 {
  margin-bottom: 85px;
}
@media (max-width: 599px) {
  #ticket-page #ticket-selfies h2 {
    margin-bottom: 25px;
  }
}
#ticket-page #ticket-selfies h2 span {
  color: #7CD5DA;
}
#ticket-page #ticket-selfies .row .columns {
  position: relative;
}
#ticket-page #ticket-selfies p.mobile {
  color: #FFF;
}
@media (max-width: 599px) {
  #ticket-page #ticket-selfies p.mobile {
    margin-bottom: 25px;
  }
}
#ticket-page #ticket-selfies .swiper {
  padding: 0 275px;
  max-width: 1550px;
}
#ticket-page #ticket-selfies .swiper.center .swiper-wrapper {
  justify-content: center;
}
@media (max-width: 1199px) {
  #ticket-page #ticket-selfies .swiper {
    padding: 0 225px;
  }
}
@media (max-width: 999px) {
  #ticket-page #ticket-selfies .swiper {
    padding: 0 175px;
  }
}
@media (max-width: 767px) {
  #ticket-page #ticket-selfies .swiper {
    padding: 0 150px;
  }
}
@media (max-width: 599px) {
  #ticket-page #ticket-selfies .swiper {
    padding: 0 40px;
  }
}
#ticket-page #ticket-selfies .swiper, #ticket-page #ticket-selfies .swiper + .lds-ring {
  -webkit-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -moz-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  -ms-transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#ticket-page #ticket-selfies .swiper.loading {
  pointer-events: none;
  opacity: 0.5;
}
#ticket-page #ticket-selfies .swiper.loading + .lds-ring {
  opacity: 1;
}
@media (max-width: 767px) {
  #ticket-page #ticket-selfies .swiper {
    padding: 0 55px !important;
    overflow: visible;
  }
}
@media (max-width: 767px) {
  #ticket-page #ticket-selfies .swiper .swiper-wrapper {
    flex-direction: column;
    align-items: center;
    transform: translate3d(0, 0, 0) !important;
    margin-top: 100px;
  }
}
#ticket-page #ticket-selfies .swiper .swiper-slide {
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
#ticket-page #ticket-selfies .swiper .swiper-slide.slide-clone {
  opacity: 0 !important;
  pointer-events: none;
}
#ticket-page #ticket-selfies .swiper .swiper-slide.swiper-slide-active, #ticket-page #ticket-selfies .swiper .swiper-slide.swiper-slide-active + .swiper-slide, #ticket-page #ticket-selfies .swiper .swiper-slide.swiper-slide-active + .swiper-slide + .swiper-slide {
  opacity: 1;
}
@media (max-width: 767px) {
  #ticket-page #ticket-selfies .swiper .swiper-slide:not(.slide-clone) {
    opacity: 1;
    width: 100% !important;
    max-width: 400px;
    margin-right: 0 !important;
    margin-bottom: -25px;
  }
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(1) {
  z-index: 99;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(2) {
  z-index: 98;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(3) {
  z-index: 97;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(4) {
  z-index: 96;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(5) {
  z-index: 95;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(6) {
  z-index: 94;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(7) {
  z-index: 93;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(8) {
  z-index: 92;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(9) {
  z-index: 91;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(10) {
  z-index: 90;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(11) {
  z-index: 89;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(12) {
  z-index: 88;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(13) {
  z-index: 87;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(14) {
  z-index: 86;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(15) {
  z-index: 85;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(16) {
  z-index: 84;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(17) {
  z-index: 83;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(18) {
  z-index: 82;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(19) {
  z-index: 81;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(20) {
  z-index: 80;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(21) {
  z-index: 79;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(22) {
  z-index: 78;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(23) {
  z-index: 77;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(24) {
  z-index: 76;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(25) {
  z-index: 75;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(26) {
  z-index: 74;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(27) {
  z-index: 73;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(28) {
  z-index: 72;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(29) {
  z-index: 71;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(30) {
  z-index: 70;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(31) {
  z-index: 69;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(32) {
  z-index: 68;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(33) {
  z-index: 67;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(34) {
  z-index: 66;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(35) {
  z-index: 65;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(36) {
  z-index: 64;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(37) {
  z-index: 63;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(38) {
  z-index: 62;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(39) {
  z-index: 61;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(40) {
  z-index: 60;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(41) {
  z-index: 59;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(42) {
  z-index: 58;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(43) {
  z-index: 57;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(44) {
  z-index: 56;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(45) {
  z-index: 55;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(46) {
  z-index: 54;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(47) {
  z-index: 53;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(48) {
  z-index: 52;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(49) {
  z-index: 51;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(50) {
  z-index: 50;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(51) {
  z-index: 49;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(52) {
  z-index: 48;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(53) {
  z-index: 47;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(54) {
  z-index: 46;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(55) {
  z-index: 45;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(56) {
  z-index: 44;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(57) {
  z-index: 43;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(58) {
  z-index: 42;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(59) {
  z-index: 41;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(60) {
  z-index: 40;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(61) {
  z-index: 39;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(62) {
  z-index: 38;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(63) {
  z-index: 37;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(64) {
  z-index: 36;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(65) {
  z-index: 35;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(66) {
  z-index: 34;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(67) {
  z-index: 33;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(68) {
  z-index: 32;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(69) {
  z-index: 31;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(70) {
  z-index: 30;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(71) {
  z-index: 29;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(72) {
  z-index: 28;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(73) {
  z-index: 27;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(74) {
  z-index: 26;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(75) {
  z-index: 25;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(76) {
  z-index: 24;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(77) {
  z-index: 23;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(78) {
  z-index: 22;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(79) {
  z-index: 21;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(80) {
  z-index: 20;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(81) {
  z-index: 19;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(82) {
  z-index: 18;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(83) {
  z-index: 17;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(84) {
  z-index: 16;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(85) {
  z-index: 15;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(86) {
  z-index: 14;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(87) {
  z-index: 13;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(88) {
  z-index: 12;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(89) {
  z-index: 11;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(90) {
  z-index: 10;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(91) {
  z-index: 9;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(92) {
  z-index: 8;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(93) {
  z-index: 7;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(94) {
  z-index: 6;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(95) {
  z-index: 5;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(96) {
  z-index: 4;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(97) {
  z-index: 3;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(98) {
  z-index: 2;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(99) {
  z-index: 1;
}
#ticket-page #ticket-selfies .swiper .swiper-slide:nth-child(100) {
  z-index: 0;
}
#ticket-page #ticket-selfies .swiper .swiper-slide > a.image > img {
  clip-path: polygon(0 0, 100% 12.5%, 100% 100%, 0 87.5%);
}
#ticket-page #ticket-selfies .swiper .swiper-slide div.download-icon {
  margin-top: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
}
@media (max-width: 767px) {
  #ticket-page #ticket-selfies .swiper .swiper-slide div.download-icon {
    margin-top: 15px;
    margin-bottom: 80px;
  }
}
#ticket-page #ticket-selfies .lds-ring {
  opacity: 0;
}
@media (max-width: 767px) {
  #ticket-page #ticket-selfies .lds-ring {
    top: 140px;
  }
}
#ticket-page #ticket-selfies .button-prev {
  content: url("../images/icons/arrow.svg");
  -webkit-transform: translateY(calc(-50% - 45px)) rotate(-90deg);
  -ms-transform: translateY(calc(-50% - 45px)) rotate(-90deg);
  transform: translateY(calc(-50% - 45px)) rotate(-90deg);
  left: 12%;
}
#ticket-page #ticket-selfies .button-next {
  content: url("../images/icons/arrow.svg");
  -webkit-transform: translateY(calc(-50% - 45px)) rotate(90deg);
  -ms-transform: translateY(calc(-50% - 45px)) rotate(90deg);
  transform: translateY(calc(-50% - 45px)) rotate(90deg);
  right: 12%;
}
#ticket-page #ticket-selfies .button-next, #ticket-page #ticket-selfies .button-prev {
  width: 40px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 200;
  user-select: none;
}
@media (max-width: 767px) {
  #ticket-page #ticket-selfies .button-next, #ticket-page #ticket-selfies .button-prev {
    display: none;
  }
}
#ticket-page #ticket-selfies .button-next.swiper-button-disabled, #ticket-page #ticket-selfies .button-prev.swiper-button-disabled {
  opacity: 0.5;
}

.landmark-item .group-share {
  display: flex;
}
.landmark-item .group-share .icon {
  border-radius: unset;
  background-color: #051C39;
  margin-right: 15px;
  cursor: pointer;
}

.landmark-modal .icon, .page-modal .icon {
  border-radius: unset;
  background-color: #051C39;
  margin-right: 15px;
  width: 55px;
  height: 55px;
  cursor: pointer;
}

#page-not-found::before, #not-found-page::before, #about-page::before {
  content: "";
  background: url("../images/pattern.svg") no-repeat center;
  background-size: 100% auto;
  position: absolute;
  width: 145%;
  height: 100%;
  top: 0;
  right: -115px;
}
@media (max-width: 999px) {
  #page-not-found::before, #not-found-page::before, #about-page::before {
    background-size: 150%;
    right: 0;
    top: 0;
  }
}
@media (max-width: 599px) {
  #page-not-found::before, #not-found-page::before, #about-page::before {
    background-size: 280%;
    background-position: right;
  }
}
#page-not-found .columns, #not-found-page .columns, #about-page .columns {
  margin-top: 165px;
}
@media (max-width: 599px) {
  #page-not-found .columns, #not-found-page .columns, #about-page .columns {
    margin-top: 200px;
  }
}
#page-not-found h2, #page-not-found p, #not-found-page h2, #not-found-page p, #about-page h2, #about-page p {
  text-align: center;
}
#page-not-found h1, #not-found-page h1, #about-page h1 {
  font-weight: normal;
  font-size: 100px;
  line-height: 90%;
  color: #7CD5DA;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 1649px) {
  #page-not-found h1, #not-found-page h1, #about-page h1 {
    font-size: 84px;
  }
}
@media (max-width: 767px) {
  #page-not-found h1, #not-found-page h1, #about-page h1 {
    font-size: 84px;
  }
}
#page-not-found h2, #not-found-page h2, #about-page h2 {
  font-weight: bold;
  font-size: 55px;
  line-height: 1.2;
  letter-spacing: 0.2rem !important;
  margin-bottom: 85px;
}
@media (max-width: 1649px) {
  #page-not-found h2, #not-found-page h2, #about-page h2 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  #page-not-found h2, #not-found-page h2, #about-page h2 {
    font-size: 28px;
  }
}
#page-not-found .back-btn, #not-found-page .back-btn, #about-page .back-btn {
  margin: 0 auto;
  position: relative;
  padding: 0 30px 0 75px;
}
#page-not-found .back-btn::before, #not-found-page .back-btn::before, #about-page .back-btn::before {
  content: "";
  background: url("../images/arrow-down.svg");
  background-size: 100%;
  width: 17px;
  height: 17px;
  position: absolute;
  left: 30px;
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(332deg) brightness(108%) contrast(110%);
}

body[data-barba-namespace=privacy-policy] {
  background-color: #084CBC;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}
body[data-barba-namespace=privacy-policy] *:not(option) {
  color: #051C39;
  line-height: 1.4;
}
body[data-barba-namespace=privacy-policy] #hero-privacy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #084CBC;
  min-height: 61vh;
  position: relative;
  overflow: hidden;
}
body[data-barba-namespace=privacy-policy] #hero-privacy:before {
  content: "";
  background: url("../images/pattern.svg") no-repeat center;
  background-size: cover;
  position: absolute;
  width: 145%;
  height: 100%;
  top: 10px;
  right: -115px;
  min-height: calc(100vh - 165px);
}
@media (max-width: 999px) {
  body[data-barba-namespace=privacy-policy] #hero-privacy:before {
    right: 0;
    top: 0;
  }
}
@media (max-width: 599px) {
  body[data-barba-namespace=privacy-policy] #hero-privacy:before {
    background-position-x: center;
  }
}
body[data-barba-namespace=privacy-policy] #hero-privacy .container {
  margin-top: 70px;
  padding: 0 275px;
  max-width: unset;
  width: unset;
}
@media (max-width: 1649px) {
  body[data-barba-namespace=privacy-policy] #hero-privacy .container {
    padding: 0 150px;
  }
}
@media (max-width: 1199px) {
  body[data-barba-namespace=privacy-policy] #hero-privacy .container {
    padding: 0 100px;
  }
}
@media (max-width: 599px) {
  body[data-barba-namespace=privacy-policy] #hero-privacy .container {
    margin-top: 180px;
    padding: 0 40px;
  }
}
body[data-barba-namespace=privacy-policy] #hero-privacy .container .row {
  display: flex;
  justify-content: center;
}
body[data-barba-namespace=privacy-policy] #hero-privacy .container .row > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
body[data-barba-namespace=privacy-policy] #hero-privacy .container .row h1 {
  text-align: left;
}
body[data-barba-namespace=privacy-policy] #content-privacy {
  background: #FFF;
  padding-top: 20px;
  padding-bottom: 150px;
}
body[data-barba-namespace=privacy-policy] #content-privacy .container {
  margin: 0 275px;
  max-width: unset;
  width: unset;
}
@media (max-width: 1649px) {
  body[data-barba-namespace=privacy-policy] #content-privacy .container {
    margin: 0 150px;
  }
}
@media (max-width: 1199px) {
  body[data-barba-namespace=privacy-policy] #content-privacy .container {
    margin: 0 100px;
  }
}
@media (max-width: 767px) {
  body[data-barba-namespace=privacy-policy] #content-privacy .container {
    margin: 0 40px;
  }
}
body[data-barba-namespace=privacy-policy] #content-privacy .container .row {
  padding-top: 100px;
}
body[data-barba-namespace=privacy-policy] h1, body[data-barba-namespace=privacy-policy] h2, body[data-barba-namespace=privacy-policy] h3, body[data-barba-namespace=privacy-policy] h4, body[data-barba-namespace=privacy-policy] h5, body[data-barba-namespace=privacy-policy] h6 {
  font-weight: normal;
  text-transform: uppercase;
  margin-bottom: 40px;
}
body[data-barba-namespace=privacy-policy] h1 {
  font-weight: normal;
  font-size: 100px;
  margin-bottom: 25px;
  width: 100%;
  color: #FFF;
  display: flex;
  justify-content: center;
}
@media (max-width: 1649px) {
  body[data-barba-namespace=privacy-policy] h1 {
    font-size: 84px;
  }
}
@media (max-width: 767px) {
  body[data-barba-namespace=privacy-policy] h1 {
    font-size: 84px;
  }
}
@media (max-width: 999px) {
  body[data-barba-namespace=privacy-policy] h1 {
    font-size: 70px;
    line-height: 1em;
  }
}
body[data-barba-namespace=privacy-policy] h2 {
  font-weight: normal;
  font-size: 100px;
  line-height: 0.9;
  width: 80%;
  color: #084CBC;
  margin-bottom: 30px;
}
@media (max-width: 1649px) {
  body[data-barba-namespace=privacy-policy] h2 {
    font-size: 84px;
  }
}
@media (max-width: 767px) {
  body[data-barba-namespace=privacy-policy] h2 {
    font-size: 84px;
  }
}
@media (max-width: 599px) {
  body[data-barba-namespace=privacy-policy] h2 {
    font-size: 60px;
    width: 100%;
  }
}
@media (max-width: 359px) {
  body[data-barba-namespace=privacy-policy] h2 {
    font-size: 50px;
  }
}
body[data-barba-namespace=privacy-policy] h3 {
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  font-size: 25px;
}
@media (max-width: 1649px) {
  body[data-barba-namespace=privacy-policy] h3 {
    font-size: 23px;
  }
}
@media (max-width: 599px) {
  body[data-barba-namespace=privacy-policy] h3 {
    font-size: 20px;
  }
}
body[data-barba-namespace=privacy-policy] ul {
  list-style-type: "- ";
  margin-bottom: 40px;
  list-style-position: outside;
}
body[data-barba-namespace=privacy-policy] ul li {
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  font-size: 25px;
  margin-bottom: 0;
}
@media (max-width: 1649px) {
  body[data-barba-namespace=privacy-policy] ul li {
    font-size: 23px;
  }
}
@media (max-width: 599px) {
  body[data-barba-namespace=privacy-policy] ul li {
    font-size: 20px;
  }
}
body[data-barba-namespace=privacy-policy] ul li strong {
  font-family: inherit;
  text-transform: uppercase;
  color: #EA5D37;
}
body[data-barba-namespace=privacy-policy] ul li a {
  font-family: inherit;
  transition: opacity 0.3s ease !important;
  color: #051C39 !important;
  word-break: break-all;
}
body[data-barba-namespace=privacy-policy] ul li a:hover {
  opacity: 0.5;
}
@media (max-width: 999px) {
  body[data-barba-namespace=privacy-policy] ul li a:hover {
    opacity: 1;
  }
}
body[data-barba-namespace=privacy-policy] p {
  font-family: "CircularStdBold", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", "Noto Sans", Arial, sans-serif;
  font-size: 25px;
}
@media (max-width: 1649px) {
  body[data-barba-namespace=privacy-policy] p {
    font-size: 23px;
  }
}
@media (max-width: 599px) {
  body[data-barba-namespace=privacy-policy] p {
    font-size: 20px;
  }
}
body[data-barba-namespace=privacy-policy] p strong {
  font-family: inherit;
  text-transform: uppercase;
  color: #EA5D37;
}
body[data-barba-namespace=privacy-policy] p a {
  font-family: inherit;
  transition: opacity 0.3s ease !important;
  color: #051C39 !important;
  text-decoration: none !important;
}
body[data-barba-namespace=privacy-policy] p a:hover {
  opacity: 0.5;
}
@media (max-width: 999px) {
  body[data-barba-namespace=privacy-policy] p a:hover {
    opacity: 1;
  }
}
body[data-barba-namespace=privacy-policy] h1, body[data-barba-namespace=privacy-policy] h3, body[data-barba-namespace=privacy-policy] h4, body[data-barba-namespace=privacy-policy] h5, body[data-barba-namespace=privacy-policy] h6, body[data-barba-namespace=privacy-policy] ul, body[data-barba-namespace=privacy-policy] p {
  margin-bottom: 60px;
}

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