@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: #2B2A32;
  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: #FFF;
  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: #2B2A32;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  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 #FFF;
  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 #FFF;
  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: #2B2A32;
}

.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 ======

*/
/* 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.
 */
/*
 * 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 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 10px;
}

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

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: 20px;
  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: 40px;
  }
}

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

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

.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;
}

@keyframes spacesAnim {
  from {
    top: 0px;
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}

.svg--wrapper svg {
  animation: spacesAnim 300s linear infinite alternate-reverse;
}

.animated-line {
  margin: 0 auto;
  margin-top: 10px;
  width: 2px;
  height: 40px;
  overflow: hidden;
  background: #ddd6ce;
  position: relative;
}

.animated-line::before {
  content: '';
  display: block;
  width: 2px;
  height: 40px;
  background: #2b2a32;
  position: absolute;
  top: -100%;
  left: 0;
  animation: animate 2s ease-in-out infinite;
}

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

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

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

.fadeInRight {
  animation-name: fade-in-right;
}

@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;
}

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

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

@font-face {
  font-family: 'RM Neue';
  src: url("../fonts/rmneue/RMNeue-Regular.eot");
  src: url("../fonts/rmneue/RMNeue-Regular.eot#iefix") format("embedded-opentype"), url("../fonts/rmneue/RMNeue-Regular.woff") format("woff2"), url("../fonts/rmneue/RMNeue-Regular.woff") format("woff"), url("../fonts/rmneue/RMNeue-Regular.ttf") format("truetype"), url("../fonts/rmneue/RMNeue-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'RM Neue Bold';
  src: url("../fonts/rmneue-bold/RMNeue-Bold.eot");
  src: url("../fonts/rmneue-bold/RMNeue-Bold.eot#iefix") format("embedded-opentype"), url("../fonts/rmneue-bold/RMNeue-Bold.woff") format("woff2"), url("../fonts/rmneue-bold/RMNeue-Bold.woff") format("woff"), url("../fonts/rmneue-bold/RMNeue-Bold.ttf") format("truetype"), url("../fonts/rmneue-bold/RMNeue-Bold.svg") format("svg");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: "Matter", sans-serif;
  color: #2B2A32;
}

body span {
  font-family: "Matter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "RM Neue Bold", sans-serif;
  line-height: 1.2;
  margin: 10px 0;
  color: #2B2A32;
  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: #A58800;
  transition: 0.3s;
}

a:hover {
  text-decoration: underline;
}

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

p,
ul,
ol {
  margin-bottom: 20px;
}

.page-heading--container {
  background: #ededed;
}

.page-heading, .acf-wrapper .acf-section.hero .hero--text h1 {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.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;
}

.page-heading, .acf-wrapper .acf-section.hero .hero--text h1 {
  font-family: "RM Neue Bold", sans-serif;
  font-size: 44px;
  line-height: 44px;
}

@media (min-width: 67.5em) {
  .page-heading, .acf-wrapper .acf-section.hero .hero--text h1 {
    font-size: 80px;
    line-height: 96px;
  }
}

.subheading {
  font-family: "Matter", sans-serif;
  font-size: 24px;
  line-height: 29px;
}

@media (min-width: 67.5em) {
  .subheading {
    font-size: 40px;
    line-height: 48px;
  }
}

.section-header {
  font-family: "RM Neue Bold", sans-serif;
  text-transform: uppercase;
  font-size: 34px;
  line-height: 34px;
  margin-bottom: 0;
}

@media (min-width: 67.5em) {
  .section-header {
    font-size: 60px;
    line-height: 72px;
  }
}

.section-header--alt {
  font-family: "RM Neue Bold", sans-serif;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 24px;
  margin-bottom: 0;
}

@media (min-width: 67.5em) {
  .section-header--alt {
    font-size: 60px;
    line-height: 72px;
  }
}

.circle-link {
  height: 80px;
  width: 80px;
  text-align: center;
  background: #2B2A32;
  color: #DCD5CD;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "RM Neue", sans-serif;
}

.circle-link:hover {
  text-decoration: none;
}

.opacity {
  opacity: 0.4;
}

.body, .page-template-accordion .acf-section.hero .hero--text p {
  font-family: "Matter", sans-serif;
  font-size: 14px;
  line-height: 17px;
}

@media (min-width: 67.5em) {
  .body, .page-template-accordion .acf-section.hero .hero--text p {
    font-size: 22px;
    line-height: 29px;
  }
}

.body-large {
  font-family: "Matter", sans-serif;
  font-size: 22px;
  line-height: 26px;
}

@media (min-width: 67.5em) {
  .body-large {
    font-size: 30px;
    line-height: 36px;
  }
}

.meta {
  display: flex;
}

.meta,
.small-text,
.circle-link,
.acf-wrapper .acf-section .spaces--item .spaces--item__details p,
.acf-wrapper .acf-section .spaces--item .spaces--item__details ul li {
  text-transform: uppercase;
  font-family: "RM Neue Bold", sans-serif;
  font-size: 12px;
  line-height: 14px;
}

@media (min-width: 67.5em) {
  .meta,
  .small-text,
  .circle-link,
  .acf-wrapper .acf-section .spaces--item .spaces--item__details p,
  .acf-wrapper .acf-section .spaces--item .spaces--item__details ul li {
    font-size: 14px;
    line-height: 18px;
  }
}

.meta--category {
  color: #A58800;
  display: block;
  margin-right: 10px;
}

@media (min-width: 67.5em) {
  .meta--category {
    margin-right: 16px;
  }
}

.small-text--light {
  font-family: "RM Neue", sans-serif;
}

.arrow--link, .text-blocks .text-blocks--item a,
.text-area a {
  color: #2B2A32;
  text-decoration: none;
  transition: 0.3s;
  padding-top: 14px;
  display: block;
}

@media (min-width: 67.5em) {
  .arrow--link, .text-blocks .text-blocks--item a,
  .text-area a {
    padding-top: 20px;
  }
}

.arrow--link:hover, .text-blocks .text-blocks--item a:hover,
.text-area a:hover {
  color: #A58800;
  text-decoration: none;
}

.subheader, .promos .promo .promo--block h1,
.promos .promo .promo--block h2,
.promos .promo .promo--block h3,
.promos .promo .promo--block h4,
.promos .promo .promo--block h5,
.promos .promo .promo--block h6, .text-blocks .text-blocks--item h1,
.text-blocks .text-blocks--item h2,
.text-blocks .text-blocks--item h3,
.text-blocks .text-blocks--item h4,
.text-blocks .text-blocks--item h5,
.text-blocks .text-blocks--item h6,
.acf-section--narrow__column h1,
.acf-section--narrow__column h2,
.acf-section--narrow__column h3,
.acf-section--narrow__column h4,
.acf-section--narrow__column h5,
.acf-section--narrow__column h6 {
  text-transform: uppercase;
  font-family: "RM Neue Bold", sans-serif;
  font-size: 20px;
  line-height: 24px;
  margin-top: 0;
}

@media (min-width: 67.5em) {
  .subheader, .promos .promo .promo--block h1,
  .promos .promo .promo--block h2,
  .promos .promo .promo--block h3,
  .promos .promo .promo--block h4,
  .promos .promo .promo--block h5,
  .promos .promo .promo--block h6, .text-blocks .text-blocks--item h1,
  .text-blocks .text-blocks--item h2,
  .text-blocks .text-blocks--item h3,
  .text-blocks .text-blocks--item h4,
  .text-blocks .text-blocks--item h5,
  .text-blocks .text-blocks--item h6,
  .acf-section--narrow__column h1,
  .acf-section--narrow__column h2,
  .acf-section--narrow__column h3,
  .acf-section--narrow__column h4,
  .acf-section--narrow__column h5,
  .acf-section--narrow__column h6 {
    font-size: 32px;
    line-height: 38px;
  }
}

.subheader-small, .contact-form form p input.wpcf7-submit,
.text-area a {
  font-family: "RM Neue Bold", sans-serif;
  font-size: 18px;
  line-height: 22px;
  text-transform: uppercase;
}

.text-area--large a {
  padding-top: 20px;
}

@media (min-width: 67.5em) {
  .text-area--large a {
    padding-top: 40px;
  }
}

.subheader-large,
.subheader-large p {
  font-family: "Matter", sans-serif;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 67.5em) {
  .subheader-large,
  .subheader-large p {
    font-size: 40px;
    line-height: 48px;
  }
}

.subheader-large p {
  padding-left: 0;
  padding-right: 0;
}

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

.bold {
  font-weight: 700;
}

.light {
  font-family: "RM Neue", sans-serif;
}

.uppercase, .text-blocks .text-blocks--item a {
  text-transform: uppercase;
}

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

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

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

p, .body, .page-template-accordion .acf-section.hero .hero--text p {
  font-family: "Matter", sans-serif;
  font-size: 14px;
  line-height: 17px;
}

@media (min-width: 67.5em) {
  p, .body, .page-template-accordion .acf-section.hero .hero--text p {
    font-size: 22px;
    line-height: 27px;
  }
}

.body-small {
  font-size: 0.75rem;
}

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

.accent-colour {
  color: #A58800;
}

html {
  color: #2B2A32;
  line-height: 1.2;
}

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

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

html {
  background: #DDD6CE;
  overflow-x: hidden;
}

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

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

.tablet-up {
  display: none;
}

@media (min-width: 46.25em) {
  .tablet-up {
    display: block;
  }
}

section {
  margin: 20px 0;
}

.container {
  max-width: 1008px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  max-width: 100vw !important;
}

@media (min-width: 46.25em) {
  .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 90em) {
  .container {
    max-width: 1440px;
  }
}

.container--inner {
  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: -20px;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 46.25em) {
  .container--inner {
    margin-left: -40px;
  }
}

section,
section.container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.terms {
  display: block;
  max-width: 550px;
  margin: 20px auto 0 auto;
  font-size: 10px;
  line-height: 12px;
}

@media (min-width: 67.5em) {
  .terms {
    font-size: 14px;
    line-height: 17px;
    margin: 30px auto 0 auto;
  }
}

.acf-wrapper {
  max-width: 1008px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  max-width: 100%;
}

@media (min-width: 46.25em) {
  .acf-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 90em) {
  .acf-wrapper {
    max-width: 1440px;
  }
}

.acf-wrapper .acf-section {
  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: -20px;
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 80px;
}

@media (min-width: 46.25em) {
  .acf-wrapper .acf-section {
    margin-left: -40px;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .extra-padding {
    margin-bottom: 40px;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .acf-section--narrow {
    display: flex;
    padding: 0 8.33333333333%;
  }
}

.acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 46.25em) {
  .acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column {
    width: 50%;
  }
}

.acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column:first-of-type .acf-section--narrow__column-text {
  margin-bottom: 40px;
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column:first-of-type .acf-section--narrow__column-text {
    margin-bottom: 80px;
    padding-top: 80px;
    padding-bottom: 140px;
  }
}

.acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column:last-of-type {
  display: flex;
  flex-wrap: wrap;
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column:last-of-type .image--container {
    margin-bottom: 40px;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column:last-of-type {
    display: inline-block;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column:last-of-type .acf-section--narrow__column-text {
    margin-top: 30px;
    margin-bottom: 120px;
  }
}

.acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column .image--container {
  display: none;
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column .image--container {
    display: block;
  }
}

.acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column .image--container__mobile {
  display: block;
  margin-bottom: 30px;
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .acf-section--narrow .acf-section--narrow__column .image--container__mobile {
    display: none;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .acf-section--extra-narrow {
    padding: 0 16.6666666667%;
  }
}

.inner-wrap--wrapper {
  width: 100%;
}

.inner-wrap--wrapper .inner-wrap--left {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  margin-bottom: 70px;
}

@media (min-width: 46.25em) {
  .inner-wrap--wrapper .inner-wrap--left {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .inner-wrap--wrapper .inner-wrap--left {
    width: 50%;
    padding-left: 8.33333333333%;
  }
}

.inner-wrap--wrapper .inner-wrap--left p {
  font-size: 18px;
  line-height: 22px;
}

@media (min-width: 67.5em) {
  .inner-wrap--wrapper .inner-wrap--left p {
    font-size: 30px;
    line-height: 36px;
  }
}

.inner-wrap--wrapper .inner-wrap--right {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  margin-bottom: 70px;
}

@media (min-width: 46.25em) {
  .inner-wrap--wrapper .inner-wrap--right {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .inner-wrap--wrapper .inner-wrap--right {
    width: 50%;
    padding-right: 8.33333333333%;
    margin: 0 0 70px auto;
    display: flex;
    margin-bottom: 120px;
  }
}

.gel-layout-item {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 46.25em) {
  .gel-layout-item {
    padding-left: 40px;
  }
}

.gel-layout-item--half__container {
  display: flex;
  flex-direction: column-reverse;
}

@media (min-width: 67.5em) {
  .gel-layout-item--half__container {
    flex-direction: row;
    align-items: center;
  }
}

.gel-layout-item--half__container img {
  margin-top: 20px;
}

@media (min-width: 67.5em) {
  .gel-layout-item--half__container img {
    margin-top: 0;
  }
}

.gel-layout-item--half {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 46.25em) {
  .gel-layout-item--half {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .gel-layout-item--half {
    width: 50%;
  }
}

.image--container .meta {
  display: flex;
  text-transform: uppercase;
  margin-top: 10px;
}

@media (min-width: 67.5em) {
  .image--container .meta {
    margin-top: 20px;
  }
}

.image--container .meta .meta--category {
  margin-right: 10px;
}

@media (min-width: 67.5em) {
  .image--container .meta .meta--category {
    margin-right: 16px;
  }
}

.align-center {
  align-items: center;
}

.full-width {
  width: 100%;
}

@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 !important;
  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: 67.5em) {
  .jay-grid {
    grid-row-gap: 20px;
    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 4;
  }
  .jay-grid.four-columns .jay-grid--item {
    grid-column: auto / span 3;
  }
  .jay-grid.six-columns .jay-grid--item {
    grid-column: auto / span 2;
  }
}

.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;
  margin: 0 auto;
}

hr.small-hr {
  width: 100px;
  margin: 0 auto 1rem;
}

hr.accent-hr {
  border-top: 2px solid #A58800;
  margin: 0;
}

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

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

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

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

@media (min-width: 67.5em) {
  html .main-content {
    padding-top: 0;
  }
}

@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: 20px;
  text-align: left;
  vertical-align: top;
  padding-left: 0;
}

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

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

.button,
input[type=submit],
a.button,
.intro-section a {
  display: inline-block;
  width: auto;
  border-radius: 5px;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  color: #FFF;
  font-size: 22px;
  font-weight: 700;
  border: none;
  -webkit-appearance: none;
  transition: 0.3s;
  cursor: pointer;
}

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

.button:hover,
input[type=submit]:hover,
a.button:hover,
.intro-section a:hover {
  background: #ADABAF;
}

.archive__load-more--container {
  max-width: 1008px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 46.25em) {
  .archive__load-more--container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 90em) {
  .archive__load-more--container {
    max-width: 1440px;
  }
}

.archive__load-more--container .archive__load-more {
  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: -20px;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 46.25em) {
  .archive__load-more--container .archive__load-more {
    margin-left: -40px;
  }
}

.archive__load-more--container .archive__load-more a {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  text-align: center;
  color: inherit;
  text-decoration: none;
}

@media (min-width: 46.25em) {
  .archive__load-more--container .archive__load-more a {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .archive__load-more--container .archive__load-more a {
    text-align: right;
  }
}

.button-white {
  background: #FFF;
  border: 1px solid #ADABAF;
}

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

.button-white:hover {
  background: #ADABAF;
  color: #FFF;
  border: 1px solid #FFF;
}

.button-white:hover a {
  color: #FFF;
}

.accordion-block {
  padding-bottom: 140px;
}

.accordion-block .accordion p,
.accordion-block .panel p {
  color: initial;
  font-size: 14px;
  line-height: 17px;
}

@media (min-width: 67.5em) {
  .accordion-block .accordion p,
  .accordion-block .panel p {
    font-size: 24px;
    line-height: 29px;
  }
}

/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  position: relative;
  border: 2px solid #2b2a3266;
  margin-bottom: 10px;
  color: #444;
  cursor: pointer;
  padding: 17px 19px 17px 19px;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s;
}

@media (min-width: 67.5em) {
  .accordion {
    padding: 32px 38px 34px 38px;
  }
}

.accordion .accordion--title {
  transition: 0.3s;
  display: initial;
  font-size: 18px;
  line-height: 22px;
}

@media (min-width: 67.5em) {
  .accordion .accordion--title {
    font-size: 32px;
    line-height: 38px;
  }
}

.accordion--title__wrapper {
  position: relative;
}

.accordion--title__wrapper:after {
  content: '\02795';
  /* Unicode character for "plus" sign (+) */
  font-size: 13px;
  color: #777;
  margin-left: 5px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 12px;
  right: 0;
}

