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

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

html {
  box-sizing: border-box;
}

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

* {
  box-sizing: border-box;
}

.purple-bg {
  background-color: #1C1C1E !important;
}

.olive-bg {
  background-color: #C1CA2F !important;
}

.green {
  color: #008392;
}

body {
  font-family: rubik, sans-serif;
  font-weight: 400;
  font-style: normal;
}

em {
  font-family: rubik, sans-serif;
  font-weight: 400;
  font-style: italic;
}

strong {
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
}

/* Sweep To Right */
.hvr-sweep-to-right {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #656365;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: white;
}

.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

/*!
 * 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 {
  height: 100%;
  background-color: #F6F8F9;
}

body {
  display: flex;
  flex-direction: column;
}
#wrapper {
  flex: 1 0 auto;
  padding-top: 60px;
}
@media (min-width: 1200px) {
  #wrapper {
    padding-top: 80px;
  }
}

.Evolve-phase-2 #wrapper {
  padding-top: 187px;
}

#footer {
  flex-shrink: 0;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.clearfix {
  clear: both;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.responsive {
  max-width: 100%;
}

.rounded {
  -webkit-border-radius: 6px;
  border-radius: 6px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}

.text-bold {
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.container {
  width: 100%;
}

.page-width {
  width: 100%;
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .page-width {
    width: 1160px;
    margin: auto;
    padding: 0;
  }
}

.wf-loading {
  visibility: hidden;
}

.wf-active {
  visibility: visible;
}

.mobile {
  display: block;
}
@media (min-width: 1200px) {
  .mobile {
    display: none;
  }
}

.tablet {
  display: none;
}
@media (min-width: 767px) {
  .tablet {
    display: block;
  }
}

.desktop {
  display: none;
}
@media (min-width: 1200px) {
  .desktop {
    display: block;
  }
}

.hamburger {
  float: right;
}

#header {
  position: fixed;
  top: 0;
  z-index: 99;
  background: #EFEFF2;
}
#header .header--logo {
  float: left;
  margin: 11px 0;
}
#header--secondary {
  position: fixed;
  top: 0;
  z-index: 99;
  background: #1C1C1E;
}
#header--secondary .header--logo {
  float: left;
  margin: 11px 0;
  height: 40px;
}
@media (min-width: 1200px) {
  #header--secondary .header--logo {
    height: 60px;
  }
}

.Evolve-phase-2 #header--secondary {
  top: 107px;
}

#header--menu ul.menu--primary {
  float: right;
  z-index: 1;
  position: relative;
  font-size: 1.2rem;
}
#header--menu ul.menu--primary a {
  display: block;
  padding: 19px 0 54px 0;
  border-top: 15px solid #EFEFF2;
  color: #535254;
  text-decoration: none;
}
#header--menu ul.menu--primary a:hover {
  color: #202124;
}
#header--menu ul.menu--primary a.here {
  color: #202124;
  border-top: 15px solid #C1CA2F;
}
#header--menu ul.menu--primary li {
  float: left;
  margin: 0 16px;
}
#header--menu ul.menu--primary li:last-child {
  margin-right: 0;
}
#header--menu ul.menu--primary li ul {
  position: absolute;
  display: none;
  background: #6B7170;
  padding: 5px 20px 10px 0;
  -webkit-border-bottom-right-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
#header--menu ul.menu--primary li ul li {
  float: none;
  margin: 0;
}
#header--menu ul.menu--primary li ul li a {
  padding: 10px;
  border: none;
  color: #C9C9C9;
}
#header--menu ul.menu--primary li ul li a:hover {
  color: #fff;
  border: none;
}
#header--menu ul.menu--primary li ul li a.here {
  border: none;
  color: #C1CA2F;
}
#header--menu ul.menu--primary li:hover ul {
  display: block;
}

#header--secondary-menu ul.menu--secondary {
  float: right;
  position: relative;
  font-size: 1.2rem;
  overflow: hidden;
}
#header--secondary-menu ul.menu--secondary a {
  display: block;
  padding: 34px 0 30px 0;
  border-top: 0;
  color: #C9C9C9;
  text-decoration: none;
}
#header--secondary-menu ul.menu--secondary a:before {
  content: "";
  display: inline-block;
  position: absolute;
  top: -15px;
  width: 100%;
  background-color: #D93289;
  height: 15px;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
#header--secondary-menu ul.menu--secondary a:hover {
  color: #fff;
}
#header--secondary-menu ul.menu--secondary a:hover:before {
  top: 0;
}
#header--secondary-menu ul.menu--secondary a.here {
  color: #fff;
}
#header--secondary-menu ul.menu--secondary a.here:before {
  top: 0;
}
#header--secondary-menu ul.menu--secondary li {
  float: left;
  position: relative;
  margin: 0 16px;
}
#header--secondary-menu ul.menu--secondary li:last-child {
  margin-right: 0;
}
#header--secondary-menu ul.menu--secondary li ul {
  position: absolute;
  display: none;
  background: #6B7170;
  padding: 5px 20px 10px 0;
  -webkit-border-bottom-right-radius: 8px;
  -webkit-border-bottom-left-radius: 8px;
  -moz-border-radius-bottomright: 8px;
  -moz-border-radius-bottomleft: 8px;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}
#header--secondary-menu ul.menu--secondary li ul li {
  float: none;
  margin: 0;
}
#header--secondary-menu ul.menu--secondary li ul li a {
  padding: 10px;
  border: none;
  color: #C9C9C9;
}
#header--secondary-menu ul.menu--secondary li ul li a:hover {
  color: #fff;
  border: none;
}
#header--secondary-menu ul.menu--secondary li ul li a.here {
  border: none;
  color: #D93289;
}
#header--secondary-menu ul.menu--secondary li:hover ul {
  display: block;
}

#menu--secondary__mobile {
  position: fixed;
  z-index: 99;
  display: none;
  background: #D93289;
  width: 100%;
  height: 100%;
  padding: 20px;
}
#menu--secondary__mobile.is-active {
  display: block;
}
#menu--secondary__mobile a {
  text-decoration: none;
  color: #fff;
  font-size: 1.4em;
  padding: 10px 0;
  display: inline-block;
}

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.grid a {
  text-decoration: none !important;
  color: black !important;
}
.grid .grid-block {
  display: block;
  width: 100%;
  margin-bottom: 20px;
}
.grid .grid-block h5 {
  font-weight: bold;
  font-size: 1.2em;
  margin-bottom: 0.2em;
}
.grid .grid-block p {
  font-size: 1.1em;
}
.grid .grid-block img {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}
@media (min-width: 500px) {
  .grid .grid-block {
    width: 31%;
    margin-bottom: 30px;
  }
  .grid .grid-block h5 {
    font-weight: bold;
    font-size: 1.2em;
  }
  .grid .grid-block img {
    display: block;
    width: 100%;
    margin-bottom: 15px;
  }
}

.response {
  padding: 20px;
  font-size: 1.2em;
}

.related-content {
  margin-top: 40px;
}
.related-content h2 {
  color: #C1CA2F !important;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4em !important;
  margin-bottom: 0.5em !important;
}

.logo-grid {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
}
.logo-grid img {
  margin-right: 40px;
  margin-bottom: 40px;
}

.content--video {
  margin: 20px 0;
  height: 50vw;
  max-height: 460px;
}

.content--content {
  padding: 20px 0;
}

.main-image {
  margin: 20px 0;
}

.content--block.float-left {
  width: 100%;
  float: none;
}
@media (min-width: 500px) {
  .content--block.float-left {
    float: left;
    padding-right: 40px;
    width: 75%;
  }
}

.content--block.float-right {
  width: 100%;
  float: none;
}
@media (min-width: 500px) {
  .content--block.float-right {
    float: right;
    padding-left: 40px;
    width: 75%;
  }
}

.content--pullquote {
  width: 100%;
  float: none;
}
@media (min-width: 500px) {
  .content--pullquote {
    float: right;
    width: 25%;
  }
  .content--pullquote.float-left {
    float: left;
  }
}

.content--star-rating {
  margin-bottom: 10px;
}
.content--star-rating .star {
  width: 30px;
  margin-right: 5px;
}

.content--quote {
  color: #D93289;
  font-family: rubik, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.7em;
  line-height: 1.2em;
  margin-bottom: 10px;
}

.content--attribution {
  color: #535254;
  font-size: 1.2em;
  margin-bottom: 1em;
  line-height: 1.2em;
}

.content-image {
  margin-bottom: 20px;
}
.content-image.float-left {
  float: none;
}
@media (min-width: 500px) {
  .content-image.float-left {
    float: left;
    margin-right: 20px;
  }
}
.content-image.float-right {
  float: none;
}
@media (min-width: 500px) {
  .content-image.float-right {
    float: right;
    margin-left: 20px;
  }
}

.flickity-page-dots {
  bottom: -35px;
}

.carousel {
  background-color: #EFEFF2;
  width: 100%;
  height: 400px;
  margin-bottom: 60px;
}

.carousel-cell {
  margin: 0 5px;
  height: 400px;
}

.carousel-cell img {
  display: block;
  height: 400px;
}

h1 {
  color: #C1CA2F;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3em;
  margin-bottom: 0.6em;
}

h2 {
  color: #C1CA2F;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4em;
  margin-bottom: 0.5em;
}

h3 {
  color: #EA7404;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2em;
  margin-bottom: 0.5em;
}

h4 {
  color: #1C1C1E;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.4em;
  margin-bottom: 0.5em;
}

p {
  color: #535254;
  font-size: 1.2em;
  margin-bottom: 1em;
  line-height: 1.2em;
}

hr {
  margin: 20px 0;
  border: 0;
  border-bottom: 2px solid #535254;
}

.btn {
  display: inline-block;
  position: relative;
  padding: 10px 20px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  background-color: #1C1C1E;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
}

.btn:hover {
  background-color: #656365;
}

.btn.purple-bg:hover {
  background-color: #656365 !important;
}

.btn.olive-bg:hover {
  background-color: #AEB900 !important;
}

.hero {
  height: 400px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero .block {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: #000;
}
.hero .hero-overlay {
  display: none;
}

.content {
  width: 100%;
  max-width: 860px;
  float: left;
  padding: 30px 0;
}
.content a {
  color: #008392;
}
.content .btn {
  color: #fff;
}
.content ul {
  margin-bottom: 1.5em;
}
.content li {
  color: #535254;
  font-size: 1.2em;
  margin-bottom: 0.5em;
  line-height: 1.2em;
  margin-left: 1em;
  list-style-type: disc;
}
@media (min-width: 1200px) {
  .content {
    width: 860px;
    min-height: 500px;
    padding: 40px 0;
  }
}

.panels {
  display: flex;
  flex-wrap: wrap;
  margin-top: 40px;
}

.panel:hover .btn {
  background-color: #000;
}

.panel {
  display: block;
  text-decoration: none;
  padding: 11px;
  width: 100%;
  background: #EA7404;
  color: #fff;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  margin-bottom: 33px;
}
.panel h4 {
  font-size: 1.4em;
  color: #fff;
}
.panel h5 {
  font-size: 1.1em;
  color: #fff;
}
@media (min-width: 767px) {
  .panel {
    width: 30%;
    margin-right: 5%;
  }
  .panel:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .panel {
    width: 260px;
    margin-right: 40px;
  }
}
.panel .panel--meta {
  min-height: 40px;
}

.panel--container {
  width: 100%;
}
@media (min-width: 767px) {
  .panel--container {
    width: 30%;
    margin-right: 5%;
  }
  .panel--container:nth-child(3n) {
    margin-right: 0;
  }
  .panel--container .panel {
    width: 100% !important;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .panel--container {
    width: 260px;
    margin-right: 40px;
  }
  .panel--container .panel {
    margin-right: 0;
  }
}

.panel.news {
  background: transparent;
  padding: 0;
}
.panel.news .panel--thumb-wrap {
  overflow: hidden;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  display: block;
  width: 100%;
  height: 70vw;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .panel.news .panel--thumb-wrap {
    width: 100%;
    height: auto;
  }
}
.panel.news .panel--thumb-wrap .panel--thumb {
  display: block;
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  width: 100%;
  height: auto;
}
.panel.news h4 {
  font-size: 1.4em;
  color: #1C1C1E;
}
.panel.news h5 {
  font-size: 1.1em;
  color: #535254;
  line-height: 1.2em;
  margin-bottom: 15px;
}
.panel.news .news--date {
  font-family: rubik, sans-serif;
  font-weight: 400;
  font-style: italic;
  background-image: url(/img/icon-news-time.png);
  background-repeat: no-repeat;
  padding-left: 25px;
  color: #A6ADB4;
  margin-bottom: 15px;
}
@media (min-width: 920px) {
  .panel.news:hover .panel--thumb-wrap .panel--thumb {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.panel.team-profile {
  padding: 0;
  background: transparent;
  position: relative;
}
.panel.team-profile .panel--thumb-wrap {
  z-index: 1;
  position: relative;
  overflow: hidden;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  display: block;
  width: 100%;
  height: 70vw;
}
@media (min-width: 767px) {
  .panel.team-profile .panel--thumb-wrap {
    width: 100%;
    height: auto;
  }
}
.panel.team-profile .panel--thumb-wrap .panel--thumb {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  width: 100%;
  height: 100%;
  position: relative;
}
.panel.team-profile h4 {
  margin-bottom: 0.2em;
  font-family: rubik, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.panel.team-profile h5 {
  display: flex;
  text-transform: none;
  margin-bottom: 0.2em;
}
.panel.team-profile .panel--meta {
  z-index: 1;
  background-image: url(/img/icon-evolve.png);
  background-repeat: no-repeat;
  background-position: 8px 10px;
  display: block;
  padding: 8px;
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, black, transparent);
  width: 100%;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
}
.panel.team-profile .panel--meta img {
  display: block;
  float: left;
  padding: 0 10px 0 5px;
}
@media (min-width: 920px) {
  .panel.team-profile:hover .panel--thumb-wrap .panel--thumb {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.panel.artist-profile {
  background: #D93289;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
.panel.artist-profile h4 {
  margin-bottom: 0.3em;
}
.panel.artist-profile h5 {
  text-transform: uppercase;
}
.panel.artist-profile .panel--meta {
  background-image: url(/img/icon-artist.png);
  background-repeat: no-repeat;
  background-position: 0 2px;
  display: block;
  padding-left: 47px;
  margin-top: 8px;
}
.panel.artist-profile .panel--thumb-wrap {
  overflow: hidden;
  width: 100%;
  height: 43vw;
}
@media (min-width: 767px) {
  .panel.artist-profile .panel--thumb-wrap {
    width: 100%;
    height: 12vw;
  }
}
@media (min-width: 920px) {
  .panel.artist-profile .panel--thumb-wrap {
    width: 238px;
    height: 112px;
  }
}
.panel.artist-profile .panel--thumb-wrap .panel--thumb {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  width: 100%;
  height: 100%;
}
@media (min-width: 920px) {
  .panel.artist-profile:hover {
    background-color: #ED5BA7;
  }
  .panel.artist-profile:hover .panel--thumb-wrap .panel--thumb {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.panel.project {
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
  /*	@include breakpoint('tablet-large') {
  		&:hover{
  			background-color: $orange-lt;

  		}
  	}
  */
}
.panel.project h4 {
  margin-bottom: 0.3em;
}
.panel.project h5 {
  text-transform: uppercase;
}
.panel.project .panel--thumb-wrap {
  overflow: hidden;
  width: 100%;
  height: 43vw;
}
@media (min-width: 767px) {
  .panel.project .panel--thumb-wrap {
    width: 100%;
    height: 12vw;
  }
}
@media (min-width: 920px) {
  .panel.project .panel--thumb-wrap {
    width: 238px;
    height: 112px;
  }
}
.panel.project .panel--thumb-wrap .panel--thumb {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  width: 100%;
  height: 100%;
}
.panel.project .panel--meta {
  background-image: url(/img/icon-evolve.png);
  background-repeat: no-repeat;
  background-position: 0 2px;
  display: block;
  padding-left: 47px;
  margin-top: 8px;
  min-height: 67px;
}
@media (min-width: 920px) {
  .panel.project:hover {
    background-color: #FF9938;
  }
  .panel.project:hover .panel--thumb-wrap .panel--thumb {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.panel.event {
  background-color: #1C1C1E;
  background-repeat: no-repeat;
  background-position: 0;
  display: flex;
  flex-wrap: wrap;
  -webkit-transition: all 200ms ease;
  -moz-transition: all 200ms ease;
  -ms-transition: all 200ms ease;
  -o-transition: all 200ms ease;
  transition: all 200ms ease;
}
@media (min-width: 920px) {
  .panel.event:hover {
    /*-moz-transform:scale(1.05);
    -webkit-transform:scale(1.05);
    -o-transform:scale(1.05);
    -ms-transform:scale(1.05);
    transform: scale(1.05);*/
    /*background-color: $grey;*/
  }
}
.panel.event h4 {
  margin-bottom: 0.3em;
}
.panel.event .panel--meta {
  background-image: url(/img/icon-event.png);
  background-repeat: no-repeat;
  display: block;
  padding-left: 47px;
  margin-bottom: 10px;
  min-height: 70px;
}
.panel.event .panel--thumb-wrap {
  align-self: flex-end;
  overflow: hidden;
  display: block;
  width: 100%;
  height: 47vw;
}
@media (min-width: 767px) {
  .panel.event .panel--thumb-wrap {
    width: 100%;
    height: 12.2vw;
  }
}
@media (min-width: 920px) {
  .panel.event .panel--thumb-wrap {
    height: 112px;
  }
}
@media (min-width: 1200px) {
  .panel.event .panel--thumb-wrap {
    width: 238px;
  }
}
.panel.event .panel--thumb-wrap .panel--thumb {
  -webkit-transition: all 400ms ease;
  -moz-transition: all 400ms ease;
  -ms-transition: all 400ms ease;
  -o-transition: all 400ms ease;
  transition: all 400ms ease;
  width: 100%;
  height: 100%;
}
@media (min-width: 920px) {
  .panel.event:hover {
    background-color: #535254;
  }
  .panel.event:hover .panel--thumb-wrap .panel--thumb {
    -moz-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -o-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
}

.evolveBasic .content h2 {
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 1em;
  color: #000;
}
.evolveBasic .content h3 {
  font-size: 1.4em;
  line-height: 1.2em;
  margin-bottom: 0.2em;
  color: #000;
}
.evolveBasic .content ul {
  margin-bottom: 1.5em;
}
.evolveBasic .content li {
  color: #535254;
  font-size: 1.2em;
  margin-bottom: 0.5em;
  line-height: 1.2em;
  margin-left: 1em;
  list-style-type: disc;
}

.evolveContact .content h2 {
  color: #008392;
  line-height: 1.2em;
}
.evolveHome h1 {
  color: #008392;
  font-size: 2.4em;
  margin-top: 0;
}
.evolveHome h2 {
  margin-bottom: 0;
}
.evolveHome .event-teasers {
  margin-top: 20px;
}
.evolveHome .project-teasers {
  margin-top: 20px;
  margin-bottom: 20px;
}
.evolveHome .project-teasers .panel {
  float: left;
}
.evolveHome .project-teasers--summary {
  float: left;
  width: 330px;
}
@media (min-width: 1200px) {
  .evolveHome .project-teasers--summary {
    width: 510px;
  }
}
.evolveHome .content {
  padding-top: 30px;
  padding-bottom: 0;
}
@media (min-width: 1200px) {
  .evolveHome .content {
    padding-bottom: 40px;
  }
}
.evolveHome .sidebar {
  max-width: 860px;
  margin-bottom: 40px;
}
.evolveHome .sidebar .panels {
  margin-top: 0;
}
@media (min-width: 1200px) {
  .evolveHome .sidebar {
    padding-top: 30px;
    width: 260px;
    float: right;
  }
}
.evolveHome .news-panel {
  margin-bottom: 30px;
}

.evolveEventList .filter--toggle__container {
  border-bottom: 2px solid #000;
}
.evolveEventList #filter--toggle {
  text-decoration: none;
  color: #000;
  font-size: 1.3em;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
  padding: 10px 0;
  display: inline-block;
  margin-bottom: 10px;
}
.evolveEventList #filter--toggle .toggle--ring {
  display: inline-block;
  position: relative;
  width: 28px;
  height: 27.5px;
  border: 2px solid #000;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}
.evolveEventList #filter--toggle .toggle--dash {
  width: 16px;
  height: 3px;
  background: #000;
  position: absolute;
  top: 10px;
  left: 4px;
}
.evolveEventList #filter--toggle .toggle--dash.plus {
  -webkit-transition: all 300ms;
  /* Safari prior 6.1 */
  transition: all 300ms;
}
.evolveEventList #filter--toggle .toggle--dash.plus {
  -moz-transform: rotate(0);
  -webkit-transform: rotate(0);
  -o-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}
