@charset "UTF-8";
/*
        This font software is the property of Commercial Type.

        You may not modify the font software, use it on another website, or install it on a computer.

        License information is available at http://commercialtype.com/eula
        For more information please visit Commercial Type at http://commercialtype.com or email us at info[at]commercialtype.com

        Copyright (C) 2018 Schwartzco Inc.
        License: 1808-VHLYCU     
*/
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 0px 0px;
  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;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

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

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

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

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

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 26px;
  height: 2px;
  background-color: #fff;
  border-radius: 0px;
  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: -7px;
}

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

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

.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, 7px, 0) rotate(45deg);
}

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

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

.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, 7px, 0) rotate(45deg);
}

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

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

.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, 7px, 0) rotate(45deg);
}

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

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

.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, 7px, 0) rotate(45deg);
}

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

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

.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, 7px, 0) rotate(45deg);
}

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

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

.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, 7px, 0) rotate(45deg);
}

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

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

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

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

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(5.2px, 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(-5.2px, -6.5px, 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(-5.2px, 6.5px, 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(5.2px, -6.5px, 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(5.2px, 6.5px, 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: -14px;
  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, -7px, 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: -14px;
  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, -7px, 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: 1px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 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, -14px, 0) rotate(-270deg);
  transition-delay: 0.075s;
}

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

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

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

.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 7px, 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, -14px, 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: 7px;
  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: -52px;
  top: -52px;
  transform: translate3d(52px, 52px, 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: -52px;
  top: -52px;
  transform: translate3d(-52px, 52px, 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: 7px;
  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: -52px;
  top: 52px;
  transform: translate3d(52px, -52px, 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: -52px;
  top: 52px;
  transform: translate3d(-52px, -52px, 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: 1px;
}

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

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

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

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

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

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

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

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

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

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

.hamburger--slider-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -14px, 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: 1px;
  transition: background-color 0s 0.13s linear;
}

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 50px;
  width: 50px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: none;
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: none;
  font-size: 30px;
  line-height: 20px;
  text-align: center;
  color: white;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: white;
  opacity: 0.75;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.slick-dots {
  bottom: 30px;
}

.slick-prev {
  left: 25px;
  z-index: 1;
}

.slick-next {
  right: 25px;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0C0C0C;
  opacity: 0.7;
  filter: alpha(opacity=70);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 1;
  filter: alpha(opacity=100);
  padding: 0 0 18px 10px;
  color: #FFFFFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #0C0C0C;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFFFFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 1;
  filter: alpha(opacity=100);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  opacity: 1;
  filter: alpha(opacity=100);
}

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
  border-right: 17px solid #FFFFFF;
  margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
  border-left: 17px solid #FFFFFF;
  margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1000px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: none;
  background: #000;
  outline: none;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: none;
  background: #0C0C0C;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.mfp-ie7 .mfp-img {
  padding: 0;
}

.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px;
}

.mfp-ie7 .mfp-container {
  padding: 0;
}

.mfp-ie7 .mfp-content {
  padding-top: 44px;
}

.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0;
}

/* overlay at start */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

/* overlay animate in */
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.7;
}

/* overlay animate out */
.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

content at start .mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

/* content animate it */
.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

/* content animate out */
.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-arrow {
  opacity: 0;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-arrow {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-arrow {
  opacity: 0;
}

/* 

====== Move-horizontal effect ======

*/
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* argument
------------------------- */
.argument {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}

.argument__type {
  color: #777;
}

.argument__type,
.argument__description {
  margin-left: 0.4rem;
}

.argument__type:before,
.argument__description:before {
  content: '·';
  padding-right: 0.4rem;
  display: inline-block;
}

/* button
------------------------- */
.button {
  display: inline-block;
  padding: 5px 15px;
  margin-bottom: 10px;
  background-color: #F8F8F8;
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.1));
  border: 1px solid #CCC;
  border-radius: 5px;
}

.button:enabled {
  cursor: pointer;
}

.button:enabled:hover {
  background-color: #8CF;
}

.button.is-checked,
.button.is-selected {
  background-color: #19F;
  color: white;
}

.button:active {
  color: white;
  background-color: #59F;
  box-shadow: inset 0 1px 10px rgba(0, 0, 0, 0.8);
}

/* hide radio inputs */
.button input[type="radio"] {
  display: none;
}

/* ---- button-group ---- */
.button-group:after {
  content: '';
  display: block;
  clear: both;
}

.button-group .button {
  float: left;
  border-radius: 0;
  margin-left: -1px;
}

.button-group .button:first-child {
  border-radius: 5px 0 0 5px;
}

.button-group .button:last-child {
  border-radius: 0 5px 5px 0;
}

/* buy-button
------------------------- */
.buy-button {
  display: block;
  margin-bottom: 10px;
  line-height: 1.3rem;
  border-radius: 8px;
  padding: 10px 100px 10px 10px;
  position: relative;
  text-align: center;
}

.buy-button__title {
  font-weight: bold;
}

.buy-button__for {
  display: block;
  font-style: italic;
}

.buy-button__price {
  font-size: 1.6rem;
  background: #888;
  color: white;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 80px;
  border-radius: 0 8px 8px 0;
  text-align: center;
  line-height: 64px;
}

.buy-button__price__dollar {
  font-size: 1.4rem;
  margin-right: 3px;
  vertical-align: top;
}

@media screen and (min-width: 768px) {
  /* ---- buy-button-trio ---- */
  .buy-button-trio {
    margin-top: 40px;
    margin-bottom: 50px;
  }
  .buy-button-trio:after {
    content: '';
    display: block;
    clear: both;
  }
  /* ---- buy-button-trio buy-button ---- */
  .buy-button-trio .buy-button {
    float: left;
    width: 31.33%;
    margin-right: 3%;
  }
  .buy-button-trio .buy-button:nth-child(3) {
    margin-right: 0;
  }
  .buy-button-trio .buy-button {
    transition: transform 0.2s;
    padding: 20px 0 0;
  }
  .buy-button-trio .buy-button > span {
    display: block;
    padding-left: 10px;
    padding-right: 10px;
  }
  .buy-button-trio .buy-button__project,
  .buy-button-trio .buy-button__license {
    font-size: 1.1rem;
  }
  .buy-button-trio .buy-button__title {
    font-size: 1.9rem;
    line-height: 1.2;
  }
  .buy-button-trio .buy-button__license {
    margin-bottom: 15px;
  }
  .buy-button-trio .buy-button__for {
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  .buy-button-trio .buy-button__price {
    position: relative;
    width: auto;
    font-size: 2.4rem;
    line-height: 1.3;
    padding-top: 15px;
    padding-bottom: 10px;
    border-radius: 0 0 8px 8px;
  }
  .buy-button-trio .buy-button__was-price {
    display: block;
    padding-bottom: 10px;
  }
  .buy-button-trio .buy-button__price__dollar {
    position: relative;
    top: 8px;
  }
  .buy-button-trio .buy-button:hover {
    transform: translateY(-5px);
  }
}

/* call out
------------------------- */
.call-out {
  border-top: 2px solid #ED2;
  border-bottom: 2px solid #ED2;
  padding-left: 40px;
  position: relative;
  margin: 20px 0;
}

/* (i) */
.call-out:before {
  content: 'i';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 5px;
  top: 20px;
  background: #ED2;
  border-radius: 50%;
  text-align: center;
  color: white;
  font-family: Consolas, Georgia, serif;
  font-style: italic;
}

.call-out h2 {
  margin-top: 0;
  padding-top: 10px;
  border-top: none;
}

.call-out--chill {
  border-color: #8C8;
}

.call-out--chill:before {
  background: #8C8;
}

/* ---- call-out--big-copy ---- */
.call-out--big-copy p,
.call-out--big-copy li,
.call-out--big-copy li:before {
  font-size: 1.2rem;
  line-height: 1.2;
}

/* ---- quick-start-list ---- */
.call-out--big-copy ol {
  list-style: none;
}

.quick-start-list li {
  position: relative;
  counter-increment: call-out-big-copy-item;
}

.quick-start-list li:before {
  content: counter(call-out-big-copy-item) ".";
  position: absolute;
  left: -1.2rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.quick-start-list {
  list-style: none;
}

@media screen and (min-width: 768px) {
  .call-out {
    border: 2px solid #ED2;
    padding: 10px 20px 10px 80px;
    border-radius: 6px;
    position: relative;
    margin: 20px 0;
  }
  .call-out--chill {
    border-color: #8C8;
  }
  .call-out:before {
    width: 40px;
    height: 40px;
    left: 20px;
    top: 30px;
    font-size: 1.9rem;
    line-height: 46px;
  }
}

/* chunky-buttons
------------------------- */
.chunky-button {
  display: block;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  text-decoration: none;
  line-height: 1.0;
}

.chunky-button:hover {
  text-decoration: none;
}

.chunky-button--fill {
  background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.15));
}

.chunky-button__icon {
  margin-right: 10px;
}

.chunky-button__icon svg {
  width: 48px;
  height: 48px;
  vertical-align: bottom;
}

.chunky-button__text {
  display: inline-block;
}

.chunky-button__text__plain {
  display: block;
}

.chunky-button__text__strong {
  display: block;
  font-size: 1.4rem;
  font-weight: bold;
}

.chunky-button--outline {
  padding-top: 8px;
  padding-bottom: 8px;
  border: 2px solid;
}

/* commercial-license-agreement
------------------------- */
.commercial-license-agreement h3 {
  counter-increment: cla-h3;
  counter-reset: cla-part;
}

.commercial-license-agreement h3:before {
  content: counter(cla-h3) ".";
  margin-right: 0.25rem;
  color: #888;
  font-family: 'Texta', sans-serif;
}

.cla__part {
  counter-increment: cla-part;
}

.cla__part:before,
.cla__definitions-list li:before {
  content: counter(cla-h3) "." counter(cla-part) ".";
  color: #888;
  margin-right: 0.25rem;
}

.cla__definitions-list {
  list-style: none;
  padding-left: 2.6rem;
}

.cla__definitions-list li {
  text-indent: -1.5rem;
  margin-bottom: 0.5rem;
  counter-increment: cla-definitions-item;
}

.cla__definitions-list li:before {
  content: counter(cla-h3) "." counter(cla-definitions-item) ".";
}

/* duo
two columns for large devices
------------------------- */
.duo:after {
  content: '';
  display: block;
  clear: both;
}

.duo__cell {
  margin-bottom: 10px;
}

/* --- duo--legal --- */
.duo--legal__plain {
  padding: 0 0.8rem;
  background: #FAFAFA;
  color: #888;
}

.duo--legal--first .duo--legal__official:before,
.duo--legal--first .duo--legal__plain:before {
  display: block;
  padding-top: 0.5rem;
  font-size: 0.88rem;
  color: #888;
}

.duo--legal--first .duo--legal__official:before {
  content: 'Official legal copy';
}

.duo--legal--first .duo--legal__plain:before {
  content: 'Plain English';
}

@media screen and (min-width: 768px) {
  .duo__cell {
    float: left;
    width: 48.5%;
  }
  .duo__cell:first-child {
    margin-right: 3%;
  }
  .duo__cell--license-option p {
    margin-top: 0;
  }
}

/* edit-demo
------------------------- */
.edit-demo {
  clear: both;
  font-size: 0.92rem;
}

/* example
------------------------- */
.example {
  margin: 40px 0;
}

.example__code pre {
  margin: 0 0 20px;
}

/* gh-button
------------------------- */
.gh-button {
  display: inline-block;
  background: none;
  border: none;
  color: #333;
  font-size: 1.1rem;
}

.gh-button__title,
.gh-button__stat {
  float: left;
  font-weight: bold;
  line-height: 20px;
  padding: 5px 10px;
  border: 1px solid #d5d5d5;
}

.gh-button__icon,
.gh-button .github-logo {
  height: 21px;
  fill: #333;
  display: inline-block;
  vertical-align: bottom;
}

.gh-button__title {
  background-color: #eee;
  background-image: linear-gradient(#fcfcfc, #eee);
  border-radius: 4px 0 0 4px;
}

.gh-button .github-logo {
  margin-right: 0.2em;
}

.gh-button__stat {
  border-left: 0;
  border-radius: 0 4px 4px 0;
  background: white;
}

.gh-button:hover {
  color: #333;
}

.gh-button:hover .gh-button__title {
  background-color: #ddd;
  background-image: linear-gradient(#eee, #ddd);
}

.gh-button:hover .gh-button__stat {
  color: #4078c0;
}

.gh-button:hover .gh-button__icon--star {
  fill: #4078c0;
}

/* shirt-promo
------------------------- */
.shirt-promo {
  margin: 40px 0;
}

.shirt-promo__title {
  font-size: 1.6rem;
}

.shirt-promo__image {
  display: block;
  max-width: 100%;
  margin-bottom: 10px;
}

/* showcase-item
------------------------- */
.showcase-item__link {
  display: block;
  padding: 10px;
  background: white;
  margin-bottom: 20px;
  border-radius: 8px;
  background: #DDD;
}

.showcase-item__link:after {
  content: '';
  display: block;
  clear: both;
}

.showcase-item__image {
  width: 80px;
  float: left;
  display: block;
}

.showcase-item__image svg {
  display: block;
  border-radius: 5px;
  width: 100%;
  height: auto;
}

.showcase-item__text {
  float: left;
  width: calc(100% - 120px);
  padding-left: 10px;
}

.showcase-item__title {
  margin: 0;
  font-size: 1.4rem;
}

.showcase-item__description {
  margin: 0;
}

@media screen and (min-width: 768px) {
  .showcase-item {
    float: left;
    width: 48.5%;
  }
  .showcase-item:nth-child(2n+1) {
    margin-right: 3%;
  }
  .showcase-item__image {
    width: 120px;
  }
  .showcase-item__text {
    padding-left: 20px;
  }
  .showcase-item__title {
    font-size: 2.0rem;
  }
  .showcase-item__description {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}

/* showcase
------------------------- */
.showcase-item-list {
  padding: 0;
  list-style: none;
}

.showcase-item-list:after {
  content: '';
  display: block;
  clear: both;
}

.showcase-item .infinite-scroll-illo {
  padding: 5px;
}

.showcase__banner__image {
  display: block;
  max-width: 100%;
  margin-top: 10px;
  border-radius: 5px;
}

/* site-footer
------------------------- */
.site-footer {
  padding: 40px 0;
  margin-top: 60px;
}

.site-footer__copy {
  font-size: 1.2rem;
}

.site-footer .twitter-logo {
  width: 1.3rem;
  height: 1.3rem;
  vertical-align: middle;
}

/* socks-promo
------------------------- */
.socks-promo {
  margin: 40px 0;
}

.socks-promo__image {
  display: block;
  max-width: 100%;
  border-radius: 5px;
}

.socks-promo .duo__cell {
  margin-bottom: 0;
}

/* flickity-illo
------------------------- */
.flickity-illo {
  background: #ED0;
}

/* infinite-scroll-illo
------------------------- */
.infinite-scroll-illo__page {
  stroke: #333;
  stroke-width: 20;
  stroke-miterlimit: 10;
}

.infinite-scroll-illo__page--back {
  fill: white;
}

.infinite-scroll-illo__page--front1 {
  fill: #C25;
}

.infinite-scroll-illo__page--front2 {
  fill: #E62;
}

.infinite-scroll-illo__page--front3 {
  fill: #EA0;
}

/* isotope-illo
------------------------- */
.isotope-illo {
  background: #222;
}

/*

COLORS

dark brown #262524
dark dark brown #161615
link orange #FB4
blue #4BF
green #1FB


*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* font-size on html for rem*/
html {
  font-family: Texta, sans-serif;
  font-size: 17px;
  line-height: 1.5;
}

html.export {
  font-family: sans-serif;
  font-size: 15px;
}

/* ---- links ---- */
/* ---- headers ---- */
h1,
h2,
h3,
h4 {
  line-height: 1.25;
}

h1 {
  font-weight: bold;
  font-size: 2.65em;
  margin-bottom: 0.2em;
  margin-top: 2.0em;
}

h1:first-child {
  margin-top: 0;
}

h2 {
  font-weight: bold;
}

h3 {
  font-weight: normal;
  font-size: 1.4em;
  margin-top: 2.0em;
  margin-bottom: 0.8em;
}

h4 {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.1em;
}

/* ---- lists ---- */
ul,
ol {
  padding-left: 1.8em;
}

/* ---- code ---- */
pre,
code {
  font-family: Consolas, Menlo, monospace;
  font-size: 14px;
  background: #161615;
  color: white;
}

pre {
  padding: 0.8em;
  border-radius: 5px;
  white-space: pre-wrap;
}

code {
  padding: 0.2em 0.3em;
  line-height: 1.2;
  border-radius: 3px;
}

pre code {
  padding: 0;
  line-height: 1.5;
  background: none;
}

a code {
  background: #A2C;
  color: white;
}

a:hover code {
  color: white;
  background: #D26;
}

.clearfix:after {
  content: '';
  clear: both;
  display: block;
}

@media screen and (min-width: 768px) {
  html {
    font-size: 19px;
  }
  html.export {
    font-size: 16px;
  }
  pre,
  code,
  kbd {
    font-size: 15px;
  }
}

/* Code
------------------------- */
code .string,
code .tag .value {
  color: #0C4;
}

code .number,
code .cp,
code .literal {
  color: #38F;
}

/*boolean*/
code .keyword {
  color: #F73;
}

/* keyword */
code .kd,
code .attribute {
  color: #DC8;
}

/* markup attribute */
code .title {
  color: #9CF;
}

code .params {
  color: #98D;
}

code .regexp {
  color: #FC8;
}

/* regex */
code .o {
  color: #F63;
}

/* operator */
code .nb {
  color: #AA97AC;
}

/* support */
code .built_in {
  color: #DD8;
}

/* comment */
code .comment {
  color: #999;
  font-style: italic;
}

code .tag {
  color: #6CF;
}

/* Markup open tag */
code .id {
  color: #ABC;
}

/* css id */
code .class,
code .selector-class {
  color: #C95;
}

/* CSS class */
code .rules {
  color: #FED;
}

code .m {
  color: #DE8E50;
}

/* CSS value */
code .nd {
  color: #9FAD7E;
}

/* CSS pseudo selector */
code .hexcolor {
  color: #F63;
}

code .at_rule {
  color: #088;
}

/* isotope keywords */
code .isotope_var {
  color: #F3F;
}

code .jquery_var {
  color: #DF8;
}

code .isotope_keyword {
  color: #0FF;
  text-decoration: underline;
}

.code-display code {
  font-size: 18px;
}

/* web fonts
------------------------- */
/*@import url("//hello.myfonts.net/count/2d333f");*/
/*
  Just use WOFF2 and WOFF for webfonts
  https://css-tricks.com/snippets/css/using-font-face/ */
/* Texta Heavy */
@font-face {
  font-family: 'Texta';
  font-weight: bold;
  font-style: normal;
  src: url("../fonts/2D333F_0_0.woff2") format("woff2"), url("../fonts/2D333F_0_0.woff") format("woff");
}

/* Texta Italic */
@font-face {
  font-family: 'Texta';
  font-weight: normal;
  font-style: italic;
  src: url("../fonts/2D333F_1_0.woff2") format("woff2"), url("../fonts/2D333F_1_0.woff") format("woff");
}

/* Texta Regular */
@font-face {
  font-family: 'Texta';
  src: url("../fonts/2D333F_2_0.woff2") format("woff2"), url("../fonts/2D333F_2_0.woff") format("woff");
}

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

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
  font-family: 'icomoon';
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  font-style: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

.icon-file-download:before {
  content: "\e001";
}

.icon-folder-download:before {
  content: "\e002";
}

.icon-github:before {
  content: "\e000";
}

/* main
------------------------- */
.main h1 {
  font-size: 3.8rem;
}

.main h2 {
  font-size: 1.6rem;
  font-weight: normal;
  border-top: 2px solid #484542;
  padding-top: 1.1em;
  margin-top: 1.4em;
}

.main h2:target {
  padding-left: 0.5em;
  background: #D26;
  color: white;
}

.main h3 {
  font-size: 1.3rem;
  border-top: 1px solid #484542;
  padding-top: 0.8em;
  margin: 1.4em 0 0.5em;
}

@media screen and (min-width: 800px) {
  .main {
    padding-top: 20px;
    min-height: 540px;
    /* space so footer doesn't overlap */
  }
  .main h2 {
    font-size: 2.4rem;
  }
  .main h3 {
    font-size: 1.5rem;
    padding-top: 30px;
  }
}

/* ---- instruction ---- */
.instruction {
  font-size: 18px;
  margin-bottom: 0.2em;
  color: #888;
}

/* ---- notification ---- */
/* bootstrap 3
------------------------- */
.bootstrap-3__container-fluid {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.bootstrap-3__col-xs-4,
.bootstrap-3__col-xs-6,
.bootstrap-3__col-xs-8,
.bootstrap-3__col-xs-12 {
  padding-right: 15px;
  padding-left: 15px;
}

.bootstrap-3__col-xs-4 {
  width: 33.333%;
}

.bootstrap-3__col-xs-6 {
  width: 50%;
}

.bootstrap-3__col-xs-8 {
  width: 66.666%;
}

.bootstrap-3__grid-item-content {
  height: 100px;
  background: #e6e5e4;
  border: 2px solid #b6b5b4;
  border-color: rgba(0, 0, 0, 0.4);
}

.bootstrap-3__grid-item-content--height2 {
  height: 200px;
}

/* sm */
@media (min-width: 768px) {
  .bootstrap-3__col-sm-4 {
    width: 33.333%;
  }
  .bootstrap-3__col-sm-8 {
    width: 66.666%;
  }
}

/* md */
@media (min-width: 992px) {
  .bootstrap-3__col-md-3 {
    width: 25%;
  }
  .bootstrap-3__col-md-6 {
    width: 50%;
  }
}

/* animate-item-size-item
------------------------- */
.animate-item-size-item {
  float: left;
}

/* animate-item-size-item is invisible, but used for layout */
.animate-item-size-item,
.animate-item-size-item__content {
  width: 60px;
  height: 60px;
}

/* animate-item-size-item__content is visible, and transitions size */
.animate-item-size-item__content {
  background: #8DF;
  border: 2px solid #333;
  border-color: rgba(0, 0, 0, 0.7);
  -webkit-transition: width 0.4s, height 0.4s;
  -moz-transition: width 0.4s, height 0.4s;
  -o-transition: width 0.4s, height 0.4s;
  transition: width 0.4s, height 0.4s;
}

.animate-item-size-item:hover .animate-item-size-item__content {
  border-color: white;
  background: #4BF;
  cursor: pointer;
}

/* both animate-item-size-item and animate-item-size-item content change size */
.animate-item-size-item.is-expanded,
.animate-item-size-item.is-expanded .animate-item-size-item__content {
  width: 180px;
  height: 120px;
}

.animate-item-size-item.is-expanded {
  z-index: 2;
}

.animate-item-size-item.is-expanded .animate-item-size-item__content {
  background: #F90;
}

/* ---- responsive ---- */
.grid--animate-item-size-responsive .animate-item-size-item,
.grid--animate-item-size-responsive .grid-sizer {
  width: 20%;
}

.grid--animate-item-size-responsive .animate-item-size-item__content,
.grid--animate-item-size-responsive .animate-item-size-item.is-expanded .animate-item-size-item__content {
  width: 100%;
  height: 100%;
}

/* item has expanded size */
.grid--animate-item-size-responsive .animate-item-size-item.is-expanded {
  width: 60%;
}

/* container
------------------------- */
.container, .hero .slick-dots, html body #cookie-notice .cookie-notice-container {
  margin-left: 10px;
  margin-right: 10px;
  max-width: 1200px;
}

.main .container > *, .main .hero .slick-dots > *, .hero .main .slick-dots > *, .main html body #cookie-notice .cookie-notice-container > *, html body #cookie-notice .main .cookie-notice-container > * {
  max-width: 700px;
}

.main .container .go-wide, .main .hero .slick-dots .go-wide, .hero .main .slick-dots .go-wide, .main html body #cookie-notice .cookie-notice-container .go-wide, html body #cookie-notice .main .cookie-notice-container .go-wide,
.main .container .example,
.main .hero .slick-dots .example,
.hero .main .slick-dots .example,
.main html body #cookie-notice .cookie-notice-container .example,
html body #cookie-notice .main .cookie-notice-container .example {
  max-width: none;
}

/* tablet-ish */
@media screen and (min-width: 768px) {
  .container, .hero .slick-dots, html body #cookie-notice .cookie-notice-container {
    margin-left: 220px;
  }
  .main .container > *, .main .hero .slick-dots > *, .hero .main .slick-dots > *, .main html body #cookie-notice .cookie-notice-container > *, html body #cookie-notice .main .cookie-notice-container > * {
    max-width: 900px;
  }
}

