/**
 * Vendor
 */
/* @import 'vendor/bootstrap/bootstrap'; */
/* @import 'vendor/semantic'; */
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 20px;
  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-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

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

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 30px;
  height: 4px;
  background-color: #FFF;
  border-radius: 4px;
  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: -10px;
}

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

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

.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;
  transform: rotateY(180deg);
}

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

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

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

.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;
  transform: rotateY(-180deg);
}

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

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

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

.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;
  transform: rotateX(-180deg);
}

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

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

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

.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;
  transform: rotateX(180deg);
}

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

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

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

.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;
  transform: rotateX(180deg) rotateY(180deg);
}

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

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

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

.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;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}

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

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

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

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

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

.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(6px, 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(-6px, -7.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(-6px, 7.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(6px, -7.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(6px, 7.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: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

.hamburger--collapse.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

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

.hamburger--collapse-r .hamburger-inner::before {
  transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

.hamburger--collapse-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear;
}

.hamburger--collapse-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hamburger--emphatic .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

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

.hamburger--emphatic.is-active .hamburger-inner::before {
  left: -60px;
  top: -60px;
  transform: translate3d(60px, 60px, 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: -60px;
  top: -60px;
  transform: translate3d(-60px, 60px, 0) rotate(-45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

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

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

.hamburger--emphatic-r .hamburger-inner::before {
  left: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in;
}

.hamburger--emphatic-r .hamburger-inner::after {
  top: 10px;
  right: 0;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in;
}

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

.hamburger--emphatic-r.is-active .hamburger-inner::before {
  left: -60px;
  top: 60px;
  transform: translate3d(60px, -60px, 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: -60px;
  top: 60px;
  transform: translate3d(-60px, -60px, 0) rotate(45deg);
  transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1);
}

/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear;
}

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

.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.hamburger--spring .hamburger-inner::before {
  top: 10px;
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner::after {
  top: 20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

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

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

.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

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

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

.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

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

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

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

.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  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;
  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);
}

/**
 * Base
 */
/**
 * Base
 */
@font-face {
  font-family: 'Gill Sans';
  src: url("/fonts/GillSans.woff2") format("woff2"), url("/fonts/GillSans.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gill Sans Light';
  src: url("/fonts/GillSans-Light.woff2") format("woff2"), url("/fonts/GillSans-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Gill Sans Semi';
  src: url("/fonts/GillSans-SemiBoldItalic.woff2") format("woff2"), url("/fonts/GillSans-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Gill Sans Semi';
  src: url("/fonts/GillSans-SemiBold.woff2") format("woff2"), url("/fonts/GillSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

.page {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  height: 100%;
  width: 100%;
}

html, body {
  font-family: 'Gill Sans';
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #9fa2ac;
  color: #fff;
  overflow-y: auto;
  overflow-x: hidden;
}

@media (min-width: 768px) {
  html, body {
    overflow: hidden;
  }
}

body {
  font-size: 14px;
  font-weight: normal;
}

a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
}

h1, h2 {
  margin: 0;
  padding: 0;
}

.opaque {
  opacity: 0;
}

.pad10 {
  padding: 10px;
}

.pad20 {
  padding: 20px;
}

.first::first-letter {
  font-size: 1.2em;
}

.centerTxt {
  text-align: center;
}

/**
 * Suppress the focus outline on links that cannot be accessed via keyboard.
 * This prevents an unwanted focus outline from appearing around elements that
 * might still respond to pointer events.
 */
[tabindex="-1"]:focus {
  outline: none !important;
}

/*
 * Makes the hidden attribute works even when an element is styled display: flex
 * http://lists.w3.org/Archives/Public/public-whatwg-archive/2014May/0001.html
 */
[hidden] {
  display: none !important;
}

/*********************
BREAKPOINTS
*********************/
/**
 * Project's components or styles
 */
/** @define PageBody */
.hamburger {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  outline: none;
}

a, a:hover, a:visited {
  color: inherit;
}

h1 {
  pointer-events: none;
  font-size: 26px;
  margin: 10px 0;
  font-weight: 400;
  text-transform: uppercase;
}

@media (min-width: 568px) {
  h1 {
    margin: 0;
    font-size: 32px;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 40px;
  }
}

h1::first-letter {
  font-size: 1.2em;
}

.white {
  color: #FFF !important;
}

.txtLrg {
  font-size: 20px;
}

@media (min-width: 568px) {
  .txtLrg {
    font-size: 24px;
  }
}

#title {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 8;
  max-width: 70%;
}

@media (min-width: 568px) {
  #title {
    max-width: 500px;
  }
}

.center {
  margin: 0 auto;
}

.cover {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #000;
  opacity: 0.75;
  z-index: 10;
}

.page video {
  max-width: 90%;
  position: absolute;
  margin: 5%;
}

@media (min-width: 1024px) {
  .page video {
    width: 1000px;
    top: 50%;
    left: 50%;
    margin: -300px 0 0 -500px;
  }
}

.ontop {
  z-index: 25;
}

#bg {
  margin-top: 38%;
  width: 100%;
  min-width: 1100px;
  transform: translate(-20px, 0);
}

@media (min-width: 568px) {
  #bg {
    margin-top: 25%;
  }
}

@media (min-width: 1024px) {
  #bg {
    margin-top: 12%;
  }
}

@media (min-width: 1460px) {
  #bg {
    margin-top: 8%;
  }
}

#tree {
  min-width: 100%;
  opacity: 0.4;
  height: auto;
  transform: translate(-20px, 0);
}

#treewrapper {
  overflow-x: auto;
  overflow-y: hidden;
}

.leaf, .mask {
  position: absolute;
  left: 14.1%;
  bottom: 0;
  transform-origin: bottom center;
  height: auto;
  width: 5%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  margin-left: -10px;
}

@media (min-width: 1024px) {
  .leaf, .mask {
    margin-left: -3px;
  }
}

@media (min-width: 568px) {
  .leaf, .mask {
    margin-left: -7px;
  }
}

.mask {
  transform: scale3D(0, 0, 1);
  z-index: 16;
  pointer-events: all;
  cursor: pointer;
}

.leaf {
  transform: rotate(180deg) scale3D(1, 1, 1) translateZ(0);
  margin-bottom: 14%;
  pointer-events: none;
}

.page form {
  pointer-events: all;
}

.leaf-title {
  position: absolute;
  left: 0;
  top: 0;
  color: #FFF;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.title {
  position: absolute;
  left: 14.1%;
  bottom: 0;
  padding-left: 45px;
  opacity: 0;
  z-index: 15;
}

.leaf-title {
  width: 50px;
  height: 50px;
  background: url(/images/leaf-red.png);
  background-size: contain;
  background-repeat: no-repeat;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  margin-left: -10px;
}

@media (min-width: 1024px) {
  .leaf-title {
    margin-left: -3px;
  }
}

@media (min-width: 568px) {
  .leaf-title {
    margin-left: -7px;
  }
}

.title {
  width: 200px;
  text-align: left;
  height: auto;
  font-size: 20px;
  color: #642107;
  text-transform: uppercase;
  cursor: pointer;
}

.loader {
  width: 30px;
  height: 30px;
  position: absolute;
  border: 4px solid #Fff;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #fff;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loader-inner {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}

#loading {
  position: absolute;
  width: 300px;
  text-align: center;
  margin: -22px 0 0 -150px;
  top: 50%;
  left: 50%;
  font-size: 36px;
  line-height: 42px;
  height: 42px;
  z-index: 25;
  opacity: 0;
}

#login {
  position: absolute;
  width: 90%;
  margin: -210px 0 0 -45%;
  top: 50%;
  left: 50%;
  height: 420px;
  border-radius: 20px;
  background: #6a8d8b;
  z-index: 25;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  font-size: 12px;
}

@media (min-width: 568px) {
  #login {
    font-size: 12px;
    width: 400px;
    height: 500px;
    margin: -250px 0 0 -200px;
  }
}

@media (min-width: 1024px) {
  #login {
    font-size: 14px;
    width: 450px;
    height: 550px;
    margin: -275px 0 0 -225px;
  }
}