@media (min-width: 67.5em) {
  .accordion--title__wrapper:after {
    top: 20px;
    right: 1rem;
  }
}

.active .accordion--title__wrapper:after {
  content: "\2796";
  /* Unicode character for "minus" sign (-) */
}

/* 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 */
.panel {
  max-height: 0px;
  overflow: hidden;
  transition: max-height 0.7s ease-in-out;
}

.panel .accordion--content {
  margin-top: 20px;
}

.panel .accordion--content iframe {
  width: 100%;
  background: #ededed;
}

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

.accordion.active,
.accordion:hover {
  border: 2px solid #A58800;
}

.accordion.active .accordion--title,
.accordion.active .accordion--title__wrapper::after,
.accordion.active .accordion--title,
.accordion:hover .accordion--title,
.accordion:hover .accordion--title__wrapper::after,
.accordion:hover .accordion--title {
  color: #A58800;
}

.tags a {
  display: inline-block;
  background: #a9a98a;
  margin-right: 1.25rem;
  padding: 0.375rem;
  text-decoration: none;
  color: white;
  position: relative;
  height: 1.75rem;
  box-sizing: border-box;
}

.tags a:hover, .tags a:focus {
  background: #93936d;
}

form input, form textarea {
  margin-top: 0.25em;
  padding: 0.5em;
  font-size: 16px;
  font-family: "Matter", 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;
}