/* desktop */
@media screen and (min-width: 960px) {
  .container, .hero .slick-dots, html body #cookie-notice .cookie-notice-container {
    margin-right: 6%;
  }
}

/* element-item
------------------------- */
.element-item {
  position: relative;
  float: left;
  width: 100px;
  height: 100px;
  margin: 5px;
  padding: 10px;
  background: #888;
  color: #262524;
}

.element-item > * {
  margin: 0;
  padding: 0;
}

.element-item .name {
  position: absolute;
  left: 10px;
  top: 60px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.8em;
  font-weight: normal;
}

.element-item .symbol {
  position: absolute;
  left: 10px;
  top: 0px;
  font-size: 2.8em;
  font-weight: bold;
  color: white;
}

.element-item .number {
  position: absolute;
  right: 8px;
  top: 5px;
}

.element-item .weight {
  position: absolute;
  left: 10px;
  top: 76px;
  font-size: 0.8em;
}

.element-item.alkali {
  background: #F00;
  background: red;
}

.element-item.alkaline-earth {
  background: #F80;
  background: #ff9900;
}

.element-item.lanthanoid {
  background: #FF0;
  background: #ccff00;
}

.element-item.actinoid {
  background: #0F0;
  background: #33ff00;
}

.element-item.transition {
  background: #0F8;
  background: #00ff66;
}

.element-item.post-transition {
  background: #0FF;
  background: cyan;
}

.element-item.metalloid {
  background: #08F;
  background: #0066ff;
}

.element-item.diatomic {
  background: #00F;
  background: #3300ff;
}

.element-item.halogen {
  background: #F0F;
  background: #cc00ff;
}

.element-item.noble-gas {
  background: #F08;
  background: #ff0099;
}

/* button overwrites
------------------------- */
.button {
  border-color: #222;
}

/* buy-button
------------------------- */
.buy-button {
  background: #161514;
  color: #1FB;
}

.buy-button__price {
  background: #1BF;
}

.buy-button:hover .buy-button__price {
  background: #1FB;
}

/* call-out overwrites
------------------------- */
.call-out {
  border-color: #FB4;
}

.call-out:before {
  background: #FB4;
}

.call-out--chill {
  border-color: #4FB;
}

.call-out--chill:before {
  background: #4FB;
}

/* chunky-butotn
------------------------- */
.chunky-button--fill {
  background-color: #161514;
}

.chunky-button--fill svg path {
  fill: #FB4;
}

.chunky-button--fill:hover {
  background-color: #4FB;
  color: #222;
}

.chunky-button--fill:hover svg path {
  fill: #222;
}

/* 
------------------------- */
.duo--legal__plain {
  background: #161514;
  border-radius: 5px;
  color: #AAA;
}

/* showcase overwrites
------------------------- */
.showcase-item__link {
  background: #262524;
  color: #4BF;
}

.showcase-item__link:hover {
  background: #1FB;
  color: #262524;
}

.showcase-item__title {
  font-weight: bold;
}

.huebee-illo__line {
  stroke: white;
}

/* site-footer overwrites
------------------------- */
.site-footer {
  background: #161514;
  position: relative;
}

.site-footer .twitter-logo {
  fill: #FB4;
}

.site-footer a:hover .twitter-logo {
  fill: #1BF;
}

/* ---- mfzy-logo ---- */
.site-footer .mfzy-logo__body-fill {
  fill: #1BF;
}

.site-footer .mfzy-logo__stripes {
  display: none;
}

.site-footer a:hover .mfzy-logo__stripes {
  display: inline;
}

/* ---- mfzy-wordmark ---- */
.mfzy-wordmark {
  stroke: #1BF;
}

.mfzy-brand__link:hover .mfzy-wordmark {
  stroke: white;
}

@media screen and (min-width: 960px) {
  /* sidebar brand */
  .site-footer .mfzy-brand {
    position: absolute;
    left: 20px;
    top: 60px;
    width: 180px;
  }
  .site-footer .mfzy-logo {
    display: block;
    width: 108px;
    height: 108px;
    margin: 0 auto 10px;
  }
  .site-footer .mfzy-wordmark {
    margin: 0 auto;
    display: block;
  }
}

/* gh-button
------------------------- */
.gh-button {
  display: inline-block;
  background: none;
  border: none;
  font-family: Helvetica, Arial, sans-serif;
  color: #333;
}

.gh-button__title,
.gh-button__stat {
  float: left;
  font-size: 18px;
  font-weight: bold;
  line-height: 20px;
  padding: 5px 10px;
  border: 1px solid #d5d5d5;
}

.gh-button__icon {
  height: 21px;
  fill: #333;
  display: inline-block;
  vertical-align: bottom;
}

.gh-button__title {
  background-color: #eee;
  background-image: linear-gradient(#fcfcfc, #eee);
  border-radius: 4px 0 0 4px;
}

.gh-button__icon--github-logo {
  margin-right: 0.2em;
}

.gh-button__stat {
  border-left: 0;
  border-radius: 0 4px 4px 0;
  background: white;
}

.gh-button:hover {
  color: #333;
}

.gh-button:hover .gh-button__title {
  background-color: #ddd;
  background-image: linear-gradient(#eee, #ddd);
}

.gh-button:hover .gh-button__stat {
  color: #4078c0;
}

.gh-button:hover .gh-button__icon--star {
  fill: #4078c0;
}

/* grid
------------------------- */
/* clearfix */
/* ---- counting ---- */
.grid--counting {
  counter-reset: item;
}

.grid--counting .grid-item:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  color: #555;
  padding-top: 0.2em;
  text-align: center;
  font-size: 18px;
}

/* ---- horizontal ---- */
/* horizontal examples need height */
.grid--horizontal {
  height: 334px;
}

/* ---- static banner ---- */
.grid--has-banner {
  position: relative;
}

.static-banner {
  position: absolute;
  left: 10px;
  top: 10px;
  background: rgba(0, 128, 255, 0.8);
  z-index: 1;
  padding: 2px 20px;
  color: white;
  pointer-events: none;
}

/* ---- fixed-width ---- */
.grid--fixed-width {
  width: 304px;
}

/* ---- stamp ---- */
.grid--has-stamp {
  position: relative;
}

/* ---- fit-width ---- */
/* centered */
.grid--fit-width {
  margin: 0 auto;
}

/* grid-image-item
------------------------- */
.grid-image-item,
.grid--images .grid-sizer {
  width: 33.33%;
}

.grid-image-item {
  float: left;
}

.grid-image-item img {
  display: block;
  max-width: 100%;
}

/* grid-item
------------------------- */
.grid-item--width2 {
  width: 100px;
}

.grid-item--height2 {
  height: 100px;
}

.grid-item--width3 {
  width: 150px;
}

.grid-item--height3 {
  height: 150px;
}

.grid-item--gigante {
  width: 150px;
  height: 200px;
}

.grid--clickable .grid-item:hover {
  border-color: #28F;
  background: #8CF;
  cursor: pointer;
}

/* ---- insert demo ---- */
.grid-item .number {
  line-height: 50px;
  text-align: center;
  color: #333;
  margin: 0;
  font-size: 1.3rem;
}

/* ---- fluid-5-col ---- */
.grid--fluid-5-col .grid-item,
.grid--fluid-5-col .grid-sizer {
  width: 20%;
}

.grid--fluid-5-col .grid-item--width2 {
  width: 40%;
}

/* ---- grid--masonry-gutter ---- */
.grid--has-gutter .grid-item--width2 {
  width: 110px;
}

/* ---- grid--masonry-gutter-bottom ---- */
.grid--masonry-gutter-bottom .grid-item {
  margin-bottom: 10px;
}

.grid--masonry-gutter-bottom .grid-item--height2 {
  height: 110px;
}

/* ---- grid--packery-gutter ---- */
.grid--packery-gutter .grid-item--width2 {
  width: 110px;
}

.grid--packery-gutter .grid-item--height2 {
  height: 110px;
}

/* ---- grid--fluid-gutter ---- */
.grid--fluid-gutter .grid-item,
.grid--fluid-gutter .grid-sizer {
  width: 22%;
}

.grid--fluid-gutter .gutter-sizer {
  width: 4%;
}

.grid--fluid-gutter .grid-item--width2 {
  width: 48%;
}

/* ---- masonry-horizontal ---- */
.grid--masonry-horizontal-gutter .grid-item--height2 {
  height: 110px;
}

/* ----  ---- */
.grid--masonry-horizontal-gutter-right .grid-item {
  margin-right: 10px;
}

.grid--masonry-horizontal-gutter-right .grid-item--width2 {
  width: 110px;
}

/* ---- cells-by-row-element-sizing ---- */
.grid--cells-by-row-element-sizing .grid-item {
  width: 13%;
}

.grid--cells-by-row-element-sizing .grid-item--width2 {
  width: 23%;
}

.grid--cells-by-row-element-sizing .grid-sizer {
  width: 25%;
  height: 110px;
}

/* ---- cells-by-column-element-sizing ---- */
.grid--cells-by-column-element-sizing .grid-item {
  height: 13%;
}

.grid--cells-by-column-element-sizing .grid-item--width2 {
  height: 23%;
}

.grid--cells-by-column-element-sizing .grid-sizer {
  height: 25%;
  width: 110px;
}

/* ---- fitrows-gutter ---- */
.grid--fit-rows-gutter .grid-item--width2 {
  width: 110px;
}

.grid--fit-rows-gutter .grid-item--width3 {
  width: 170px;
}

/* ---- filter blocks ---- */
.grid-item--filter-block-red,
.grid-item--filter-block-blue {
  width: 60px;
  height: 60px;
}

.grid--filter-blocks-large .grid-item--filter-block-red,
.grid--filter-blocks-large .grid-item--filter-block-blue {
  width: 80px;
  height: 80px;
}

.grid-item--filter-block-red {
  background: #D00;
}

.grid-item--filter-block-blue {
  background: #19F;
}

/* ---- horizontal order ---- */
.grid--hor-order .grid-item {
  width: 100px;
  height: 80px;
}

.grid--hor-order .grid-item--height2 {
  height: 100px;
}

.grid--hor-order .grid-item--height3 {
  height: 120px;
}

/* grid-splash-item
------------------------- */
.grid-splash-item {
  float: left;
  width: 100px;
  height: 100px;
  margin: 5px;
  padding: 20px;
  background: red;
  color: white;
  font-size: 3.0rem;
  font-weight: bold;
  line-height: 1.0;
}

.grid-splash-item--width2 {
  width: 210px;
}

.grid-splash-item--height2 {
  height: 210px;
}

.grid-splash-item:nth-child(10n+0) {
  background: red;
}

.grid-splash-item:nth-child(10n+1) {
  background: #ff9900;
}

.grid-splash-item:nth-child(10n+2) {
  background: #ccff00;
}

.grid-splash-item:nth-child(10n+3) {
  background: #33ff00;
}

.grid-splash-item:nth-child(10n+4) {
  background: #00ff66;
}

.grid-splash-item:nth-child(10n+5) {
  background: cyan;
}

.grid-splash-item:nth-child(10n+6) {
  background: #0066ff;
}

.grid-splash-item:nth-child(10n+7) {
  background: #3300ff;
}

.grid-splash-item:nth-child(10n+8) {
  background: #cc00ff;
}

.grid-splash-item:nth-child(10n+9) {
  background: #ff0099;
}

/* hero
------------------------- */
.hero__title {
  font-size: 4.6rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.1em;
}

.hero__tagline {
  font-size: 1.6rem;
  margin: 0 0 0.8em;
  line-height: 1.2;
}

/* ---- hero__big-button ---- */
.hero__big-button {
  display: block;
  position: relative;
  padding: 10px;
  font-size: 1.2rem;
  background: #161615;
  color: #FB4;
  border-radius: 8px;
  margin-bottom: 10px;
}

.hero__button-icon {
  vertical-align: bottom;
  width: 40px;
  height: 40px;
  margin-right: 6px;
}

.hero__button-icon path {
  fill: #FB4;
}

/* hover */
.hero__big-button:hover {
  background: #4FB;
  color: #222;
}

.hero__big-button:hover .hero__button-icon path {
  fill: #222;
}

/* ---- desktop ---- */
@media screen and (min-width: 960px) {
  .hero__title {
    font-size: 7.0rem;
  }
  .hero__tagline {
    font-size: 2.1rem;
  }
  /* buttons */
  .hero__big-button {
    font-size: 1.3rem;
    line-height: 1.5;
    padding: 20px 20px;
    margin-bottom: 40px;
  }
}

/* in-use-grid
------------------------- */
.in-use-grid .grid-sizer,
.in-use-grid__item {
  width: 23.5%;
}

.in-use-grid .gutter-sizer {
  width: 2%;
}

.in-use-grid__item {
  background: #161615;
  float: left;
  margin-bottom: 20px;
  border-radius: 5px;
}

.in-use-grid__item__title {
  margin: 0;
  padding: 10px;
}

.in-use-grid__item__image {
  display: block;
  max-width: 100%;
  border-radius: 0 0 5px 5px;
}

/* nav
------------------------- */
.nav__title {
  float: left;
  margin: 0;
  line-height: 44px;
  font-size: 1.5rem;
}

.nav__title a {
  padding: 0 0.8em;
  display: block;
  color: #4FB;
}

.nav__title a:hover {
  background: #D26;
  color: white;
}

@media screen and (min-width: 768px) {
  .nav {
    position: absolute;
    left: 0;
    top: 39px;
    width: 200px;
  }
  .nav__title {
    line-height: 1.25;
    float: none;
    font-size: 2.0rem;
  }
  .nav__title a {
    padding: 7px 20px;
  }
  /* hide h1 on index */
  .page--index .nav__title {
    visibility: hidden;
  }
}

/* notification
------------------------- */
.notification {
  max-width: none;
  display: none;
  /* hide by default */
  position: fixed;
  z-index: 20;
  /* above most stuff */
  bottom: 0px;
  right: 0px;
  background: #A2C;
  padding: 10px 20px;
  color: white;
  font-size: 1.2rem;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}

/* page-nav
------------------------- */
.page-nav {
  padding: 1.0em 10px;
  font-size: 0.8rem;
}

.page-nav__item {
  display: inline-block;
}

.page-nav__item:after {
  content: ' •';
  margin: 0 0.3em;
  opacity: 0.5;
}

.page-nav__item:last-child:after {
  content: none;
}

.page-nav a {
  color: #4BF;
}

.page-nav a:hover {
  color: #FB4;
}

@media screen and (min-width: 768px) {
  .page-nav {
    list-style: none;
    padding: 0;
    padding-top: 20px;
  }
  .page-nav.is-fixed {
    position: fixed;
    left: 0;
    top: 0;
    width: 200px;
  }
  .page-nav__item {
    display: block;
    margin: 0;
  }
  .page-nav__item:after {
    content: none;
  }
  .page-nav__item a {
    display: block;
    padding: 3px 20px;
  }
  /* indent h3 and h4 items */
  .page-nav__item--h3 a,
  .page-nav__item--h4 a {
    padding-left: 30px;
  }
}

/* site-nav
------------------------- */
/* ---- site-nav ---- */
.site-nav {
  list-style: none;
  margin-bottom: 0;
  padding: 0;
}

/* clear fix */
.site-nav:after {
  content: '';
  display: block;
  clear: both;
}

.site-nav__item {
  display: block;
  float: left;
  line-height: 44px;
  /* inline with title */
}

.site-nav__item__link {
  display: block;
  padding: 0 1.0em;
}

.site-nav__item__link:hover {
  background: #161615;
  color: white;
}

/* selected */
.page--filtering .site-nav__item--filtering .site-nav__item__link,
.page--sorting .site-nav__item--sorting .site-nav__item__link,
.page--layout .site-nav__item--layout .site-nav__item__link,
.page--layout-modes .site-nav__item--layout-modes .site-nav__item__link,
.page--options .site-nav__item--options .site-nav__item__link,
.page--methods .site-nav__item--methods .site-nav__item__link,
.page--events .site-nav__item--events .site-nav__item__link,
.page--draggable .site-nav__item--draggable .site-nav__item__link,
.page--license .site-nav__item--license .site-nav__item__link,
.page--extras .site-nav__item--extras .site-nav__item__link,
.page--faq .site-nav__item--faq a {
  color: #4Bf;
  background: #161615;
}

@media screen and (min-width: 768px) {
  .site-nav__item {
    float: none;
  }
  .site-nav__item {
    float: none;
    font-size: 1.1rem;
    line-height: 1.25;
  }
  .site-nav__item__link {
    padding: 7px 20px;
  }
}

/* sub-nav
------------------------- */
.sub-nav {
  display: none;
}

@media screen and (min-width: 768px) {
  .sub-nav-parent {
    position: relative;
    max-height: 2em;
  }
  .sub-nav {
    display: block;
    /* visible on desktop */
    position: absolute;
    left: 100%;
    top: 0;
    list-style: none;
    width: 0;
    overflow: hidden;
    opacity: 0;
    transition: width 0.2s, opacity 0.2s;
    margin: 0;
    padding: 0;
  }
  .sub-nav-parent:hover .sub-nav {
    opacity: 1;
    width: 190px;
    z-index: 2;
    /* on top of stuff */
  }
  .sub-nav-parent:hover,
  .sub-nav {
    background: #161615;
  }
  .sub-nav-parent > a:after {
    content: '...';
  }
  .sub-nav-parent:hover > a:after {
    content: none;
  }
  .sub-nav__item__link {
    display: block;
    padding: 5px 10px;
  }
  .sub-nav__item {
    font-size: 1.0rem;
  }
}

/* ui-group
------------------------- */
.ui-group {
  display: inline-block;
}

.ui-group__title {
  display: inline-block;
  vertical-align: top;
  font-size: 1.2rem;
  line-height: 40px;
  margin: 0 10px 0 0;
  font-weight: bold;
}

.ui-group .button-group {
  display: inline-block;
  margin-right: 20px;
}

/* variable
------------------------- */
.variable {
  margin: 0.5em 0;
  padding: 5px 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.variable__type {
  color: #ADF;
}

.variable__type,
.variable__description {
  margin-left: 10px;
}

.variable__type:before,
.variable__description:before {
  content: '·';
  padding-right: 0.4em;
  display: inline-block;
}

.color-shape {
  width: 70px;
  height: 70px;
  margin: 5px;
  float: left;
}

.color-shape.round {
  border-radius: 35px;
}

.color-shape.big.round {
  border-radius: 75px;
}

.color-shape.red {
  background: red;
}

.color-shape.blue {
  background: blue;
}

.color-shape.yellow {
  background: yellow;
}

.color-shape.wide,
.color-shape.big {
  width: 150px;
}

.color-shape.tall,
.color-shape.big {
  height: 150px;
}

/* grid-multi-item
------------------------- */
.grid-multi-item {
  float: left;
  width: 100px;
  height: 100px;
  background: #e6e5e4;
  border: 2px solid #b6b5b4;
  border-color: rgba(0, 0, 0, 0.4);
}

.grid-multi-item[data-color="blue"] {
  background: #19F;
}

.grid-multi-item[data-color="red"] {
  background: #D00;
}

.grid-multi-item[data-color="yellow"] {
  background: #FD0;
}

.grid-multi-item .number {
  font-size: 4.0rem;
  font-weight: 600;
  color: white;
  padding-top: 0.1em;
  text-align: center;
  line-height: 90px;
  margin: 0;
}

/* stamp
------------------------- */
.stamp {
  position: absolute;
  width: 30%;
  height: 60px;
  background: orange;
  border: 4px dotted #161615;
}

/* ---- stamp-option ---- */
.stamp--stamp-option-stamp1 {
  left: 30%;
  top: 10px;
  width: 20%;
  height: 100px;
}

.stamp--stamp-option-stamp2 {
  right: 10%;
  top: 20px;
  width: 70%;
  height: 30px;
}

.stamp--packery {
  right: 20%;
  top: 80px;
  width: 45%;
  height: 90px;
}

/* stamp-methods
------------------------- */
.grid--stamp-methods .grid-item {
  opacity: 0.8;
}

.stamp--stamp-methods {
  left: 10px;
  top: 10px;
}

/* vertical-list
------------------------- */
.vertical-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 2px solid #484542;
  background: rgba(0, 0, 0, 0.15);
}

.vertical-list__item {
  width: 100%;
  border-top: 1px solid #484542;
}

.vertical-list__item > * {
  display: inline-block;
  padding: 3px 4px;
}

.vertical-list__item .name {
  width: 20%;
}

.vertical-list__item .symbol {
  width: 10%;
}

.vertical-list__item .weight {
  width: 15%;
}

.vertical-list__item .number {
  width: 10%;
}

.vertical-list__item .category {
  width: 25%;
}

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

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

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

blockquote {
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "“" "”";
}

blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}