#login form {
  display: block;
  padding: 10px;
}

@media (min-width: 568px) {
  #login form {
    padding: 40px;
  }
}

#login button, #login input {
  border-radius: 8px;
  outline: none;
  border: #373737 2px solid;
  width: 100%;
  height: 45px;
  color: #373737;
  font-size: 16px;
  margin-bottom: 10px;
}

@media (min-width: 568px) {
  #login button, #login input {
    margin-bottom: 15px;
    font-size: 18px;
    height: 50px;
  }
}

@media (min-width: 1024px) {
  #login button, #login input {
    margin-bottom: 20px;
    font-size: 24px;
    height: 65px;
  }
}

#login input {
  width: 90%;
  padding: 0 5%;
}

.pure-form fieldset {
  border: none;
}

#email, #password {
  display: block;
  width: 100%;
}

.big-button {
  background: #92afac;
  border: #373737 3px solid;
}

#mholder {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9;
}

#menu {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  list-style: none;
  padding: 50px 0;
  margin: 0;
  background: #5b6f74;
  border: 3px solid #FFF;
  font-size: 18px;
  transition: opacity;
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 1024px) {
  #menu {
    right: 85px;
    top: 20px;
    left: auto;
    width: 400px;
    padding: 3px 0;
    margin-right: -30px;
    transition: opacity, margin-right 250ms ease-out;
  }
}