.section-header--container {
  width: 100%;
  padding-bottom: 40px;
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 46.25em) {
  .section-header--container {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .section-header--container {
    padding-bottom: 60px;
  }
}

.section-header--container .section-header--inner {
  padding-bottom: 7px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}

@media (min-width: 67.5em) {
  .section-header--container .section-header--inner {
    border-bottom: 2px solid #A58800;
    align-items: baseline;
    flex-direction: row;
  }
}

.section-header--container .section-header--inner .section-header {
  border-bottom: 2px solid #A58800;
  width: 100%;
  text-align: center;
  margin: 0;
  padding-bottom: 18px;
}

@media (min-width: 67.5em) {
  .section-header--container .section-header--inner .section-header {
    padding: 0;
    border-bottom: none;
    width: auto;
  }
}

.section-header--container .section-header--inner .arrow--link, .section-header--container .section-header--inner .text-blocks .text-blocks--item a, .text-blocks .text-blocks--item .section-header--container .section-header--inner a {
  margin-top: 0;
}

.card {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  margin-bottom: 40px;
}

@media (min-width: 46.25em) {
  .card {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .card {
    width: 50%;
  }
}

.card a {
  text-decoration: none;
  color: #2B2A32;
}

.card .card--image {
  margin-bottom: 15px;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media (min-width: 67.5em) {
  .card .card--image {
    margin-bottom: 30px;
  }
}

.card .card--header {
  transition: 0.3s;
  margin-top: 0;
  margin-bottom: 15px;
}

@media (min-width: 67.5em) {
  .card .card--header {
    margin-bottom: 20px;
  }
}

.card:hover .card--header {
  color: #A58800;
}

.card .meta {
  display: flex;
  margin-bottom: 20px;
}

.card .meta .meta--detail {
  opacity: 0.4;
  color: #2B2A32;
}

.card .card--description {
  margin-bottom: 0;
}

header {
  position: relative;
}

.svg--wrapper {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 25%;
  width: 100%;
  display: none;
}

@media (min-width: 67.5em) {
  .svg--wrapper {
    display: block;
  }
}

.svg--wrapper svg {
  width: 100%;
}

.page-template-our-story .svg--wrapper {
  top: 0;
}

@media (min-width: 46.25em) {
  .page-template-our-story .svg--wrapper {
    top: 10%;
  }
}

@media (min-width: 67.5em) {
  .page-template-our-story .svg--wrapper {
    left: -15%;
    top: -10%;
  }
}

@media (min-width: 93.75em) {
  .page-template-our-story .svg--wrapper {
    top: 28%;
    left: -15%;
  }
}

.spaces--wrapper {
  position: relative;
}

.spaces--wrapper .spaces--item--svg__container {
  display: none;
}

@media (min-width: 67.5em) {
  .spaces--wrapper .spaces--item--svg__container {
    display: block;
    position: absolute;
    right: -25%;
    top: 20%;
    width: 50vw;
    z-index: -1;
  }
}

.spaces--wrapper .spaces--item--svg__container img {
  animation: spacesAnim 100s linear infinite alternate-reverse;
}

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

.homepage-content--blog__wrapper {
  padding: 20px 0;
  border-top: 1px solid;
  border-bottom: 1px solid;
}

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

.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: #2B2A32;
}

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

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

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

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

@media (min-width: 46.25em) {
  .single .entry-content .article--body, .blog .entry-content .article--body {
    max-width: 65%;
    float: left;
  }
  .single .entry-content aside.sidebar, .blog .entry-content aside.sidebar {
    float: right;
    width: 30%;
    padding-left: 5rem;
    border-left: 1px solid #e6e6e6;
    padding: 2rem;
    margin-left: 5%;
  }
}

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

.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 .post-navigation {
  width: 100%;
  margin: 10rem 0 4rem;
  padding-top: 2rem;
  text-transform: uppercase;
  border-top: 1px solid #ededed;
}

.single .post-navigation .screen-reader-text {
  display: none;
}

@media (min-width: 46.25em) {
  .single .post-navigation .nav-links {
    display: flex;
    justify-content: space-between;
  }
}

.single .post-navigation .nav-links .nav-previous, .single .post-navigation .nav-links .nav-next {
  font-size: 20px;
  width: 100%;
  margin-bottom: 2rem;
}

@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 a, .single .post-navigation .nav-links .nav-next a {
  color: initial;
}

@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;
}

body .off-canvas-menu {
  background: #2B2A32;
}

body .off-canvas-menu .off-canvas-menu--inner-wrap a {
  text-decoration: none;
}

body .off-canvas-menu li {
  text-align: left;
}

.logo--off-canvas {
  display: none;
}

body.menu-is-open .off-canvas-menu {
  opacity: 1;
}

body.menu-is-open li a {
  transform: none;
}

body.menu-is-open .logo {
  display: none;
}

body.menu-is-open .logo--off-canvas {
  display: block;
}

body.menu-is-open .site-header--mobile-header--title a {
  color: #DCD5CD;
}

body.menu-is-open .site-header .hamburger.is-active .hamburger-inner::before,
body.menu-is-open .site-header .hamburger.is-active .hamburger-inner::after {
  background-color: #DCD5CD;
}

body.menu-is-open .hamburger--label__closed {
  display: none;
}

body.menu-is-open .hamburger--label__open {
  display: block;
}

.video-logo {
  display: none;
}

.home .logo--full {
  display: none;
}

.home.scrolledDownAll .video-logo {
  display: none;
}

.home.scrolledDownAll .site-header .logo img.logo--full {
  display: none;
  opacity: 1;
}

.home.scrolledDownAll .site-header .hamburger-inner,
.home.scrolledDownAll .site-header .hamburger-inner::before,
.home.scrolledDownAll .site-header .hamburger-inner::after {
  background-color: #2B2A32;
}

.home .video-logo {
  display: block;
}

.home .site-header .hamburger-inner,
.home .site-header .hamburger-inner::before,
.home .site-header .hamburger-inner::after {
  background-color: #DCD5CD;
}

.home.scrolledDown .site-header .logo img.logo--alt {
  opacity: 0;
  display: none;
}

@media (min-width: 67.5em) {
  .home.scrolledDownAll .site-header .hamburger-inner,
  .home.scrolledDownAll .site-header .hamburger-inner::before,
  .home.scrolledDownAll .site-header .hamburger-inner::after {
    background-color: #2B2A32;
  }
  .home.scrolledDownAll .video-logo {
    display: none;
  }
  .home.scrolledDownAll .site-header .logo img.logo--alt {
    opacity: 1;
    display: block;
  }
  .home.scrolledDownAll .logo:hover .logo--hover {
    display: none !important;
  }
}

.site-header {
  transition: 0.3s;
  position: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center left;
  z-index: 999999;
  top: 0;
  right: 0;
  left: 0;
  line-height: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

@media (min-width: 67.5em) {
  .site-header {
    padding: 1rem 0;
  }
}

.site-header .site-desktop-title img {
  max-height: 90px;
}

.site-header .site-header--mobile-header--title img {
  max-width: 120px;
}

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

.site-header .hamburger-box {
  height: 26px;
}

.site-header .hamburger-inner,
.site-header .hamburger-inner::before,
.site-header .hamburger-inner::after,
.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: #2B2A32;
  width: 25px;
}

.site-header span.hamburger-inner {
  background: none;
  background-color: transparent !important;
}

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

.site-header .hamburger-inner::before {
  top: -2px;
}

.site-header .is-active .hamburger-inner::before {
  top: 10px;
}

@media (min-width: 67.5em) {
  .site-header .is-active .hamburger-inner::before {
    top: 0;
  }
}

.site-header .is-active .hamburger-inner::after {
  bottom: -10px;
}

@media (min-width: 67.5em) {
  .site-header .is-active .hamburger-inner::after {
    bottom: 0;
  }
}

.site-header .is-active .hamburger-inner::after {
  transform: translateY(0) rotate(90deg) !important;
}

.site-header .is-active .hamburger-inner::before {
  transform: translateY(0) rotate(0deg) !important;
}

.site-header--mobile-header {
  padding: 10px;
  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: -20px;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 46.25em) {
  .site-header--mobile-header {
    margin-left: -40px;
  }
}

.site-header--mobile-header--left {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  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: 40px;
  }
}

.site-header--mobile-header--left h4 {
  font-size: 1.7rem;
}

.site-header--mobile-header--right {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  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: 40px;
  }
}

.site-header--mobile-header svg {
  display: block;
  margin: 0;
  width: 30px;
}

@media only screen and (min-width: 768px) {
  .site-header--mobile-header svg {
    margin: 0 20px;
    max-width: 45px;
  }
}

.site-header--mobile-header .hamburger--label__closed {
  display: block;
}

.site-header--mobile-header .hamburger--label__open {
  display: none;
}

.site-header--desktop-header {
  display: none;
}

@media (min-width: 67.5em) {
  .site-header--desktop-header {
    height: 100%;
  }
}

.site-header--desktop-header--left {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  width: 25%;
}

@media (min-width: 46.25em) {
  .site-header--desktop-header--left {
    padding-left: 40px;
  }
}

.site-header--desktop-header--right {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  width: 50%;
  text-align: center;
}

@media (min-width: 46.25em) {
  .site-header--desktop-header--right {
    padding-left: 40px;
  }
}

.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: 20px;
  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: 40px;
  }
}

.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: #2B2A32;
  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;
  }
}

img.logo--alt,
.logo--alt__hover {
  opacity: 0;
  display: none;
  transition: 0.3s;
  max-height: 45px;
  left: 0;
}

.logo--hover {
  opacity: 0;
  display: none;
}

@media (min-width: 67.5em) {
  .page.scrolledDown .logo:hover .logo--alt__hover,
  .archive.scrolledDown .logo:hover .logo--alt__hover,
  .single.scrolledDown .logo:hover .logo--alt__hover {
    display: block;
    opacity: 1;
  }
}

@media (min-width: 67.5em) {
  .home.scrolledDown .logo:hover .logo--hover {
    display: block;
    opacity: 1;
  }
  .home.scrolledDown .logo:hover .logo--alt__hover {
    display: none;
    opacity: 0;
  }
  .home.scrolledDownAll .logo:hover .logo--alt__hover {
    display: none;
    opacity: 0;
  }
}

@media (min-width: 67.5em) {
  .logo:hover .logo--hover {
    opacity: 1;
    display: block;
  }
  .logo:hover .logo--full {
    display: none;
  }
  .logo:hover .video-logo {
    display: none;
  }
}

.scrolledDown .logo--full {
  display: none;
}

.scrolledDown .logo:hover .logo--hover,
.scrolledDown .logo:hover .logo--full {
  opacity: 0;
  display: none;
}

.scrolledDown .site-header .logo img.logo--full {
  opacity: 0;
  transition: 0.3s;
}

.scrolledDown .site-header .logo img.logo--alt {
  display: block;
  opacity: 1;
  transition: 0.3s;
}

.scrolledDown .site-header .logo:hover img.logo--alt {
  display: none;
}

@media (min-width: 67.5em) {
  .scrolledDownAll .site-header .logo:hover .logo--alt__hover {
    display: block;
    opacity: 1;
  }
}

.logged-in .site-header {
  top: 32px;
}

header a {
  position: relative;
  color: #2B2A32;
  text-decoration: none;
  font-weight: 700;
}

header a:hover {
  text-decoration: none;
  color: #A58800;
}

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;
  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;
  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: #FFF;
  display: flex;
  flex-direction: column;
}

nav.off-canvas-menu ul.vertical.nested.menu {
  height: 0;
  opacity: 0;
  margin: 0;
  padding-left: 2rem;
}

nav.off-canvas-menu li {
  font-family: "RM Neue Bold", sans-serif;
  text-transform: uppercase;
  margin-bottom: 15px;
  text-align: center;
  font-size: 40px;
  line-height: 48px;
}

@media (min-width: 46.25em) {
  nav.off-canvas-menu li {
    font-size: 50px;
    line-height: 50px;
  }
}

@media (min-width: 67.5em) {
  nav.off-canvas-menu li {
    margin-bottom: 20px;
    text-align: left;
  }
}

@media (min-width: 93.75em) {
  nav.off-canvas-menu li {
    font-size: 80px;
    line-height: 80px;
  }
}

nav.off-canvas-menu li a {
  color: #DCD5CD;
}

nav.off-canvas-menu li a:hover {
  color: #A58800;
}

nav.off-canvas-menu li.current_page_item a {
  color: #A58800;
}

nav.off-canvas-menu .menu-item-has-children.is-active ul.vertical.nested.menu {
  height: auto;
  opacity: 1;
}

.off-canvas-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: #2B2A32;
  z-index: -1;
  opacity: 0;
  transition: 0.5s;
  max-width: 100vw;
  width: 100vw;
}

.off-canvas-menu li {
  overflow: hidden;
}

.off-canvas-menu li a {
  display: block;
  transform: translateY(110%);
  will-change: transform;
  transition: transform 300ms ease-in-out;
}

.off-canvas-menu li:nth-of-type(1n) a {
  transition-delay: 0.1s;
}

.off-canvas-menu li:nth-of-type(2n) a {
  transition-delay: 0.2s;
}

.off-canvas-menu li:nth-of-type(3n) a {
  transition-delay: 0.3s;
}

.off-canvas-menu li:nth-of-type(4n) a {
  transition-delay: 0.4s;
}

.off-canvas-menu li:nth-of-type(5n) a {
  transition-delay: 0.5s;
}

.off-canvas-menu li:nth-of-type(6n) a {
  transition-delay: 0.6s;
}

.off-canvas-menu li:nth-of-type(7n) a {
  transition-delay: 0.7s;
}

.off-canvas-menu li:nth-of-type(8n) a {
  transition-delay: 0.8s;
}

.off-canvas-menu li:nth-of-type(9n) a {
  transition-delay: 0.9s;
}

.off-canvas-menu .lottie_nav {
  text-align: center;
  margin: 0 auto;
  width: 125px;
  height: 125px;
}

@media (min-width: 67.5em) {
  .off-canvas-menu .lottie_nav {
    width: 200px;
    height: 200px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: translate(0, -25%);
  }
}

.off-canvas-menu .lottie_nav #lottie_nav {
  text-align: center;
}

.off-canvas-menu .off-canvas-menu--container {
  max-width: 1008px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
  display: flex;
  align-items: center;
  height: 100%;
}