blockquote p {
  display: inline;
  font-style: italic;
}

.embed-youtube {
  display: inline-block;
  position: relative;
  padding-bottom: 60%;
  padding-bottom: 56.25%;
  width: 100%;
}

.embed-youtube iframe {
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
}

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

:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
html {
  color: #222;
  font-size: 1em;
  line-height: 1.4;
}

/*
 * Remove text-shadow in selection highlight:
 * https://twitter.com/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://stackoverflow.com/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::selection {
  background: #b3d4fc;
  text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://github.com/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical;
}

/* autoprefixer: off */
html.show-grid {
  background: #0c0c0c !important;
}

html.show-grid body {
  background: transparent !important;
}

html.show-grid body .gel-grid-overlay * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html.show-grid body .gel-grid-overlay {
  z-index: -1;
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

html.show-grid body .gel-grid-overlay__grid {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1008px;
  margin: 0 auto;
  padding: 0 8px;
}

html.show-grid body .gel-grid-overlay__column {
  display: inline-block;
  height: 100%;
  width: 8.33333%;
  padding: 0 8px;
}

html.show-grid body .gel-grid-overlay__column-fill {
  background: rgba(255, 0, 0, 0.1);
  height: 100%;
}

html.show-grid body .gel-grid-overlay__margin {
  display: inline-block;
  height: 100%;
  width: 16px;
  position: absolute;
  top: 0;
  background: rgba(0, 255, 0, 0.1);
}

@media screen and (min-width: 400px) {
  html.show-grid body .gel-grid-overlay__grid {
    padding: 0 12px;
  }
  html.show-grid body .gel-grid-overlay__margin {
    width: 32px;
  }
}

@media screen and (min-width: 400px) and (min-width: 600px) {
  html.show-grid body .gel-grid-overlay__grid {
    padding: 0 16px;
  }
  html.show-grid body .gel-grid-overlay__column {
    padding: 0 16px;
  }
}

@media screen and (min-width: 400px) and (min-width: 1280px) {
  html.show-grid body .gel-grid-overlay__grid {
    max-width: 1280px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.wow {
  visibility: hidden;
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes animate {
  0% {
    top: -100%;
  }
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

.animated {
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(25px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes grow-left {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.lazyload {
  opacity: 0;
}

.lazyloading {
  opacity: 0;
}

.lazyloaded:not(.slick-slide) {
  opacity: 0;
  animation: fade-in ease 0.8s forwards;
  animation-delay: 1.5s;
}

img {
  opacity: 0;
  animation: fade-in ease 0.4s forwards;
  animation-delay: 0.8s;
}

.home-hero--content {
  opacity: 0;
  animation: fade-in ease 0.6s forwards;
  animation-delay: 1.2s;
}

@font-face {
  font-family: 'Apercu Pro';
  src: url("../fonts/apercu-pro-regular/ApercuPro-Regular.eot");
  src: url("../fonts/apercu-pro-regular/ApercuPro-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/apercu-pro-regular/ApercuPro-Regular.woff2") format("woff2"), url("../fonts/apercu-pro-regular/ApercuPro-Regular.woff") format("woff"), url("../fonts/apercu-pro-regular/ApercuPro-Regular.ttf") format("truetype"), url("../fonts/apercu-pro-regular/ApercuPro-Regular.svg#ApercuPro-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Formula Compressed';
  src: url("../fonts/PPFormula-CondensedBlack/PPFormula-CondensedBlack.eot");
  src: url("../fonts/PPFormula-CondensedBlack/PPFormula-CondensedBlack.eot?#iefix") format("embedded-opentype"), url("../fonts/PPFormula-CondensedBlack/PPFormula-CondensedBlack.woff2") format("woff2"), url("../fonts/PPFormula-CondensedBlack/PPFormula-CondensedBlack.woff") format("woff"), url("../fonts/PPFormula-CondensedBlack/PPFormula-CondensedBlack.ttf") format("truetype"), url("../fonts/PPFormula-CondensedBlack/PPFormula-CondensedBlack.svg#PPFormula-CondensedBlack") format("svg");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Formula Condensed';
  src: url("../fonts/PPFormula-Condensed/PPFormula-CondensedBold.eot");
  src: url("../fonts/PPFormula-Condensed/PPFormula-CondensedBold.eot?#iefix") format("embedded-opentype"), url("../fonts/PPFormula-Condensed/PPFormula-CondensedBold.woff2") format("woff2"), url("../fonts/PPFormula-Condensed/PPFormula-CondensedBold.woff") format("woff"), url("../fonts/PPFormula-Condensed/PPFormula-CondensedBold.ttf") format("truetype"), url("../fonts/PPFormula-Condensed/PPFormula-CondensedBold.svg#PPFormula-CondensedBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Formula Extended';
  src: url("../fonts/PPFormula-ExtendedBold/PPFormula-ExtendedBold.eot");
  src: url("../fonts/PPFormula-ExtendedBold/PPFormula-ExtendedBold.eot?#iefix") format("embedded-opentype"), url("../fonts/PPFormula-ExtendedBold/PPFormula-ExtendedBold.woff2") format("woff2"), url("../fonts/PPFormula-ExtendedBold/PPFormula-ExtendedBold.woff") format("woff"), url("../fonts/PPFormula-ExtendedBold/PPFormula-ExtendedBold.ttf") format("truetype"), url("../fonts/PPFormula-ExtendedBold/PPFormula-ExtendedBold.svg#PPFormula-ExtendedBold") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'PP Formula Extended Medium';
  src: url("../fonts/PPFormula-ExtendedMedium/PPFormula-ExtendedMedium.eot");
  src: url("../fonts/PPFormula-ExtendedMedium/PPFormula-ExtendedMedium.eot?#iefix") format("embedded-opentype"), url("../fonts/PPFormula-ExtendedMedium/PPFormula-ExtendedMedium.woff2") format("woff2"), url("../fonts/PPFormula-ExtendedMedium/PPFormula-ExtendedMedium.woff") format("woff"), url("../fonts/PPFormula-ExtendedMedium/PPFormula-ExtendedMedium.ttf") format("truetype"), url("../fonts/PPFormula-ExtendedMedium/PPFormula-ExtendedMedium.svg#PPFormula-ExtendedMedium") format("svg");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "PP Formula Extended Medium", sans-serif;
  color: #FFFFFF;
}

body span {
  font-family: "PP Formula Extended Medium", sans-serif;
}

.date {
  font-size: 14px;
  line-height: 20px;
  color: #FFFFFF;
  text-transform: uppercase;
  display: block;
  font-family: "PP Formula Extended Medium", sans-serif;
}

.date.date--large {
  color: #FFFFFF;
  font-family: "PP Formula Extended Medium", sans-serif;
}

.body-font-special,
.body-font-special ul li a {
  font-family: "Apercu Pro", sans-serif;
}

.header-one {
  font-size: 60px;
  line-height: 97%;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "PP Formula Compressed", sans-serif;
}

@media (min-width: 67.5em) {
  .header-one {
    font-size: 120px;
    line-height: 158px;
  }
}

.header-two, html body.error404 .main-content .error404--container h1,
html body.error401 .main-content .error404--container h1 {
  font-size: 60px;
  line-height: 58px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "PP Formula Compressed", sans-serif;
}

.header-three, .location-details h2 {
  font-size: 50px;
  line-height: 51px;
  text-transform: uppercase;
  font-weight: 900;
  font-family: "PP Formula Compressed", sans-serif;
}

.header-four, .acf-wrapper .banner_block .banner--inner h1,
.acf-wrapper .banner_block .banner--inner h2,
.acf-wrapper .banner_block .banner--inner h3,
.acf-wrapper .banner_block .banner--inner h4,
.acf-wrapper .banner_block .banner--inner h5,
.acf-wrapper .banner_block .banner--inner h6 {
  font-size: 40px;
  line-height: 43px;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "PP Formula Condensed", sans-serif;
}

.header-five, .accordion_block .panel h1,
.accordion_block .panel h2,
.accordion_block .panel h3,
.accordion_block .panel h4,
.accordion_block .panel h5,
.accordion_block .panel h6 {
  font-size: 24px;
  line-height: 32px;
  text-transform: uppercase;
  font-weight: 900;
}

.header-six, .date.date--large {
  font-size: 20px;
  line-height: 32px;
  text-transform: uppercase;
  font-weight: 500;
}

.body-small, .single-events_cpt .event--description a#more,
.single-events_cpt .event--description a#less {
  font-size: 14px;
  line-height: 14px;
}

.body-smallest,
.body-smallest p {
  font-size: 10px;
  line-height: 18px;
}

.body-medium {
  font-size: 16px;
  line-height: 16px;
}

.grey {
  color: #7A7A7A;
}

.letter-spacing {
  letter-spacing: 0.02em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Apercu Pro", sans-serif;
  line-height: 1.2;
  margin: 10px 0;
  color: #FFFFFF;
  display: inline-block;
}

.content-wrapper h1,
.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4,
.content-wrapper h5,
.content-wrapper h6 {
  display: inline-block;
}

a {
  color: #42CCBE;
  transition: 0.3s;
}

@media (min-width: 67.5em) {
  a:hover {
    text-decoration: underline;
  }
}

.underline {
  text-decoration: underline !important;
}

.gray {
  color: #7A7A7A;
}

.center {
  text-align: center;
}

.meta {
  font-weight: 400;
  font-size: 12px;
  line-height: 12px;
  font-family: "Apercu Pro", sans-serif;
  display: block;
  text-transform: uppercase;
}

a.meta,
body .card a.meta {
  text-decoration: underline;
  text-underline-offset: 2px;
}

p,
ul,
ol,
a {
  margin-bottom: 24px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.single .article--content p:last-of-type {
  margin-bottom: 0;
}

p {
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
}

@media (min-width: 67.5em) {
  p {
    font-size: 18px;
  }
}

.medium {
  font-family: "PP Formula Extended", sans-serif;
}

.page-header--container {
  background: #8A8989;
}

.article--body ul,
.article--body ol,
.entry-content ul,
.entry-content ol {
  margin-left: 2rem;
}

.article--body ul li,
.article--body ol li,
.entry-content ul li,
.entry-content ol li {
  margin-bottom: 1rem;
}

.article--body ol,
.entry-content ol {
  list-style-type: decimal;
}

.article--body ul,
.entry-content ul {
  list-style-type: disc;
}

.section-header {
  display: block;
  text-align: left;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 0;
  font-family: "PP Formula Compressed", sans-serif;
  font-size: 50px;
  line-height: 51px;
  margin-bottom: 20px;
}

@media (min-width: 67.5em) {
  .section-header {
    margin-bottom: 40px;
    font-size: 50px;
    line-height: 51px;
  }
}

.section-header.section-header--large {
  font-size: 60px;
  line-height: 60px;
}

.post-navigation--link {
  display: block;
  color: #8A8989;
  font-size: 14px;
  line-height: 14px;
  text-decoration: none;
}

.post-navigation--link:hover {
  text-decoration: none;
}

.small-text, .button.button--small {
  font-size: 14px;
}

.bold,
b,
strong {
  font-weight: 700;
}

.bold {
  font-weight: 700;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase,
.body-mini.lowercase {
  text-transform: capitalize;
}

h1,
.h1 {
  font-size: 1.25rem;
}

h2,
.h2 {
  font-size: 1.125rem;
}

h3,
.h3 {
  font-size: 1rem;
}

p,
.body {
  font-size: 1rem;
}

@media (min-width: 67.5em) {
  p,
  .body {
    font-size: 18px;
  }
}

.body-small, .single-events_cpt .event--description a#more,
.single-events_cpt .event--description a#less {
  font-size: 0.875rem;
}

.body-mini {
  font-size: 0.75rem;
  text-transform: uppercase;
}

html {
  line-height: 1.2;
}

blockquote p {
  text-indent: -0.5em;
}

* {
  box-sizing: border-box;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  background: #0C0C0C;
}

body {
  color: #FFFFFF;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

@media (min-width: 67.5em) {
  body {
    margin: 0 auto;
    padding: 0;
  }
}

section {
  margin: 20px 0;
}

section.section {
  margin-top: 50px;
  margin-bottom: 50px;
}

@media (min-width: 67.5em) {
  section.section {
    margin-top: 70px;
    margin-bottom: 70px;
  }
}

.container, .hero .slick-dots, html body #cookie-notice .cookie-notice-container {
  max-width: calc(1300px + 2%);
  padding: 0 4%;
  margin: 0 auto;
}

@media (min-width: 67.5em) {
  .container, .hero .slick-dots, html body #cookie-notice .cookie-notice-container {
    padding: 0 2%;
  }
}

.container--narrow, .text_block .container, .text_block .hero .slick-dots, .hero .text_block .slick-dots, .text_block html body #cookie-notice .cookie-notice-container, html body #cookie-notice .text_block .cookie-notice-container {
  max-width: 1090px;
  margin: 0 auto;
}

.container--narrow__extra {
  max-width: 715px;
  margin: 0 auto;
}

.page-header {
  padding-top: 30px;
  margin-bottom: 60px;
}

@media (min-width: 67.5em) {
  .page-header {
    padding-top: 80px;
    margin-bottom: 100px;
  }
}

.page-header.jay-grid .jay-grid--item {
  margin-bottom: 0;
}

.page-header p:last-of-type {
  margin-bottom: 0;
}

.page-header .section-header {
  margin-bottom: 40px;
}

@media (min-width: 67.5em) {
  .page-header .section-header {
    margin-bottom: 0;
  }
}

.page-header.alternative_header {
  margin-bottom: -20px;
}

@media (min-width: 67.5em) {
  .page-header.alternative_header {
    margin-bottom: 0;
  }
}

.page-header.alternative_header .alternative_header--header {
  margin-bottom: 40px;
}

@media (min-width: 67.5em) {
  .page-header.alternative_header .alternative_header--header {
    margin-bottom: 80px;
  }
}

.featured-posts {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 0.5px solid rgba(122, 122, 122, 0.6);
}

@media (min-width: 67.5em) {
  .featured-posts {
    margin-top: 120px;
    padding-top: 100px;
  }
}

.fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acf-wrapper {
  width: 100%;
}

.acf-wrapper .acf-section {
  padding-top: 60px;
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section {
    padding-top: 100px;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .text_and_image .jay-grid--item:first-of-type {
    grid-column: auto / span 7;
  }
  .acf-wrapper .text_and_image .jay-grid--item:last-of-type {
    grid-column: auto / span 5;
  }
}

@media (min-width: 67.5em) {
  .column-two {
    height: 100%;
    float: left;
    background: #f1f0ea;
  }
}

.column-two .column-two--text {
  padding: 0 2rem;
}

.column-two .column-two--text ol,
.column-two .column-two--text ul {
  color: #a9a98a;
  list-style: disc;
  margin-left: 1rem;
}

.iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
}

.iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.jay-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  flex-wrap: wrap;
}

.jay-grid.full-width .jay-grid--item {
  grid-column: auto / span 12;
}

.jay-grid.two-columns .jay-grid--item {
  grid-column: auto / span 12;
}

.jay-grid.three-columns .jay-grid--item {
  grid-column: auto / span 12;
}

.jay-grid.four-columns .jay-grid--item {
  grid-column: auto / span 12;
}

.jay-grid.six-columns .jay-grid--item {
  grid-column: auto / span 12;
}

@media (min-width: 46.25em) {
  .jay-grid {
    grid-row-gap: 40px;
    grid-column-gap: 20px;
  }
  .jay-grid.two-columns .jay-grid--item {
    grid-column: auto / span 6;
  }
  .jay-grid.three-columns .jay-grid--item {
    grid-column: auto / span 6;
  }
  .jay-grid.four-columns .jay-grid--item {
    grid-column: auto / span 6;
  }
  .jay-grid.six-columns .jay-grid--item {
    grid-column: auto / span 6;
  }
}

@media (min-width: 67.5em) {
  .jay-grid.two-columns .jay-grid--item {
    grid-column: auto / span 6;
  }
  .jay-grid.three-columns .jay-grid--item {
    grid-column: auto / span 4;
  }
  .jay-grid.four-columns .jay-grid--item {
    grid-column: auto / span 3;
  }
  .jay-grid.four-columns .jay-grid--item__stretch {
    grid-column: auto / span 6;
  }
  .jay-grid.six-columns .jay-grid--item {
    grid-column: auto / span 2;
  }
  .jay-grid.jay-grid--featured-news .jay-grid--item:first-of-type {
    grid-column: auto / span 8;
  }
  .jay-grid.jay-grid--featured-poster {
    grid-row-gap: 70px;
    grid-column-gap: 70px;
  }
}

.jay-grid .jay-grid--item {
  margin-bottom: 20px;
}

@media (min-width: 67.5em) {
  .jay-grid .jay-grid--item {
    margin-bottom: 0;
  }
}

.jay-grid.five-columns {
  grid-template-columns: repeat(10, 1fr);
}

.jay-grid.five-columns .jay-grid--item {
  grid-column: auto / span 12;
}

@media (min-width: 67.5em) {
  .jay-grid.five-columns .jay-grid--item {
    grid-column: auto / span 2;
  }
}

.center {
  text-align: center;
}

hr.small-hr {
  width: 100px;
  border-top: 3px solid #42CCBE;
  margin: 0 auto 1rem;
}

.entry-content .content-wrapper {
  max-width: 1000px;
  margin-top: 20px;
}

.home .entry-content .section-block:first-of-type .section {
  padding: 20px 0;
}

html .main-content {
  margin-top: 80px;
}

@media (min-width: 67.5em) {
  html .main-content .narrow-wrapper {
    width: 80%;
    max-width: 700px;
    margin: 0 auto;
  }
}

html .main-content article {
  width: 100%;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
  vertical-align: top;
  padding-left: 0;
}

@media (min-width: 46.25em) {
  html .main-content article {
    padding-left: 32px;
  }
}

@media (min-width: 46.25em) {
  html .main-content article {
    padding-left: 0;
  }
}

html .home .main-content {
  margin-top: 0;
}

.button,
input[type=submit] {
  display: inline-block;
  padding: 1.25rem;
  margin-bottom: 0;
  transition: 0.3s;
  cursor: pointer;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 2px;
  color: #42CCBE;
  font-family: "PP Formula Extended Medium", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  text-transform: uppercase;
  text-decoration: none;
  transition: 0.3s;
}

.button a,
input[type=submit] a {
  color: #FFFFFF;
  text-decoration: none;
}

@media (min-width: 67.5em) {
  .button:hover,
  input[type=submit]:hover {
    text-decoration: none;
    border: 1px solid #42CCBE;
    color: #FFFFFF;
  }
}

.button--white__large {
  font-weight: 900;
  background: #FFFFFF;
  color: #0C0C0C;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  transition: 0.3s;
}

.button--white__large svg {
  margin-left: 13px;
}

.button--white__large:after {
  display: inline-block;
  margin-left: 13px;
  width: 30px;
  height: 30px;
  transition: 0.3s;
}

@media (min-width: 67.5em) {
  .button--white__large:hover {
    color: #FFFFFF;
    border-bottom: none;
  }
  .button--white__large:hover:after {
    transform: translateX(5px);
  }
}

.single-events_cpt .article button,
.button--link,
.location-details a {
  cursor: pointer;
  padding-left: 0;
  padding-right: 0;
  background: none;
  border: none;
  color: #42CCBE;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  text-transform: uppercase;
  display: inline-block;
  text-decoration: none;
  overflow: hidden;
  padding-top: 2px;
}

.single-events_cpt .article button:after,
.button--link:after,
.location-details a:after {
  content: '';
  display: block;
  height: 3px;
  margin-top: 2px;
  background: #42CCBE;
  transform: none;
  transition: 0.3s;
}

@media (min-width: 67.5em) {
  .single-events_cpt .article button:hover,
  .button--link:hover,
  .location-details a:hover {
    color: #42CCBE;
    text-decoration: none;
    position: relative;
  }
  .single-events_cpt .article button:hover:after,
  .button--link:hover:after,
  .location-details a:hover:after {
    transform: translateX(-92%);
  }
}

.button.button--small {
  font-weight: 900;
}

.button-white {
  background: #FFFFFF;
  border: 1px solid #7A7A7A;
}

.button-white a {
  color: #423D46;
  text-decoration: none;
}

@media (min-width: 67.5em) {
  .button-white:hover {
    background: #7A7A7A;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
  }
  .button-white:hover a {
    color: #FFFFFF;
  }
}

.accordion_block .accordion--item {
  padding: 38px 0;
  padding-bottom: 0;
  border-top: 1px solid #ffffff80;
}

.accordion_block .accordion--item:last-of-type {
  border-bottom: 1px solid #ffffff80;
}

.accordion_block .accordion {
  position: relative;
  cursor: pointer;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s;
  padding-left: 0;
}

.accordion_block .accordion:last-of-type {
  margin: 0;
}

.accordion_block .accordion svg {
  transition: 0.3s;
}

.accordion_block .accordion.active .panel {
  max-height: 1000px;
}

.accordion_block .accordion.active svg {
  transform: rotate(180deg);
}

.accordion_block .accordion.active svg path,
.accordion_block .accordion.active svg .st0 {
  fill: #FFFFFF;
}

.accordion_block .accordion .accordion--item__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.accordion_block .accordion .accordion--item__header .accordion--item__header-text {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  width: 100%;
}

.accordion_block .accordion .accordion--item__header .accordion--item__header-text .accordion--subtitle {
  font-family: "Apercu Pro", sans-serif;
  font-size: 25px;
  line-height: 32px;
  margin-bottom: 0;
  display: none;
}

@media (min-width: 67.5em) {
  .accordion_block .accordion .accordion--item__header .accordion--item__header-text .accordion--subtitle {
    display: block;
  }
}

.accordion_block .accordion .accordion--item__header .panel--trigger {
  margin-top: 0;
  margin-bottom: 0;
  padding-right: 7px;
  font-family: "PP Formula Compressed", sans-serif;
}

.accordion_block .panel {
  margin-top: 30px;
}

.accordion_block .panel h1,
.accordion_block .panel h2,
.accordion_block .panel h3,
.accordion_block .panel h4,
.accordion_block .panel h5,
.accordion_block .panel h6 {
  padding-bottom: 20px;
}

.accordion_block .panel p {
  font-family: "Apercu Pro", sans-serif;
  font-size: 18px;
  line-height: 23px;
}

.accordion_block .panel p:last-of-type {
  margin-bottom: 45px;
}

/* Style the buttons that are used to open and close the accordion panel */
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
/* Style the accordion panel. Note: hidden by default */
.accordion .panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion .panel .accordion--content {
  margin: 1rem 0;
}

.tag,
.tag a {
  display: inline-block;
  position: relative;
  background: #0C0C0C;
  padding: 0.625rem 0.5rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  color: #FFFFFF;
  border: 1px solid #42CCBE;
  border-radius: 2px;
}

form input, form textarea {
  margin-top: 0.25em;
  padding: 0.5em;
  font-size: 16px;
  font-family: "PP Formula Extended Medium", sans-serif;
}

form#searchform input#searchsubmit {
  margin-top: 0 !important;
}

/* class applies to select element itself, not a wrapper element */
.select-css {
  display: block;
  font-size: 16px;
  font-family: sans-serif;
  font-weight: 700;
  color: #444;
  line-height: 1.3;
  padding: .6em 1.4em .5em .8em;
  width: 100%;
  max-width: 100%;
  /* useful when width is set to anything other than 100% */
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #aaa;
  box-shadow: 0 1px 0 1px rgba(0, 0, 0, 0.04);
  border-radius: .5em;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  /* note: bg image below uses 2 urls. The first is an svg data uri for the arrow icon, and the second is the gradient. 
		for the icon, if you want to change the color, be sure to use `%23` instead of `#`, since it's a url. You can also swap in a different svg icon or an external image reference
		
	*/
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
  background-repeat: no-repeat, repeat;
  /* arrow icon position (1em from the right, 50% vertical) , then gradient position*/
  background-position: right .7em top 50%, 0 0;
  /* icon size, then gradient */
  background-size: .65em auto, 100%;
}

/* Hide arrow icon in IE browsers */
.select-css::-ms-expand {
  display: none;
}

/* Hover style */
.select-css:hover {
  border-color: #888;
}

/* Focus style */
.select-css:focus {
  border-color: #aaa;
  /* It'd be nice to use -webkit-focus-ring-color here but it doesn't work on box-shadow */
  box-shadow: 0 0 1px 3px rgba(59, 153, 252, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}

/* Set options to normal weight */
.select-css option {
  font-weight: normal;
}

/* Support for rtl text, explicit support for Arabic and Hebrew */
*[dir="rtl"] .select-css, :root:lang(ar) .select-css, :root:lang(iw) .select-css {
  background-position: left .7em top 50%, 0 0;
  padding: .6em .8em .5em 1.4em;
}

/* Disabled styles */
.select-css:disabled, .select-css[aria-disabled=true] {
  color: graytext;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22graytext%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E"), linear-gradient(to bottom, #ffffff 0%, #e5e5e5 100%);
}

.select-css:disabled:hover, .select-css[aria-disabled=true] {
  border-color: #aaa;
}

body .jay-grid .card {
  margin-bottom: 50px;
}

body .card a {
  text-decoration: none;
}

body .card .card--image {
  background: #2b2b2b;
  margin-bottom: 20px;
}

body .card .card--image img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  height: auto;
  width: 100%;
}

body .card .card--image img.card--image_poster {
  aspect-ratio: auto;
}

body .card .card--text .meta {
  color: #42CCBE;
  margin-bottom: 10px;
}

@media (min-width: 67.5em) {
  body .card .card--text .meta {
    margin-bottom: 10px;
  }
}

body .card .card--text .card--header {
  display: block;
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
  transition: 0.3s;
}

@media (min-width: 67.5em) {
  body .card .card--text .card--header {
    margin-top: 5px;
    margin-bottom: 10px;
  }
}

body .card .card--text .date {
  color: #FFFFFF;
  display: inline-block;
  margin-top: 0;
  margin-bottom: 15px;
}

@media (min-width: 67.5em) {
  body .card .card--text .date {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 20px;
  }
}

body .card .card--text .date.date--light {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 20px;
  margin-top: 0;
}

body .card .card--text .excerpt,
body .card .card--text .excerpt p {
  font-weight: 400;
  color: #7A7A7A;
  font-family: "Apercu Pro", sans-serif;
  font-size: 18px;
  line-height: 18px;
}

@media (min-width: 67.5em) {
  body .card .card--text .excerpt,
  body .card .card--text .excerpt p {
    font-size: 18px;
    line-height: 23px;
  }
}

body .card .date--small.date,
body .card.date--small .date {
  font-size: 14px;
  line-height: 20px;
}

@media (min-width: 67.5em) {
  body .card:hover .card--header {
    color: #5E34FC;
  }
}

body .card--square .card--image img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  height: auto;
}

@media (min-width: 67.5em) {
  body .card--square.date--large {
    font-size: 20px;
    line-height: 32px;
  }
}

.categories {
  display: flex;
  margin-top: 0;
  margin-bottom: 20px;
}

@media (min-width: 67.5em) {
  .categories {
    margin-top: 40px;
    margin-bottom: 0;
  }
}

.categories .category {
  border: 1px solid #42CCBE;
  border-radius: 3px;
  padding: 9px 8px 8px 7px;
  margin-right: 17px;
  text-decoration: none;
}

.categories .category:hover {
  border: 1px solid #FFFFFF;
}

.categories .category:hover .meta {
  color: #42CCBE;
}

.categories .category:last-of-type {
  margin-right: 0;
}

.categories .category .meta {
  transition: 0.3s;
  color: #FFFFFF;
  margin-bottom: 0;
  font-family: "Apercu Pro", sans-serif;
}

.share {
  display: inline-block;
  position: relative;
}

.share .share--trigger {
  display: flex;
  justify-content: flex-end;
  cursor: pointer;
}

.share .share--trigger svg {
  margin-right: 8px;
}

.share .share--trigger .grey {
  margin-bottom: 0;
  transition: 0.3s;
}

.share .share--trigger .grey:hover {
  color: #FFFFFF;
}

.share .share--buttons {
  opacity: 0;
  position: absolute;
  right: 0;
  transition: 0.2s;
  transition-duration: 0.2s;
  margin-top: 10px;
  background: #0C0C0C;
}

.share .share--buttons .icon--social {
  margin-left: 10px;
}

.share .share--buttons .icon--social #myInput {
  position: absolute;
  left: -10000px;
}

.share .share--buttons .icon--social a {
  transition: 0.3s;
}

.share .share--buttons .icon--social a:hover {
  color: #FFFFFF;
}

.share.shareActive .share--buttons {
  opacity: 1;
}

.blog-listing {
  margin-bottom: 2.5rem;
}

.homepage-content--blog__wrapper {
  padding: 20px 0;
  border-top: 0.5px solid #7A7A7A;
  border-bottom: 0.5px solid #7A7A7A;
}

.blog .blog-content--item {
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px solid #8A8989;
}

.blog .blog-content--item .date {
  font-size: 1.2rem;
}

.blog .blog-content--item .blog-content--item_title {
  font-weight: bold;
  text-decoration: none;
}

.blog .blog-content--item .blog-content--item_title:hover {
  text-decoration: underline;
}

.blog .blog-content--item .blog-content--item_title .entry-title {
  margin-top: 1rem;
}

.blog .blog-content--item .blog-item--link-text {
  margin-bottom: 0;
}

.blog .pagination {
  text-align: center;
  font-size: 2rem;
  color: #0C0C0C;
}

.blog .pagination a {
  color: #0C0C0C;
  text-decoration: none;
  margin: 0 20px;
}

.blog .pagination span.current {
  text-decoration: underline;
}

.isotope-grid.two-columns .grid-sizer,
.isotope-grid.two-columns .grid-item {
  width: 100%;
}

@media (min-width: 46.25em) {
  .isotope-grid.two-columns .grid-sizer,
  .isotope-grid.two-columns .grid-item {
    width: calc(49.9% - 12px);
  }
}

.isotope-grid.three-columns .grid-sizer,
.isotope-grid.three-columns .grid-item {
  width: 100%;
}

@media (min-width: 46.25em) {
  .isotope-grid.three-columns .grid-sizer,
  .isotope-grid.three-columns .grid-item {
    width: calc(33% - 12px);
  }
}

.grid {
  display: block !important;
}

.grid:after {
  content: '';
  display: block;
  clear: both;
}

.single .article--body .jay-grid--featured-news,
.blog .article--body .jay-grid--featured-news {
  display: none;
}

@media (min-width: 67.5em) {
  .single .article--body .jay-grid--featured-news,
  .blog .article--body .jay-grid--featured-news {
    display: grid;
  }
}

.single .article--body .article--content,
.blog .article--body .article--content {
  margin-bottom: 60px;
}

@media (min-width: 67.5em) {
  .single .article--body .article--content,
  .blog .article--body .article--content {
    margin-bottom: 90px;
  }
}

.single .article--body .article--content .article--header,
.blog .article--body .article--content .article--header {
  margin-top: 10px;
  margin-bottom: 40px;
}

.single .article--body .article--content p,
.single .article--body .article--content ul li,
.single .article--body .article--content a,
.blog .article--body .article--content p,
.blog .article--body .article--content ul li,
.blog .article--body .article--content a {
  font-family: "Apercu Pro", sans-serif;
}

.single .article--body .article--content figure,
.blog .article--body .article--content figure {
  margin-bottom: 20px;
}

.single .article--body .article--content figure figcaption,
.blog .article--body .article--content figure figcaption {
  font-size: 10px;
  margin-top: 10px;
}

.single .article--body .article--footer,
.blog .article--body .article--footer {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 70px;
}

@media (min-width: 67.5em) {
  .single .article--body .article--footer,
  .blog .article--body .article--footer {
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 160px;
  }
}

.single .article--body .article--footer .categories,
.blog .article--body .article--footer .categories {
  margin: 0;
}

.single .article--body .byline.author,
.blog .article--body .byline.author {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1rem;
  padding-top: 5px;
  margin-bottom: 1.5rem;
  font-size: 1.22rem;
}

.single .post-navigation--link,
.blog .post-navigation--link {
  margin-bottom: 100px;
}

.single .related,
.blog .related {
  border-top: 0.5px solid rgba(122, 122, 122, 0.6);
  padding-top: 70px;
  padding-bottom: 50px;
  margin-top: 55px;
}

.single .related .section-header,
.blog .related .section-header {
  margin-bottom: 40px;
}

.single.single-post .related,
.blog.single-post .related {
  padding-top: 40px;
  margin-top: 40px;
}

@media (min-width: 67.5em) {
  .single.single-post .related,
  .blog.single-post .related {
    padding-top: 100px;
    margin-top: 100px;
  }
}

.single .entry-content,
.blog .entry-content {
  margin: 0 auto;
}

.single .entry-content img,
.blog .entry-content img {
  height: auto;
  pointer-events: none;
}

.single .entry-content .widget,
.blog .entry-content .widget {
  margin-bottom: 3rem;
}

.single .entry-content .widget h6,
.blog .entry-content .widget h6 {
  margin-top: 0;
  font-size: 2rem;
  font-weight: 600;
}

.single .entry-content .widget ul,
.blog .entry-content .widget ul {
  margin-bottom: 0;
}

.single .entry-content .widget ul li,
.blog .entry-content .widget ul li {
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e6e6e6;
}

.single .entry-content .widget_search input,
.single .entry-content .widget_search .input-group-button,
.blog .entry-content .widget_search input,
.blog .entry-content .widget_search .input-group-button {
  display: inline-block;
}

.single .entry-content .widget_search input.input-group-field,
.blog .entry-content .widget_search input.input-group-field {
  padding: 14px 20px;
}

.single.single-post .article--content p,
.single.single-post .article--content span {
  font-family: "Apercu Pro", sans-serif;
  font-size: 18px;
  line-height: 23px;
}

.single.single-post .article--content span.date {
  font-size: 16px;
  line-height: 32px;
  color: #7A7A7A;
}

.single.single-post .share {
  margin-top: 60px;
}

@media (min-width: 46.25em) {
  .single.single-post .share {
    margin-top: 0;
  }
}

.single .post-navigation {
  width: 100%;
  padding-top: 30px;
}

.single .post-navigation .screen-reader-text {
  display: none;
}

@media (min-width: 46.25em) {
  .single .post-navigation .nav-links {
    display: block;
    position: relative;
    justify-content: space-between;
  }
}

.single .post-navigation .nav-links .next-post:after {
  content: url("../images/icons/arrow--next.svg");
  padding-left: 10px;
}

.single .post-navigation .nav-links .previous-post:before {
  content: url("../images/icons/arrow--prev.svg");
  padding-right: 8px;
}

.single .post-navigation .nav-links .nav-previous,
.single .post-navigation .nav-links .nav-next {
  font-size: 20px;
  max-width: 48%;
  font-weight: 100;
  display: flex;
  justify-content: flex-end;
}

.single .post-navigation .nav-links .nav-previous a,
.single .post-navigation .nav-links .nav-next a {
  margin-bottom: 0;
  text-decoration: none;
}

.single .post-navigation .nav-links .nav-previous h6,
.single .post-navigation .nav-links .nav-next h6 {
  margin: 0;
  font-weight: 100;
  display: flex;
  align-items: center;
}

@media (min-width: 46.25em) {
  .single .post-navigation .nav-links .nav-previous,
  .single .post-navigation .nav-links .nav-next {
    width: 45%;
    margin-bottom: 0;
  }
}

.single .post-navigation .nav-links .nav-previous {
  float: left;
  justify-content: flex-start;
}

.single .post-navigation .nav-links .nav-next {
  text-align: right;
  float: right;
  justify-content: flex-end;
}

@media (min-width: 46.25em) {
  .single .post-navigation .nav-links .nav-next {
    text-align: right;
  }
}

.single #respond {
  padding-top: 4rem;
}

.single #respond textarea#comment {
  width: 100%;
  height: 100px;
}

.single #respond input#submit {
  font-family: inherit;
  font-size: 21px;
}

.single #respond #allowed_tags {
  display: none;
}