.evolveEventList #filter--toggle.closed .toggle--dash.plus {
  -moz-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.evolveEventList .toggle--label {
  display: inline-block;
  position: relative;
  top: -6px;
  margin-right: 7px;
}
.evolveEventList #event--filters {
  border-bottom: 2px solid #000;
}
.evolveEventList #event--filters.closed {
  display: none;
}
.evolveEventList .filter--row {
  padding-top: 10px;
  width: 100%;
  border-bottom: 1px solid #000;
}
.evolveEventList .filter--row:last-child {
  border: none;
}
.evolveEventList .filter--row .filter--heading {
  width: 110px;
  display: inline-block;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2em;
  margin-bottom: 7px;
}
.evolveEventList .filter--row .filter--content {
  display: inline-block;
}
.evolveEventList .filter--select {
  font-size: 1.2em;
  line-height: 1.2em;
  padding: 5px;
  display: inline-block;
  width: auto;
  background-image: url(/img/select-arrow.png);
  background-repeat: no-repeat;
  background-position: right;
  padding: 5px 45px 5px 10px;
  font-family: rubik, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-border-radius: 0;
  border-radius: 0;
  color: #535254;
  border: 2px solid #000;
  margin-bottom: 10px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  background-color: #F6F8F9;
}
.evolveEventList .filter--select::-ms-expand {
  display: none;
}
.evolveEventList .filter--select.selected {
  background-color: #000;
  color: #fff;
}
.evolveEventList .filter--select option {
  font-weight: normal;
  font-size: 1rem;
}
.evolveEventList .filter--checkbox-container {
  color: #535254;
  font-size: 1.2em;
  line-height: 1.2em;
  display: inline-block;
  position: relative;
  padding: 5px 10px;
  margin-right: 5px;
  margin-bottom: 10px;
  cursor: pointer;
  border: 2px solid #000;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.evolveEventList .filter--checkbox-container.selected {
  background: #000;
  color: #fff;
}
.evolveEventList .filter--checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.event .float-right {
  float: none;
}
@media (min-width: 767px) {
  .event .float-right {
    float: right;
  }
}
.event h1 {
  margin-bottom: 0.3em;
}
.event .info--billing {
  color: #656365;
  font-size: 1.9em;
}
.event .event--meta {
  margin-bottom: 17px;
}
.event .info--date {
  color: #EA7404;
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .event .info--date {
    float: left;
    width: 50%;
    margin-bottom: 0;
  }
}
.event .info--location {
  background-image: url(/img/map-pin.png);
  background-repeat: no-repeat;
  padding-left: 40px;
  min-height: 45px;
  font-size: 1.4em;
}
.event .info--location a {
  color: #008392;
}
@media (min-width: 767px) {
  .event .info--location {
    max-width: 50%;
    float: right;
  }
}
.event .info--price {
  font-size: 1.6em;
  line-height: 1.2em;
}
.event .info--price strong {
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 767px) {
  .event .info--price {
    width: 75%;
    float: left;
  }
}
.event .book--wrap {
  margin-top: 10px;
}
@media (min-width: 767px) {
  .event .book--wrap {
    margin-top: 0;
    width: 25%;
    float: right;
  }
}
.event .event--tags {
  float: right;
  margin-left: 50px;
}
.event .event--tags li {
  margin-left: 5px;
  color: #707070;
  float: right;
  border: 1px solid #707070;
  padding: 3px 6px;
  font-size: 0.8em;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  list-style-type: none;
}
.event .event--content {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .event .event--content {
    float: left;
    width: 75%;
    padding-right: 40px;
    margin-bottom: 80px;
  }
}
.event .event--content-sidebar {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .event .event--content-sidebar {
    float: left;
    width: 25%;
    margin-bottom: 80px;
  }
}
.event .event--star-rating {
  margin-bottom: 10px;
}
.event .event--star-rating .star {
  width: 30px;
  margin-right: 5px;
}
.event .event--quote {
  color: #D93289;
  font-family: rubik, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.7em;
  line-height: 1.2em;
  margin-bottom: 10px;
}
.event .event--attribution {
  color: #535254;
  font-size: 1.2em;
  margin-bottom: 1em;
  line-height: 1.2em;
}
.event .panels {
  margin-top: 20px;
}