@media (min-width: 46.25em) {
  .off-canvas-menu .off-canvas-menu--container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 90em) {
  .off-canvas-menu .off-canvas-menu--container {
    max-width: 1440px;
  }
}

.off-canvas-menu--inner-wrap {
  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: -20px;
  padding-right: 0;
  padding-left: 0;
}

@media (min-width: 46.25em) {
  .off-canvas-menu--inner-wrap {
    margin-left: -40px;
  }
}

.off-canvas-menu--menu-wrapper {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  position: relative;
}

@media (min-width: 46.25em) {
  .off-canvas-menu--menu-wrapper {
    padding-left: 40px;
  }
}

.off-canvas-menu--image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 46.25em) {
  .off-canvas-menu--image {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .off-canvas-menu--image {
    margin-top: 0;
    width: 50%;
    justify-content: flex-end;
    align-items: flex-end;
    max-height: 240px;
    position: absolute;
    right: 0;
    bottom: 210px;
  }
}

.off-canvas-menu--image img {
  max-height: 80px;
}

@media (min-width: 46.25em) {
  .off-canvas-menu--image img {
    max-height: 150px;
  }
}

@media (min-width: 67.5em) {
  .off-canvas-menu--image img {
    position: absolute;
  }
}

@media (min-width: 93.75em) {
  .off-canvas-menu--image img {
    max-height: 240px;
  }
}

.menu-is-open nav.off-canvas-menu {
  z-index: 999999 !important;
}

@media (min-width: 67.5em) {
  .main-content {
    margin-top: 140px;
  }
}

@media (min-width: 67.5em) {
  .single .main-content {
    margin-top: 140px;
  }
}

.section.full-width {
  padding-right: 0;
  padding-left: 0;
}

.section.full-width .inner-wrapper {
  max-width: 1008px;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

@media (min-width: 46.25em) {
  .section.full-width .inner-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (min-width: 90em) {
  .section.full-width .inner-wrapper {
    max-width: 1440px;
  }
}

.block h1,
.block h2,
.block h3,
.block h4,
.block h5,
.block h6 {
  margin-top: 0;
}

.block__blue {
  background: #236EA5;
}

footer.section {
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 0;
}

@media (min-width: 67.5em) {
  footer.section {
    padding-bottom: 44px;
  }
}

footer.section .acf-wrapper {
  max-width: 100vw !important;
}

footer.section .acf-section {
  margin-bottom: 0 !important;
}

footer.section .footer--container {
  width: 100%;
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  max-width: 100vw !important;
}

@media (min-width: 46.25em) {
  footer.section .footer--container {
    padding-left: 40px;
  }
}

footer.section .footer--container .footer--container__inner {
  border-top: 2px solid #A58800;
  width: 100%;
  padding-top: 20px;
}

@media (min-width: 67.5em) {
  footer.section .footer--container .footer--container__inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

@media (min-width: 67.5em) {
  footer.section .footer--container {
    display: flex;
  }
}

@media (min-width: 67.5em) {
  footer.section .footer--column {
    margin: 0;
  }
}

footer.section .footer--column ul {
  list-style-type: none;
}

footer.section .footer--column #menu-footer-menu {
  margin-bottom: 0;
}

@media (min-width: 67.5em) {
  footer.section .footer--column #menu-footer-menu {
    display: grid;
    grid-template-columns: repeat(2, auto);
  }
}

footer.section .footer--column #menu-footer-menu li {
  padding: 0 0 5px 0;
}

@media (min-width: 67.5em) {
  footer.section .footer--column #menu-footer-menu li {
    padding: 0 0 0 80px;
  }
}

footer.section .footer--column .footer--menu__socials {
  margin-bottom: 0;
}

footer.section .footer--column .footer--menu__socials li {
  padding: 0 0 5px 0;
}

@media (min-width: 67.5em) {
  footer.section .footer--column .footer--menu__socials li {
    padding: 0 0 0 80px;
  }
}

footer.section .footer--column .footer--image {
  display: block;
}

@media (min-width: 67.5em) {
  footer.section .footer--column .footer--image {
    display: none;
  }
}

footer.section .footer--column .footer-text {
  color: #a9a98a;
  margin-bottom: 0;
  margin-top: 3rem;
}

@media (min-width: 46.25em) {
  footer.section .footer--column .footer-text {
    margin-left: 1rem;
    margin-top: 0;
  }
}

footer.section .footer--column img.footer-logo {
  max-height: 100px;
  margin: 0 auto 2rem auto;
  display: block;
}

@media (min-width: 46.25em) {
  footer.section .footer--column img.footer-logo {
    margin: 0 0 2rem 0;
  }
}

footer.section .footer--column a {
  text-decoration: none;
  color: #2B2A32;
}

footer.section .footer--column a:hover {
  color: #A58800;
}

footer.section .footer--right {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media (min-width: 67.5em) {
  footer.section .footer--right {
    justify-content: flex-end;
    text-align: left;
  }
}

footer.section .footer--right .footer--image {
  max-height: 75px;
}

footer.section .footer--left {
  margin-bottom: 30px;
}

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

footer.section .footer--left .subheader-small, footer.section .footer--left .contact-form form p input.wpcf7-submit, .contact-form form p footer.section .footer--left input.wpcf7-submit {
  margin: 0;
}

@media (min-width: 67.5em) {
  footer.section .footer--left {
    text-align: left;
  }
}

.section.two_column_content {
  padding-top: 0;
}

@media (min-width: 67.5em) {
  .section.two_column_content .container {
    column-gap: 4%;
    column-count: 2;
    break-inside: avoid;
  }
}

.home .section.two_column_content {
  padding-top: 20px;
}

.home-slider.container {
  margin-bottom: 0;
  padding: 0;
}

@media (min-width: 67.5em) {
  .home-slider.container {
    padding: 0 4%;
  }
}

.home-slider.container .slick-track {
  background: #2B2A32;
}

.home-slider.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 {
  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 {
    height: 80vh;
  }
}

.home-slider.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 {
  position: absolute;
  left: 0;
  bottom: 3rem;
  padding: 0 2rem;
  color: #FFF;
}

@media (min-width: 67.5em) {
  .home-slider.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 {
    max-width: 50%;
  }
}

.home-slider.container .home-slider--slide .home-slider--slide-content .home-slider--slide-content-inner .home-slider--slide-header {
  color: #FFF;
  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("https://propyard.co.uk/wp-content/themes/propyard/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--wrapper .featured-image {
  background-color: #ededed;
  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;
  object-fit: cover;
}

.featured-image--wrapper .featured-image .featured-image--text {
  padding-top: 20px;
}

.featured-image--wrapper .featured-image .featured-image--text h1 {
  margin-top: 0;
}

.featured-image--wrapper .featured-image .featured-image--text h2 {
  margin-top: 0;
}

.hero .featured-image--wrapper .featured-image {
  height: 460px;
  width: 100%;
  max-height: 800px;
}

@media (min-width: 67.5em) {
  .hero .featured-image--wrapper .featured-image {
    height: 70vh;
    max-height: 530px;
  }
}

.map--wrapper {
  height: 400px;
  background: #c0c0c0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map--wrapper #map {
  height: 400px;
  width: 100%;
}

.wpcf7::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #bada55 !important;
  opacity: 1;
}

.wpcf7::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #000 !important;
  opacity: 1;
}

.wpcf7:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #000 !important;
  opacity: 1;
}

.wpcf7::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #000 !important;
  opacity: 1;
}

.wpcf7:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #000 !important;
  opacity: 1;
}

.contact-form {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.contact-form form p {
  width: 100%;
}

@media (min-width: 67.5em) {
  .contact-form form p {
    width: 48%;
  }
}

.contact-form form p label,
.contact-form form p span,
.contact-form form p input,
.contact-form form p textarea,
.contact-form form p select {
  width: 100%;
  display: block;
}

.contact-form form p input,
.contact-form form p textarea,
.contact-form form p select {
  background: none;
  border: none;
  border-bottom: 2px solid #2b2a3266;
  margin-top: 0;
  padding: 10px;
  padding-left: 0;
  color: #2b2a3266;
  font-size: initial;
  font-family: "Matter", sans-serif;
  font-weight: 400;
}

.contact-form form p input:hover,
.contact-form form p textarea:hover,
.contact-form form p select:hover {
  color: #A58800 !important;
  border-bottom: 2px solid #A58800;
}

.contact-form form p input:-webkit-autofill,
.contact-form form p input:-webkit-autofill:hover,
.contact-form form p input:-webkit-autofill:focus,
.contact-form form p input:-webkit-autofill:active {
  -webkit-transition-delay: 99999s;
  background-color: transparent;
}

.contact-form form p textarea {
  height: 40px;
}

.contact-form form p input.wpcf7-submit {
  border-bottom: 0;
  text-align: right;
  padding-right: 0;
  color: #2B2A32;
}

.contact-form form input::-webkit-input-placeholder,
.contact-form form label::-webkit-input-placeholder,
.contact-form form span::-webkit-input-placeholder,
.contact-form form input::-webkit-input-placeholder,
.contact-form form textarea::-webkit-input-placeholder,
.contact-form form select::-webkit-input-placeholder {
  color: #2b2a3266 !important;
}

.contact-form form label:hover::-webkit-input-placeholder,
.contact-form form span:hover::-webkit-input-placeholder,
.contact-form form input:hover::-webkit-input-placeholder,
.contact-form form textarea:hover::-webkit-input-placeholder,
.contact-form form select:hover::-webkit-input-placeholder {
  color: #A58800 !important;
}

.contact-form form p:nth-child(6),
.contact-form form p:nth-child(7) {
  width: 100%;
}

.contact-form form input[type=submit]:hover {
  background: none;
  color: #A58800;
}

.contact-form span.wpcf7-spinner {
  background: none !important;
}

.contact-form span.wpcf7-spinner::before {
  left: 50% !important;
  transform: translate(-50%, 0) !important;
}

.contact-form .wpcf7-response-output {
  margin: 0 auto !important;
  text-align: center;
  border: none !important;
}

.archive.post-type-archive-gallery_cpt .main-content {
  margin-bottom: 80px;
}

@media (min-width: 67.5em) {
  .archive.post-type-archive-gallery_cpt .main-content {
    margin-bottom: 100px;
  }
}

.text-area--container.dark-background {
  background: #ededed;
}

.text-area--container .text-area {
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}

.text-area--container .text-area .text-area--image {
  border-radius: 100%;
  margin-bottom: 20px;
}

.text-area--container .text-area .text-area--copy h1:first-of-type, .text-area--container .text-area .text-area--copy h2:first-of-type, .text-area--container .text-area .text-area--copy h3:first-of-type, .text-area--container .text-area .text-area--copy h4:first-of-type, .text-area--container .text-area .text-area--copy h5:first-of-type, .text-area--container .text-area .text-area--copy h6:first-of-type {
  margin-top: 0;
}

.text-area--container .text-area .button {
  margin-top: 10px;
  padding: 0.5em 2rem;
  display: inline-flex;
  align-items: center;
}

.text-area--container .text-area .button i {
  font-size: 2rem;
  margin-right: 1rem;
}

@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 #ededed;
}