.blog-listing__title a {
  text-decoration: none;
  color: #a9a98a;
}

.comments-area {
  padding: 1.25rem;
  background: #fafafa;
}

.comments-area label {
  display: block;
  margin-bottom: 0.625rem;
}

.comments-area input[type=email],
.comments-area input[type=text],
.comments-area textarea {
  width: 100%;
  display: block;
  margin-bottom: 2.5rem;
  padding: 0.625rem;
  border: 1px solid whitesmoke;
}

.comments-area input[type=submit] {
  border: none;
  background: #a9a98a;
}

.comments-area .comments {
  padding: 0;
  margin-bottom: 2.5rem;
}

.comments-area .comments li {
  background: white;
  list-style-type: none;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}

main#main {
  transition: 0.8s;
  transition-delay: 0.2s;
}

body.menu-is-open .off-canvas-menu {
  transform: none;
  visibility: visible;
}

body.menu-is-open .off-canvas-menu ul li,
body.menu-is-open .off-canvas-menu .social {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.6s linear, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.6s;
}

body.menu-is-open .off-canvas-menu ul li:nth-of-type(2),
body.menu-is-open .off-canvas-menu .social:nth-of-type(2) {
  transition-delay: 0.7s;
}

body.menu-is-open .off-canvas-menu ul li:nth-of-type(3),
body.menu-is-open .off-canvas-menu .social:nth-of-type(3) {
  transition-delay: 0.8s;
}

body.menu-is-open .off-canvas-menu ul li:nth-of-type(4),
body.menu-is-open .off-canvas-menu .social:nth-of-type(4) {
  transition-delay: 0.9s;
}

body.menu-is-open .off-canvas-menu ul li:nth-of-type(5),
body.menu-is-open .off-canvas-menu .social:nth-of-type(5) {
  transition-delay: 1s;
}

body.menu-is-open .off-canvas-menu ul li:nth-of-type(6),
body.menu-is-open .off-canvas-menu .social:nth-of-type(6) {
  transition-delay: 1.1s;
}

@media (min-width: 67.5em) {
  body.menu-is-open .off-canvas-menu ul#menu-main-menu:hover a {
    color: #7A7A7A;
  }
  body.menu-is-open .off-canvas-menu ul#menu-main-menu li a:hover {
    margin-right: 10px;
    opacity: 1;
    color: #5E34FC;
  }
}

body.menu-is-open .off-canvas-menu--inner-wrap .off-canvas-menu--footer .off-canvas-menu--logo {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.menu-is-open main#main {
  opacity: 0;
}

body.menu-is-open .hamburger--label__closed {
  display: none;
}

body.menu-is-open .hamburger--label__open {
  display: block;
}

.site-header {
  position: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  z-index: 9999999;
  top: 0;
  right: 0;
  left: 0;
  line-height: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background: #0C0C0C;
  transition: background-color 1s;
}

