/* 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,
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;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/*
body {
	line-height: 1;
}
*/
blockquote, q {
  quotes: none;
}

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

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

html {
  box-sizing: border-box;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 16px 10px;
  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: 1;
}
.hamburger.is-active:hover {
  opacity: 1;
}
.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

.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 !important;
  transform: rotateY(180deg);
}
.hamburger--3dx.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DX Reverse
 */
.hamburger--3dx-r .hamburger-box {
  perspective: 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 !important;
  transform: rotateY(-180deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dx-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY
 */
.hamburger--3dy .hamburger-box {
  perspective: 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 !important;
  transform: rotateX(-180deg);
}
.hamburger--3dy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DY Reverse
 */
.hamburger--3dy-r .hamburger-box {
  perspective: 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 !important;
  transform: rotateX(180deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY
 */
.hamburger--3dxy .hamburger-box {
  perspective: 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 !important;
  transform: rotateX(180deg) rotateY(180deg);
}
.hamburger--3dxy.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * 3DXY Reverse
 */
.hamburger--3dxy-r .hamburger-box {
  perspective: 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 !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::before {
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--3dxy-r.is-active .hamburger-inner::after {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

/*
 * Arrow
 */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-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 !important;
}
.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 !important;
}
.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 !important;
}
.hamburger--spring.is-active .hamburger-inner::before {
  top: 0;
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}
.hamburger--spring.is-active .hamburger-inner::after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

/*
 * Spring Reverse
 */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r .hamburger-inner::after {
  top: -20px;
  transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear;
}
.hamburger--spring-r .hamburger-inner::before {
  transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spring-r.is-active .hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear;
}
.hamburger--spring-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand
 */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Stand Reverse
 */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear;
}
.hamburger--stand-r .hamburger-inner::before {
  transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r .hamburger-inner::after {
  transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear;
}
.hamburger--stand-r.is-active .hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--stand-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Squeeze
 */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/*
 * Vortex
 */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
}

/*
 * Vortex Reverse
 */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
  transition-duration: 0s;
  transition-delay: 0.1s;
  transition-timing-function: linear;
}
.hamburger--vortex-r .hamburger-inner::before {
  transition-property: top, opacity;
}
.hamburger--vortex-r .hamburger-inner::after {
  transition-property: bottom, transform;
}
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
  transition-delay: 0s;
}
.hamburger--vortex-r.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
}
.hamburger--vortex-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

html, body {
  font-family: "Work Sans", sans-serif;
  width: 100%;
  height: 100%;
  color: #000;
  line-height: 1.2em;
}
@media (min-width: 1300px) {
  html, body {
    font-size: 100%;
  }
}

body {
  overflow-y: scroll;
}

strong {
  font-weight: 500;
}

em {
  font-style: italic;
}

.black-bg {
  background-color: #000;
  color: #fff;
}

.teal-bg {
  background-color: #0dcec8;
}

.blue-bg {
  background-color: #0dcec8;
}

.rust-bg {
  background-color: #ea5e35;
}

.butter-bg {
  background-color: #f9cd16;
}

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

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

hr {
  height: 1px;
  border: none;
  border-bottom: 1px solid #000;
}

.clear {
  clear: both;
}

.logo {
  width: 92px;
}
@media (min-width: 840px) {
  .logo {
    width: 123px;
  }
}
@media (min-width: 1300px) {
  .logo {
    width: 183.5px;
  }
}

#hamburger--strip {
  width: 100%;
  position: fixed;
  background: #000;
  top: 0;
  left: 0;
  height: 57px;
}
@media (min-width: 840px) {
  #hamburger--strip {
    display: none;
  }
}

.hamburger {
  display: block;
  /*
  position: absolute;
  top: 13px;
  right: 16px;
  */
  padding: 16px 16px 13px 16px;
  float: right;
  /*
  &.dark{
  	.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after, .hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after{
  	background-color: #fff;
  	}
  }
  */
}
@media (min-width: 840px) {
  .hamburger {
    display: none;
  }
}
.hamburger .hamburger-inner, .hamburger .hamburger-inner::before, .hamburger .hamburger-inner::after, .hamburger .hamburger.is-active .hamburger-inner, .hamburger .hamburger.is-active .hamburger-inner::before, .hamburger .hamburger.is-active .hamburger-inner::after {
  background-color: #fff;
}

@media (min-width: 840px) {
  #mobile--menu {
    display: none;
  }
}
#mobile--menu #mobile--menu-panel {
  padding-top: 60px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  color: #fff;
}
#mobile--menu #mobile--menu-panel .menu {
  text-align: center;
}
#mobile--menu #mobile--menu-panel .menu a {
  color: #fff;
  font-size: 1.4em;
  display: block;
  margin-bottom: 0.6em;
}
#mobile--menu #mobile--menu-panel .menu .mobile--menu2 {
  margin-bottom: 0.7em;
}
#mobile--menu #mobile--menu-panel .menu .mobile--menu2 a {
  font-size: 1.1rem;
  margin-bottom: 0.4em;
}