.three-columns.add-background .jay-grid--item {
  background: #ededed;
}

.acf-wrapper .acf-section.hero {
  margin-bottom: 40px;
  margin-top: 20px;
  display: block;
}

@media (min-width: 46.25em) {
  .acf-wrapper .acf-section.hero {
    align-items: center;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section.hero {
    display: flex;
    margin-bottom: 80px;
    margin-top: 0;
  }
}

.acf-wrapper .acf-section.hero .hero--inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
}

.acf-wrapper .acf-section.hero .hero--inner .hero--slide {
  position: relative;
  position: relative;
  height: 100vh;
  width: 100vw;
}

.acf-wrapper .acf-section.hero .hero--inner .embed-container {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  height: 98vh;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  transform: translate(-50%, -50%);
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section.hero .hero--inner .embed-container {
    height: 100vh;
  }
}

.acf-wrapper .acf-section.hero .hero--inner .embed-container iframe {
  pointer-events: none;
  top: 45%;
  width: auto;
  height: calc(100% * 9 / 16);
  min-height: 100%;
  min-width: 100%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.77vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section.hero .hero--inner .embed-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    position: absolute;
    top: 50%;
    height: 100%;
    width: 100vw;
  }
}

.acf-wrapper .acf-section.hero .hero--text {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  text-align: center;
  max-width: 1080px;
  margin: 0 auto;
}

@media (min-width: 46.25em) {
  .acf-wrapper .acf-section.hero .hero--text {
    padding-left: 40px;
  }
}

.acf-wrapper .acf-section.hero .hero--text h1 {
  margin-bottom: 20px;
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section.hero .hero--text h1 {
    margin-bottom: 40px;
  }
}

.acf-wrapper .acf-section.hero .hero--text p {
  font-size: 24px;
  line-height: 29px;
  max-width: 950px;
  margin: 0 auto;
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section.hero .hero--text p {
    font-size: 40px;
    line-height: 48px;
  }
}

.acf-wrapper .acf-section.hero .hero--text a {
  transition: 0.3s;
  text-decoration: none;
  color: initial;
  font-weight: inherit;
}

.acf-wrapper .acf-section.hero .hero--text a:hover {
  color: #A58800;
}

.acf-wrapper .acf-section.hero .hero--image {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  margin-top: 40px;
  height: 460px;
  object-fit: cover;
}

@media (min-width: 46.25em) {
  .acf-wrapper .acf-section.hero .hero--image {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section.hero .hero--image {
    margin-top: 80px;
    height: auto;
  }
}

.acf-wrapper .acf-section.hero .lottie--container__desktop {
  margin-bottom: 20vh;
  margin-top: -30vh;
}

.acf-wrapper .acf-section.hero .lottie--container {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  display: none;
  width: 100%;
  position: relative;
}

@media (min-width: 46.25em) {
  .acf-wrapper .acf-section.hero .lottie--container {
    padding-left: 40px;
  }
}

@media (min-width: 46.25em) {
  .acf-wrapper .acf-section.hero .lottie--container {
    height: 250px;
  }
}

@media screen and (min-width: 1080px) {
  .acf-wrapper .acf-section.hero .lottie--container {
    height: 235px;
  }
}

@media screen and (min-width: 1110px) {
  .acf-wrapper .acf-section.hero .lottie--container {
    height: 250px;
  }
}

@media screen and (min-width: 1200px) {
  .acf-wrapper .acf-section.hero .lottie--container {
    height: 260px;
  }
}

@media screen and (min-width: 1260px) {
  .acf-wrapper .acf-section.hero .lottie--container {
    height: 280px;
  }
}

@media screen and (min-width: 1400px) {
  .acf-wrapper .acf-section.hero .lottie--container {
    height: 300px;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section.hero .lottie--container {
    display: inline-block;
  }
}

.acf-wrapper .acf-section.hero #lottie {
  margin: 0 auto;
  width: 100%;
  max-width: 2000px;
}

.acf-wrapper .acf-section.hero .lottie_hero_mobile {
  width: 100%;
  height: 260px;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 46.25em) {
  .acf-wrapper .acf-section.hero .lottie_hero_mobile {
    height: 200px;
  }
}

@media (min-width: 46.25em) {
  .acf-wrapper .acf-section.hero .lottie_hero_mobile {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section.hero .lottie_hero_mobile {
    display: none;
  }
}

.acf-wrapper .acf-section.hero .lottie_hero_mobile svg {
  height: 30vh !important;
  max-height: 200px;
}

@media (min-width: 46.25em) {
  .acf-wrapper .acf-section.hero .lottie_hero_mobile svg {
    max-height: 20vh;
  }
}

.home .hero--slide.hero--video {
  width: 100vw;
  aspect-ratio: 16 / 9;
}

@media (min-width: 93.75em) {
  .home .hero--slide.hero--video {
    height: 98vh;
  }
}

.home .hero--slide.hero--video .embed-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

@media (min-width: 93.75em) {
  .home .hero--slide.hero--video .embed-container {
    height: 98vh;
  }
}

.home .hero--slide.hero--video .embed-container iframe {
  aspect-ratio: 16 / 9;
  width: 100vw;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-width: 100vw;
  position: absolute;
}

@media (min-width: 46.25em) {
  .home .hero--slide.hero--video .embed-container iframe {
    min-height: 98vh;
    transform: translate(-50%, -50%);
    height: 56.25vw;
    top: 50%;
    left: 50%;
  }
}

.home .acf-section.hero {
  display: none !important;
}

.home .acf-wrapper .acf-section.hero {
  min-height: 50vh;
}

@media screen and (min-width: 500px) {
  .home .acf-wrapper .acf-section.hero {
    min-height: 35vh;
  }
}

@media (min-width: 67.5em) {
  .home .acf-wrapper .acf-section.hero {
    min-height: 85vh;
  }
}

.home .acf-wrapper .acf-section.hero .hero--text h1 {
  margin-bottom: 0;
  text-transform: uppercase;
  padding-top: 20px;
  display: block;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
}

@media (min-width: 67.5em) {
  .home .acf-wrapper .acf-section.hero .hero--text h1 {
    font-size: 32px;
    line-height: 38px;
  }
}

.home .acf-wrapper .acf-section.hero .hero--text p {
  max-width: 100%;
  font-size: 20px;
  line-height: 24px;
  margin: 0 auto;
}

@media (min-width: 67.5em) {
  .home .acf-wrapper .acf-section.hero .hero--text p {
    font-size: 32px;
    line-height: 38px;
  }
}

.home .hero div#lottie {
  display: none;
}

@media (min-width: 67.5em) {
  .home .hero div#lottie {
    display: block;
  }
}

.home .hero .home--hero-image {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  display: block;
  max-height: 80px;
  max-width: 80px;
  text-align: center;
  margin: 0 auto;
  margin-top: 60px;
  margin-bottom: 20px;
}

@media (min-width: 46.25em) {
  .home .hero .home--hero-image {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .home .hero .home--hero-image {
    display: none;
  }
}

.home .hero .hero--scroll {
  display: none;
  width: 100%;
  text-align: center;
  margin-top: 60px;
}

@media (min-width: 67.5em) {
  .home .hero .hero--scroll {
    display: block;
  }
}

.home .hero .hero--scroll .hero--scroll__line {
  width: 2px;
  height: 40px;
  background: #2B2A32;
  display: block;
  margin: 10px auto 0 auto;
}

.spaces img {
  margin-bottom: 40px;
}

@media (min-width: 67.5em) {
  .spaces img {
    margin-bottom: 80px;
  }
}

.acf-section.newsletter {
  margin-top: 80px;
  margin-bottom: 80px;
}

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

.acf-section.newsletter #mc_embed_signup {
  margin: 30px auto 0 auto;
  width: 200px;
}

@media (min-width: 67.5em) {
  .acf-section.newsletter #mc_embed_signup {
    margin: 60px auto 0 auto;
    width: 520px;
  }
}

.acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form {
  padding: 0;
}

.acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form input#mce-EMAIL {
  border: none;
  border-radius: 0;
  border-bottom: 2px solid #2b2a3266;
  background: none;
  text-indent: 0;
  font-size: 14px;
  line-height: 17px;
  padding-right: 40px;
}

@media (min-width: 67.5em) {
  .acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form input#mce-EMAIL {
    font-size: 20px;
    line-height: 24px;
  }
}

.acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form input#mce-EMAIL::placeholder {
  color: #2B2A32;
  opacity: 0.4;
}

.acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form input#mce-EMAIL:-internal-autofill-selected {
  background-color: transparent !important;
}

.acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form input#mce-EMAIL:focus-visible {
  outline: none;
}

.acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form div#mce-responses {
  margin: 0 !important;
  padding: 0 !important;
}

.acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form #mce-success-response {
  color: #2b2a32;
  font-family: "Matter", sans-serif;
  font-weight: 400;
}

.acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form .mce_inline_error {
  background: none !important;
  padding-left: 0 !important;
}

.acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form #mc_embed_signup_scroll .clear:last-of-type {
  z-index: 1;
  position: absolute;
  right: 0;
  top: 0;
  height: 32px;
  background-color: transparent !important;
  font-size: 0px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form #mc_embed_signup_scroll .clear:last-of-type svg {
  position: absolute;
  right: 21px;
  z-index: -1;
  margin-top: 7px;
  width: 20px;
}

@media (min-width: 67.5em) {
  .acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form #mc_embed_signup_scroll .clear:last-of-type svg {
    width: 36px;
  }
}

.acf-section.newsletter #mc_embed_signup form#mc-embedded-subscribe-form input#mc-embedded-subscribe {
  background-color: transparent !important;
  font-size: 0px !important;
  width: 44px !important;
  left: 0;
  padding-right: 2rem;
  margin-right: 0;
}

.acf-wrapper .acf-section.newsletter--lottie {
  margin-bottom: 0;
}

.acf-wrapper .acf-section.newsletter--lottie .lottie--container,
.acf-wrapper .acf-section.newsletter--lottie .lottie,
.acf-wrapper .acf-section.newsletter--lottie svg {
  max-height: 600px;
}

.home .acf-section.newsletter {
  margin-top: 80px;
  margin-bottom: 0;
}

@media (min-width: 67.5em) {
  .home .acf-section.newsletter {
    margin-top: 200px;
    margin-bottom: 0;
  }
}

.promos--upper__container {
  position: relative;
}

.promos--upper__container .svg--wrapper {
  left: -26%;
  top: -50%;
}

@media (min-width: 93.75em) {
  .promos--upper__container .svg--wrapper {
    left: -14%;
    top: -49%;
  }
}

.promos.promos--upper .promo {
  flex-direction: column-reverse;
}

@media (min-width: 67.5em) {
  .promos.promos--upper .promo {
    flex-direction: row;
  }
}