@media (min-width: 67.5em) {
  .site-header {
    background: none;
  }
}

.site-header .container, .site-header .hero .slick-dots, .hero .site-header .slick-dots, .site-header html body #cookie-notice .cookie-notice-container, html body #cookie-notice .site-header .cookie-notice-container {
  max-width: calc(1600px + 2%);
}

.site-header .site-desktop-title img {
  max-height: 90px;
}

.site-header .hamburger-box {
  width: 32px;
}

.site-header .hamburger-inner,
.site-header .hamburger-inner::before,
.site-header .hamburger-inner::after {
  width: 32px;
  background-color: #FFFFFF;
}

.site-header .hamburger-inner::after {
  display: none !important;
}

.site-header .hamburger-inner::before {
  top: -12px;
}

@media (min-width: 67.5em) {
  .site-header .hamburger-box:hover .hamburger-inner,
  .site-header .hamburger-box:hover .hamburger-inner::before,
  .site-header .hamburger-box:hover .hamburger-inner::after {
    background-color: #5E34FC;
  }
}

.site-header .hamburger.is-active .hamburger-inner,
.site-header .hamburger.is-active .hamburger-inner::before,
.site-header .hamburger.is-active .hamburger-inner::after {
  background-color: #5E34FC;
}

@media (min-width: 67.5em) {
  .site-header .hamburger.is-active .hamburger-box:hover .hamburger-inner,
  .site-header .hamburger.is-active .hamburger-box:hover .hamburger-inner::before,
  .site-header .hamburger.is-active .hamburger-box:hover .hamburger-inner::after {
    background-color: #FFFFFF;
  }
}

.site-header--mobile-header {
  z-index: 10;
  position: relative;
  height: auto;
  list-style: none;
  direction: ltr;
  text-align: left;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  margin-right: 0;
  margin-left: -16px;
  padding-right: 0;
  padding-left: 0;
  align-items: center;
  height: 80px;
}

@media (min-width: 46.25em) {
  .site-header--mobile-header {
    margin-left: -32px;
  }
}

.site-header--mobile-header--left {
  width: 100%;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
  vertical-align: top;
  width: 83.33333%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}

@media (min-width: 46.25em) {
  .site-header--mobile-header--left {
    padding-left: 32px;
  }
}

.site-header--mobile-header--left h4 {
  font-size: 1.7rem;
}

.site-header--mobile-header--right {
  width: 100%;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
  vertical-align: top;
  width: 16.66667%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

@media (min-width: 46.25em) {
  .site-header--mobile-header--right {
    padding-left: 32px;
  }
}

.site-header--mobile-header--right .hamburger:hover {
  opacity: 1;
}

.site-header--mobile-header svg {
  display: block;
  margin: 0;
  width: 142px;
  transition: 0.1s;
}

.site-header--mobile-header svg path {
  transition: 0.1s;
}

.site-header--mobile-header svg:hover path {
  fill: #5E34FC;
}

.site-header--mobile-header .hamburger--label__closed {
  display: block;
}

.site-header--mobile-header .hamburger--label__open {
  display: none;
}

.site-header--desktop-header {
  display: none;
}

.site-header--desktop-header--left {
  width: 100%;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
  vertical-align: top;
  width: 25%;
}

@media (min-width: 46.25em) {
  .site-header--desktop-header--left {
    padding-left: 32px;
  }
}

.site-header--desktop-header--right {
  width: 100%;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
  vertical-align: top;
  width: 50%;
  text-align: center;
}

@media (min-width: 46.25em) {
  .site-header--desktop-header--right {
    padding-left: 32px;
  }
}

.site-header--desktop-header--right ul {
  margin-bottom: 0;
}

.site-header--desktop-header--right ul li {
  margin: 0 0 0 10px;
  display: inline;
}

.site-header--desktop-header--search {
  width: 100%;
  display: inline-block;
  padding-left: 16px;
  text-align: left;
  vertical-align: top;
  width: 25%;
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (min-width: 46.25em) {
  .site-header--desktop-header--search {
    padding-left: 32px;
  }
}

.site-header--desktop-header--search .site-header--icons {
  display: flex;
}

.site-header--desktop-header--search .site-header--icons .site-header--icons_image {
  padding-right: 20px;
}

.site-header--desktop-header--search .input-group {
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.site-header--desktop-header--search .input-group input#s {
  border-radius: 18px;
  border: none;
  padding: 5px 10px;
}

.site-header--desktop-header--search .input-group-button {
  position: absolute;
  top: 50%;
  transform: translate(0, -30%);
}

.site-header--desktop-header--search .input-group-button input[type=submit] {
  padding: .5rem 1rem;
  margin-left: 10px;
  opacity: 0;
  z-index: 99999;
}

.site-header--desktop-header--search .input-group-button:after {
  font: normal normal normal 14px/1 FontAwesome;
  content: "\f002";
  color: #0C0C0C;
  display: block;
  position: absolute;
  pointer-events: none;
  top: 5px;
  right: 10px;
  font-size: 1rem;
  height: 20px;
  width: 20px;
}

.site-header--desktop-header svg {
  display: block;
  margin: 0 20px;
  max-width: 30px;
}

@media only screen and (min-width: 768px) {
  .site-header--desktop-header svg {
    margin: 0 20px;
    max-width: 45px;
  }
}

.home .site-header {
  background: none;
}

.home.scrolledDown .site-header {
  background: #0C0C0C;
}

.site-header--mobile-header .logo--scroll {
  display: none;
  animation-delay: 0s;
  height: 40px;
  width: 40px;
  transition: 0.3s;
}

.logo .logo--wordmark,
.logo--scroll {
  transition: 0.3s;
}

.scrolledDown .logo--scroll {
  display: block;
}

.scrolledDown .logo .logo--wordmark {
  display: none;
}

.scrolledDown.menu-is-open .logo--scroll {
  display: none;
}

.scrolledDown.menu-is-open .logo .logo--wordmark {
  display: block;
}

.menu-is-open .site-header,
.scrolledDown.menu-is-open .site-header {
  background: none;
}

.menu-is-open .site-header--mobile-header .logo--scroll,
.scrolledDown.menu-is-open .site-header--mobile-header .logo--scroll {
  display: block;
}

@media (min-width: 67.5em) {
  .menu-is-open .site-header--mobile-header .logo--scroll,
  .scrolledDown.menu-is-open .site-header--mobile-header .logo--scroll {
    display: none;
  }
}

.menu-is-open .logo .logo--wordmark,
.scrolledDown.menu-is-open .logo .logo--wordmark {
  display: none;
}

@media (min-width: 67.5em) {
  .menu-is-open .logo .logo--wordmark,
  .scrolledDown.menu-is-open .logo .logo--wordmark {
    display: block;
  }
}

.logged-in .site-header {
  top: 32px;
}

nav a {
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 2px;
  font-weight: 900;
  transition: 0.3s;
}

nav a:hover {
  text-decoration: none;
}

@media (min-width: 67.5em) {
  nav a:hover {
    color: #42CCBE;
  }
}

.current-menu-item a {
  color: #5E34FC;
}

.social {
  text-decoration: none;
  display: inline-flex;
  align-items: flex-end;
  justify-content: flex-end;
  color: #42CCBE;
  transition: 0.3s;
}

.social:hover {
  text-decoration: none;
  color: #FFFFFF;
}

.social i {
  font-size: 24px;
}

nav.site-header--desktop-header ul {
  list-style: none;
}

nav.site-header--desktop-header ul li.menu-item-has-children {
  position: relative;
}

nav.site-header--desktop-header ul li.menu-item-has-children ul.vertical {
  opacity: 0;
  width: 250px;
  border-top: 5px solid #42CCBE;
  text-align: left;
  position: absolute;
  transition: all 0.5s ease;
  left: 0;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
}

nav.site-header--desktop-header ul li.menu-item-has-children ul.vertical li {
  margin: 0;
  padding: 0.5rem 1rem;
  line-height: 1.1;
}

nav.site-header--desktop-header ul li.menu-item-has-children ul.vertical a {
  font-size: 15px;
  transition: 0.5s;
}

nav.site-header--desktop-header ul li.menu-item-has-children ul.vertical a:hover {
  padding-left: 5px;
  color: #42CCBE;
  font-weight: bold;
  text-decoration: none;
}

nav.site-header--desktop-header ul li.menu-item-has-children ul.vertical a:hover:after {
  content: none;
}

nav.site-header--desktop-header ul li.menu-item-has-children:hover ul.vertical {
  opacity: 1;
  z-index: 1;
  background: #FFFFFF;
  display: flex;
  flex-direction: column;
}

nav.off-canvas-menu .off-canvas-menu--menu-wrapper ul {
  margin-top: -20px;
}

@media (min-width: 67.5em) {
  nav.off-canvas-menu .off-canvas-menu--menu-wrapper ul {
    margin-top: 0;
  }
}

nav.off-canvas-menu .off-canvas-menu--menu-wrapper ul li a {
  font-size: 7vh;
  line-height: 7vh;
  font-weight: 900;
  text-transform: uppercase;
  font-family: "PP Formula Compressed", sans-serif;
}

@media (min-width: 67.5em) {
  nav.off-canvas-menu .off-canvas-menu--menu-wrapper ul li a {
    font-size: 60px;
    line-height: 58px;
  }
}

nav.off-canvas-menu ul.vertical.nested.menu {
  height: 0;
  opacity: 0;
  margin: 0;
  font-size: 17px;
  padding-left: 2rem;
}

nav.off-canvas-menu .menu-item-has-children.is-active ul.vertical.nested.menu {
  height: auto;
  opacity: 1;
}

.menu--small .menu a,
.site-credits a,
.footer--nav__sub a {
  display: inline-block;
  margin-bottom: 0;
  margin-right: 20px;
}

.menu--small .menu a:after,
.site-credits a:after,
.footer--nav__sub a:after {
  content: '';
  display: block;
  height: 1px;
  margin-top: 2px;
  width: 0;
  background: #42CCBE;
  transition: width .4s ease;
}

@media (min-width: 67.5em) {
  .menu--small .menu a:hover,
  .site-credits a:hover,
  .footer--nav__sub a:hover {
    text-decoration: none;
    position: relative;
  }
  .menu--small .menu a:hover:after,
  .site-credits a:hover:after,
  .footer--nav__sub a:hover:after {
    width: 100%;
  }
}

.menu--small li,
.footer--nav__sub li {
  display: inline;
}

.menu--small ul li a,
.menu--small .footer--right ul li a,
.footer--nav__sub ul li a,
.footer--nav__sub .footer--right ul li a {
  font-size: 10px;
  line-height: 18px;
}

.menu--small a,
.footer--nav__sub a {
  text-decoration: none;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-right: 20px;
  letter-spacing: 0.02em;
  transition: 0.3s;
}

.menu--small a:hover,
.footer--nav__sub a:hover {
  color: #42CCBE;
}

.off-canvas-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #0C0C0C;
  z-index: 5;
  transform: translateY(100vh) translateZ(0px);
  will-change: transform;
  transition: 0.25s linear;
  transition-delay: 0.2s;
  visibility: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.off-canvas-menu--inner-wrap {
  max-width: calc(1600px + 2%);
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.off-canvas-menu--inner-wrap .off-canvas-menu--menu-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 67.5em) {
  .off-canvas-menu--inner-wrap .off-canvas-menu--menu-wrapper {
    justify-content: flex-end;
  }
}

.off-canvas-menu--inner-wrap .off-canvas-menu--menu-wrapper ul {
  margin-bottom: 0;
  z-index: 2;
}

.off-canvas-menu--inner-wrap .off-canvas-menu--menu-wrapper ul li {
  text-align: center;
  margin-bottom: 15px;
  opacity: 0;
  transform: translate3d(0, 50%, 0);
  transition: opacity .3s linear, transform 0s linear 0.3s;
}

@media (min-width: 67.5em) {
  .off-canvas-menu--inner-wrap .off-canvas-menu--menu-wrapper ul li {
    text-align: right;
    margin-bottom: 20px;
  }
}

.off-canvas-menu--inner-wrap .off-canvas-menu--menu-wrapper ul li a {
  transition: 0.5s;
}

.off-canvas-menu--inner-wrap .off-canvas-menu--menu-wrapper ul li:last-of-type {
  margin-bottom: 0;
}

.off-canvas-menu--inner-wrap .off-canvas-menu--footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 0 2%;
  left: 0;
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  justify-content: flex-end;
  flex-direction: column;
}

@media (min-width: 67.5em) {
  .off-canvas-menu--inner-wrap .off-canvas-menu--footer {
    flex-direction: row;
    padding: 0 3%;
    padding-bottom: 70px;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.off-canvas-menu--inner-wrap .off-canvas-menu--footer .off-canvas-menu--logo {
  display: none;
  opacity: 0;
  transition: opacity 0.6s linear, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.6s;
  transform: translate3d(-50%, 0, 0);
}

@media (min-width: 67.5em) {
  .off-canvas-menu--inner-wrap .off-canvas-menu--footer .off-canvas-menu--logo {
    display: block;
  }
}

.off-canvas-menu--inner-wrap .off-canvas-menu--footer .off-canvas-menu--logo img {
  max-width: 100px;
}

.off-canvas-menu--inner-wrap .off-canvas-menu--footer .menu--small.off-canvas--footer-navs {
  display: none;
}

@media (min-width: 67.5em) {
  .off-canvas-menu--inner-wrap .off-canvas-menu--footer .menu--small.off-canvas--footer-navs {
    display: block;
  }
}

@media (min-width: 67.5em) {
  .off-canvas-menu--inner-wrap .off-canvas-menu--footer .menu--small .menu {
    margin-bottom: 0;
  }
}

.off-canvas-menu--inner-wrap .off-canvas-menu--footer .off-canvas-menu--footer_socials {
  width: 100%;
}

@media (min-width: 67.5em) {
  .off-canvas-menu--inner-wrap .off-canvas-menu--footer .off-canvas-menu--footer_socials {
    width: auto;
  }
}

.off-canvas-menu--inner-wrap .off-canvas-menu--footer .off-canvas-menu--footer_socials .socials {
  justify-content: center;
}

.off-canvas-menu--inner-wrap .off-canvas-menu--footer .social {
  margin-bottom: 0;
  opacity: 0;
  transform: translate3d(0, 50%, 0);
  transition: opacity .3s linear, transform 0s linear 0.3s;
}

.section.full-width {
  padding-right: 0;
  padding-left: 0;
}

.section.full-width .inner-wrapper {
  max-width: 1008px;
  margin: 0 auto;
  padding-right: 16px;
  padding-left: 16px;
}

@media (min-width: 46.25em) {
  .section.full-width .inner-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }
}

@media (min-width: 80em) {
  .section.full-width .inner-wrapper {
    max-width: 1280px;
  }
}

.block h1, .block h2, .block h3, .block h4, .block h5, .block h6 {
  margin-top: 0;
}

.block__blue {
  background: #5E34FC;
}

footer.section {
  position: relative;
  color: #FFFFFF;
  width: 100%;
  padding-top: 10px;
  margin-bottom: 0;
  margin-top: 60px;
}

@media (min-width: 67.5em) {
  footer.section {
    padding-bottom: 100px;
  }
}

footer.section:before {
  content: '';
  display: block;
  height: 82px;
  top: -28px;
  position: absolute;
  width: 100%;
  background: linear-gradient(0deg, rgba(12, 12, 12, 0) 0%, rgba(12, 12, 12, 0.514465) 28%, rgba(12, 12, 12, 0.802981) 56%, #0c0c0c 100%);
}

footer.section .footer--background {
  position: absolute;
  left: 0;
  top: 0;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  mix-blend-mode: lighten;
  width: 100vw;
  height: 100%;
  z-index: -1;
}

footer.section .container, footer.section .hero .slick-dots, .hero footer.section .slick-dots, footer.section html body #cookie-notice .cookie-notice-container, html body #cookie-notice footer.section .cookie-notice-container {
  max-width: calc(1600px + 2%);
}

@media (min-width: 67.5em) {
  footer.section .container, footer.section .hero .slick-dots, .hero footer.section .slick-dots, footer.section html body #cookie-notice .cookie-notice-container, html body #cookie-notice footer.section .cookie-notice-container {
    display: flex;
    flex-direction: column;
  }
}

footer.section .container .footer--newsletter, footer.section .hero .slick-dots .footer--newsletter, .hero footer.section .slick-dots .footer--newsletter, footer.section html body #cookie-notice .cookie-notice-container .footer--newsletter, html body #cookie-notice footer.section .cookie-notice-container .footer--newsletter {
  margin-top: 40px;
  margin-bottom: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

footer.section .container .footer--newsletter .footer--newsletter__content, footer.section .hero .slick-dots .footer--newsletter .footer--newsletter__content, .hero footer.section .slick-dots .footer--newsletter .footer--newsletter__content, footer.section html body #cookie-notice .cookie-notice-container .footer--newsletter .footer--newsletter__content, html body #cookie-notice footer.section .cookie-notice-container .footer--newsletter .footer--newsletter__content {
  text-align: center;
  padding: 40px;
  border: 0.5px solid #7A7A7A;
  border-radius: 1px;
  background: rgba(0, 0, 0, 0.59);
}

footer.section .container .footer--newsletter .footer--newsletter__content .footer--newsletter__header, footer.section .hero .slick-dots .footer--newsletter .footer--newsletter__content .footer--newsletter__header, .hero footer.section .slick-dots .footer--newsletter .footer--newsletter__content .footer--newsletter__header, footer.section html body #cookie-notice .cookie-notice-container .footer--newsletter .footer--newsletter__content .footer--newsletter__header, html body #cookie-notice footer.section .cookie-notice-container .footer--newsletter .footer--newsletter__content .footer--newsletter__header {
  margin-bottom: 40px;
}

footer.section .container .footer--newsletter .footer--newsletter__content p, footer.section .hero .slick-dots .footer--newsletter .footer--newsletter__content p, .hero footer.section .slick-dots .footer--newsletter .footer--newsletter__content p, footer.section html body #cookie-notice .cookie-notice-container .footer--newsletter .footer--newsletter__content p, html body #cookie-notice footer.section .cookie-notice-container .footer--newsletter .footer--newsletter__content p {
  font-size: 16px;
  max-width: 475px;
  margin: 0 auto 60px auto;
  line-height: 143%;
}

@media (min-width: 67.5em) {
  footer.section .container .footer--newsletter .footer--newsletter__content p, footer.section .hero .slick-dots .footer--newsletter .footer--newsletter__content p, .hero footer.section .slick-dots .footer--newsletter .footer--newsletter__content p, footer.section html body #cookie-notice .cookie-notice-container .footer--newsletter .footer--newsletter__content p, html body #cookie-notice footer.section .cookie-notice-container .footer--newsletter .footer--newsletter__content p {
    font-size: 18px;
  }
}

footer.section .container .jay-grid, footer.section .hero .slick-dots .jay-grid, .hero footer.section .slick-dots .jay-grid, footer.section html body #cookie-notice .cookie-notice-container .jay-grid, html body #cookie-notice footer.section .cookie-notice-container .jay-grid {
  align-items: flex-end;
}

footer.section .container .jay-grid .footer--branding, footer.section .hero .slick-dots .jay-grid .footer--branding, .hero footer.section .slick-dots .jay-grid .footer--branding, footer.section html body #cookie-notice .cookie-notice-container .jay-grid .footer--branding, html body #cookie-notice footer.section .cookie-notice-container .jay-grid .footer--branding {
  order: 1;
}

@media (min-width: 67.5em) {
  footer.section .container .jay-grid .footer--branding, footer.section .hero .slick-dots .jay-grid .footer--branding, .hero footer.section .slick-dots .jay-grid .footer--branding, footer.section html body #cookie-notice .cookie-notice-container .jay-grid .footer--branding, html body #cookie-notice footer.section .cookie-notice-container .jay-grid .footer--branding {
    order: 0;
  }
}

footer.section .container .jay-grid #menu-footer-menu, footer.section .hero .slick-dots .jay-grid #menu-footer-menu, .hero footer.section .slick-dots .jay-grid #menu-footer-menu, footer.section html body #cookie-notice .cookie-notice-container .jay-grid #menu-footer-menu, html body #cookie-notice footer.section .cookie-notice-container .jay-grid #menu-footer-menu {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

@media (min-width: 67.5em) {
  footer.section .container .jay-grid #menu-footer-menu, footer.section .hero .slick-dots .jay-grid #menu-footer-menu, .hero footer.section .slick-dots .jay-grid #menu-footer-menu, footer.section html body #cookie-notice .cookie-notice-container .jay-grid #menu-footer-menu, html body #cookie-notice footer.section .cookie-notice-container .jay-grid #menu-footer-menu {
    display: block;
  }
}

footer.section .container .jay-grid #menu-footer-menu li, footer.section .hero .slick-dots .jay-grid #menu-footer-menu li, .hero footer.section .slick-dots .jay-grid #menu-footer-menu li, footer.section html body #cookie-notice .cookie-notice-container .jay-grid #menu-footer-menu li, html body #cookie-notice footer.section .cookie-notice-container .jay-grid #menu-footer-menu li {
  margin-bottom: 10px;
}