.hamburger {
  pointer-events: all;
  z-index: 9;
}

#menu.is-active {
  opacity: 1;
  pointer-events: all;
  margin-right: 0;
}

#menu li {
  border-bottom: 2px solid #FFF;
  margin: 0 20px;
  padding: 10px 15px;
  cursor: pointer;
  text-transform: uppercase;
  font-family: 'Gill Sans Light';
}

#menu li:last-child {
  border: none;
}

#menu li:first-child {
  display: none;
  height: 25px;
  width: 25px;
  background: #5b6f74;
  transform: rotate(45deg);
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  border: none;
  pointer-events: none;
  margin: 12px -16px 0 0;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
}

@media (min-width: 1024px) {
  #menu li:first-child {
    display: block;
  }
}

.pop, .pop2, .popQuote, .popText {
  position: absolute;
  width: auto;
  height: auto;
  margin: 0;
  padding: 130px 20px 50px 50px;
  top: 30px;
  right: 20px;
  left: 20px;
  border-radius: 15px;
  background: #d6dace;
  font-size: 14px;
  color: #000;
}

@media (min-width: 1024px) {
  .pop, .pop2, .popQuote, .popText {
    position: absolute;
    background: #d6dace url(/images/pop/bg.jpg);
    background-position: bottom left;
    top: 50%;
    left: 50%;
    padding: 0 20px 0 250px;
    width: 500px;
    height: 600px;
    margin: -300px 0 0 -385px;
    font-size: 18px;
  }
}

@media (min-width: 1460px) {
  .pop, .pop2, .popQuote, .popText {
    position: absolute;
    background: #d6dace url(/images/pop/bg.jpg);
    background-position: bottom left;
    top: 50%;
    left: 50%;
    padding: 0 50px 0 250px;
    width: 600px;
    height: 740px;
    margin: -370px 0 0 -435px;
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  .pop.wide {
    width: 500px;
    height: 600px;
    margin: -300px 0 0 -385px;
  }
}

@media (min-width: 1460px) {
  .pop.wide {
    width: 750px;
    height: 685px;
    margin: -322px 0 0 -525px;
  }
}

@media (min-width: 1024px) {
  .pop.thin {
    width: 500px;
    height: 600px;
    margin: -300px 0 0 -385px;
    font-size: 18px;
  }
}

@media (min-width: 1460px) {
  .pop.thin {
    width: 600px;
    height: 530px;
    margin: -265px 0 0 -435px;
    font-size: 22px;
  }
}

.pop2 {
  z-index: 30;
  padding: 15px;
}

@media (min-width: 1024px) {
  .pop2 {
    padding: 20px;
    background: #d6dace url(/images/pop/bg2.jpg);
    width: 1000px;
    height: 580px;
    margin: -310px 0 0 -520px;
  }
}

@media (min-width: 1460px) {
  .pop2 {
    padding: 20px;
    background: #d6dace url(/images/pop/bg2.jpg);
    width: 1249px;
    height: 674px;
    margin: -357px 0 0 -655px;
  }
}

.vid .pop2 {
  padding: 0 15px;
}

@media (min-width: 1024px) {
  .vid .pop2 {
    height: 680px;
    margin: -380px 0 0 -520px;
  }
}

@media (min-width: 1460px) {
  .vid .pop2 {
    height: 824px;
    margin: -457px 0 0 -655px;
  }
}

#expand {
  position: absolute;
  right: 30px;
  bottom: 40px;
  width: 30px;
}

@media (min-width: 1024px) {
  #expand {
    width: auto;
    right: 30px;
    bottom: 60px;
  }
}

@media (min-width: 1460px) {
  #expand {
    width: auto;
    right: 40px;
    bottom: 70px;
  }
}

#barbg {
  position: relative;
  background: #5b6f74;
  height: 5px;
  width: 60%;
  left: 20%;
  bottom: 0;
  border-radius: 5px;
  margin-top: 15px;
}

@media (min-width: 1024px) {
  #barbg {
    position: absolute;
  }
}

@media (min-width: 1460px) {
  #barbg {
    position: absolute;
  }
}