.promos.promos--upper .promo .promo--block {
  text-align: center;
}

.promos.promos--lower .promo {
  flex-direction: column;
  margin-bottom: 40px;
}

@media (min-width: 67.5em) {
  .promos.promos--lower .promo {
    flex-direction: row;
    margin-bottom: 75px;
  }
}

.promos.promos--lower .promo .promo--block .image--container {
  margin-bottom: 25px;
}

.promos .promo {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}

@media (min-width: 67.5em) {
  .promos .promo {
    margin-bottom: 100px;
  }
}

@media (min-width: 67.5em) {
  .promos .promo:nth-child(odd) {
    flex-direction: row-reverse;
  }
}

.promos .promo:last-of-type {
  margin-bottom: 0;
}

.promos .promo .promo--block {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 46.25em) {
  .promos .promo .promo--block {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .promos .promo .promo--block {
    width: 50%;
    text-align: center;
  }
}

.promos .promo .promo--block .promo--logo {
  max-width: 140px;
  margin-bottom: 20px;
  margin-top: 30px;
}

@media (min-width: 67.5em) {
  .promos .promo .promo--block .promo--logo {
    margin-top: 0;
    max-width: 200px;
    margin-bottom: 25px;
  }
}

.promos .promo .promo--block h1,
.promos .promo .promo--block h2,
.promos .promo .promo--block h3,
.promos .promo .promo--block h4,
.promos .promo .promo--block h5,
.promos .promo .promo--block h6 {
  margin-bottom: 15px;
}

@media (min-width: 67.5em) {
  .promos .promo .promo--block h1,
  .promos .promo .promo--block h2,
  .promos .promo .promo--block h3,
  .promos .promo .promo--block h4,
  .promos .promo .promo--block h5,
  .promos .promo .promo--block h6 {
    margin-bottom: 20px;
  }
}

.promos .promo .promo--block p {
  max-width: 425px;
  margin: 0 auto 20px auto;
}

.promos .promo .promo--block p:last-of-type {
  margin: 0 auto;
}

.promos .promo .promo--block .image--container {
  margin-bottom: 40px;
}

@media (min-width: 67.5em) {
  .promos .promo .promo--block .image--container {
    margin-bottom: 0;
  }
}

.promos .promo .promo--block .image--container img {
  width: 100%;
  object-fit: cover;
}

.event.post-block {
  flex-direction: column-reverse;
}

@media (min-width: 67.5em) {
  .event.post-block {
    flex-direction: row;
  }
}

.event.post-block img {
  margin-bottom: 30px;
  width: 100%;
}

@media (min-width: 67.5em) {
  .event.post-block img {
    margin-bottom: 0;
  }
}

.single-event_cpt {
  position: relative;
  overflow: hidden;
}

.single-event_cpt .svg--wrapper {
  position: absolute;
  bottom: -10%;
  top: auto;
  right: -20%;
}

.single-event_cpt .featured-image--wrapper {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 46.25em) {
  .single-event_cpt .featured-image--wrapper {
    padding-left: 40px;
  }
}

.single-event_cpt .acf-wrapper .acf-section {
  margin-bottom: 20px;
}

@media (min-width: 67.5em) {
  .single-event_cpt .acf-wrapper .acf-section {
    margin-bottom: 40px;
  }
}

.single-event_cpt .acf-wrapper .acf-section .acf-section--narrow {
  padding: 0;
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
}

@media (min-width: 46.25em) {
  .single-event_cpt .acf-wrapper .acf-section .acf-section--narrow {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .single-event_cpt .acf-wrapper .acf-section .acf-section--narrow {
    margin: 0 8.33333333333%;
  }
}

.single-event_cpt .event--header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 2px solid #A58800;
  padding-bottom: 20px;
}

@media (min-width: 67.5em) {
  .single-event_cpt .event--header {
    padding-bottom: 40px;
  }
}

.single-event_cpt .event--header .section-header--alt {
  width: 66.66667%;
}

@media (min-width: 67.5em) {
  .single-event_cpt .event--body {
    display: flex !important;
    justify-content: space-between;
  }
}

@media (min-width: 67.5em) {
  .single-event_cpt .event--body .event--body__main {
    width: 58.33333%;
  }
}

.single-event_cpt .event--body .event--body__main .meta {
  margin-top: 20px;
}

@media (min-width: 67.5em) {
  .single-event_cpt .event--body .event--body__main .meta {
    margin-top: 40px;
  }
}

.single-event_cpt .event--body .event--body__main .event--iframe {
  margin-top: 30px;
}

@media (min-width: 67.5em) {
  .single-event_cpt .event--body .event--body__main .event--iframe {
    margin-top: 50px;
  }
}

.single-event_cpt .event--body .event--body__main .event--iframe iframe {
  height: 600px;
}

@media (min-width: 67.5em) {
  .single-event_cpt .event--body .event--body__main .event--iframe iframe {
    height: 711px;
  }
}

@media (min-width: 67.5em) {
  .single-event_cpt .event--body .event--body__sidebar {
    width: 25%;
    margin-left: 16.66666%;
  }
}

.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #A58800;
}

.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block:first-of-type {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 2px solid #A58800;
}

@media (min-width: 67.5em) {
  .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block:first-of-type {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
  }
}

.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .subheader, .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .promos .promo .promo--block h1, .promos .promo .promo--block .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h1,
.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .promos .promo .promo--block h2, .promos .promo .promo--block .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h2,
.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .promos .promo .promo--block h3, .promos .promo .promo--block .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h3,
.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .promos .promo .promo--block h4, .promos .promo .promo--block .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h4,
.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .promos .promo .promo--block h5, .promos .promo .promo--block .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h5,
.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .promos .promo .promo--block h6, .promos .promo .promo--block .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h6, .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .text-blocks .text-blocks--item h1, .text-blocks .text-blocks--item .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h1,
.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .text-blocks .text-blocks--item h2, .text-blocks .text-blocks--item .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h2,
.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .text-blocks .text-blocks--item h3, .text-blocks .text-blocks--item .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h3,
.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .text-blocks .text-blocks--item h4, .text-blocks .text-blocks--item .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h4,
.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .text-blocks .text-blocks--item h5, .text-blocks .text-blocks--item .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h5,
.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .text-blocks .text-blocks--item h6, .text-blocks .text-blocks--item .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block h6 {
  margin-bottom: 20px;
}

.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .arrow--link, .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block .text-blocks .text-blocks--item a, .text-blocks .text-blocks--item .single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block a {
  padding-top: 0;
}

.single-event_cpt .event--body .event--body__sidebar .event--body__sidebar-block p {
  margin-bottom: 20px;
}

.mfp-wrap .mfp-container {
  background: #2b2a32f2;
  padding-left: 20px;
  padding-right: 20px;
}

.mfp-wrap .mfp-container:before {
  vertical-align: top;
}

@media (min-width: 67.5em) {
  .mfp-wrap .mfp-container:before {
    vertical-align: middle;
  }
}

.mfp-wrap .mfp-container .mfp-arrow {
  transform: scale(0.55);
}

@media (min-width: 67.5em) {
  .mfp-wrap .mfp-container .mfp-arrow {
    transform: scale(0.75);
  }
}

.mfp-wrap .mfp-container .mfp-arrow:before,
.mfp-wrap .mfp-container .mfp-arrow .mfp-b,
.mfp-wrap .mfp-container .mfp-arrow:after,
.mfp-wrap .mfp-container .mfp-arrow .mfp-a {
  border: none;
}

.mfp-wrap .mfp-container .mfp-arrow-left:before,
.mfp-wrap .mfp-container .mfp-arrow .mfp-b {
  content: url("../../src/images/icons/prev.svg");
  display: block;
  opacity: 1;
}

.mfp-wrap .mfp-container .mfp-arrow-right:after,
.mfp-wrap .mfp-container .mfp-arrow .mfp-a {
  content: url("../../src/images/icons/next.svg");
  display: block;
  opacity: 1;
}

.mfp-wrap .mfp-container .mfp-image-holder .mfp-close,
.mfp-wrap .mfp-container .mfp-iframe-holder .mfp-close,
.mfp-wrap .mfp-container .mfp-close {
  position: fixed !important;
  top: 20px !important;
  right: 20px !important;
  padding-right: 0;
  font-size: 0px;
}

@media (min-width: 67.5em) {
  .mfp-wrap .mfp-container .mfp-image-holder .mfp-close,
  .mfp-wrap .mfp-container .mfp-iframe-holder .mfp-close,
  .mfp-wrap .mfp-container .mfp-close {
    top: 40px !important;
    right: 40px !important;
  }
}

.mfp-wrap .mfp-container .mfp-image-holder .mfp-close:before,
.mfp-wrap .mfp-container .mfp-iframe-holder .mfp-close:before,
.mfp-wrap .mfp-container .mfp-close:before {
  content: '';
  display: inline-block;
  background-image: url("../images/icons/close.svg");
  height: 14px;
  width: 14px;
  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;
}

.mfp-wrap .mfp-container img.mfp-img {
  padding-bottom: 0;
  padding-top: 60px;
}

@media (min-width: 67.5em) {
  .mfp-wrap .mfp-container img.mfp-img {
    padding-top: 0;
  }
}

.mfp-wrap .mfp-container .mfp-bottom-bar {
  text-transform: uppercase;
  font-family: "RM Neue", sans-serif;
  display: flex;
  margin-top: 10px;
  font-size: 12px;
  line-height: 14px;
}

@media (min-width: 67.5em) {
  .mfp-wrap .mfp-container .mfp-bottom-bar {
    margin-top: 20px;
    font-size: 14px;
    line-height: 18px;
  }
}

.mfp-wrap .mfp-container .mfp-bottom-bar .mfp-title {
  display: flex;
}

.mfp-wrap .mfp-container .mfp-bottom-bar .mfp-title div {
  color: #DCD5CD;
}

.mfp-wrap .mfp-container .mfp-bottom-bar .mfp-title .opacity {
  margin-right: 16px;
}

.mfp-wrap .mfp-container .mfp-bottom-bar .mfp-counter {
  font-family: "RM Neue", sans-serif;
}

.type-event_cpt,
.type-gallery_cpt {
  padding-top: 40px;
}

@media (min-width: 67.5em) {
  .type-event_cpt,
  .type-gallery_cpt {
    padding-top: 100px;
  }
}

.type-event_cpt:first-of-type,
.type-gallery_cpt:first-of-type {
  padding-top: 0;
}

@media (min-width: 67.5em) {
  .type-event_cpt:first-of-type,
  .type-gallery_cpt:first-of-type {
    padding-top: 20px;
  }
}

.acf-wrapper .post-block {
  margin-bottom: 40px;
}

@media (min-width: 67.5em) {
  .acf-wrapper .post-block {
    padding-bottom: 60px;
  }
}

.acf-wrapper .post-block .post-block--details {
  display: flex;
  flex-direction: column;
}