@media (min-width: 67.5em) {
  footer.section .container .jay-grid #menu-footer-menu li, footer.section .hero .slick-dots .jay-grid #menu-footer-menu li, .hero footer.section .slick-dots .jay-grid #menu-footer-menu li, footer.section html body #cookie-notice .cookie-notice-container .jay-grid #menu-footer-menu li, html body #cookie-notice footer.section .cookie-notice-container .jay-grid #menu-footer-menu li {
    margin-bottom: 0;
  }
}

footer.section .container a, footer.section .hero .slick-dots a, .hero footer.section .slick-dots a, footer.section html body #cookie-notice .cookie-notice-container a, html body #cookie-notice footer.section .cookie-notice-container a {
  color: #FFFFFF;
}

footer.section .container a:hover, footer.section .hero .slick-dots a:hover, .hero footer.section .slick-dots a:hover, footer.section html body #cookie-notice .cookie-notice-container a:hover, html body #cookie-notice footer.section .cookie-notice-container a:hover {
  color: #42CCBE;
}

@media (min-width: 67.5em) {
  footer.section .container .site-credits, footer.section .hero .slick-dots .site-credits, .hero footer.section .slick-dots .site-credits, footer.section html body #cookie-notice .cookie-notice-container .site-credits, html body #cookie-notice footer.section .cookie-notice-container .site-credits {
    margin-bottom: 0;
  }
}

footer.section .container a.social, footer.section .hero .slick-dots a.social, .hero footer.section .slick-dots a.social, footer.section html body #cookie-notice .cookie-notice-container a.social, html body #cookie-notice footer.section .cookie-notice-container a.social {
  color: #42CCBE;
  margin-bottom: 5px;
}

@media (min-width: 67.5em) {
  footer.section .container a.social:hover, footer.section .hero .slick-dots a.social:hover, .hero footer.section .slick-dots a.social:hover, footer.section html body #cookie-notice .cookie-notice-container a.social:hover, html body #cookie-notice footer.section .cookie-notice-container a.social:hover {
    color: #FFFFFF;
  }
}

footer.section .container .logo, footer.section .hero .slick-dots .logo, .hero footer.section .slick-dots .logo, footer.section html body #cookie-notice .cookie-notice-container .logo, html body #cookie-notice footer.section .cookie-notice-container .logo {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 67.5em) {
  footer.section .container .logo, footer.section .hero .slick-dots .logo, .hero footer.section .slick-dots .logo, footer.section html body #cookie-notice .cookie-notice-container .logo, html body #cookie-notice footer.section .cookie-notice-container .logo {
    margin-bottom: 15px;
    margin-top: 55px;
  }
}

footer.section .container .logo img, footer.section .hero .slick-dots .logo img, .hero footer.section .slick-dots .logo img, footer.section html body #cookie-notice .cookie-notice-container .logo img, html body #cookie-notice footer.section .cookie-notice-container .logo img {
  max-width: 106px;
}

@media (min-width: 67.5em) {
  footer.section .container .logo img, footer.section .hero .slick-dots .logo img, .hero footer.section .slick-dots .logo img, footer.section html body #cookie-notice .cookie-notice-container .logo img, html body #cookie-notice footer.section .cookie-notice-container .logo img {
    max-width: 52px;
  }
}

footer.section .container .footer--nav, footer.section .hero .slick-dots .footer--nav, .hero footer.section .slick-dots .footer--nav, footer.section html body #cookie-notice .cookie-notice-container .footer--nav, html body #cookie-notice footer.section .cookie-notice-container .footer--nav {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 67.5em) {
  footer.section .container .footer--nav, footer.section .hero .slick-dots .footer--nav, .hero footer.section .slick-dots .footer--nav, footer.section html body #cookie-notice .cookie-notice-container .footer--nav, html body #cookie-notice footer.section .cookie-notice-container .footer--nav {
    display: block;
    margin-bottom: 0;
  }
}

footer.section .container .footer--nav .footer--warning, footer.section .hero .slick-dots .footer--nav .footer--warning, .hero footer.section .slick-dots .footer--nav .footer--warning, footer.section html body #cookie-notice .cookie-notice-container .footer--nav .footer--warning, html body #cookie-notice footer.section .cookie-notice-container .footer--nav .footer--warning {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  border: 1px solid #7A7A7A;
  order: 1;
  margin-bottom: 0;
  margin-top: 20px;
}

@media (min-width: 67.5em) {
  footer.section .container .footer--nav .footer--warning, footer.section .hero .slick-dots .footer--nav .footer--warning, .hero footer.section .slick-dots .footer--nav .footer--warning, footer.section html body #cookie-notice .cookie-notice-container .footer--nav .footer--warning, html body #cookie-notice footer.section .cookie-notice-container .footer--nav .footer--warning {
    margin: 0 auto;
    margin-bottom: 60px;
    max-width: 350px;
  }
}

footer.section .container .footer--nav .footer--warning h2, footer.section .hero .slick-dots .footer--nav .footer--warning h2, .hero footer.section .slick-dots .footer--nav .footer--warning h2, footer.section html body #cookie-notice .cookie-notice-container .footer--nav .footer--warning h2, html body #cookie-notice footer.section .cookie-notice-container .footer--nav .footer--warning h2 {
  font-size: 22.6059px;
  line-height: 97%;
  font-family: "PP Formula Compressed", sans-serif;
}

footer.section .container .footer--nav .footer--warning p, footer.section .hero .slick-dots .footer--nav .footer--warning p, .hero footer.section .slick-dots .footer--nav .footer--warning p, footer.section html body #cookie-notice .cookie-notice-container .footer--nav .footer--warning p, html body #cookie-notice footer.section .cookie-notice-container .footer--nav .footer--warning p {
  width: 170px;
  font-family: 'Apercu Pro';
  font-size: 9px;
  letter-spacing: 0.02em;
  margin-bottom: 0;
  line-height: 9px;
}

footer.section .container .footer--nav .footer--warning a, footer.section .hero .slick-dots .footer--nav .footer--warning a, .hero footer.section .slick-dots .footer--nav .footer--warning a, footer.section html body #cookie-notice .cookie-notice-container .footer--nav .footer--warning a, html body #cookie-notice footer.section .cookie-notice-container .footer--nav .footer--warning a {
  margin-bottom: 0;
}

footer.section .container .footer--nav .footer-menu--header, footer.section .hero .slick-dots .footer--nav .footer-menu--header, .hero footer.section .slick-dots .footer--nav .footer-menu--header, footer.section html body #cookie-notice .cookie-notice-container .footer--nav .footer-menu--header, html body #cookie-notice footer.section .cookie-notice-container .footer--nav .footer-menu--header {
  font-family: "PP Formula Compressed", sans-serif;
  font-size: 25px;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

@media (min-width: 67.5em) {
  footer.section .container .footer--nav .footer-menu--header, footer.section .hero .slick-dots .footer--nav .footer-menu--header, .hero footer.section .slick-dots .footer--nav .footer-menu--header, footer.section html body #cookie-notice .cookie-notice-container .footer--nav .footer-menu--header, html body #cookie-notice footer.section .cookie-notice-container .footer--nav .footer-menu--header {
    display: none;
  }
}

@media (min-width: 67.5em) {
  footer.section .container .footer--nav ul, footer.section .hero .slick-dots .footer--nav ul, .hero footer.section .slick-dots .footer--nav ul, footer.section html body #cookie-notice .cookie-notice-container .footer--nav ul, html body #cookie-notice footer.section .cookie-notice-container .footer--nav ul,
  footer.section .container .footer--nav li,
  footer.section .hero .slick-dots .footer--nav li,
  .hero footer.section .slick-dots .footer--nav li,
  footer.section html body #cookie-notice .cookie-notice-container .footer--nav li,
  html body #cookie-notice footer.section .cookie-notice-container .footer--nav li {
    display: inline;
  }
}

footer.section .container .footer--nav ul, footer.section .hero .slick-dots .footer--nav ul, .hero footer.section .slick-dots .footer--nav ul, footer.section html body #cookie-notice .cookie-notice-container .footer--nav ul, html body #cookie-notice footer.section .cookie-notice-container .footer--nav ul {
  line-height: 18px;
}

footer.section .container .footer--nav li:last-of-type a, footer.section .hero .slick-dots .footer--nav li:last-of-type a, .hero footer.section .slick-dots .footer--nav li:last-of-type a, footer.section html body #cookie-notice .cookie-notice-container .footer--nav li:last-of-type a, html body #cookie-notice footer.section .cookie-notice-container .footer--nav li:last-of-type a {
  margin-right: 0;
}

footer.section .container .footer--nav .menu--small .menu, footer.section .hero .slick-dots .footer--nav .menu--small .menu, .hero footer.section .slick-dots .footer--nav .menu--small .menu, footer.section html body #cookie-notice .cookie-notice-container .footer--nav .menu--small .menu, html body #cookie-notice footer.section .cookie-notice-container .footer--nav .menu--small .menu {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
}

@media (min-width: 67.5em) {
  footer.section .container .footer--nav .menu--small .menu, footer.section .hero .slick-dots .footer--nav .menu--small .menu, .hero footer.section .slick-dots .footer--nav .menu--small .menu, footer.section html body #cookie-notice .cookie-notice-container .footer--nav .menu--small .menu, html body #cookie-notice footer.section .cookie-notice-container .footer--nav .menu--small .menu {
    display: block;
    text-align: center;
  }
}

footer.section .container .footer--nav .menu--small .menu li, footer.section .hero .slick-dots .footer--nav .menu--small .menu li, .hero footer.section .slick-dots .footer--nav .menu--small .menu li, footer.section html body #cookie-notice .cookie-notice-container .footer--nav .menu--small .menu li, html body #cookie-notice footer.section .cookie-notice-container .footer--nav .menu--small .menu li {
  margin-bottom: 10px;
}

@media (min-width: 67.5em) {
  footer.section .footer--right {
    text-align: right;
  }
}

@media (min-width: 46.25em) {
  footer.section .jay-grid.four-columns .jay-grid--item.footer--right {
    grid-column: auto / span 12;
  }
}

@media (min-width: 67.5em) {
  footer.section .jay-grid.four-columns .jay-grid--item.footer--right {
    grid-column: auto / span 3;
  }
}

@media (min-width: 67.5em) {
  footer.section .footer--nav__sub {
    text-align: center;
  }
}

.footer--nav__sub {
  margin-top: 18px;
}

@media (min-width: 67.5em) {
  .footer--nav__sub {
    font-family: "Apercu Pro", sans-serif;
  }
}

.footer--nav__sub ul {
  grid-template-columns: repeat(2, 1fr);
  display: grid;
  margin-bottom: 0;
}

@media (min-width: 67.5em) {
  .footer--nav__sub ul {
    display: block;
  }
}

.footer--nav__sub ul li {
  display: block;
  margin-bottom: 10px;
}

@media (min-width: 67.5em) {
  .footer--nav__sub ul li {
    display: inline;
    margin-bottom: 0;
  }
}

.footer--nav__sub ul li a {
  text-decoration: none;
  text-transform: initial;
}

@media (min-width: 67.5em) {
  .footer--nav__sub ul li a {
    text-transform: initial;
    font-size: 10px;
    line-height: 18px;
  }
}

.section.two_column_content {
  padding-top: 0;
}

@media (min-width: 67.5em) {
  .section.two_column_content .container, .section.two_column_content .hero .slick-dots, .hero .section.two_column_content .slick-dots, .section.two_column_content html body #cookie-notice .cookie-notice-container, html body #cookie-notice .section.two_column_content .cookie-notice-container {
    column-gap: 4%;
    column-count: 2;
    break-inside: avoid;
  }
}

.home .section.two_column_content {
  padding-top: 20px;
}

.home-slider.container, .hero .home-slider.slick-dots, html body #cookie-notice .home-slider.cookie-notice-container {
  margin-bottom: 0;
  padding: 0;
}

@media (min-width: 67.5em) {
  .home-slider.container, .hero .home-slider.slick-dots, html body #cookie-notice .home-slider.cookie-notice-container {
    padding: 0 4%;
  }
}

.home-slider.container .slick-track, .hero .home-slider.slick-dots .slick-track, html body #cookie-notice .home-slider.cookie-notice-container .slick-track {
  background: #0C0C0C;
}

.home-slider.container .slick-dots, .hero .home-slider.slick-dots .slick-dots, html body #cookie-notice .home-slider.cookie-notice-container .slick-dots {
  width: auto;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 1rem;
}

.home-slider.container .home-slider--slide, .hero .home-slider.slick-dots .home-slider--slide, html body #cookie-notice .home-slider.cookie-notice-container .home-slider--slide {
  height: 70vh;
  max-height: 800px;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative;
}

@media (min-width: 67.5em) {
  .home-slider.container .home-slider--slide, .hero .home-slider.slick-dots .home-slider--slide, html body #cookie-notice .home-slider.cookie-notice-container .home-slider--slide {
    height: 100vh;
  }
}

.home-slider.container .home-slider--slide .home-slider-fade, .hero .home-slider.slick-dots .home-slider--slide .home-slider-fade, html body #cookie-notice .home-slider.cookie-notice-container .home-slider--slide .home-slider-fade {
  height: 30%;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0.9;
  background: transparent;
  background: linear-gradient(to bottom, transparent 0%, #000101 100%);
}

.home-slider.container .home-slider--slide .home-slider--slide-content, .hero .home-slider.slick-dots .home-slider--slide .home-slider--slide-content, html body #cookie-notice .home-slider.cookie-notice-container .home-slider--slide .home-slider--slide-content {
  position: absolute;
  left: 0;
  bottom: 3rem;
  padding: 0 2rem;
  color: #FFFFFF;
}

@media (min-width: 67.5em) {
  .home-slider.container .home-slider--slide .home-slider--slide-content, .hero .home-slider.slick-dots .home-slider--slide .home-slider--slide-content, html body #cookie-notice .home-slider.cookie-notice-container .home-slider--slide .home-slider--slide-content {
    bottom: 2rem;
    right: 2rem;
    text-align: left;
  }
}

@media (min-width: 67.5em) {
  .home-slider.container .home-slider--slide .home-slider--slide-content .home-slider--slide-content-inner, .hero .home-slider.slick-dots .home-slider--slide .home-slider--slide-content .home-slider--slide-content-inner, html body #cookie-notice .home-slider.cookie-notice-container .home-slider--slide .home-slider--slide-content .home-slider--slide-content-inner {
    max-width: 50%;
  }
}

.home-slider.container .home-slider--slide .home-slider--slide-content .home-slider--slide-content-inner .home-slider--slide-header, .hero .home-slider.slick-dots .home-slider--slide .home-slider--slide-content .home-slider--slide-content-inner .home-slider--slide-header, html body #cookie-notice .home-slider.cookie-notice-container .home-slider--slide .home-slider--slide-content .home-slider--slide-content-inner .home-slider--slide-header {
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.services .services--intro {
  padding-bottom: 2rem;
}

@media (min-width: 46.25em) {
  .services .services--list {
    columns: 2;
  }
}

.services .services--list li {
  list-style-position: inside;
  background: url("../../src/images/check-mark.svg") 0px 8px;
  background-repeat: no-repeat;
  background-size: 15px 15px;
  padding-left: 1.5625rem;
  font-weight: 700;
  margin-bottom: .625rem;
}

@media (min-width: 46.25em) {
  .services .services--list li {
    margin-left: 80px;
  }
}

.featured-image {
  background-color: #8A8989;
  max-height: 800px;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 30vh;
  margin-bottom: 20px;
}

@media (min-width: 67.5em) {
  .featured-image {
    margin-bottom: 60px;
    height: 70vh;
  }
}

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

.featured-image .featured-image--text {
  padding-top: 20px;
}

.featured-image .featured-image--text h1 {
  margin-top: 0;
}

.featured-image .featured-image--text h2 {
  margin-top: 0;
}

.single-spaces_cpt .featured-image {
  height: 600px;
  margin-bottom: 60px;
}

@media (min-width: 67.5em) {
  .single-spaces_cpt .featured-image {
    height: 70vh;
  }
}

body .gform_wrapper.gravity-theme .gform_heading {
  display: none;
}

body .gform_wrapper.gravity-theme form {
  margin-top: 60px;
}

@media (min-width: 67.5em) {
  body .gform_wrapper.gravity-theme form {
    margin-top: 160px;
  }
}

body .gform_wrapper.gravity-theme form a.chosen-single {
  margin-bottom: 0;
}

body .gform_wrapper.gravity-theme form .chosen-drop {
  padding-top: 0 !important;
  margin-top: 0;
}

body .gform_wrapper.gravity-theme form .chosen-search {
  display: none;
}

body .gform_wrapper.gravity-theme form .gfield_label,
body .gform_wrapper.gravity-theme form select,
body .gform_wrapper.gravity-theme form .ginput_container input,
body .gform_wrapper.gravity-theme form input[type="text"],
body .gform_wrapper.gravity-theme form textarea,
body .gform_wrapper.gravity-theme form .chosen-single,
body .gform_wrapper.gravity-theme form .chosen-drop,
body .gform_wrapper.gravity-theme form .chosen-results li {
  background: #0C0C0C !important;
  color: #FFFFFF;
  font-family: "Apercu Pro", sans-serif;
  font-size: 12px;
  line-height: 24px;
  border: none !important;
  border-bottom: 1px solid #7A7A7A !important;
  box-shadow: none !important;
  padding-left: 0 !important;
  padding-top: 25px;
}

body .gform_wrapper.gravity-theme form .gfield_label span, body .gform_wrapper.gravity-theme form .gfield_label::placeholder,
body .gform_wrapper.gravity-theme form select span,
body .gform_wrapper.gravity-theme form select::placeholder,
body .gform_wrapper.gravity-theme form .ginput_container input span,
body .gform_wrapper.gravity-theme form .ginput_container input::placeholder,
body .gform_wrapper.gravity-theme form input[type="text"] span,
body .gform_wrapper.gravity-theme form input[type="text"]::placeholder,
body .gform_wrapper.gravity-theme form textarea span,
body .gform_wrapper.gravity-theme form textarea::placeholder,
body .gform_wrapper.gravity-theme form .chosen-single span,
body .gform_wrapper.gravity-theme form .chosen-single::placeholder,
body .gform_wrapper.gravity-theme form .chosen-drop span,
body .gform_wrapper.gravity-theme form .chosen-drop::placeholder,
body .gform_wrapper.gravity-theme form .chosen-results li span,
body .gform_wrapper.gravity-theme form .chosen-results li::placeholder {
  padding-left: 0;
  font-family: "Apercu Pro", sans-serif;
  font-size: 12px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 1;
}

body .gform_wrapper.gravity-theme form .gfield_label:focus-visible,
body .gform_wrapper.gravity-theme form select:focus-visible,
body .gform_wrapper.gravity-theme form .ginput_container input:focus-visible,
body .gform_wrapper.gravity-theme form input[type="text"]:focus-visible,
body .gform_wrapper.gravity-theme form textarea:focus-visible,
body .gform_wrapper.gravity-theme form .chosen-single:focus-visible,
body .gform_wrapper.gravity-theme form .chosen-drop:focus-visible,
body .gform_wrapper.gravity-theme form .chosen-results li:focus-visible {
  outline: none;
}

body .gform_wrapper.gravity-theme form .gfield_label option.gf_placeholder,
body .gform_wrapper.gravity-theme form select option.gf_placeholder,
body .gform_wrapper.gravity-theme form .ginput_container input option.gf_placeholder,
body .gform_wrapper.gravity-theme form input[type="text"] option.gf_placeholder,
body .gform_wrapper.gravity-theme form textarea option.gf_placeholder,
body .gform_wrapper.gravity-theme form .chosen-single option.gf_placeholder,
body .gform_wrapper.gravity-theme form .chosen-drop option.gf_placeholder,
body .gform_wrapper.gravity-theme form .chosen-results li option.gf_placeholder {
  padding-left: 0;
  font-family: "Apercu Pro", sans-serif;
  font-size: 12px;
  line-height: 24px;
  color: #FFFFFF;
  opacity: 1;
}

body .gform_wrapper.gravity-theme form .gfield_label,
body .gform_wrapper.gravity-theme form span {
  border-bottom: none !important;
  margin-bottom: 0;
}

body .gform_wrapper.gravity-theme form .reason label.gfield_label {
  display: none;
}

body .gform_wrapper.gravity-theme form li.gf_placeholder {
  display: none !important;
}

body .gform_wrapper.gravity-theme form .chosen-drop,
body .gform_wrapper.gravity-theme form .chosen-results li {
  background: #3f3f3f !important;
  border-radius: 0 !important;
}

body .gform_wrapper.gravity-theme form .chosen-drop {
  padding: 10px !important;
  border-bottom: none !important;
}

body .gform_wrapper.gravity-theme form .chosen-results li {
  transition: 0.3s;
  border-bottom: none !important;
}

body .gform_wrapper.gravity-theme form .chosen-results li:hover {
  color: #42CCBE;
}

body .gform_wrapper.gravity-theme form .chosen-container .chosen-single div b {
  background: url(../images/icons/accordion-arrow.svg) no-repeat 0 10px !important;
  transition: 0.3s;
}