#view {
  margin: 0 auto;
  position: relative;
  width: 100%;
  height: auto;
}

@media (min-width: 1024px) {
  #view {
    width: 670px;
    height: 500px;
  }
}

@media (min-width: 1460px) {
  #view {
    width: 920px;
    height: 670px;
  }
}

#view #mainImage {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

#view .video-mask {
  width: 100%;
  height: auto;
  min-height: 400px;
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
  -webkit-transform: rotate(0.000001deg);
  border-radius: 12px;
  overflow: hidden;
}

#view h1 {
  font-size: 20px;
}

@media (min-width: 1024px) {
  #view h1 {
    font-size: 24px;
  }
}

@media (min-width: 1460px) {
  #view h1 {
    font-size: 26px;
  }
}

#caption {
  margin: 0 auto;
  height: 40px;
  text-align: left;
  display: inline-block;
  color: #FFF;
}

#thumbs li {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 5px 5px;
}

@media (min-width: 1024px) {
  #thumbs li {
    width: 95px;
    height: 95px;
    margin: 5px 10px;
  }
}

@media (min-width: 1460px) {
  #thumbs li {
    width: 95px;
    height: 95px;
    margin: 5px 10px;
  }
}

#thumbs {
  list-style: none;
  width: 100%;
  padding: 0;
  text-align: center;
  height: auto;
}

#thumbs li img {
  border-radius: 8px;
  transition: all 0.5s;
  width: 100%;
  height: auto;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.arrow {
  position: relative;
  top: 50%;
  left: 0;
  margin: 0 0 0 -80px;
  transform: scaleX(-1);
}

@media (min-width: 1024px) {
  .arrow {
    position: absolute;
  }
}

@media (min-width: 1460px) {
  .arrow {
    position: absolute;
  }
}

.right {
  left: auto;
  right: 0;
  margin: 0 -80px 0 0;
  transform: none;
}

.popQuote {
  z-index: 100;
  height: auto;
}

@media (min-width: 1024px) {
  .popQuote {
    position: absolute;
    height: auto;
    top: 50%;
    left: 50%;
    padding: 20px 40px;
    width: 530px;
    margin: -167px 0 0 -325px;
    font-size: 22px;
  }
}

@media (min-width: 1460px) {
  .popQuote {
    position: absolute;
    top: 50%;
    left: 50%;
    height: auto;
    padding: 20px 60px;
    width: 530px;
    margin: -167px 0 0 -325px;
    font-size: 26px;
  }
}

.popText {
  background-image: url(/images/pop/text-top-bg.jpg), url(/images/pop/text-bot-bg.jpg), url(/images/pop/text-mid-bg.jpg);
  background-position: left top, left bottom, center center;
  background-repeat: no-repeat, no-repeat, repeat;
  width: 651px;
  padding: 100px;
  z-index: 100;
  height: auto;
  margin: -300px 0 0 -425px;
}

@media (min-width: 1024px) {
  .pop2 .popimg {
    max-width: 600px;
    display: inline-block;
  }
}

@media (min-width: 1460px) {
  .pop2 .popimg {
    max-width: 752px;
    display: inline-block;
  }
}

.pop2 .popimg img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .pop2 .popimg img {
    margin: 0;
  }
}

@media (min-width: 1460px) {
  .pop2 .popimg img {
    margin: 0;
  }
}

#fader {
  width: 80%;
  height: 100px;
  display: none;
  position: absolute;
  right: 0;
  top: 225px;
  z-index: 50;
  pointer-events: none;
}

@media (min-width: 1024px) {
  #fader {
    top: 210px;
    display: block;
  }
}

@media (min-width: 1460px) {
  #fader {
    top: 265px;
    display: block;
  }
}

.thin #fader {
  right: 20px;
}

@media (min-width: 1024px) {
  .thin #fader {
    top: 170px;
    width: 66%;
    display: block;
  }
}

@media (min-width: 1460px) {
  .thin #fader {
    top: 225px;
    width: 70%;
    display: block;
  }
}

@media (min-width: 1024px) {
  .wide #fader {
    width: 70%;
    top: 170px;
  }
}

@media (min-width: 1460px) {
  .wide #fader {
    width: 80%;
    top: 225px;
  }
}

.scroll {
  display: block;
  margin-bottom: 10px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .scroll {
    height: 180px;
  }
}

@media (min-width: 1460px) {
  .scroll {
    height: 220px;
  }
}

@media (min-width: 1024px) {
  .wide .scroll {
    height: 140px;
  }
}

@media (min-width: 1460px) {
  .wide .scroll {
    height: 180px;
  }
}