.acf-wrapper .post-block .post-block--details .post-block--details__top .meta {
  margin-bottom: 20px;
}

@media (min-width: 93.75em) {
  .acf-wrapper .post-block .post-block--details .post-block--details__top .meta {
    margin-bottom: 40px;
  }
}

.acf-wrapper .post-block .post-block--details .post-block--details__top .section-header--alt {
  margin: 0;
  margin-bottom: 20px;
}

.acf-wrapper .post-block .post-block--details .post-block--details__bottom {
  margin-top: auto;
}

.acf-wrapper .post-block .post-block--details .post-block--details__bottom .arrow--link, .acf-wrapper .post-block .post-block--details .post-block--details__bottom .text-blocks .text-blocks--item a, .text-blocks .text-blocks--item .acf-wrapper .post-block .post-block--details .post-block--details__bottom a {
  padding-top: 10px;
}

@media (min-width: 67.5em) {
  .acf-wrapper .post-block .post-block--details .post-block--details__bottom .arrow--link, .acf-wrapper .post-block .post-block--details .post-block--details__bottom .text-blocks .text-blocks--item a, .text-blocks .text-blocks--item .acf-wrapper .post-block .post-block--details .post-block--details__bottom a {
    padding-top: 30px;
  }
}

.acf-wrapper .post-block .featured-image--wrapper {
  padding-left: 0;
  text-align: right;
}

.acf-wrapper .post-block .featured-image--wrapper .featured-image {
  height: auto;
  max-height: none;
  aspect-ratio: 9/6;
}

.type-gallery_cpt .event.post-block {
  flex-direction: column;
}

@media (min-width: 67.5em) {
  .type-gallery_cpt .event.post-block {
    flex-direction: row;
  }
}

.type-gallery_cpt .event.post-block .post-block--details__bottom .arrow--link, .type-gallery_cpt .event.post-block .post-block--details__bottom .text-blocks .text-blocks--item a, .text-blocks .text-blocks--item .type-gallery_cpt .event.post-block .post-block--details__bottom a {
  display: none;
}

@media (min-width: 67.5em) {
  .type-gallery_cpt .event.post-block .post-block--details__bottom .arrow--link, .type-gallery_cpt .event.post-block .post-block--details__bottom .text-blocks .text-blocks--item a, .text-blocks .text-blocks--item .type-gallery_cpt .event.post-block .post-block--details__bottom a {
    display: block;
  }
}

.type-gallery_cpt .event.post-block .gallery-link__bottom {
  display: block;
}

.type-gallery_cpt .event.post-block .gallery-link__bottom .arrow--link, .type-gallery_cpt .event.post-block .gallery-link__bottom .text-blocks .text-blocks--item a, .text-blocks .text-blocks--item .type-gallery_cpt .event.post-block .gallery-link__bottom a {
  padding-top: 0;
}

@media (min-width: 67.5em) {
  .type-gallery_cpt .event.post-block .gallery-link__bottom {
    display: none;
  }
}

.text-blocks {
  flex-wrap: wrap;
}

.text-blocks .text-blocks--item {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  margin-bottom: 40px;
}

@media (min-width: 46.25em) {
  .text-blocks .text-blocks--item {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .text-blocks .text-blocks--item {
    width: 50%;
  }
}

.text-blocks .text-blocks--item h1,
.text-blocks .text-blocks--item h2,
.text-blocks .text-blocks--item h3,
.text-blocks .text-blocks--item h4,
.text-blocks .text-blocks--item h5,
.text-blocks .text-blocks--item h6 {
  margin-bottom: 10px;
}

@media (min-width: 67.5em) {
  .text-blocks .text-blocks--item h1,
  .text-blocks .text-blocks--item h2,
  .text-blocks .text-blocks--item h3,
  .text-blocks .text-blocks--item h4,
  .text-blocks .text-blocks--item h5,
  .text-blocks .text-blocks--item h6 {
    margin-bottom: 30px;
  }
}

.text-blocks .text-blocks--item p {
  margin-bottom: 30px;
}

.text-blocks .text-blocks--item p:last-of-type {
  margin-bottom: 0;
}

.text-blocks .text-blocks--item a {
  font-family: 'RM Neue';
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
}

@media (min-width: 67.5em) {
  .text-blocks .text-blocks--item a {
    font-size: 18px;
    line-height: 22px;
  }
}

.text-blocks .text-blocks--item ul {
  list-style-type: none;
  margin-left: 0;
  margin-top: 20px;
  margin-bottom: 0;
}

@media (min-width: 67.5em) {
  .text-blocks .text-blocks--item ul {
    margin-top: 30px;
  }
}

.text-blocks .text-blocks--item ul li {
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  text-transform: uppercase;
  color: #2B2A32;
  opacity: 0.4;
  margin-bottom: 0;
}

@media (min-width: 67.5em) {
  .text-blocks .text-blocks--item ul li {
    font-size: 14px;
    line-height: 18px;
  }
}

.text-blocks .text-blocks--item ul li:first-of-type {
  font-weight: 700;
  font-size: 14px;
  line-height: 18px;
  text-transform: uppercase;
  color: #2B2A32;
  opacity: 1;
  margin-bottom: 30px;
}

.text-blocks .text-blocks--item:last-of-type {
  margin-bottom: 0;
}

@media (min-width: 67.5em) {
  .text-blocks .text-blocks--item {
    margin-bottom: 80px;
  }
  .text-blocks .text-blocks--item:last-of-type {
    margin-bottom: 80px;
  }
}

.home .page-header {
  display: none;
}

@media (min-width: 67.5em) {
  .home .text-area--large {
    margin-bottom: 80px;
    margin-top: 80px;
  }
}

.homepage-content {
  padding-bottom: 8rem;
}

.homepage-content.homepage-content--blog .jay-grid .jay-grid--item {
  margin: 1rem 0;
}

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

.homepage-content.homepage-content--blog .jay-grid .jay-grid--item a {
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.homepage-content.homepage-content--blog .jay-grid .jay-grid--item a:hover {
  text-decoration: underline;
}

.homepage-content.homepage-content--blog .jay-grid .jay-grid--item a .jay-grid--item-text,
.homepage-content.homepage-content--blog .jay-grid .jay-grid--item a .jay-grid--item-text p {
  margin-top: 0;
}

.homepage-content.homepage-content--blog .jay-grid .jay-grid--item a .jay-grid--item-text p {
  margin-bottom: 0;
}

.homepage-content .twitter-feed {
  padding: 2rem;
}

.landing-page-wrapper {
  border: 10px solid #fff;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}

.raygun-blaster-animation {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 60.625rem;
  max-height: 51.75rem;
  height: 100vh;
  width: 100vw;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.raygun-blaster-animation svg {
  max-width: 700px;
  width: 90vh;
  padding: 10px 20px 10px 10px;
}

@media only screen and (min-width: 768px) {
  .raygun-blaster-animation svg {
    padding: 0;
  }
}

.raygun-blaster-animation svg #bg {
  display: none;
}

.page-template-accordion .acf-section.hero {
  margin-bottom: 0;
}

.page-template-accordion .acf-section.hero .hero--text p {
  max-width: 800px;
  margin-bottom: 40px;
}

.page-template-accordion .accordion-block {
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 67.5em) {
  .page-template-food-drink .acf-section--extra-narrow.text-area--large {
    margin: 100px 0;
  }
}

.acf-wrapper .acf-section .spaces--item {
  display: block;
  position: relative;
}

.acf-wrapper .acf-section .spaces--item .spaces--item__inner {
  position: relative;
}

.acf-wrapper .acf-section .spaces--item .spaces--item--svg__container {
  position: absolute;
  left: -16vw;
  width: 100vw;
  top: 14%;
  text-align: right;
  z-index: 0;
}

.acf-wrapper .acf-section .spaces--item .section-header {
  padding-bottom: 8px;
  border-bottom: 2px solid #A58800;
  width: 100vw;
}

.acf-wrapper .acf-section .spaces--item .terms {
  max-width: 100%;
  font-family: "RM Neue", sans-serif;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 14px;
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .spaces--item .terms {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 18px;
  }
}

.acf-wrapper .acf-section .spaces--item .terms span:after {
  content: "/";
  display: inline-block;
}

.acf-wrapper .acf-section .spaces--item .terms span:last-of-type:after {
  content: "";
}

.acf-wrapper .acf-section .spaces--item .spaces--item__text {
  margin-bottom: 30px;
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .spaces--item .spaces--item__text {
    width: 58.33333%;
  }
}

.acf-wrapper .acf-section .spaces--item .spaces--item__text p:last-of-type {
  margin-bottom: 0;
}

.acf-wrapper .acf-section .spaces--item .spaces--item__details {
  margin-bottom: 30px;
}

@media (min-width: 67.5em) {
  .acf-wrapper .acf-section .spaces--item .spaces--item__details {
    width: 58.33333%;
  }
}

.acf-wrapper .acf-section .spaces--item .spaces--item__details p,
.acf-wrapper .acf-section .spaces--item .spaces--item__details ul li {
  font-family: "RM Neue", sans-serif;
}

.acf-wrapper .acf-section .spaces--item .spaces--item__details ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-left: 0;
}

.acf-wrapper .acf-section .spaces--item .spaces--item__details ul li {
  list-style: none;
  margin-bottom: 0;
}

.acf-wrapper .acf-section .spaces--item .spaces--item__details .arrow--link, .acf-wrapper .acf-section .spaces--item .spaces--item__details .text-blocks .text-blocks--item a, .text-blocks .text-blocks--item .acf-wrapper .acf-section .spaces--item .spaces--item__details a {
  padding-top: 0;
  margin-bottom: 80px;
}

.spaces--item__gallery-wrapper {
  margin-top: 20px;
}

@media (min-width: 67.5em) {
  .spaces--item__gallery-wrapper {
    margin-top: 80px;
  }
}

.spaces--item__gallery-wrapper .slick-list .slick-slide {
  padding-right: 20px;
}

@media (min-width: 67.5em) {
  .spaces--item__gallery-wrapper .slick-list .slick-slide {
    padding-right: 40px;
  }
}

.spaces--item__gallery-wrapper img {
  display: block;
  width: 100%;
  object-fit: cover;
}

@media (min-width: 67.5em) {
  .spaces--item__gallery-wrapper img {
    max-height: 621px;
    min-height: 621px;
  }
}

.single-event_cpt .spaces--item__gallery .slick-slide img {
  padding-right: 20px;
}

@media (min-width: 67.5em) {
  .single-event_cpt .spaces--item__gallery .slick-slide img {
    padding-right: 40px;
  }
}

.single-event_cpt .spaces--item__gallery {
  margin-top: 40px;
  margin-bottom: 80px;
}

@media (min-width: 67.5em) {
  .single-event_cpt .spaces--item__gallery {
    margin-top: 80px;
    margin-bottom: 140px;
  }
}

.spaces--item__gallery {
  margin-bottom: 40px;
}

@media (min-width: 67.5em) {
  .spaces--item__gallery {
    margin-left: 16.6666%;
    margin-bottom: 80px;
  }
}

.spaces--item__gallery .over-slider {
  z-index: 2;
}

.spaces--item__gallery .slick-list {
  overflow: visible;
  position: relative;
}

@media (min-width: 67.5em) {
  .spaces--item__gallery .slick-list::after {
    content: '';
    position: absolute;
    top: 0px;
    bottom: 0px;
    width: 4000px;
    right: 100%;
    background-color: #DDD6CE;
  }
}

.spaces--item__gallery .slick-slide img {
  display: block;
  width: 100%;
  margin-right: 40px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.acf-section.header {
  margin-bottom: 0;
}

.two-items {
  margin-right: 20px;
}

@media (min-width: 46.25em) {
  .two-items {
    margin-left: 0;
  }
}

.two-items .slick-list {
  overflow: visible;
  position: relative;
}

@media (min-width: 67.5em) {
  .two-items .slick-list {
    padding-left: 60px;
  }
}

.two-items .slick-list .slick-slide {
  width: 100%;
  display: inline-block;
  padding-left: 20px;
  text-align: left;
  vertical-align: top;
  padding-left: 0 !important;
  margin-right: 20px;
}

@media (min-width: 46.25em) {
  .two-items .slick-list .slick-slide {
    padding-left: 40px;
  }
}

@media (min-width: 67.5em) {
  .two-items .slick-list .slick-slide {
    margin-right: 40px;
  }
}

.two-items .slick-list .arrow--link, .two-items .slick-list .text-blocks .text-blocks--item a, .text-blocks .text-blocks--item .two-items .slick-list a {
  padding-top: 0;
}

.two-items .slick-list .arrow--link:hover, .two-items .slick-list .text-blocks .text-blocks--item a:hover, .text-blocks .text-blocks--item .two-items .slick-list a:hover {
  color: initial;
}

.two-items .slick-list .arrow--link .meta, .two-items .slick-list .text-blocks .text-blocks--item a .meta, .text-blocks .text-blocks--item .two-items .slick-list a .meta {
  margin-top: 10px;
}

@media (min-width: 67.5em) {
  .two-items .slick-list .arrow--link .meta, .two-items .slick-list .text-blocks .text-blocks--item a .meta, .text-blocks .text-blocks--item .two-items .slick-list a .meta {
    margin-top: 20px;
  }
}

.two-items .slick-list::after {
  content: ' ';
  position: absolute;
  top: 0px;
  bottom: 0px;
  width: 4000px;
  right: 100%;
  background-color: #DDD6CE;
}

.slick-slide,
.slick-slide .arrow--link,
.slick-slide .text-blocks .text-blocks--item a,
.text-blocks .text-blocks--item .slick-slide a {
  cursor: url(../../src/images/icons/drag.svg), auto !important;
}

.slick-slide .meta.gel-layout-item,
.slick-slide .arrow--link .meta.gel-layout-item,
.slick-slide .text-blocks .text-blocks--item a .meta.gel-layout-item,
.text-blocks .text-blocks--item .slick-slide a .meta.gel-layout-item {
  margin-top: 20px;
  display: flex;
}

.spaces--wrapper .acf-section {
  margin-bottom: 20px;
}

@media (min-width: 67.5em) {
  .spaces--wrapper .acf-section {
    margin-bottom: 140px;
  }
}

.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;
}

.cookies-accepted #cookie-notice {
  display: none;
}

img {
  max-width: 100%;
}

.mfp-wrap {
  z-index: 99999999;
  overflow: hidden;
}

div#cookie-notice {
  position: absolute;
  top: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 250px;
  width: 500px !important;
  max-width: 90%;
  background-color: transparent !important;
}