#header {
  padding: 20px;
  position: absolute;
  top: 57px;
  width: 100%;
  /*
  &:after{
  	content: '';
  	width: 123px;
  	@include breakpoint('tablet'){
  		width: 183.5px;

  	}
  }
  */
}
@media (min-width: 840px) {
  #header {
    top: 0;
    padding: 50px;
    display: flex;
    justify-content: space-between;
  }
}
#header .logo {
  display: block;
}
#header .menu-slot {
  display: inline-block;
  position: relative;
}
#header #menu1 {
  position: relative;
  z-index: 99;
}
#header .menu {
  display: none;
  padding: 0 10px 0 10px;
}
@media (min-width: 840px) {
  #header .menu {
    display: block;
  }
}
@media (min-width: 940px) {
  #header .menu {
    padding: 0 20px 0 20px;
  }
}
#header .menu a {
  padding: 6px 10px 8px 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.3em;
  display: inline-block;
  color: #000;
  margin-bottom: 10px;
  -webkit-transition: background-color 500ms ease;
  -moz-transition: background-color 500ms ease;
  -ms-transition: background-color 500ms ease;
  -o-transition: background-color 500ms ease;
  transition: background-color 500ms ease;
}
#header .menu a:hover {
  text-decoration: underline;
}
#header .menu a.here {
  text-decoration: underline;
}
#header .menu a.join {
  margin-left: 10px;
  background-color: #0dcec8;
  color: #000;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  border-radius: 10px !important;
}
#header .menu a.join:hover {
  color: #000;
  background-color: #00b5af;
}
#header .menu2 {
  display: none;
  position: absolute;
  width: 200px;
}
#header .menu2 a {
  display: block;
  font-size: 1.1em;
  line-height: 1.1em;
  margin-bottom: 4px;
}
#header .menu-slot:hover .menu2 {
  display: block;
}
#header.light .menu a {
  color: #fff;
}
#header.light .menu a:hover {
  text-decoration: underline;
}
#header.light .menu a.here {
  text-decoration: underline;
}
#header.light .menu a.join {
  margin-left: 10px;
  background-color: #fff;
  color: #000;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  border-radius: 10px !important;
}
#header.light .menu a.join:hover {
  color: #000;
  background-color: #fff;
}

#footer {
  background-color: #000;
  padding: 30px;
}
#footer a {
  color: #fff;
}
@media (min-width: 840px) {
  #footer {
    padding: 50px;
  }
}
@media (min-width: 840px) {
  #footer .footer--col {
    float: right;
    text-align: right;
  }
}
#footer .social--links {
  margin-top: 20px;
  margin-left: -5px;
}
@media (min-width: 840px) {
  #footer .social--links {
    margin-left: 0;
  }
}
#footer .social--links a img {
  width: 25px;
  margin: 0 5px;
  margin-bottom: 5px;
}
@media (min-width: 840px) {
  #footer .social--links a img {
    width: 30px;
    margin: 0 10px;
  }
  #footer .social--links a:last-child img {
    margin-right: 0;
  }
}
#footer .strapline {
  display: block;
  margin-top: 10px;
  color: #fff;
}

#lang--switcher {
  display: none;
}
@media (min-width: 840px) {
  #lang--switcher {
    display: block;
    z-index: 100;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer !important;
  }
  #lang--switcher img {
    width: 40px;
    cursor: pointer !important;
  }
  #lang--switcher #current--lang {
    position: absolute;
    top: 0;
    right: 0;
  }
  #lang--switcher #switch--panel {
    display: none;
    border: 1px solid #ccc;
    padding: 20px;
    padding-top: 40px;
    cursor: pointer !important;
    background: #fff;
  }
  #lang--switcher #switch--panel a {
    text-decoration: none;
    display: flex;
    align-items: center;
    margin-top: 10px;
  }
  #lang--switcher #switch--panel img {
    margin-right: 10px;
  }
  #lang--switcher:hover #switch--panel {
    display: block;
  }
}

#content {
  padding-top: 220px;
}
#content.overlap {
  padding-top: 57px;
}
@media (min-width: 840px) {
  #content.overlap {
    padding-top: 0;
  }
}

.content--blocks {
  font-size: 0.8em;
}
@media (min-width: 840px) {
  .content--blocks {
    font-size: 1em;
  }
}

a.cta--btn {
  display: inline-block;
  padding: 16px 19px;
  font-size: 1.4em;
  font-weight: 600;
  background: #fff;
  color: #000;
  text-decoration: none;
  margin-top: 2em;
  box-shadow: 0px 7px 16px 1px rgba(0, 0, 0, 0.15);
  -webkit-box-shadow: 0px 7px 16px 1px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 7px 16px 1px rgba(0, 0, 0, 0.15);
}