body .gform_wrapper.gravity-theme form .chosen-container.chosen-with-drop .chosen-single div b {
  transform: rotate(180deg);
}

body .gform_wrapper.gravity-theme form input:-webkit-autofill,
body .gform_wrapper.gravity-theme form input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}

body .gform_wrapper.gravity-theme form select {
  padding-bottom: 15px;
  padding-top: 0;
}

body .gform_wrapper.gravity-theme .gform_footer.top_label {
  justify-content: flex-end;
}

body .gform_wrapper.gravity-theme .gform_footer.top_label input#gform_submit_button_1 {
  padding: 20px !important;
  background: none;
  line-height: 1;
}

#mc_embed_signup .indicates-required,
#mc_embed_signup label {
  display: none;
}

#mc_embed_signup div#mc_embed_signup_scroll {
  width: 100%;
  position: relative;
}

@media (min-width: 67.5em) {
  #mc_embed_signup div#mc_embed_signup_scroll {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
}

#mc_embed_signup .mc-field-group {
  width: 100%;
  margin-right: 10px;
}

#mc_embed_signup .mc-field-group input#mce-EMAIL {
  background: none;
  border: none;
  border-bottom: 0.5px solid #7A7A7A;
  border-color: #7A7A7A;
  width: 100%;
  padding-left: 0;
  margin-top: 6px !important;
  color: #FFFFFF;
  font-family: "Apercu Pro", sans-serif;
  font-size: 12px;
  line-height: 24px;
}

#mc_embed_signup .mc-field-group input#mce-EMAIL:focus-visible {
  outline: none;
}

#mc_embed_signup .mc-field-group input#mce-EMAIL:placeholder {
  color: #FFFFFF;
}

#mc_embed_signup input#mc-embedded-subscribe {
  border: 0.5px solid #F0F0F0;
  background: none;
  margin-top: 20px;
  width: 100%;
}

@media (min-width: 67.5em) {
  #mc_embed_signup input#mc-embedded-subscribe {
    margin-top: 0;
    width: auto;
  }
}

#mc_embed_signup input#mc-embedded-subscribe:hover {
  border: 0.5px solid #42CCBE;
}

#mc_embed_signup input:-webkit-autofill,
#mc_embed_signup input:-webkit-autofill:focus {
  transition: background-color 600000s 0s, color 600000s 0s;
}

#mc_embed_signup div.mce_inline_error {
  background-color: transparent !important;
  margin: 10px 0 0 0 !important;
  font-size: 12px;
  text-align: left;
  padding-left: 0 !important;
}

#mc_embed_signup div#mce-responses {
  position: absolute;
  bottom: -30px;
}

#mc_embed_signup p {
  margin-bottom: 0;
}

.logo_block {
  text-align: center;
}

.logo_block .logo-block {
  border-top: 0.5px solid #7A7A7A;
  padding-top: 60px;
  padding-bottom: 90px;
}

@media (min-width: 67.5em) {
  .logo_block .logo-block {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}

.logo_block .logo-block .header-four, .logo_block .logo-block .acf-wrapper .banner_block .banner--inner h1, .acf-wrapper .banner_block .banner--inner .logo_block .logo-block h1,
.logo_block .logo-block .acf-wrapper .banner_block .banner--inner h2, .acf-wrapper .banner_block .banner--inner .logo_block .logo-block h2,
.logo_block .logo-block .acf-wrapper .banner_block .banner--inner h3, .acf-wrapper .banner_block .banner--inner .logo_block .logo-block h3,
.logo_block .logo-block .acf-wrapper .banner_block .banner--inner h4, .acf-wrapper .banner_block .banner--inner .logo_block .logo-block h4,
.logo_block .logo-block .acf-wrapper .banner_block .banner--inner h5, .acf-wrapper .banner_block .banner--inner .logo_block .logo-block h5,
.logo_block .logo-block .acf-wrapper .banner_block .banner--inner h6, .acf-wrapper .banner_block .banner--inner .logo_block .logo-block h6 {
  margin-bottom: 100px;
}

.logo_block .logo-block .jay-grid {
  grid-row-gap: 110px;
  max-width: 875px;
  margin: 0 auto;
}

@media (min-width: 46.25em) {
  .three-columns {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.three-columns .three-columns--icon-container {
  text-align: center;
}

.three-columns h1, .three-columns h2, .three-columns h3, .three-columns h4, .three-columns h5, .three-columns h6 {
  text-align: center;
  margin-bottom: 20px;
}

.three-columns.add-outline .jay-grid--item {
  border: 1px solid #8A8989;
}

.three-columns.add-background .jay-grid--item {
  background: #8A8989;
}

.text_block .jay-grid--item,
.text-block .jay-grid--item {
  display: flex;
  flex-direction: column;
}

.text_block .jay-grid--item .button--link__container,
.text-block .jay-grid--item .button--link__container {
  margin-top: 100px;
}

@media (min-width: 67.5em) {
  .text_block .text-block--text p,
  .text-block .text-block--text p {
    font-size: 18px;
    line-height: 143%;
  }
}

.text_block .text-block--text p:last-of-type,
.text-block .text-block--text p:last-of-type {
  margin-bottom: 0;
}

.text_block .button--link__container,
.text-block .button--link__container {
  margin-top: 60px;
}

@media (min-width: 46.25em) {
  .text_block .button--link__container,
  .text-block .button--link__container {
    margin-top: 0;
  }
}

.text_block.wide .container, .text_block.wide .hero .slick-dots, .hero .text_block.wide .slick-dots, .text_block.wide html body #cookie-notice .cookie-notice-container, html body #cookie-notice .text_block.wide .cookie-notice-container {
  max-width: calc(1300px + 2%);
}

.gallery-block {
  padding: 0;
  /* the slides */
  /* the parent */
}

.gallery-block .gallery-slider {
  margin-top: 60px;
  margin-bottom: 100px !important;
  max-width: calc(1300px + 2%);
}

.gallery-block .gallery-slider .slick-list {
  padding: 0 !important;
}

@media (min-width: 67.5em) {
  .gallery-block .gallery-slider .slick-list {
    overflow: visible;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

.gallery-block .gallery-slider .slick-list .slick-slide {
  height: 100%;
  text-align: center;
}

.gallery-block .gallery-slider .slick-list .slick-slide img {
  margin: 0 auto;
}

.gallery-block .gallery-slider .slick-list .slick-slide img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 67.5em) {
  .gallery-block .gallery-slider .slick-list .slick-slide img {
    aspect-ratio: 16 / 7;
  }
}

.gallery-block .gallery-slider .slick-dots {
  position: absolute;
  bottom: -60px;
  margin-left: 0;
}

.gallery-block .gallery-slider .slick-prev {
  left: 0;
}

.gallery-block .gallery-slider .slick-next {
  right: 0;
}

.gallery-block .slick-slide {
  margin: 0 10px;
}

.gallery-block .slick-list {
  margin: 0 -10px;
}

.gallery-block .image-source-link {
  color: #98C3D1;
}

.gallery-block .mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 1;
}

.gallery-block button.mfp-close {
  width: 90px;
  font-size: 25px;
  top: 30px;
  font-weight: 700;
  font-family: "PP Formula Extended Medium", sans-serif;
  color: #42CCBE;
}

.gallery-block .mfp-container {
  position: relative;
  padding: 0 1%;
  left: 50%;
  transform: translate(-50%, 0);
}

.gallery-block .mfp-container .mfp-content {
  max-width: 90% !important;
}

.gallery-block .mfp-container .mfp-content .mfp-bottom-bar {
  padding-top: 8px;
}

.gallery-block .mfp-container .mfp-content .mfp-bottom-bar .mfp-text {
  margin-bottom: 0;
  display: block;
}

.gallery-block .mfp-container .mfp-arrow:before,
.gallery-block .mfp-container .mfp-arrow:after,
.gallery-block .mfp-container .mfp-arrow .mfp-b,
.gallery-block .mfp-container .mfp-arrow .mfp-a {
  content: none;
}

.gallery-block .mfp-container .mfp-arrow-left:before,
.gallery-block .mfp-container .mfp-arrow-right:after {
  border: none;
  display: block;
  opacity: 1;
}

.gallery-block .mfp-container .mfp-arrow-left:before,
.gallery-block .mfp-container .mfp-arrow .mfp-b {
  content: url("../images/icons/arrow--prev.svg");
}

.gallery-block .mfp-container .mfp-arrow-left:before {
  margin-left: 15px;
}

.gallery-block .mfp-container .mfp-arrow-right:before {
  margin-right: 15px;
}

.gallery-block .mfp-container .mfp-arrow-right:after {
  content: url("../images/icons/arrow--next.svg");
}

.gallery-block .mfp-with-zoom .mfp-container,
.gallery-block .mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.gallery-block .mfp-with-zoom.mfp-ready .mfp-container {
  opacity: 1;
}

.gallery-block .mfp-with-zoom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

.gallery-block .mfp-with-zoom.mfp-removing .mfp-container,
.gallery-block .mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}

.single-spaces_cpt .gallery-block {
  margin-bottom: 120px;
}

.single-gallery_cpt .gallery .gallery--row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(2, 1fr);
  flex-wrap: wrap;
  grid-row-gap: 10px;
  grid-column-gap: 10px;
  margin-bottom: 10px;
}

@media (min-width: 67.5em) {
  .single-gallery_cpt .gallery .gallery--row {
    max-height: 50vh;
  }
}

.single-gallery_cpt .gallery .gallery--row .gallery--item {
  margin-bottom: 0;
  display: flex;
}

.single-gallery_cpt .gallery .gallery--row .gallery--item:first-of-type {
  grid-column: auto / span 12;
}

@media (min-width: 67.5em) {
  .single-gallery_cpt .gallery .gallery--row .gallery--item:first-of-type {
    grid-column: auto / span 6;
    grid-row: 1 / span 2;
    max-height: 50vh;
  }
}

.single-gallery_cpt .gallery .gallery--row .gallery--item:first-of-type img {
  width: 100%;
}

.single-gallery_cpt .gallery .gallery--row .gallery--item:nth-of-type(2) {
  grid-column: auto / span 6;
}

@media (min-width: 67.5em) {
  .single-gallery_cpt .gallery .gallery--row .gallery--item:nth-of-type(2) {
    grid-column: auto / span 3;
    grid-row: 1 / span 2;
    max-height: 50vh;
  }
}

.single-gallery_cpt .gallery .gallery--row .gallery--item:nth-of-type(2) img {
  width: 100%;
}

.single-gallery_cpt .gallery .gallery--row .gallery--item:nth-of-type(3) {
  grid-column: auto / span 6;
}

@media (min-width: 67.5em) {
  .single-gallery_cpt .gallery .gallery--row .gallery--item:nth-of-type(3), .single-gallery_cpt .gallery .gallery--row .gallery--item:nth-of-type(4) {
    grid-column: auto / span 3;
    grid-column-start: 10;
    max-height: 25vh;
  }
}

.single-gallery_cpt .gallery .gallery--row .gallery--item:nth-of-type(3) img, .single-gallery_cpt .gallery .gallery--row .gallery--item:nth-of-type(4) img {
  width: 100%;
}

.single-gallery_cpt .gallery .gallery--row .gallery--item:nth-of-type(4) {
  grid-column: auto / span 12;
}

@media (min-width: 67.5em) {
  .single-gallery_cpt .gallery .gallery--row .gallery--item:nth-of-type(4) {
    grid-column: auto / span 3;
    grid-row-start: 2;
  }
}

.single-gallery_cpt .gallery .gallery--row .gallery--item img {
  height: 100%;
  object-fit: cover;
}

.single-gallery_cpt .gallery .gallery--row:nth-child(even) .gallery--item:first-of-type {
  grid-column: auto / span 12;
}

@media (min-width: 67.5em) {
  .single-gallery_cpt .gallery .gallery--row:nth-child(even) .gallery--item:first-of-type {
    grid-column-start: 7;
    grid-column: auto / span 6;
    grid-row: 1 / span 2;
  }
}

@media (min-width: 67.5em) {
  .single-gallery_cpt .gallery .gallery--row:nth-child(even) .gallery--item:nth-of-type(2) {
    grid-column-start: 4;
  }
}

@media (min-width: 67.5em) {
  .single-gallery_cpt .gallery .gallery--row:nth-child(even) .gallery--item:nth-of-type(3),
  .single-gallery_cpt .gallery .gallery--row:nth-child(even) .gallery--item:nth-of-type(4) {
    grid-column-start: 1;
  }
}

.single-gallery_cpt .gallery--footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.single-gallery_cpt .gallery--footer .gallery--footer__item-header {
  display: block;
  margin-bottom: 0;
}

.mfp-bg {
  opacity: 1;
}

button.mfp-close {
  display: none;
}

.mfp-container .mfp-content {
  max-width: calc(1300px + 2%);
  padding: 0 4%;
  margin: 0 auto;
}

@media (min-width: 67.5em) {
  .mfp-container .mfp-content {
    padding: 0 4%;
  }
}

.mfp-container .mfp-content .mfp-close {
  right: 15px;
  padding-right: 0;
  z-index: 2;
}

.mfp-container .mfp-content .mfp-close:before {
  display: inline-block;
  content: url("../images/icons/close.svg");
}

.mfp-container .mfp-content .mfp-bottom-bar {
  position: relative;
}

.mfp-container .mfp-content .mfp-bottom-bar .mfp-counter {
  display: none;
}

.mfp-container .mfp-content .mfp-bottom-bar .mfp-text {
  margin: 0;
}

.mfp-container .mfp-content .mfp-bottom-bar .gallery-title {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
}

.mfp-container .mfp-arrow {
  width: 30px;
  height: 30px;
  transform: none;
  margin-top: 0;
}

.mfp-container .mfp-arrow-left {
  left: 8%;
}

@media (min-width: 67.5em) {
  .mfp-container .mfp-arrow-left {
    left: 15px;
  }
}

.mfp-container .mfp-arrow-left:before {
  content: '';
  background-image: url("../../dist/images/icons/arrow--left.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  border: none;
  margin-left: 0;
}

.mfp-container .mfp-arrow-right {
  right: 8%;
}

@media (min-width: 67.5em) {
  .mfp-container .mfp-arrow-right {
    right: 15px;
  }
}

.mfp-container .mfp-arrow-left,
.mfp-container .mfp-arrow-right {
  width: 30px;
  height: 30px;
  background: #0C0C0C;
  margin-top: -15px;
}

@media (min-width: 67.5em) {
  .mfp-container .mfp-arrow-left,
  .mfp-container .mfp-arrow-right {
    width: 26px;
    height: 26px;
  }
}

.mfp-container .mfp-arrow-right:before {
  content: '';
  background-image: url("../../dist/images/icons/arrow--right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  border: none;
  margin-left: 0;
}

.mfp-container .mfp-arrow-left:before,
.mfp-container .mfp-arrow-right:before {
  display: block;
  opacity: 1;
  margin-top: 0;
  width: 15px;
  height: 18px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.mfp-container .mfp-arrow-left:after,
.mfp-container .mfp-arrow-right:after {
  display: none;
}

.spaces_block .date,
.spaces_block .meta {
  display: none;
}

.spaces_block .excerpt {
  display: none;
}

body .spaces_block .card .card--text .date {
  display: none;
}

.home .spaces_block .excerpt {
  display: block;
}

.hero {
  display: block;
  position: relative;
  width: 100%;
  height: 100vh;
  /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

.hero .hero--slide {
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
}

.hero .hero--slide .container, .hero .hero--slide .slick-dots, .hero .hero--slide html body #cookie-notice .cookie-notice-container, html body #cookie-notice .hero .hero--slide .cookie-notice-container {
  height: 100%;
}

.hero .hero--slide .hero--text--container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero .hero--slide .hero--text--container .hero--icon {
  position: absolute;
  padding: 0 2%;
  max-height: 320px;
  margin-top: -20px;
}

@media (min-width: 67.5em) {
  .hero .hero--slide .hero--text--container .hero--icon {
    max-height: 100%;
  }
}

.hero .hero--slide .hero--text--container .hero--text {
  text-align: center;
  z-index: 1;
  max-width: 840px;
  margin-top: -20px;
}

.hero .hero--slide .hero--text--container .hero--text .hero--header {
  margin: 0 !important;
}

@media (min-width: 67.5em) {
  .hero .hero--slide .hero--text--container .hero--text .hero--header {
    line-height: 91.5%;
  }
}

.hero .hero--slide .hero--text--container .hero--text .hero--copy {
  position: absolute;
  bottom: 70px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  line-height: 143%;
}

.hero .embed-container {
  position: absolute;
  height: 100vh;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
}

.hero .embed-container iframe,
.hero .embed-container object,
.hero .embed-container embed {
  min-height: 100vh;
  min-width: 177.77vh;
  /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 56.25vw;
}

.hero .embed-container {
  height: 100vh;
}

.hero .embed-container .iframe-container {
  width: 400%;
}

@media (min-width: 67.5em) {
  .hero .embed-container .iframe-container {
    width: 100%;
  }
}

.hero .embed-container .iframe-container iframe {
  width: 100%;
  height: 100%;
}

@media (min-width: 67.5em) {
  .hero .embed-container .iframe-container iframe {
    width: auto;
    height: calc(100% * 9 / 16);
  }
}

.hero .embed-container iframe.hero--video-mobile {
  display: block;
}

@media (min-width: 67.5em) {
  .hero .embed-container iframe.hero--video-mobile {
    display: none;
  }
}

.hero .embed-container iframe.hero--video-desktop {
  display: none;
}

@media (min-width: 67.5em) {
  .hero .embed-container iframe.hero--video-desktop {
    display: block;
  }
}

.hero .slick-dots {
  bottom: 40px;
  text-align: center;
}

@media (min-width: 67.5em) {
  .hero .slick-dots {
    text-align: right;
  }
}

body.home .hero--video .container--inner {
  border-bottom: none;
}

@media (min-width: 67.5em) {
  .iframe-container:before {
    display: block;
    content: "";
    width: 100%;
    padding-top: 56.25%;
  }
}

.slick-prev,
.slick-next {
  width: 30px;
  height: 30px;
  background: #0C0C0C !important;
}

.slick-prev:before,
.slick-next:before {
  content: none;
}

.slick-prev:hover,
.slick-next:hover {
  background: #0C0C0C;
}

.slick-prev img,
.slick-next img {
  width: 16px;
  height: 18px;
}

.slick-dots {
  display: block;
  position: relative;
  bottom: 0;
  margin-top: 30px;
}

.slick-dots > li:only-child {
  display: none;
}

.slick-dots li {
  height: 24px;
  width: 24px;
}

.slick-dots li.slick-active {
  border: 2px solid #42CCBE;
}

.slick-dots li button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
}

.slick-dots li button:before {
  position: relative;
  color: #7A7A7A;
  opacity: 1;
  width: 20px;
  height: 20px;
}

.slick-dots li.slick-active button:before {
  color: #42CCBE;
  opacity: 1;
}

.mobile-slider.jay-grid {
  display: block;
}

@media (min-width: 46.25em) {
  .mobile-slider.jay-grid {
    display: grid;
  }
}

.mobile-slider.jay-grid .card {
  margin-bottom: 20px;
}

@media (min-width: 67.5em) {
  .mobile-slider.jay-grid .card {
    margin-bottom: 50px;
  }
}

body .mobile-slider .slick-slide,
body .mobile-slider .slick-slide .card--text .card--header {
  text-align: center;
}

@media (min-width: 46.25em) {
  body .mobile-slider .slick-slide,
  body .mobile-slider .slick-slide .card--text .card--header {
    text-align: left;
  }
}

@media (min-width: 67.5em) {
  body .mobile-slider .slick-slide {
    padding: 0;
  }
}

body .mobile-slider .card .card--text .meta {
  margin-bottom: 20px;
}

@media (min-width: 67.5em) {
  body .mobile-slider .card .card--text .meta {
    margin-bottom: 10px;
    margin-top: 0;
  }
}

body .mobile-slider .card .card--text .date {
  margin-bottom: 20px;
  margin-top: 0;
}

@media (min-width: 67.5em) {
  body .mobile-slider .card .card--text .date {
    margin: 5px 0;
  }
}

body .mobile-slider .card .card--text .card--header {
  margin-bottom: 0;
  margin-top: 0;
}

@media (min-width: 67.5em) {
  body .mobile-slider .card .card--text .card--header {
    margin: 5px 0;
  }
}

body .mobile-slider .slick-dots {
  margin-top: 0;
}

.socials {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 30px;
}

@media (min-width: 67.5em) {
  .socials {
    justify-content: flex-end;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.socials .social {
  margin-right: 35px;
}

.socials .social:last-of-type {
  margin-right: 0;
}

.map {
  background: #7A7A7A;
  aspect-ratio: 16 / 9;
  height: auto;
  width: 100%;
}

@media (min-width: 67.5em) {
  .map {
    height: 460px;
  }
}

.location-details {
  margin-top: 40px;
}

.location-details h2 {
  margin-bottom: 20px;
}

.location-details p {
  margin-bottom: 0;
  font-family: "Apercu Pro", sans-serif;
}

.location-details a {
  margin-top: 40px;
  margin-bottom: 0;
  text-transform: uppercase;
  display: inline-block;
  font-family: "PP Formula Extended Medium", sans-serif;
  font-size: 14px;
  line-height: 14px;
}

.post-type-archive-jobs_cpt .excerpt,
.post-type-archive-jobs_cpt span.date {
  display: none !important;
}

@media (min-width: 67.5em) {
  .single-jobs_cpt .featured-image {
    margin-top: 100px;
  }
}

.single-jobs_cpt .job-info {
  display: flex;
}

.single-jobs_cpt .job-info .job-info--item {
  margin-top: 20px;
  margin-bottom: 20px;
}

.single-jobs_cpt .job-info .job-info--item__last {
  margin-left: 50px;
}

.single-jobs_cpt .button--link__container {
  margin-top: 60px;
}

html body #cookie-notice .cookie-notice-container {
  padding: 50px 2%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media (min-width: 67.5em) {
  html body #cookie-notice .cookie-notice-container {
    flex-direction: row;
  }
}

html body #cookie-notice .cookie-notice-container h2 {
  font-family: "PP Formula Condensed", sans-serif !important;
  font-size: 40px;
  line-height: 43px;
  margin-bottom: 30px;
  display: block;
}

@media (min-width: 67.5em) {
  html body #cookie-notice .cookie-notice-container h2 {
    margin-right: 25px;
    margin-bottom: 0;
    display: inline;
  }
}

html body #cookie-notice .cookie-notice-container span#cn-notice-text {
  margin-bottom: 40px;
  max-width: 315px;
}