.evolveProjectList .mitl-panel {
  padding: 20px 30px;
  -webkit-border-radius: 20px;
  border-radius: 20px;
  border: 2px dashed #2BAEB3;
  margin-bottom: 30px;
}
.evolveProjectList .mitl-panel h2 {
  color: #2BAEB3;
}
@media (min-width: 767px) {
  .evolveProjectList .mitl-panel h2 {
    margin-top: 20px;
  }
}
@media (min-width: 767px) {
  .evolveProjectList .mitl-logo {
    width: 20%;
    max-width: 150px;
    margin-right: 30px;
  }
}
.evolveProjectList p.byline {
  font-weight: bold;
  font-size: 1.4em;
}
.evolveProjectList .content--body {
  /*
  @include breakpoint('tablet') {
  	float: left;
    		width: 75%;
    		padding-left: 40px;
  }
  @include breakpoint('desktop') {
  	float: left;
    		width: 650px;
    		padding-left: 70px;
  }
  */
}

.project .mitl-logo-wrap {
  width: 25%;
  padding-top: 40px;
}
.project .mitl-logo-wrap .mitl-logo {
  width: 100%;
  max-width: 197px;
}
.project .content {
  min-height: auto;
  padding-bottom: 0;
}
@media (min-width: 767px) {
  .project .content {
    width: 75%;
    padding-right: 30px;
  }
}
.project h1 {
  margin-bottom: 0.5em;
}
.project .info--artist {
  color: #1C1C1E;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.9em;
  margin-bottom: 0.5em;
}
.project .info--credits {
  color: #1C1C1E;
  font-size: 1.9em;
  margin-bottom: 1em;
}
.project .info--logos {
  margin-top: 80px;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #656365;
  font-size: 1.2em;
}
.project .logos {
  display: flex;
  flex-wrap: wrap;
  padding-top: 20px;
}
.project .logos a {
  margin-right: 20px;
}
.project .logos img {
  display: block;
  margin-left: 40px;
  margin-bottom: 20px;
}
.project .logos img:nth-child(3n+1) {
  margin-left: 0;
}
.project .credit--name {
  font-size: 1.4em;
  margin-bottom: 0.2em;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.project .credit--role {
  font-size: 1.2em;
  margin-bottom: 0.2em;
  line-height: 1.4em;
}
.project .credit--link {
  font-size: 1.2em;
  margin-bottom: 0.2em;
  line-height: 1.4em;
}
.project .credit--link a {
  color: #2BAEB3;
}
.project .project--content {
  float: left;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 30px;
}
.project .project--content a {
  color: #2BAEB3;
}
@media (min-width: 920px) {
  .project .project--content {
    width: 860px;
    padding-right: 40px;
    margin-bottom: 80px;
  }
}
.project .project--content-sidebar {
  margin-top: 20px;
  float: left;
  width: 260px;
  margin-bottom: 30px;
}
.project .project--content-sidebar hr {
  border-color: #707070;
}
@media (min-width: 920px) {
  .project .project--content-sidebar {
    margin-bottom: 80px;
  }
}

.evolveArtistList .content {
  padding-bottom: 80px;
}
.evolveArtistList .content--body {
  margin-bottom: 50px;
}
.evolveArtistList .byline {
  font-size: 1.4em;
}

.artistProfile .profile--image {
  margin-bottom: 34px;
}
@media (min-width: 767px) {
  .artistProfile .profile--image {
    float: left;
  }
}
.artistProfile .profile--meta {
  display: block;
  margin-bottom: 34px;
}
.artistProfile .profile--meta h1 {
  color: #D93289;
  margin-bottom: 0.5em;
  background-image: url(/img/icon-artist-heading.png);
  background-repeat: no-repeat;
  padding-top: 55px;
}
@media (min-width: 767px) {
  .artistProfile .profile--meta h1 {
    padding-top: 0;
    padding-left: 60px;
  }
}
.artistProfile .profile--meta .info--medium {
  color: #1C1C1E;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.9em;
  margin-bottom: 0.5em;
}
@media (min-width: 767px) {
  .artistProfile .profile--meta {
    float: left;
    margin-left: 34px;
    height: 207px;
    position: relative;
  }
  .artistProfile .profile--meta .btn {
    position: absolute;
    bottom: 0;
  }
}
.artistProfile .artist--content {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .artistProfile .artist--content {
    float: left;
    width: 75%;
    padding-right: 40px;
    margin-bottom: 80px;
  }
}
.artistProfile .artist--content-sidebar {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .artistProfile .artist--content-sidebar {
    float: left;
    width: 25%;
    margin-bottom: 80px;
  }
}
.artistProfile .artist--quote {
  color: #D93289;
  font-family: rubik, sans-serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.7em;
  line-height: 1.2em;
}
.artistProfile .artist--attribution {
  color: #535254;
  font-size: 1.2em;
  margin-bottom: 1em;
  line-height: 1.2em;
}

.news h2.info--date {
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 1em;
  color: #000;
}
.news .news--content {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (min-width: 767px) {
  .news .news--content {
    /*float: left;
    width: 75%;
    padding-right: 40px;*/
    margin-bottom: 80px;
  }
}

.evolveTeamList h2 {
  font-size: 1.8em;
  color: #000;
}
.evolveTeamList .team-section {
  padding-bottom: 10px;
}
.evolveTeamList .team-section + .team-section {
  border-top: 2px solid #535254;
  padding-top: 36px;
}

.teamProfile .profile--image {
  margin-bottom: 34px;
}
@media (min-width: 767px) {
  .teamProfile .profile--image {
    float: left;
  }
}
.teamProfile .profile--meta {
  display: block;
  margin-bottom: 34px;
}
.teamProfile .profile--meta h1 {
  margin-bottom: 0.5em;
  background-image: url(/img/icon-team-heading.png);
  background-repeat: no-repeat;
  padding-top: 55px;
}
@media (min-width: 767px) {
  .teamProfile .profile--meta h1 {
    padding-top: 0;
    padding-left: 60px;
  }
}
.teamProfile .profile--meta .info--role {
  font-size: 1.6em;
  line-height: 1.2em;
  margin-bottom: 1em;
  color: #000;
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media (min-width: 767px) {
  .teamProfile .profile--meta {
    float: left;
    margin-left: 34px;
    height: 207px;
    position: relative;
  }
}
.teamProfile .profile--content {
  margin-bottom: 120px;
}

.evolveNewsList .panel.news h4 {
  color: #EA7404;
}

.sm-icons {
  margin-bottom: 20px;
}
.sm-icons a {
  margin-right: 10px;
}

#footer {
  width: 100%;
  background: #C1CA2F;
  margin-top: 40px;
}
#footer .partner-logo + .partner-logo {
  margin-left: 30px;
}
#footer .footer--credit {
  display: block;
  margin-top: 20px;
  font-size: 0.9em;
}
@media (min-width: 1200px) {
  #footer .footer--credit {
    margin-top: 20px;
  }
}
#footer #footer--signup {
  padding: 40px;
  background: #C1CA2F;
  text-align: center;
}
#footer #footer--signup h5 {
  font-family: rubik, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.6em;
}
#footer #footer--signup li {
  display: inline-block;
  color: #fff;
}
#footer #footer--signup input[type=checkbox] {
  margin: 8px;
  position: relative;
  top: -1px;
  font-size: 2rem;
}
#footer #footer--signup input[type=email] {
  text-align: center;
  font-size: 1.5em;
  border: 0;
  font-family: rubik, sans-serif;
  font-weight: 400;
  font-style: normal;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background-clip: padding-box;
  /* stops bg color from leaking outside the border: */
  padding: 5px;
  margin: 20px;
}
#footer #footer--signup .btn {
  border: 0;
  font-size: 1.2rem;
  cursor: pointer;
  margin-top: 15px;
}
#footer #footer--main {
  background: #1C1C1E;
  color: #fff;
  padding-top: 35px;
  padding-bottom: 65px;
}
#footer .footer--col {
  float: left;
  width: 50%;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.3em;
  color: #fff;
}
#footer .footer--col ul {
  font-size: 1.2rem;
  line-height: 1.3em;
}
#footer .footer--col a {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 767px) {
  #footer .footer--col {
    width: 30%;
  }
}
#footer .footer--col.wide {
  width: 100%;
  margin-top: 20px;
}
#footer .footer--col.wide p {
  font-size: 1.2rem;
  line-height: 1.2em;
  color: #fff;
}
@media (min-width: 767px) {
  #footer .footer--col.wide {
    width: 40%;
    margin-top: 0;
  }
}

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