div#cookie-notice .cookie-notice-container {
  width: 500px !important;
  max-width: 90%;
  padding: 40px;
  margin: 0 auto;
  text-align: left !important;
  display: flex !important;
  align-items: end;
  background-color: #dcd5cd;
  position: relative;
}

div#cookie-notice .cookie-notice-container .cn-text-container {
  margin-bottom: 0;
}

div#cookie-notice .cookie-notice-container span#cn-notice-buttons {
  width: 80px;
  height: 80px;
  background: black;
  border-radius: 100%;
  display: flex !important;
  align-items: center !important;
  justify-content: center;
  margin-left: 30px;
}

div#cookie-notice .cookie-notice-container span#cn-notice-buttons a#cn-accept-cookie {
  width: 80px;
  height: 80px;
  background: black;
  border-radius: 100% !important;
  display: flex;
  align-items: center !important;
  justify-content: center;
  text-transform: uppercase !important;
  font-size: 14px;
  line-height: 18px;
  color: #DCD5CD;
  font-family: 'RM Neue';
  font-style: normal;
  font-weight: 400;
  margin: 0;
}

div#cookie-notice .cookie-notice-container .cn-close-icon {
  top: 40px;
  opacity: 1;
}

div#cookie-notice .cookie-notice-container .cn-close-icon:before,
div#cookie-notice .cookie-notice-container .cn-close-icon:after {
  width: 1px;
  background-color: #2B2A32 !important;
  height: 20px !important;
}

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

.splash__hero {
  width: 100%;
  position: relative;
  max-width: 1440px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

  .splash__hero--full {
    padding: 0;
  }


.splash__hero img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: center top;
}

.splash__hero h1 {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  color: rgb(221, 214, 206);
  transform: translateY(-50%);
}

.splash__content {
  padding-left: 20px;
  padding-right: 20px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.splash__details {
  background: #2B2A32;
  color: #DCD5CD;
  padding: 20px;
  margin-bottom: 20px;
}

.splash__detail {
  margin-bottom: 30px;
}

.splash__detail:last-child {
  margin-bottom: 0;
}

.splash__detail h2 {
  color: #A58800;
  margin-top: 0;
}

.splash__detail h3 {
  color: #A58800;
  margin-top: 0;
}

.splash__detail h4 {
  color: #A58800;
  margin-top: 0;
}

.splash__detail a {
  font-family: "RM Neue Bold", sans-serif;
  text-decoration: none;
  transition: 0.3s;
}

.splash__detail a:hover {
  color: #DCD5CD;
} 

@keyframes spin {
    from {transform:rotate(0deg);}
    to {transform:rotate(-360deg);}
}

.splash__content a.circle-link {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
  transition: 0.3s;
  animation: spin 12s infinite linear;
  font-size: 26px;
  line-height: 26px;
  width: 160px;
  height: 160px;
}

.splash__content a.circle-link:hover {
  background: #A58800;
  color: #2B2A32;
}

.splash__gallery {
  margin-bottom: 20px;
}

.splash__gallery .splash__slide {
  width: 100%;
  text-align: center;
}

.splash__gallery img {
  height: auto;
  width: 100%;
}

.splash__grid {
  margin-bottom: 20px;
  width: 100%;
}



.splash__grid img {
  display: block;
  height: auto;
  margin-bottom: 20px;
}

.splash__content .embed-container {
  margin-bottom: 20px;
}

@keyframes bounce {
    0%   { transform: translateY(0); }
    50%  { transform: translateY(10px); }
    100% { transform: translateY(0); }
}

.splash__hero button.darr {
  width: 44px;
  height: 44px;
  display: none;
  justify-content: center;
  background: #DCD5CD;
  color: #2B2A32;
  border-radius: 50%;
  -webkit-appearance: none;
  border: none;
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  font-size: 22px;
  line-height: 44px;
  font-family: "RM Neue Bold", sans-serif;
  animation-name: bounce;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: cubic-bezier(0.280, 0.840, 0.420, 1);
  cursor: pointer;
}

.splash__content .event--iframe iframe {
  height: 100% !important;
  min-height: 400px;
}

.splash__content > ul {
  font-family: "Matter", sans-serif;
  font-size: 14px;
  line-height: 17px;
  list-style: disc inside;
}

.splash__hero--large button.darr {
  display: none;
}

.splash__content h2 {
  text-transform: uppercase;
}



.splash__content h2 {
  text-transform: uppercase;
}

.splash__content img.aligncenter {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.splash__detail p em {
  font-style: italic;
}

.splash__detail h2, .splash__detail h3, .splash__detail h4 {
  display: block;
}

.event-list-title {
  text-decoration: underline;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 30px;
  text-align: center;
  margin-top: 20px;
}

.home .logo--full {
  display: block;
}

.home .video-logo {
  display: none;
}

.home .site-header span.hamburger-inner::before, .home .site-header .hamburger-inner::after {
  background-color: #2B2A32;
}
  

@media (min-width: 46.25em) {
  
  .event-list-title {
    font-size: 2rem;
  }
  
  .splash__hero--full {
  height: 70vh;
  }
  
  .splash__grid {
    margin-bottom: 20px;
    display:flex;
    justify-content: flex-start;
    align-items: flex-start;
    column-gap: 20px;
    width: 100%;
  }
  
  .splash__grid .splash__slide--grid {
    flex: 1 1 0px;
  }
  
  .splash__grid .splash__slide--grid img {
    width: 100%;
  }
  
  .splash__grid img {
    margin-bottom: 0;
  }
  
  .splash__hero--full {
    height: 100vh;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }
  
  .splash__hero--cover img {
    object-fit: cover;
  }
  
  .splash__content h2 {
    font-size: 32px;
  }
  
  body.single-event_cpt .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .splash__hero button.darr {
    display: flex;
  }
  
  .splash__detail p em {
    font-size: 20px;
  }


}

@media (min-width: 67.5em) {
  
  .splash__hero {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .splash__hero.splash__hero--full {
      padding-left: 0px;
      padding-right: 0px;
    }

  
  .splash__hero, .splash__details, .splash__content p {
    margin-bottom: 40px;
  }
  
  .splash__content p, .splash__content ul li {
    font-size: 32px;
    line-height: 1.1;
  }
  
  .splash__detail span, .splash__detail a, .splash__detail p {
    font-size: 32px;
  }
  
  .splash__detail h2 {
    font-size: 36px;
  }
  
  .splash__detail h3 {
    font-size: 28px;
  }
  
  .splash__detail h4 {
    font-size: 24px;
  }
  
  .splash__detail p {
    margin-bottom: 0;
    line-height: 1.1;
  }
  
  .splash__content a.circle-link {
    height: 180px;
    width: 180px;
    font-size: 32px;
    line-height: 32px;
  }
  
  .splash__content {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .splash__gallery, .splash__grid, .splash__content a.circle-link {
    margin-bottom: 40px;
  }
  
  .splash__content .embed-container {
    margin-bottom: 40px;
  }
  
  .splash__content > ul {
   font-size: 22px;
   line-height: 27px;
   margin-bottom: 40px; 
  }
  
  body.single-event_cpt .container {
    padding-left: 40px;
    padding-right: 40px;
  }
  
  .home .hero--slide.hero--video .embed-container, .home .hero--slide.hero--video {
    /*height: 50vh;*/
  }

}

@media (min-width: 93.75em) {



}