@media (min-width: 67.5em) {
  html body #cookie-notice .cookie-notice-container span#cn-notice-text {
    margin-bottom: 0;
    max-width: none;
  }
}

html body #cookie-notice .cookie-notice-container .cn-button {
  display: inline-block;
  padding: 1.25rem !important;
  margin-bottom: 0 !important;
  transition: 0.3s !important;
  cursor: pointer !important;
  background: transparent !important;
  border: 1px solid #FFFFFF !important;
  border-radius: 2px !important;
  color: #42CCBE !important;
  font-family: "PP Formula Extended Medium", sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 100% !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  transition: 0.3s !important;
}

html body #cookie-notice .cookie-notice-container .cn-button:hover {
  color: #FFFFFF !important;
  border: 1px solid #42CCBE !important;
}

html body #cookie-notice .cookie-notice-container a#cn-more-info {
  margin-top: 10px !important;
}

html body #cookie-notice .cookie-notice-container .cn-close-icon {
  opacity: 1;
  top: 30px;
}

@media (min-width: 67.5em) {
  html body #cookie-notice .cookie-notice-container .cn-close-icon {
    right: -20px;
  }
}

html body #cookie-notice .cookie-notice-container .cn-close-icon:before, html body #cookie-notice .cookie-notice-container .cn-close-icon:after {
  height: 21px;
  background-color: #42CCBE;
}

@media (min-width: 67.5em) {
  .acf-wrapper .banner_block {
    padding-top: 0;
  }
}

.acf-wrapper .banner_block .banner--container {
  background-size: contain;
  background-repeat: repeat;
  background-position: center;
  margin-top: 0;
  padding: 0;
}

@media (min-width: 67.5em) {
  .acf-wrapper .banner_block .banner--container {
    padding: 0 2%;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .banner_block .banner--container .banner--wrapper {
    padding-top: 100px;
    border-top: 0.5px solid #7A7A7A;
  }
}

.acf-wrapper .banner_block .banner--container .banner {
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-position-x: 100%;
}

@media (min-width: 67.5em) {
  .acf-wrapper .banner_block .banner--container .banner {
    border: 0.5px solid #FFFFFF;
    text-align: left;
    background-position: center;
    background-position-x: -100%;
    background-repeat: no-repeat;
  }
}

.acf-wrapper .banner_block .banner--inner {
  padding: 110px 4%;
}

@media (min-width: 67.5em) {
  .acf-wrapper .banner_block .banner--inner {
    padding: 50px 45px;
  }
}

.acf-wrapper .banner_block .banner--inner h1,
.acf-wrapper .banner_block .banner--inner h2,
.acf-wrapper .banner_block .banner--inner h3,
.acf-wrapper .banner_block .banner--inner h4,
.acf-wrapper .banner_block .banner--inner h5,
.acf-wrapper .banner_block .banner--inner h6 {
  margin-top: 0;
  margin-bottom: 50px;
  font-family: "PP Formula Compressed", sans-serif;
  line-height: 108%;
  max-width: 253px;
  margin-left: auto;
}

@media (min-width: 67.5em) {
  .acf-wrapper .banner_block .banner--inner h1,
  .acf-wrapper .banner_block .banner--inner h2,
  .acf-wrapper .banner_block .banner--inner h3,
  .acf-wrapper .banner_block .banner--inner h4,
  .acf-wrapper .banner_block .banner--inner h5,
  .acf-wrapper .banner_block .banner--inner h6 {
    max-width: 100%;
    margin-bottom: 20px;
    font-size: 50px;
    line-height: 51px;
  }
}

.acf-wrapper .banner_block .banner--inner p {
  font-size: 18px;
  line-height: 23px;
  font-family: "Apercu Pro", sans-serif;
  margin-bottom: 50px;
}

@media (min-width: 67.5em) {
  .acf-wrapper .banner_block .banner--inner p {
    margin-bottom: 35px;
  }
}

.acf-wrapper .banner_block .banner--inner .button--link, .acf-wrapper .banner_block .banner--inner .location-details a, .location-details .acf-wrapper .banner_block .banner--inner a {
  margin-bottom: 0;
}

@media (min-width: 67.5em) {
  .acf-wrapper .banner_block .banner--inner {
    max-width: 55%;
  }
}

.events-search {
  padding: 15px 15px 15px 20px;
  display: inline-flex;
  width: 100%;
}

.events-search svg {
  margin-right: 20px;
}

.events-search input.quicksearch {
  background: none;
  border: none;
  color: #F0F0F0;
  font-weight: 100;
}

.events-search input.quicksearch:focus-visible {
  outline: none;
}

.quicksearch,
.button--drowdown__label .button--title {
  font-family: "Apercu Pro", sans-serif;
  font-size: 14px;
  line-height: 14px;
}

@media (min-width: 67.5em) {
  .quicksearch,
  .button--drowdown__label .button--title {
    font-size: 16px;
    line-height: 24px;
  }
}

.filter--horizontal {
  margin-bottom: 40px;
}

.filter--horizontal .dropdown {
  position: relative;
  max-width: 100%;
  margin-bottom: 0;
}

.filter--horizontal .dropdown .events-search {
  max-width: 100%;
}

.dropdown {
  margin-top: 20px;
  width: 100%;
}

.dropdown.dropdown--inline {
  margin-bottom: 40px;
  position: relative;
}

@media (min-width: 67.5em) {
  .dropdown.dropdown-filter__dates {
    margin-top: 20px;
  }
}

.dropdown .button {
  border: 1px solid #7A7A7A;
  border-radius: 2px;
  transition: 0.3s;
  padding: 12px 20px 12px 15px;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

@media (min-width: 67.5em) {
  .dropdown .button:hover {
    border: 1px solid #42CCBE;
  }
}

.dropdown .button.dropdown--button__underlined {
  border: none;
  border-bottom: 1px solid #7A7A7A;
}

.dropdown .button:active {
  background-color: transparent;
  box-shadow: none;
}

.dropdown .button .button--drowdown__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.dropdown .button .button--drowdown__label svg {
  height: 26px;
}

.dropdown .button .button--drowdown__label .button--title {
  margin-left: 20px;
  margin-bottom: 0;
  color: #7A7A7A;
  text-transform: initial;
}

.dropdown .button svg.arrow--down {
  transition: 0.3s;
}

.dropdown .dropdown--content {
  width: 100%;
  min-width: 160px;
  max-height: 40vh;
  overflow: scroll;
  display: none;
  background-color: #0C0C0C;
  overflow: auto;
  flex-direction: column;
  border: 1px solid #7A7A7A;
  border-radius: 2px;
}

.dropdown .dropdown--content .dropdown--button {
  cursor: pointer;
  background: transparent;
  color: #FFFFFF;
  text-align: left;
  padding: 11px 20px 10px 15px;
  border: none;
  border-bottom: 1px solid #7A7A7A;
  transition: 0.3s;
  font-family: "Apercu Pro", sans-serif;
}

.dropdown .dropdown--content .dropdown--button.is-checked {
  color: #42CCBE;
}

@media (min-width: 67.5em) {
  .dropdown .dropdown--content .dropdown--button:hover {
    color: #42CCBE;
  }
}

.dropdown.active svg.arrow--down {
  transform: rotate(180deg);
}

.dropdown.active .dropdown--content {
  display: flex;
  z-index: 1;
  position: absolute;
}

@media (min-width: 46.25em) {
  .dropdown.restrained .button,
  .dropdown.restrained .dropdown--content,
  .dropdown.restrained .events-search {
    max-width: 250px;
  }
}

.acf-wrapper .acf-section.instagram_block {
  padding-top: 80px;
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section.instagram_block {
    padding-top: 50px;
  }
}

body.home .container--inner {
  padding-bottom: 90px;
  border-bottom: 0.5px solid #7A7A7A;
}

body.home .events .button {
  margin-top: 80px;
}

@media (min-width: 67.5em) {
  body.home .events .button {
    margin-top: 65px;
  }
}

body.home .spaces .card .card--text {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

body.home .spaces .card .card--text h2.card--header.header-four,
body.home .spaces .card .card--text .acf-wrapper .banner_block .banner--inner h2.card--header, .acf-wrapper .banner_block .banner--inner body.home .spaces .card .card--text h2.card--header {
  text-align: center;
}

body.home .spaces .card .card--text .date {
  display: none;
}

body.home .spaces .card .card--text .excerpt p {
  color: #FFFFFF;
  text-transform: uppercase;
  margin-top: 15px;
}

@media (min-width: 67.5em) {
  body.home .spaces .card .card--text .excerpt p {
    margin-top: 0;
  }
}

body.home .spaces .button {
  margin-top: 25px;
}

@media (min-width: 67.5em) {
  .events-archive {
    padding-top: 75px;
    margin-top: 75px;
    border-top: 0.5px solid #7A7A7A;
  }
}

.single-events_cpt .date,
.post-type-archive-events_cpt .date {
  color: #FFFFFF;
}

body.post-type-archive-events_cpt .events-archive {
  display: block;
  padding-top: 80px;
  margin-top: 75px;
  border-top: 0.5px solid rgba(122, 122, 122, 0.6);
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner {
  margin-bottom: 100px;
}

@media (min-width: 67.5em) {
  body.post-type-archive-events_cpt .events-archive .events-archive--inner {
    display: flex;
    padding-top: 30px;
  }
}

@media (min-width: 67.5em) {
  body.post-type-archive-events_cpt .events-archive .events-archive--inner .events-archive--sidebar {
    width: 35%;
    margin-right: 60px;
    margin-bottom: 500px;
  }
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner .events-archive--sidebar .events-archive--sidebar__sticky {
  position: sticky;
  top: 100px;
  z-index: 1;
  margin-top: 30px;
}

@media (min-width: 67.5em) {
  body.post-type-archive-events_cpt .events-archive .events-archive--inner .events-archive--sidebar .events-archive--sidebar__sticky {
    margin-top: -20px;
  }
}

@media (min-width: 67.5em) {
  body.post-type-archive-events_cpt .events-archive .events-archive--inner .events-archive--sidebar .events-archive--sidebar__sticky .events-search__wrapper {
    margin-top: 0;
  }
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner .events-archive--posts {
  width: 100%;
  margin-top: 60px;
}

@media (min-width: 67.5em) {
  body.post-type-archive-events_cpt .events-archive .events-archive--inner .events-archive--posts {
    margin-top: 0;
  }
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner .events-archive--posts .events-archive--posts__intro {
  display: flex;
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner .events-archive--posts .events-archive--posts__intro .grey {
  margin-right: 5px;
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner .events-archive--posts .events-archive--posts__intro-item {
  margin-bottom: 10px;
  font-family: "Apercu Pro", sans-serif;
  font-size: 12px;
  line-height: 16px;
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner .events-archive--posts .no-results {
  margin-bottom: 10px;
  font-family: "Apercu Pro", sans-serif;
  font-size: 16px;
  line-height: 22px;
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner .events-archive--posts .hide {
  display: none;
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner .grid {
  width: 100%;
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner .grid .grid-item {
  width: 100%;
  margin-bottom: 60px;
}

@media (min-width: 67.5em) {
  body.post-type-archive-events_cpt .events-archive .events-archive--inner .grid .grid-item {
    width: 48%;
    margin-bottom: 80px;
  }
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner .grid .card .card--text .date {
  font-size: 18px;
  line-height: 18px;
}

body.post-type-archive-events_cpt .events-archive .events-archive--inner .grid .excerpt {
  display: none;
}

.gutter-sizer {
  width: 24px;
}

.button--back {
  margin-bottom: 50px;
}

@media (min-width: 67.5em) {
  .button--back {
    display: none;
  }
}

.single-events_cpt .page-header {
  padding-bottom: 30px;
}

@media (min-width: 67.5em) {
  .single-events_cpt .page-header {
    padding-bottom: 80px;
    margin-bottom: 0;
  }
}

.single-events_cpt .date {
  margin-top: 20px;
  display: block;
}

.single-events_cpt .event--header {
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 67.5em) {
  .single-events_cpt .event--header {
    margin-bottom: 0;
  }
}

.single-events_cpt .poster--mobile {
  display: block;
}

@media (min-width: 46.25em) {
  .single-events_cpt .poster--mobile {
    display: none;
  }
}

.single-events_cpt .share--desktop {
  display: none;
}

@media (min-width: 46.25em) {
  .single-events_cpt .share--desktop {
    display: block;
  }
}

.single-events_cpt .share--mobile {
  display: block;
  margin-bottom: 90px;
}

.single-events_cpt .share--mobile .share--buttons {
  left: 0;
}

.single-events_cpt .share--mobile .share--buttons .icon--social {
  margin-left: 0;
  margin-right: 10px;
  margin-bottom: 0;
  width: 22px;
  min-width: 22px;
  display: block;
  text-align: center;
}

@media (min-width: 46.25em) {
  .single-events_cpt .share--mobile {
    display: none;
  }
}

.single-events_cpt .poster--desktop {
  display: none;
}

@media (min-width: 46.25em) {
  .single-events_cpt .poster--desktop {
    display: initial;
  }
}

.single-events_cpt .event-details {
  display: flex;
  flex-direction: column;
  margin-top: 60px;
  margin-bottom: 60px;
}

.single-events_cpt .event-details .event-details--row {
  border-bottom: 0.5px solid #7A7A7A;
  padding-bottom: 10px;
  padding-top: 15px;
  max-width: 333px;
  display: flex;
  flex-direction: column;
}

@media (min-width: 67.5em) {
  .single-events_cpt .event-details .event-details--row {
    display: block;
  }
}

.single-events_cpt .event-details .event-details--row .event-details--item {
  display: inline-block;
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 0;
}

.single-events_cpt .event-details .event-details--row .event-details--label {
  color: #7A7A7A;
  margin-right: 10px;
  margin-bottom: 5px;
}

@media (min-width: 67.5em) {
  .single-events_cpt .event-details .event-details--row .event-details--label {
    margin-bottom: 0;
  }
}

.single-events_cpt .button--link, .single-events_cpt .location-details a, .location-details .single-events_cpt a {
  margin-bottom: 60px;
}

.single-events_cpt .event--intro {
  margin-bottom: 40px;
}

.single-events_cpt .event--intro h2 {
  font-family: "PP Formula Extended", sans-serif;
  line-height: 143%;
  margin-bottom: 0;
}

.single-events_cpt .event--description {
  position: relative;
  font-family: "Apercu Pro", sans-serif;
  color: #7A7A7A;
  font-size: 18px;
  line-height: 23px;
}

.single-events_cpt .event--description ul {
  list-style: disc;
  margin-left: 40px;
}

.single-events_cpt .event--description p,
.single-events_cpt .event--description li,
.single-events_cpt .event--description span,
.single-events_cpt .event--description a {
  font-family: "Apercu Pro", sans-serif;
  font-size: 18px;
  line-height: 23px;
  margin-bottom: 10px;
}

.single-events_cpt .event--description a {
  color: #42CCBE;
}

.single-events_cpt .event--description li {
  display: list-item;
}

.single-events_cpt .event--description a#more,
.single-events_cpt .event--description a#less {
  font-family: "PP Formula Extended Medium", sans-serif;
}

.single-events_cpt .event--description .event--description__truncated,
.single-events_cpt .event--description .event--description__expanded {
  display: inline;
  transition: 0.3s;
}

.single-events_cpt .event--description .event--description__truncated {
  position: relative;
  max-height: 200px;
  overflow: hidden;
  height: 100%;
  display: block;
  opacity: 1;
  position: relative;
}

.single-events_cpt .event--description .event--description__truncated:after {
  content: '';
  transition: 0.7s;
  opacity: 1;
  background: linear-gradient(0deg, #0C0C0C 0%, rgba(0, 0, 0, 0) 100%);
  height: 100px;
  z-index: 999;
  bottom: 0;
  position: absolute;
  width: 100%;
}

.single-events_cpt .event--description .event--description__expanded {
  max-height: 0px;
  height: 0;
  margin-top: 5px;
  display: block;
  opacity: 0;
  z-index: -1;
}

.single-events_cpt .event--description .read-more--more,
.single-events_cpt .event--description .read-more--less {
  margin-left: -1px;
}

.single-events_cpt .event--description .read-less {
  visibility: hidden;
}

.single-events_cpt .event--description .read-more {
  visibility: visible;
}

.single-events_cpt .event--description .read-less,
.single-events_cpt .event--description .read-more {
  position: absolute;
  bottom: -30px;
  z-index: 999999;
  transition: none;
}

.single-events_cpt .event--description.is-active .event--description__truncated {
  max-height: 3000px;
}

.single-events_cpt .event--description.is-active .event--description__truncated:after {
  opacity: 0;
}

.single-events_cpt .event--description.is-active .read-more {
  visibility: hidden;
}

.single-events_cpt .event--description.is-active .read-less {
  visibility: visible;
}

.single-events_cpt .event--description.is-active .event--description__expanded {
  max-height: 2000px;
  height: 100%;
  display: block;
  opacity: 1;
}

.single-events_cpt .event-poster {
  text-align: right;
}

.single-events_cpt .event-poster img {
  margin-bottom: 60px;
}

.single-events_cpt .event--lower {
  margin-bottom: 65px;
  border-top: 0.5px solid rgba(122, 122, 122, 0.6);
}

@media (min-width: 67.5em) {
  .single-events_cpt .event--lower {
    margin-bottom: 200px;
  }
}

.single-events_cpt .event--lower .event--video {
  margin-top: 20px;
}

@media (min-width: 67.5em) {
  .single-events_cpt .event--lower .event--video {
    margin-top: 80px;
  }
}

.single-events_cpt .event--lower .event--video h2 {
  margin-top: 0;
  font-size: 12px;
  font-family: "PP Formula Extended", sans-serif;
  text-transform: none;
}

.single-events_cpt .event--lower .event--video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

.single-events_cpt .event--lower .event--video p {
  font-size: 12px;
  line-height: 20px;
}

.single-spaces_cpt .jay-grid .jay-grid--item {
  margin-bottom: 0;
}

.single-spaces_cpt .section-header {
  font-size: 50px;
  line-height: 51px;
  margin-bottom: 20px;
}

.single-spaces_cpt .button--link__container {
  margin-top: 60px;
}

@media (min-width: 67.5em) {
  .single-spaces_cpt .button--link__container {
    margin-top: 0;
  }
}

.single-jobs_cpt .article--footer {
  margin-top: 100px;
  margin-bottom: 100px;
}

@media (min-width: 67.5em) {
  .single-jobs_cpt .article--footer {
    margin-top: 120px;
    margin-bottom: 100px;
  }
}

html {
  height: 100%;
}

html body.error404,
html body.error401 {
  height: 100%;
}

html body.error404 .main-content,
html body.error401 .main-content {
  height: calc(100% - 60px);
}

html body.error404 .main-content .error404--container,
html body.error401 .main-content .error404--container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 620px;
  text-align: center;
}

html body.error404 .main-content .error404--container .logo,
html body.error401 .main-content .error404--container .logo {
  max-width: 70px;
  margin-bottom: 120px;
}

html body.error404 .main-content .error404--container h1,
html body.error401 .main-content .error404--container h1 {
  margin-bottom: 40px;
}

html body.error404 .main-content .error404--container p,
html body.error401 .main-content .error404--container p {
  font-size: 30px;
  line-height: 143%;
  margin-bottom: 40px;
}

html body.error404 .main-content .error404--container .button,
html body.error401 .main-content .error404--container .button {
  margin-top: 120px;
}

.lazyload-example {
  width: 100%;
  height: 500px;
  background-position: center center;
  background-repeat: no-repeat;
  border-bottom: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

img {
  max-width: 100%;
}

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