.block {
  text-align: center;
  margin: 70px auto 0 auto;
}
@media (min-width: 840px) {
  .block {
    margin: 120px auto 0 auto;
  }
}
.block h2 {
  margin: auto;
  font-weight: 600;
  font-size: 2.1em;
  line-height: 1.3em;
  margin-bottom: 0.8em;
}
.block h2.light {
  color: #fff;
}
.block hr {
  margin: auto;
  width: 240px;
  border-bottom-width: 8px;
}
.block hr.teal {
  border-color: #0dcec8;
}
.block hr.rust {
  border-color: #ea5e35;
}
.block hr.butter {
  border-color: #f9cd16;
}
.block .panel--backwash {
  padding: 10vw 0 10vw 0;
}
.block .panel {
  margin: auto;
}
.block .panel hr {
  border-bottom-width: 8px;
  border-color: #fff;
  margin: auto;
  margin-bottom: 2em;
}
.block .panel h3 {
  margin: auto;
  font-weight: 600;
  font-size: 1.7em;
  line-height: 1.3em;
  margin-bottom: 1em;
  width: 80%;
}
.block .panel p {
  margin: auto;
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1.3em;
  width: 80%;
}
.block:last-child {
  margin-bottom: 70px;
}
@media (min-width: 840px) {
  .block:last-child {
    margin-bottom: 150px;
  }
}
.block.hero:first-child {
  margin-top: 0 !important;
}
.block.hero h2 {
  margin-top: 30px !important;
}
@media (min-width: 840px) {
  .block.hero h2 {
    margin-top: 0 !important;
  }
}
.block.hero .hero--backwash {
  padding: 20vw 0 20vw 0;
  padding-top: calc(20vw + 40px);
}
.block.image img, .block.image p {
  margin: auto;
  width: 80%;
  max-width: 840px;
}
.block.image img.largePageImage, .block.image p.largePageImage {
  width: 90%;
  max-width: 1200px;
}
.block.image img.smallPageImage, .block.image p.smallPageImage {
  width: 60%;
  max-width: 640px;
}
.block.image p {
  font-size: 1em;
  margin-top: 0.8em;
}
.block.heading:first-child {
  margin-top: 0 !important;
}
.block.heading h2, .block.hero h2 {
  width: 80%;
}
@media (min-width: 600px) {
  .block.heading h2, .block.hero h2 {
    width: 60%;
  }
}
@media (min-width: 840px) {
  .block.heading h2, .block.hero h2 {
    width: 40%;
  }
}
.block.strip .strip--panel {
  padding: 16px;
}
.block.strip h3 {
  display: inline;
  margin-right: 23px;
  margin-top: 10px;
  position: relative;
  top: 2px;
}
.block.strip a.cta--btn {
  margin-top: 10px;
  margin-bottom: 10px;
  padding: 10px 14px;
}
.block.strip:last-child {
  margin-bottom: 0 !important;
}
.block.social .social--panel {
  width: 80%;
  max-width: 800px;
  padding: 2em 1em;
}
@media (min-width: 600px) {
  .block.social .social--panel {
    width: 70%;
  }
}
@media (min-width: 840px) {
  .block.social .social--panel {
    width: 60%;
    padding: 3em 2em;
  }
}
.block.social .social--panel .social--links {
  margin-top: 10px;
}
.block.social .social--panel .social--links a {
  display: inline-block;
  margin-bottom: 10px;
}
.block.social .social--panel .social--links img {
  width: 43px;
  margin: 0 10px;
}
.block.imageGallery .galleryImages {
  width: 90%;
  max-width: 1000px;
  margin: auto;
}
.block.imageGallery .galleryImages .galleryImage {
  width: 100%;
  margin-bottom: 20px;
}
.block.imageGallery .galleryImages .galleryImage img {
  width: 100%;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .block.imageGallery .galleryImages {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .block.imageGallery .galleryImages .galleryImage {
    width: 46%;
    padding: 5px;
  }
}
@media (min-width: 840px) {
  .block.imageGallery .galleryImages .galleryImage {
    width: 33.3%;
    padding: 5px;
  }
}
.block.powerOfThree .power--panels {
  width: 90%;
  max-width: 800px;
  margin: auto;
}
@media (min-width: 840px) {
  .block.powerOfThree .power--panels {
    display: flex;
    justify-content: space-between;
  }
}
.block.powerOfThree .power--panels .power--panel {
  margin: auto;
  margin-bottom: 10px;
  padding: 5% 3% 3% 3%;
  width: 32.5%;
  background-color: #f2f2f2;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 840px) {
  .block.powerOfThree .power--panels .power--panel {
    margin: initial;
    margin-bottom: 0;
    width: 32.5%;
  }
}
.block.powerOfThree .power--panels .power--panel h3 {
  font-weight: 600;
  font-size: 1.7em;
  line-height: 1.3em;
}
.block.powerOfThree .power--panels .power--panel p {
  margin-top: 1em;
  font-weight: 500;
  font-size: 1em;
  line-height: 1.3em;
}
.block.powerOfThree .power--panels .power--panel ul {
  list-style-type: disc;
  margin: 1em 2.5em 0 2.5em;
}
@media (min-width: 840px) {
  .block.powerOfThree .power--panels .power--panel ul {
    margin: 1em 1.5em 0 1.5em;
  }
}
.block.powerOfThree .power--panels .power--panel ul li {
  font-weight: 500;
  font-size: 1.1em;
  line-height: 1.3em;
  margin: 0.3em 0;
  text-align: left;
}
.block.powerOfThree .power--panels .power--panel:nth-child(1) {
  background-color: #dbdbdb;
}
.block.powerOfThree .power--panels .power--panel:nth-child(2) {
  background-color: #eaeaea;
}
.block.feature .feature--panel {
  width: 80%;
  max-width: 800px;
  padding: 2em 1em 3em 1em;
}
@media (min-width: 600px) {
  .block.feature .feature--panel {
    width: 70%;
  }
}
@media (min-width: 840px) {
  .block.feature .feature--panel {
    width: 60%;
    padding: 3em 2em 4em 2em;
  }
}
.block.featurette .featurette--panel {
  width: 80%;
  max-width: 800px;
  padding: 2em 1em;
}
@media (min-width: 600px) {
  .block.featurette .featurette--panel {
    width: 70%;
  }
}
@media (min-width: 840px) {
  .block.featurette .featurette--panel {
    width: 60%;
    padding: 3em 2em;
  }
}
.block.featurette .featurette--panel a.cta--btn {
  margin-top: 0;
}
.block.choice.light h2 {
  color: #fff;
}
.block.choice .choice--panels {
  width: 80%;
  max-width: 800px;
  margin: auto;
  margin-top: 2em;
}
@media (min-width: 840px) {
  .block.choice .choice--panels {
    display: flex;
    justify-content: space-between;
  }
}
.block.choice .choice--panels .choice--panel {
  padding: 2em 1em;
  margin-bottom: 10px;
}
.block.choice .choice--panels .choice--panel hr {
  width: 80%;
}
@media (min-width: 840px) {
  .block.choice .choice--panels .choice--panel {
    padding: 3em 2em;
    width: 49%;
    margin-bottom: 0;
  }
}
.block.subHeading {
  font-weight: 500;
  font-size: 1.7em;
  line-height: 1.3em;
  width: 80%;
}
@media (min-width: 600px) {
  .block.subHeading {
    width: 60%;
  }
}
@media (min-width: 840px) {
  .block.subHeading {
    width: 40%;
  }
}
.block.text {
  font-size: 1.1em;
  line-height: 1.3em;
  width: 90%;
}
.block.text p {
  margin-bottom: 1em;
}
@media (min-width: 600px) {
  .block.text {
    width: 70%;
  }
}
@media (min-width: 840px) {
  .block.text {
    width: 50%;
  }
}
.block.text a {
  color: #000;
}
.block.links {
  margin-top: 6em;
}
.block.youtubeVideo iframe {
  width: 320px;
  height: 180px;
}
@media (min-width: 600px) {
  .block.youtubeVideo iframe {
    width: 480px;
    height: 270px;
  }
}
@media (min-width: 840px) {
  .block.youtubeVideo iframe {
    width: 640px;
    height: 360px;
  }
}
.block.youtubeVideo .content--caption {
  font-size: 1em;
  line-height: 1.3em;
  margin: auto;
  margin-top: 0.8em;
  width: 70%;
}
@media (min-width: 600px) {
  .block.youtubeVideo .content--caption {
    width: 60%;
  }
}
@media (min-width: 840px) {
  .block.youtubeVideo .content--caption {
    width: 50%;
  }
}
.block.form .heading {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
  margin-top: 1em;
}
.block.form label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 25px;
  display: block;
}
.block.form h3 {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 20px;
  display: block;
  margin-top: 1em;
}
.block.form legend {
  margin-bottom: 1em;
}
.block.form .instructions {
  font-size: 1.1rem;
  line-height: 1.3em;
  width: 50%;
  margin: auto;
}
.block.form a {
  color: #0dcec8;
}
.block.form input[type=radio] {
  margin-right: 10px;
}
.block.form input[type=text], .block.form input[type=email], .block.form input[type=url], .block.form textarea {
  font-size: 1.4em;
  font-family: "Work Sans", sans-serif;
  padding: 10px;
  border: none;
  background-color: #f2f2f2;
  margin-bottom: 20px;
  width: 90%;
  max-width: 600px;
}
.block.form button[type=submit] {
  border: none;
  display: inline-block;
  padding: 16px 19px;
  font-size: 1.4em;
  font-weight: 600;
  background: #0dcec8;
  color: #fff;
  text-decoration: none;
  margin-top: 20px;
  cursor: pointer;
}
.block.form select {
  font-size: 1.1em;
  margin: 1em;
  padding: 0.3em;
}