@media (min-width: 1024px) {
  .noMenu .scroll {
    height: auto;
  }
}

@media (min-width: 1460px) {
  .noMenu .scroll {
    height: auto;
  }
}

@media (min-width: 1024px) {
  .pop2 .scroll {
    height: 280px;
  }
}

@media (min-width: 1460px) {
  .pop2 .scroll {
    height: 400px;
  }
}

.pop2 .content {
  padding-bottom: 20px;
}

@media (min-width: 1024px) {
  .pop2 .content {
    max-height: 430px;
    float: right;
    width: 370px;
  }
}

@media (min-width: 1460px) {
  .pop2 .content {
    max-height: 430px;
    float: right;
    width: 480px;
  }
}

.pop h1, .pop2 h1 {
  color: #642107;
  font-size: 24px;
  margin: 50px 0 0 0;
}

@media (min-width: 1024px) {
  .pop h1, .pop2 h1 {
    margin: 35px 0 0 0;
    font-size: 36px;
  }
}

@media (min-width: 1460px) {
  .pop h1, .pop2 h1 {
    margin: 50px 150px 0 0;
    font-size: 36px;
  }
}

.pop2 h1 {
  margin: 25px 0 0 0;
}

.pop ul, .pop2 ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
  display: block;
  position: relative;
}

.pop ul li {
  display: inline-block;
  float: left;
  height: 80px;
  color: #642107;
  width: 90%;
  line-height: 94px;
  position: relative;
}

@media (min-width: 1024px) {
  .pop ul li {
    height: 90px;
    width: 45%;
    margin-top: 5px;
  }
}

@media (min-width: 1460px) {
  .pop ul li {
    height: 100px;
  }
}

.pop ul li .txt {
  position: absolute;
  left: 100px;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}

.pop ul li .txt i {
  display: inline-block;
  vertical-align: middle;
  font-style: normal;
  line-height: normal;
  width: 100%;
  transform: translateY(-5px);
}

.pop .quote {
  width: 50px;
  height: 50px;
  border-radius: 25px;
  background: #642107;
  text-align: center;
  line-height: 50px;
  position: absolute;
  top: 35px;
  left: 180px;
  box-shadow: 0px 0px 12px 2px rgba(0, 0, 0, 0.75);
  transform: scale3D(0, 0, 1);
  font-size: 26px;
  cursor: pointer;
}

.pop ul img {
  max-height: 90%;
  border-radius: 5px;
  float: left;
}

@media (min-width: 1024px) {
  .pop.wide ul li {
    width: 50%;
  }
}

@media (min-width: 1460px) {
  .pop.wide ul li {
    width: 50%;
  }
}

.nobg {
  background: none;
}

.vid {
  width: 100%;
  height: auto;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  margin: -35px -40px 0 0;
  cursor: pointer;
}

.pop .bigleaf {
  position: absolute;
  width: 380px;
  height: 369px;
  margin: -120px 0 0 -120px;
  left: 0;
  top: 0;
  opacity: 0;
  transform: scale3d(1, 1, 1);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .pop .bigleaf {
    width: 500px;
    height: 486px;
    margin: -150px 0 0 -200px;
  }
}

#quote {
  font-family: 'Gill Sans Semi';
  color: #642107;
  font-size: 18px;
  display: block;
  margin: 0 20px;
  font-style: italic;
}

@media (min-width: 1024px) {
  #quote {
    font-size: 22px;
    margin: 30px 20px 0 20px;
  }
}

@media (min-width: 1460px) {
  #quote {
    font-size: 28px;
    margin: 40px 20px 0 20px;
  }
}

#quote strong {
  font-weight: 600;
  color: #000;
  text-align: right;
  display: block;
  width: 60%;
  padding-left: 40%;
  margin-top: 5px;
  font-size: 14px;
}

@media (min-width: 1024px) {
  #quote strong {
    font-size: 20px;
  }
}

@media (min-width: 1460px) {
  #quote strong {
    font-size: 24px;
  }
}

#imgMenu {
  padding: 0;
  margin: 0;
}

@media (min-width: 1024px) {
  #imgMenu {
    position: absolute;
    bottom: 40px;
    right: 80px;
    width: 320px;
  }
}

@media (min-width: 1460px) {
  #imgMenu {
    position: absolute;
    bottom: 90px;
    right: 0;
    width: 510px;
  }
}

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto;
}

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0.4;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-y {
  /* display: none; */
  opacity: 0.4;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute;
}

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
  background-color: #eee;
  opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
  background-color: #999;
  height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #999;
  width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important;
  }
}

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