.button {
  margin-top: 0 !important;
}

.heading + .subHeading {
  margin-top: 30px;
}
@media (min-width: 840px) {
  .heading + .subHeading {
    margin-top: 40px;
  }
}

.youtubeVideo + .text,
.image + .text,
.heading + .youtubeVideo,
.heading + .text,
.heading + .powerOfThree,
.heading + .form,
.subHeading + .powerOfThree,
.text + .powerOfThree {
  margin-top: 40px;
}
@media (min-width: 840px) {
  .youtubeVideo + .text,
.image + .text,
.heading + .youtubeVideo,
.heading + .text,
.heading + .powerOfThree,
.heading + .form,
.subHeading + .powerOfThree,
.text + .powerOfThree {
    margin-top: 60px;
  }
}

.subHeading + .text {
  margin-top: 30px;
}
@media (min-width: 840px) {
  .subHeading + .text {
    margin-top: 40px;
  }
}

.link--teasers {
  width: 80%;
  margin: auto;
  max-width: 480px;
  text-align: left;
}
@media (min-width: 600px) {
  .link--teasers {
    max-width: 588px;
    width: 80%;
  }
}
@media (min-width: 840px) {
  .link--teasers {
    width: 70%;
    max-width: 1000px;
  }
}
.link--teasers.resources {
  max-width: 100% !important;
  width: 100% !important;
}
.link--teasers .link--teaser {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 840px) {
  .link--teasers .link--teaser {
    margin-bottom: 40px;
  }
}
.link--teasers .link--teaser h3 {
  font-weight: 600;
  font-size: 1.7em;
  line-height: 1.3em;
  margin-bottom: 0.1em;
}
.link--teasers .link--teaser h4 {
  font-weight: 600;
  font-size: 1.4em;
  line-height: 1.3em;
  margin-bottom: 0.1em;
}
.link--teasers .link--teaser p {
  margin-top: 0.4em;
  font-size: 1.1em;
  line-height: 1.3em;
}
.link--teasers .link--teaser .link--thumbnail {
  display: block;
  position: relative;
  text-decoration: none;
}
.link--teasers .link--teaser .link--thumbnail .link--number {
  position: absolute;
  top: -25px;
  left: -25px;
  width: 50px;
  height: 50px;
  padding-top: 15px;
  color: #fff;
  font-size: 1.7em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
.link--teasers .link--teaser .teaser--btn {
  font-weight: 600;
  font-size: 1.4em;
  padding: 10px 20px 13px 20px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  margin-top: 22px;
  -webkit-transition: background 200ms ease;
  -moz-transition: background 200ms ease;
  -ms-transition: background 200ms ease;
  -o-transition: background 200ms ease;
  transition: background 200ms ease;
}
.link--teasers .link--teaser .teaser--btn.teal {
  background-color: #0dcec8;
}
.link--teasers .link--teaser .teaser--btn.teal:hover {
  background-color: #00b5af;
}
.link--teasers .link--teaser .teaser--btn.rust {
  background-color: #ea5e35;
}
.link--teasers .link--teaser .teaser--btn.rust:hover {
  background-color: #d74c23;
}
.link--teasers .link--teaser .teaser--btn.butter {
  background-color: #f9cd16;
}
.link--teasers .link--teaser .teaser--btn.butter:hover {
  background-color: #fab010;
}

@media (min-width: 600px) {
  .link--teasers.columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
.link--teasers.columns .link--teaser {
  padding: 12px;
}
.link--teasers.columns .link--teaser img {
  width: 100%;
  margin-bottom: 2em;
}
@media (min-width: 600px) {
  .link--teasers.columns .link--teaser {
    width: 50%;
  }
}
@media (min-width: 840px) {
  .link--teasers.columns .link--teaser {
    width: 33.3%;
  }
}

.link--teasers.rows .link--teaser {
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .link--teasers.rows .link--teaser {
    display: flex;
  }
}
.link--teasers.rows .link--teaser .link--thumbnail {
  width: 100%;
}
@media (min-width: 600px) {
  .link--teasers.rows .link--teaser .link--thumbnail {
    width: 35%;
  }
}
.link--teasers.rows .link--teaser .link--thumbnail img {
  width: 100%;
  max-width: 300px;
}
.link--teasers.rows .link--teaser .link--details {
  margin-top: 20px;
}
@media (min-width: 600px) {
  .link--teasers.rows .link--teaser .link--details {
    margin-top: 0;
    padding-left: 4%;
    width: 65%;
  }
}

.logos {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 40px auto;
  justify-content: space-evenly;
}
@media (min-width: 600px) {
  .logos {
    width: 90%;
  }
}
@media (min-width: 840px) {
  .logos {
    width: 80%;
  }
}
.logos .block-logo {
  width: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logos .block-logo img {
  width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 600px) {
  .logos .block-logo {
    width: 30%;
  }
}
@media (min-width: 840px) {
  .logos .block-logo {
    width: 22%;
  }
}

.content--holder {
  padding: 0 48px;
}

.two--cols {
  display: flex;
  flex-direction: column-reverse;
  margin: auto;
  width: 100%;
}
@media (min-width: 840px) {
  .two--cols {
    flex-direction: row;
  }
}

.sidebar {
  width: 100%;
  min-width: 200px;
  padding-top: 10px;
}
@media (min-width: 840px) {
  .sidebar {
    width: 20%;
  }
}
.sidebar h2 {
  font-size: 1.6em;
  font-weight: 600;
  margin-bottom: 1em;
  line-height: 1.1em;
}
.sidebar .sidebar--block {
  padding: 20px;
  background: #0dcec8;
  color: #fff;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 840px) {
  .sidebar .sidebar--block {
    width: 90%;
  }
}
.sidebar .sidebar--block h3 {
  font-weight: 500;
  font-size: 1.4em;
  line-height: 1.15em;
  text-align: center;
}
.sidebar .sidebar--block .cta--btn {
  width: 100%;
  margin-top: 1em;
  text-align: center;
}
.sidebar .sidebar--teasers {
  margin-bottom: 3em;
}
.sidebar .sidebar--cat {
  margin-bottom: 1em;
}
.sidebar .sidebar--cat a {
  font-size: 1.3em;
  color: #333;
}
.sidebar .sidebar--cat a:hover {
  color: #000;
}
.sidebar .sidebar--teaser {
  margin-bottom: 2em;
}
.sidebar .sidebar--teaser .link--details h3 {
  font-size: 1.3em;
  line-height: 1.15em;
  font-weight: 500;
  margin-bottom: 0.2em;
}
.sidebar .sidebar--teaser .link--details h4 {
  font-size: 1.1em;
  font-weight: 500;
  margin-bottom: 0.3em;
}
.sidebar .sidebar--teaser .teaser--btn {
  font-weight: 600;
  font-size: 1.1em;
  padding: 6px 10px 6px 10px;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  margin-top: 12px;
  -webkit-transition: background 200ms ease;
  -moz-transition: background 200ms ease;
  -ms-transition: background 200ms ease;
  -o-transition: background 200ms ease;
  transition: background 200ms ease;
}
.sidebar .sidebar--teaser .teaser--btn.teal {
  background-color: #0dcec8;
}
.sidebar .sidebar--teaser .teaser--btn.teal:hover {
  background-color: #00b5af;
}

.dense--pane {
  width: 100%;
  max-width: 860px;
}
@media (min-width: 840px) {
  .dense--pane {
    padding-left: 40px;
  }
}
.dense--pane h1 {
  font-size: 2em;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 0.2em;
}
.dense--pane h3 {
  font-size: 1.4em;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 0.5em;
  margin-top: 1em;
}
.dense--pane ul {
  list-style-type: disc;
  margin-bottom: 1em;
  padding-left: 1.1em;
}
.dense--pane li + li {
  margin-top: 0.2em;
}
.dense--pane a {
  color: #333;
}
.dense--pane a:hover {
  color: #000;
}
.dense--pane .content--blocks {
  padding-bottom: 60px;
}
.dense--pane .content--blocks .block {
  width: 100%;
  text-align: left;
  margin: 30px 0 0 0;
}
@media (min-width: 840px) {
  .dense--pane .content--blocks .block {
    margin: 40px 0 0 0;
  }
}
.dense--pane .content--blocks .text {
  width: 100%;
  text-align: left;
}
.dense--pane .content--blocks .block.subHeading h3 {
  font-size: 1.2em;
}
.dense--pane .content--blocks .block.subHeading + .block.text {
  margin-top: 10px;
}
.dense--pane .content--blocks .block.heading + .block.text {
  margin-top: 20px;
}
.dense--pane .content--blocks .image img {
  width: 100%;
  max-width: 600px;
}
.dense--pane .content--blocks .image img.largePageImage {
  max-width: 820px;
}
.dense--pane .content--blocks .image img.smallPageImage {
  max-width: 400px;
}
@media (min-width: 840px) {
  .dense--pane .content--blocks .image img.smallPageImage {
    width: 60%;
  }
}
.dense--pane .content--blocks .heading h2 {
  width: 100%;
}
.dense--pane .content--blocks .heading hr {
  display: none;
}
.dense--pane .content--blocks .link--teasers {
  width: 100%;
}
.dense--pane .content--blocks .link--teasers .link--teaser {
  padding: 0;
  margin-bottom: 60px;
}
.dense--pane .content--blocks .link--teasers h3 {
  margin-top: 0;
  line-height: 1.15em;
}

a.cta {
  display: inline-block;
  text-decoration: none;
  background-color: #000;
  color: #fff;
  padding: 10px 47px 12px 18px;
  font-weight: 600;
  font-size: 1.1em;
  background-image: url(/img/cta-arw.png);
  background-repeat: no-repeat;
  background-position: center right 15px;
  -webkit-border-radius: 25px !important;
  -moz-border-radius: 25px !important;
  border-radius: 25px !important;
}

.hero.light {
  color: #fff !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.hero.light .cta {
  background-color: #fff;
  color: #333;
  padding-right: 18px;
}
.hero .cta {
  margin-top: 40px;
}
.hero:first-child {
  margin-top: 0 !important;
}
.hero h2 {
  margin-top: 30px !important;
}
@media (min-width: 840px) {
  .hero h2 {
    margin-top: 0 !important;
  }
}
.hero h2 {
  font-weight: 600;
  font-size: 1.8em;
  line-height: 1.2em;
  margin-bottom: 0.8em;
}
@media (min-width: 840px) {
  .hero h2 {
    width: 50%;
    max-width: 800px;
    font-size: 2.1em;
  }
}
.hero .subHeading {
  font-size: 1.2em;
  line-height: 1.2em;
}
@media (min-width: 840px) {
  .hero .subHeading {
    width: 50%;
    max-width: 700px;
  }
}
.hero .hero--backwash {
  /*
  padding: 20vw 0 20vw 0;
  padding-top:calc(20vw + 40px);
  */
  height: 50vh;
  min-height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 840px) {
  .hero .hero--backwash {
    height: 100vh;
    min-height: 580px;
  }
}
.hero .hero--sub {
  width: 80%;
  text-align: left;
}
@media (min-width: 840px) {
  .hero .hero--sub {
    max-width: 1000px;
  }
}

.hero.bleed-contain .hero--backwash {
  height: 40vh;
  margin-bottom: -80px;
}
@media (min-width: 840px) {
  .hero.bleed-contain .hero--backwash {
    margin-top: 80px;
    height: 50vh;
    min-height: 300px;
  }
}

.hero.custom-customLayout1 .hero--backwash {
  justify-content: flex-end;
}
.hero.custom-customLayout1 .hero--sub {
  width: 80%;
  text-align: left;
}
@media (min-width: 840px) {
  .hero.custom-customLayout1 .hero--sub {
    width: 40%;
  }
}
@media (min-width: 840px) {
  .hero.custom-customLayout1 h2 {
    width: 70%;
  }
}
@media (min-width: 840px) {
  .hero.custom-customLayout1 .subHeading {
    width: 70%;
  }
}

.content--blocks-v2 .subHeading + .text {
  margin-top: 0 !important;
}

.section {
  padding: 70px 0;
}
@media (min-width: 840px) {
  .section {
    padding: 120px 0;
  }
}
.section.slim {
  padding: 30px 0;
  background: #f2f2f2;
}
@media (min-width: 840px) {
  .section.slim {
    padding: 60px 0;
  }
}
.section.noPadding {
  padding-top: 0 !important;
}
.section.noPadding + .bioblocks-v2 {
  margin-top: 40px;
}
.section.noBottomPadding {
  padding-bottom: 0 !important;
}
.section .section--sub {
  width: 80%;
  text-align: left;
  margin: auto;
}
@media (min-width: 840px) {
  .section .section--sub {
    margin: auto;
    max-width: 1000px;
  }
}
.section.black {
  background: #000;
  color: #fff;
}
.section.black a {
  color: #fff;
}
.section.black a.cta {
  background-color: #0dcec8;
}
.section.black .text a {
  color: #fff;
}
.section.yellow {
  background: #f9cd16;
  color: #000;
}
.section.yellow a.cta {
  background-color: #000;
}
.section.blue {
  background-color: #0dcec8;
  color: #fff;
}
.section.blue a.cta {
  background-color: #000;
}
.section.blue .text a {
  color: #fff;
}

.no-overlap .section.white:first-child {
  padding: 40px 0 !important;
}
@media (min-width: 840px) {
  .no-overlap .section.white:first-child {
    padding: 60px 0 !important;
  }
}

.blue-bg a.cta {
  background-color: #000;
}

.black-bg a.cta {
  background-color: #0dcec8;
}

.v2block.form {
  margin-bottom: 80px;
  margin-top: 60px;
}
.v2block h2 {
  font-weight: 600;
  font-size: 1.8em;
  line-height: 1.2em;
  margin-bottom: 0.8em;
}
@media (min-width: 840px) {
  .v2block h2 {
    width: 80%;
    font-size: 2.1em;
  }
}
.v2block h3 {
  font-weight: 600;
  font-size: 1.4em;
  line-height: 1.3em;
  margin-bottom: 0.8em;
}
@media (min-width: 840px) {
  .v2block h3 {
    width: 80%;
    font-size: 1.5em;
  }
}
.v2block.text p {
  font-size: 1.1em;
  line-height: 1.3em;
  margin-bottom: 0.8em;
}
.v2block.text a {
  color: #000;
}
.v2block.text ul {
  list-style: disc;
  margin-bottom: 1.2em;
}
.v2block.text ul li {
  font-size: 1.1em;
  margin-bottom: 0.6em;
  margin-left: 2em;
}
.v2block.image {
  margin-bottom: 30px;
}
.v2block.image .small img {
  width: 100%;
  max-width: 480px !important;
}
.v2block.image .big img {
  width: 100%;
  max-width: 1000px !important;
}
.v2block + .v2block {
  margin-top: 60px;
}
.v2block.text + .subHeading {
  margin-top: 30px;
}
.v2block.heading + .subHeading {
  margin-top: 30px;
}
.v2block.sectionBlock + .v2block {
  margin-top: 0;
}

.heading + .link--teasers {
  margin-top: 40px;
}

.link--details a.cta {
  margin-top: 20px;
}

.callToActionButton {
  margin-top: 30px;
  margin-bottom: 30px;
}

.socials--block {
  padding: 40px;
  margin-bottom: 90px;
}
.socials--block.alt {
  padding: 0;
}
.socials--block.alt {
  margin-bottom: 0;
}
@media (min-width: 840px) {
  .socials--block {
    display: flex;
    justify-content: space-between;
  }
}
.socials--block .col1 {
  flex-grow: 1;
  margin-bottom: 30px;
}
@media (min-width: 840px) {
  .socials--block .col1 {
    margin-bottom: 0;
  }
}
.socials--block .social--image {
  width: 211px;
}
.socials--block .social--icons {
  display: flex;
}
.socials--block a {
  width: 50px;
  display: block;
  margin-right: 20px;
}
.socials--block a img {
  width: 100%;
}

.gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.gallery .gallery--image {
  width: 30%;
}
.gallery .gallery--image img {
  width: 100%;
}
.gallery .image--caption {
  padding: 10px 0 20px 0;
}

.video {
  margin-top: 40px;
  margin-bottom: 40px;
}
.video iframe {
  width: 320px;
  height: 180px;
}
@media (min-width: 600px) {
  .video iframe {
    width: 480px;
    height: 270px;
  }
}
@media (min-width: 840px) {
  .video iframe {
    width: 640px;
    height: 360px;
  }
}
.video .content--caption {
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.3em;
  margin: auto;
  margin-top: 2em;
  width: 70%;
}
@media (min-width: 600px) {
  .video .content--caption {
    width: 60%;
  }
}
@media (min-width: 840px) {
  .video .content--caption {
    width: 50%;
  }
}

.textAndImage .textAndImage-text h3 {
  font-size: 1.9em;
  width: 100%;
}
.textAndImage .textAndImage-text p {
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 0.8em;
}
.textAndImage .textAndImage-text p a {
  color: #000;
}
.textAndImage .textAndImage-text .cta {
  margin-top: 20px;
}
.textAndImage .textAndImage-text + .textAndImage-image {
  margin-top: 30px;
}
.textAndImage .image--caption {
  margin-top: 5px;
  font-size: 0.9em;
}
.textAndImage img {
  width: 100%;
}
@media (min-width: 840px) {
  .textAndImage {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .textAndImage.image-left {
    flex-direction: row-reverse;
  }
  .textAndImage .textAndImage-text {
    width: 55%;
  }
  .textAndImage .textAndImage-text.small-image {
    width: 65%;
  }
  .textAndImage .textAndImage-image {
    width: 40%;
  }
  .textAndImage .textAndImage-image.small-image {
    width: 25%;
  }
  .textAndImage .textAndImage-text + .textAndImage-image {
    margin-top: 0;
  }
}

.headingAndImage .cta {
  margin-top: 30px;
}
.headingAndImage .headingAndImage-heading h2 {
  margin-bottom: 0;
  width: 100%;
}
.headingAndImage .image--caption {
  margin-top: 5px;
  font-size: 0.9em;
}
.headingAndImage img {
  width: 70%;
  margin-bottom: 20px;
}
@media (min-width: 840px) {
  .headingAndImage {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .headingAndImage.image-right {
    flex-direction: row-reverse;
  }
  .headingAndImage .headingAndImage-heading {
    width: 60%;
  }
  .headingAndImage .headingAndImage-image {
    width: 35%;
  }
  .headingAndImage img {
    width: 100%;
    margin-bottom: 0;
  }
}

.social--embed.twitterTimeline {
  width: 100%;
  max-width: 580px;
  margin: auto;
}

.strip .strip--sub {
  width: 80%;
  text-align: left;
  margin: auto;
  padding: 20px 0;
}
.strip .strip--sub h3 {
  font-weight: 600;
  font-size: 1.2em;
  margin-right: 20px;
  line-height: 1.2em;
  margin-bottom: 20px;
}
@media (min-width: 840px) {
  .strip .strip--sub {
    max-width: 1000px;
    display: flex;
    align-items: center;
  }
  .strip .strip--sub h3 {
    margin-bottom: 1px;
  }
}

@media (min-width: 840px) {
  .fui-page {
    width: 50%;
  }
}

.fui-i,
.fui-label, .fui-input-container, .fui-checkbox label, .fui-radio label {
  color: #000 !important;
  font-family: "Work Sans" !important;
  -webkit-font-smoothing: initial !important;
  -moz-osx-font-smoothing: initial !important;
  font-size: 1.1rem !important;
  line-height: 1.4rem !important;
}

.fui-tabs, .fui-tab {
  border: none !important;
  font-family: "Work Sans" !important;
  margin-bottom: 10px !important;
}

.fui-tab {
  color: #000 !important;
  background: none !important;
  padding: 0 !important;
  margin-right: 20px !important;
}
.fui-tab a {
  display: block;
  background: #0dcec8 !important;
  padding: 30px !important;
  font-family: "Work Sans" !important;
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  border-radius: 10px !important;
  cursor: default;
}
.fui-tab a:hover {
  /*
  background:$blue !important;
  color: #fff !important;
  */
}
.fui-tab.fui-tab-active a {
  background: #0dcec8 !important;
  color: #fff !important;
}

.fui-field {
  flex: none !important;
  width: 100% !important;
}
.fui-checkbox:not(:last-child), .fui-radio:not(:last-child) {
  margin-bottom: 20px !important;
}

.fui-heading-h2 {
  font-weight: 500 !important;
  font-size: 1.4rem !important;
  line-height: 1.7rem !important;
  margin-bottom: 10px !important;
  width: 100% !important;
}

.fui-type-heading {
  margin-top: 40px !important;
}

.fui-btn-container {
  margin-top: 20px !important;
}

.fui-btn {
  display: inline-block !important;
  text-decoration: none !important;
  background-color: #000 !important;
  color: #fff !important;
  padding: 10px 47px 12px 18px !important;
  font-weight: 600 !important;
  font-size: 1.1em !important;
  background-image: url(/img/cta-arw.png) !important;
  background-repeat: no-repeat !important;
  background-position: center right 15px !important;
  border: none !important;
  -webkit-border-radius: 25px !important;
  -moz-border-radius: 25px !important;
  border-radius: 25px !important;
}
.fui-btn.fui-prev {
  padding: 10px 18px 12px 18px !important;
  background-image: none !important;
}

@media (min-width: 840px) {
  .form-float-right {
    float: right !important;
    clear: both;
    position: relative !important;
    top: 26px !important;
    width: 45% !important;
  }
}

.fui-row {
  display: block !important;
}

.bioblocks-v2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 80%;
  margin: auto;
}
@media (min-width: 840px) {
  .bioblocks-v2 {
    margin: auto;
    max-width: 1000px;
  }
}
.bioblocks-v2 a {
  color: #0dcec8;
}
.bioblocks-v2 a.cta {
  color: #fff;
}
.bioblocks-v2 .bioblock {
  width: 100%;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 100px;
  text-align: center;
}
@media (min-width: 840px) {
  .bioblocks-v2 .bioblock {
    width: 45%;
  }
}
.bioblocks-v2 .bioblock .mugshot {
  width: 150px;
  height: 150px;
  -webkit-border-radius: 50% !important;
  -moz-border-radius: 50% !important;
  border-radius: 50% !important;
  margin-bottom: 30px;
}
.bioblocks-v2 .bioblock .mugshot-logo {
  width: 150px;
  margin-bottom: 30px;
}
.bioblocks-v2 .bioblock h3 {
  font-size: 1.6em !important;
  line-height: 1.2em;
  font-weight: 500;
  margin-bottom: 13px !important;
}
.bioblocks-v2 .bioblock h4 {
  font-size: 1.2em !important;
  line-height: 1.2em;
}
.bioblocks-v2 .bioblock p {
  font-size: 1.1rem;
  text-align: left;
}
.bioblocks-v2 .bioblock .blurb {
  margin-top: 30px;
  font-size: 1.15em;
  line-height: 1.3em;
}
.bioblocks-v2 .bioblock .blurb p {
  margin-bottom: 1em;
}
.bioblocks-v2.people-entry {
  margin-top: 30px;
  margin-bottom: 90px;
}
.bioblocks-v2.people-entry .bioblock {
  max-width: 800px;
  margin: auto;
}
@media (min-width: 840px) {
  .bioblocks-v2.people-entry .bioblock {
    width: 100%;
  }
}

.align-right {
  text-align: right !important;
}

.align-center {
  text-align: center !important;
}

.justify-1 {
  text-align: justify !important;
}

.mapbox--popup {
  font-size: 0.9rem !important;
}

#results--ajax-wrap {
  position: relative;
}
#results--ajax-wrap .cta {
  padding: 6px 40px 8px 13px;
  background-position: center right 8px;
}

.results--notice {
  padding-bottom: 20px;
  font-size: 1.3em;
  font-weight: 600;
}

.loading--notice {
  position: absolute;
  display: none;
  font-size: 1.3em;
  font-weight: 600;
}

.ajax-loading .link--teasers {
  opacity: 0.3;
  pointer-events: none;
}
.ajax-loading .loading--notice {
  display: block;
  opacity: 1;
}
.ajax-loading .results--notice {
  opacity: 0;
}

.search--filters {
  display: flex;
  flex-wrap: wrap;
}
.search--filters .expand {
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 2px;
  left: 4px;
}
.search--filters .expand .minus--icon {
  width: 20px;
  height: 20px;
  position: absolute;
}
.search--filters .expand .plus--icon {
  width: 20px;
  height: 20px;
  position: absolute;
  -webkit-transition: transform 200ms ease;
  -moz-transition: transform 200ms ease;
  -ms-transition: transform 200ms ease;
  -o-transition: transform 200ms ease;
  transition: transform 200ms ease;
  transform: rotate(90deg);
}
.search--filters .expand.closed .plus--icon {
  transform: rotate(0);
}
.search--filters .search--filter {
  width: 100%;
}
.search--filters .search--filter h4 {
  display: inline-block;
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 0.6em;
  margin-top: 1em;
}
.search--filters .search--filter select {
  padding: 0.3em;
}
.search--filters .search--filter select option {
  font-family: "Barlow", sans-serif;
  font-size: 1.2rem;
}
.search--filters .filter--heading {
  width: 100%;
}
.search--filters .filter--desc {
  margin-bottom: 10px;
}
.search--filters .filter.closed {
  display: none;
}
.search--filters .filter a {
  display: inline-block;
  padding: 4px 11px 6px 11px;
  background: #ccc;
  color: #000;
  text-decoration: none;
  margin-bottom: 7px;
  margin-right: 7px;
  -webkit-border-radius: 14px !important;
  -moz-border-radius: 14px !important;
  border-radius: 14px !important;
}
@media (min-width: 840px) {
  .search--filters .filter a {
    white-space: nowrap;
  }
}
.search--filters .filter a:hover {
  background: #999;
}
.search--filters .filter a.active {
  background: #0dcec8;
  color: #fff;
}
.search--filters .filter a.active:hover {
  background: #0dcec8;
}

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