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

/**
$cyan: #02b5dd;
$cyan-md:#77d3e9;
$cyan-lt:#d2f0f8;
$cyan-dk:#02a1bc;

$orange: #ee9521;
$orange-lt: #ffe9d2;
$orange-md: #ffb455;
$orange-dk: #e87e00;

$green: #9CC547;
$green-lt: #dbf2c6;
$green-md: #aadd78;
$green-dk: #87AD2A;

$pink: #ff7084;
$pink-lt: #ff7084;
$pink-md: #ff7084;
$pink-dk: #f75772;

*/
/*!
 * 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: #000;
}

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

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

html, body {
  font-family: "Quicksand", sans-serif;
}
@media (min-width: 840px) {
  html, body {
    min-height: 100vh;
  }
}

@media (min-width: 840px) {
  #footer {
    position: sticky;
    top: 100vh;
  }
}

strong {
  font-weight: 600;
}

hr {
  border: 0;
  border-top: 1px solid #ccc;
}

h1 {
  font-weight: 600;
  font-size: 2em;
  margin-bottom: 0.5em;
}
@media (min-width: 840px) {
  h1 {
    font-size: 2.4em;
  }
}
@media (min-width: 1250px) {
  h1 {
    font-size: 2.7em;
  }
}

h2 {
  font-weight: 600;
  font-size: 1.9em;
  margin-bottom: 0.2em;
}
@media (min-width: 840px) {
  h2 {
    font-size: 2.3em;
  }
}

h3 {
  font-weight: 600;
  font-size: 1.7em;
  margin-bottom: 0.1em;
}

p {
  font-weight: 400;
  font-size: 1.2em;
  line-height: 1.4em;
}
p + p {
  margin-top: 1em;
}
p + h2 {
  margin-top: 1em;
}
p p {
  font-size: 1em;
  line-height: 1em;
}

i, em {
  font-style: italic;
}

ul {
  font-size: 1.2em;
  line-height: 1.4em;
}
.desktop {
  display: none;
}
@media (min-width: 940px) {
  .desktop {
    display: initial;
  }
}

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

.button {
  cursor: pointer;
  font-family: "Quicksand", sans-serif;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  margin-top: 20px;
  font-size: 1.4em;
  /*white-space: nowrap;*/
  border: none;
}

.clear {
  clear: both;
}

.page-width {
  max-width: 1600px;
  margin: auto;
  padding: 0 7vw;
}
@media (min-width: 1600px) {
  .page-width {
    padding: 0 115px;
  }
}
.page-width .page-width {
  padding: 0 !important;
}

.theme-cyan h1 {
  color: #54b7dc;
}

.theme-blue h1 {
  color: #1f70b6;
}

.theme-orange h1 {
  color: #eb933e;
}

.theme-green h1 {
  color: #9ac14e;
}

.theme-teal h1 {
  color: #5cb38c;
}

.theme-pink h1 {
  color: #e96e84;
}

.theme-yellow h1 {
  color: #F9CF05;
}

.localtheme-cyan h1, .localtheme-cyan h2, .localtheme-cyan .heading {
  color: #54b7dc;
}

.localtheme-blue h1, .localtheme-blue h2, .localtheme-blue .heading {
  color: #1f70b6;
}

.localtheme-orange h1, .localtheme-orange h2, .localtheme-orange .heading {
  color: #eb933e;
}

.localtheme-green h1, .localtheme-green h2, .localtheme-green .heading {
  color: #9ac14e;
}

.localtheme-teal h1, .localtheme-teal h2, .localtheme-teal .heading {
  color: #5cb38c;
}

.localtheme-pink h1, .localtheme-pink h2, .localtheme-pink .heading {
  color: #e96e84;
}

.localtheme-yellow h1, .localtheme-yellow h2, .localtheme-yellow .heading {
  color: #F9CF05;
}

.localtheme-black h1, .localtheme-black h2, .localtheme-black .heading {
  color: #000;
}

.bg-grey {
  background: #777575;
  color: #fff;
}

.bg-black {
  background: #303030;
  color: #fff;
}
.bg-black h1, .bg-black h2, .bg-black h3 {
  color: #fff !important;
}
.bg-black p {
  color: #303030;
}

a.bg-black {
  background: #303030;
}
a.bg-black:hover {
  background: #000;
}

.bg-cyan {
  background: #54b7dc;
  color: #fff;
}
.bg-cyan h1, .bg-cyan h2, .bg-cyan h3 {
  color: #fff !important;
}
.bg-cyan p {
  color: #000;
}

a.bg-cyan {
  background: #54b7dc;
}
a.bg-cyan:hover {
  background: #02a1bc;
}

.bg-green {
  background: #9ac14e;
  color: #fff;
}
.bg-green h1, .bg-green h2, .bg-green h3 {
  color: #fff !important;
}
.bg-green p {
  color: #000;
}

a.bg-green {
  background: #9ac14e;
}
a.bg-green:hover {
  background: #87AD2A;
}

.bg-blue {
  background: #1f70b6;
  color: #fff;
}
.bg-blue h1, .bg-blue h2, .bg-blue h3 {
  color: #fff !important;
}
.bg-blue p {
  color: #000;
}

a.bg-blue {
  background: #1f70b6;
}
a.bg-blue:hover {
  background: #10619e;
}

.bg-orange {
  background: #eb933e;
  color: #fff;
}
.bg-orange h1, .bg-orange h2, .bg-orange h3 {
  color: #fff !important;
}
.bg-orange p {
  color: #000;
}

a.bg-orange {
  background: #eb933e;
}
a.bg-orange:hover {
  background: #e87e00;
}

.bg-teal {
  background: #5cb38c;
  color: #fff;
}
.bg-teal h1, .bg-teal h2, .bg-teal h3 {
  color: #fff !important;
}
.bg-teal p {
  color: #000;
}

a.bg-teal {
  background: #5cb38c;
}
a.bg-teal:hover {
  background: #3E936C;
}

.bg-yellow {
  background: #F9CF05;
  color: #fff;
}
.bg-yellow h1, .bg-yellow h2, .bg-yellow h3 {
  color: #fff !important;
}
.bg-yellow p {
  color: #000;
}

.bg-pink {
  background: #e96e84;
  color: #fff;
}
.bg-pink h1, .bg-pink h2, .bg-pink h3 {
  color: #fff !important;
}
.bg-pink p {
  color: #000;
}

a.bg-pink {
  background: #e96e84;
}
a.bg-pink:hover {
  background: #f75772;
}

.pink {
  color: #e96e84;
}

.bg-white {
  background: #fff !important;
}

/*
.bg-white{
	background: #fff !important;
	&.theme-cyan{
		h1{
			color: $cyan !important;
		}


	}
	&.theme-blue{
		h1{
			color: $blue !important;
		}


	}
	&.theme-orange{
		h1{
			color: $orange !important;
		}


	}
	&.theme-green{
		h1{
			color: $green !important;
		}


	}
	&.theme-teal{
		h1{
			color: $teal !important;
		}


	}
	&.theme-pink{
		h1{
			color: $pink !important;
		}


	}
	&.theme-yellow{
		h1{
			color: $yellow !important;
		}


	}
}
*/
#header--fixed {
  position: fixed;
  z-index: 999;
  width: 100%;
}

#preheader {
  width: 100%;
  padding: 0;
  background: #F9CF05;
  height: 40px;
  display: none;
}
@media (min-width: 1080px) {
  #preheader {
    display: block;
  }
}
#preheader {
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
#preheader.slim {
  height: 30px;
}
#preheader #preheader--strip {
  height: 100%;
  display: flex;
  justify-content: flex-end;
}
#preheader #preheader--strip .preheader--nav {
  display: flex;
  align-items: center;
  height: 100%;
}
#preheader #preheader--strip .preheader--nav a {
  text-decoration: none;
  padding: 0 10px;
  display: block;
  color: #666;
  font-weight: 500;
}
#preheader #preheader--strip .preheader--nav a:hover {
  color: #000;
}
#preheader #preheader--strip .preheader--nav a.here {
  color: #000;
}
#preheader #preheader--strip .preheader--nav a.nav--login {
  background: #5cb38c;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0 20px;
  margin: 0 15px;
  display: flex;
  height: 100%;
  align-items: center;
}
#preheader #preheader--strip .preheader--nav a.nav--login:hover {
  background: #3E936C;
}

#header {
  width: 100%;
  height: 100px;
  background: #fff;
  display: none;
}
@media (min-width: 1080px) {
  #header {
    display: flex;
    justify-content: center;
  }
  #header.members {
    display: block;
  }
}
#header.members {
  padding: 0;
}
#header {
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
#header #header--logo {
  width: 213px;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}
#header.slim {
  height: 60px;
}
#header.slim #header--logo {
  width: 160px;
}

#header--strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  max-width: 1600px;
}
#header--strip .header--nav {
  display: flex;
  align-items: center;
}
#header--strip .header--nav a {
  display: block;
  text-decoration: none;
  color: #666;
  font-weight: 600;
  font-size: 1.2em;
  margin: 0 5px;
  white-space: nowrap;
}
@media (min-width: 1080px) {
  #header--strip .header--nav a {
    margin: 0 10px;
    font-size: 1.3em;
  }
}
@media (min-width: 1250px) {
  #header--strip .header--nav a {
    margin: 0 12px;
    font-size: 1.5em;
  }
}
#header--strip .header--nav a:hover {
  color: #000;
}
#header--strip .header--nav a.theme-cyan.here {
  color: #54b7dc;
}
#header--strip .header--nav a.theme-cyan.here:hover {
  color: #54b7dc;
}
#header--strip .header--nav a.theme-teal.here {
  color: #5cb38c;
}
#header--strip .header--nav a.theme-teal.here:hover {
  color: #5cb38c;
}
#header--strip .header--nav a.theme-orange.here {
  color: #eb933e;
}
#header--strip .header--nav a.theme-orange.here:hover {
  color: #eb933e;
}
#header--strip .header--nav a.theme-blue.here {
  color: #1f70b6;
}
#header--strip .header--nav a.theme-blue.here:hover {
  color: #1f70b6;
}
#header--strip .header--nav a.try-for-free {
  background: #e96e84;
  color: #fff;
  padding: 10px 20px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
}
#header--strip .header--nav a.try-for-free:hover {
  background: #f75772;
}

.cta--strip {
  margin-top: 50px;
  padding-top: 10px;
  padding-bottom: 30px;
}
.cta--strip div {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 490px) {
  .cta--strip div {
    justify-content: space-between;
  }
}
.cta--strip .button {
  width: 100%;
}
@media (min-width: 490px) {
  .cta--strip .button {
    width: 40%;
  }
}
@media (min-width: 840px) {
  .cta--strip .button {
    width: 30%;
  }
}

.button--links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
}
.button--links a {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  background: #5cb38c;
}
.button--links a:hover {
  background: #3E936C;
}
.button--links a {
  color: #fff;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  text-decoration: none !important;
}
.button--links a + a {
  margin-top: 10px;
}
.button--links a {
  padding: 8px 18px;
  font-size: 1.4rem;
}
.button--links a.logout {
  background: #fff;
  color: #000;
  padding: 6px 14px !important;
  font-size: 1.2rem !important;
}
.button--links a.logout:hover {
  background: #ddd;
}
.button--links .try-for-free {
  background: #e96e84;
}
.button--links .try-for-free:hover {
  background: #f75772;
}

#footer {
  margin-top: 50px;
  padding: 16px;
  background: #2E2D2D;
  display: flex;
  flex-wrap: wrap;
}
#footer #footer--strapline {
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 5px;
}
@media (min-width: 490px) {
  #footer {
    justify-content: center;
  }
}
@media (min-width: 840px) {
  #footer {
    padding: 40px;
  }
}
#footer .footer--cols {
  width: 100%;
}
@media (min-width: 490px) {
  #footer .footer--cols {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 80px;
    max-width: 1600px;
  }
}
@media (min-width: 840px) {
  #footer .footer--cols {
    width: 95%;
  }
}
#footer .footer--cols .members--footer-col p {
  color: #fff;
  margin-top: 20px;
}
#footer .footer--cols .footer--col {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 490px) {
  #footer .footer--cols .footer--col {
    width: 30%;
  }
  #footer .footer--cols .footer--col:first-child {
    width: 100%;
  }
}
@media (min-width: 840px) {
  #footer .footer--cols .footer--col {
    width: 20%;
  }
  #footer .footer--cols .footer--col:first-child {
    width: 20%;
  }
}
@media (min-width: 490px) {
  #footer .footer--cols .footer--col:last-child {
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
#footer .footer--cols .footer--col .footer--nav a {
  font-size: 1.2rem;
  color: #F7EDED;
  text-decoration: none !important;
  display: block;
}
#footer .footer--cols .footer--col .footer--nav a + a {
  margin-top: 0.8em;
}
#footer .footer--cols .footer--col .footer--nav.nav--main a {
  font-size: 1.5rem;
  font-weight: 500;
}
#footer .footer--cols .button--links {
  padding: 0;
  flex-direction: column;
}
@media (min-width: 490px) {
  #footer .footer--cols .button--links {
    align-items: flex-end;
  }
}
#footer .footer--cols .button--links a {
  font-size: 1.2rem;
  padding: 6px 14px;
}
#footer .footer--cols .button--links a + a {
  margin-top: 10px;
}
@media (min-width: 840px) {
  #footer .footer--cols .button--links a {
    padding: 8px 18px;
    font-size: 1.4rem;
  }
}
#footer .footer--cols .small--links a {
  font-size: 0.9rem;
  color: #F7EDED;
  text-decoration: none !important;
  display: block;
}
#footer .footer--cols .small--links a + a {
  margin-top: 0.7em;
}
#footer .footer--tail {
  width: 100%;
}
@media (min-width: 840px) {
  #footer .footer--tail {
    width: 95%;
    max-width: 1600px;
    display: flex;
    justify-content: space-between;
  }
}
#footer .footer--tail .footer--credit {
  color: #F7EDED;
  white-space: nowrap;
  font-size: 0.8rem;
  margin-top: 10px;
}
@media (min-width: 840px) {
  #footer .footer--tail .footer--credit {
    text-align: right;
    margin-top: 0;
  }
}
#footer .footer--tail .footer--credit a {
  color: #F7EDED;
  font-size: 0.8rem;
  display: inline;
}

#footer--smallprint {
  font-size: 0.8rem;
  color: #F7EDED;
  text-align: left;
}

.cta--strip + #footer {
  margin-top: 0;
}

#footer--logo {
  width: 100%;
  max-width: 200px;
}

#hamburger--strip {
  width: 100%;
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  height: 57px;
}
@media (min-width: 1080px) {
  #hamburger--strip {
    display: none;
  }
}
#hamburger--strip.members {
  background: #2E2D2D;
}

.hamburger {
  display: block;
  /*
  position: absolute;
  top: 13px;
  right: 16px;
  */
  padding: 16px 16px 13px 16px;
  float: right;
}
@media (min-width: 1080px) {
  .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: #000;
}

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

#home--link {
  display: block !important;
  flex-grow: 0;
  width: 57px;
  padding: 10px 14px;
  float: left;
}
#home--link img {
  width: 100%;
  display: block;
}

@media (min-width: 1080px) {
  #mobile--menu {
    display: none;
  }
}
#mobile--menu .button--links {
  width: 170px;
}
#mobile--menu .button--links a {
  width: 100%;
  text-align: center;
}
#mobile--menu .button--links a + a {
  margin-top: 15px;
}
#mobile--menu #mobile--menu-panel {
  padding: 25px;
  padding-top: 80px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F9CF05;
  color: #000;
}
#mobile--menu #mobile--menu-panel #mobile--mainMenu a {
  color: #000;
  font-size: 1.5rem;
  display: block;
  width: 100%;
  text-decoration: none;
  font-weight: 600;
  padding: 5px 0;
}
#mobile--menu #mobile--menu-panel #mobile--mainMenu {
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}
#mobile--menu #mobile--menu-panel #mobile--secondaryMenu a {
  color: #000;
  font-size: 1.3rem;
  display: block;
  width: 100%;
  text-decoration: none;
  padding: 5px 0;
}
#mobile--menu #mobile--menu-panel #mobile--secondaryMenu {
  margin-bottom: 25px;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
}
#mobile--menu.members #mobile--menu-panel {
  background-color: #eaeaea;
  text-align: center;
}
#mobile--menu.members #mobile--menu-panel #mobile--mainMenu a.theme-cyan, #mobile--menu.members #mobile--menu-panel #mobile--secondaryMenu a.theme-cyan {
  color: #54b7dc;
}
#mobile--menu.members #mobile--menu-panel #mobile--mainMenu a.theme-cyan.here, #mobile--menu.members #mobile--menu-panel #mobile--secondaryMenu a.theme-cyan.here {
  background: #54b7dc;
  color: #fff;
}
#mobile--menu.members #mobile--menu-panel #mobile--mainMenu a.theme-orange, #mobile--menu.members #mobile--menu-panel #mobile--secondaryMenu a.theme-orange {
  color: #eb933e;
}
#mobile--menu.members #mobile--menu-panel #mobile--mainMenu a.theme-green, #mobile--menu.members #mobile--menu-panel #mobile--secondaryMenu a.theme-green {
  color: #9ac14e;
}
#mobile--menu.members #mobile--menu-panel #mobile--mainMenu a.theme-green.here, #mobile--menu.members #mobile--menu-panel #mobile--secondaryMenu a.theme-green.here {
  background: #9ac14e;
  color: #fff;
}
#mobile--menu.members #mobile--menu-panel #mobile--mainMenu a.theme-teal, #mobile--menu.members #mobile--menu-panel #mobile--secondaryMenu a.theme-teal {
  color: #5cb38c;
}
#mobile--menu.members #mobile--menu-panel #mobile--mainMenu a.theme-teal.here, #mobile--menu.members #mobile--menu-panel #mobile--secondaryMenu a.theme-teal.here {
  background: #5cb38c;
  color: #fff;
}
#mobile--menu.members #mobile--menu-panel #mobile--mainMenu a.theme-pink, #mobile--menu.members #mobile--menu-panel #mobile--secondaryMenu a.theme-pink {
  color: #e96e84;
}
#mobile--menu.members #mobile--menu-panel #mobile--mainMenu a.theme-pink.here, #mobile--menu.members #mobile--menu-panel #mobile--secondaryMenu a.theme-pink.here {
  background: #e96e84;
  color: #fff;
}

#main {
  padding-top: 57px;
  /*padding-top: 57px;*/
}
@media (min-width: 940px) {
  #main {
    padding-top: 140px;
  }
}
#main {
  /*
  @include breakpoint('maxi-desktop'){
  	font-size: 1.25em;
  }*/
}
@media (min-width: 1600px) {
  #main {
    font-size: 1vw;
  }
}
#main.members {
  padding-top: 57px;
}
@media (min-width: 1080px) {
  #main.members {
    padding-top: 0;
  }
}

.page {
  padding-top: 30px;
  min-height: 400px;
}

h1.page--title {
  margin-bottom: 1em;
}

.blog--intro {
  margin-bottom: 30px;
}
.blog--intro a {
  color: black;
}

.pullquote h2 {
  margin-bottom: 1em;
}

.blog--transport {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.blog--transport a {
  color: #e96e84;
  text-decoration: none;
  text-transform: uppercase;
}

.hero {
  padding-top: 40px;
  padding-bottom: 50px;
}
.hero h1 {
  font-weight: 600;
  font-size: 2.4em;
  margin-bottom: 0.3em;
  color: #fff;
}
@media (min-width: 840px) {
  .hero .hero--sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.hero .hero--content {
  width: 100%;
}
@media (min-width: 840px) {
  .hero .hero--content {
    width: 70%;
    padding-right: 60px;
  }
}
.hero .hero--image {
  width: 100%;
  margin-top: 25px;
}
@media (min-width: 840px) {
  .hero .hero--image {
    width: 30%;
    text-align: center;
    margin-top: 0;
  }
}
.hero .hero--image img {
  width: 100%;
  max-width: 350px;
}
@media (min-width: 1080px) {
  .hero .hero--image img {
    height: 270px;
    width: auto;
  }
}
.hero .hero--image img {
  /*width:100%;*/
  /*max-width: 350px;*/
}
.hero .hero--text {
  font-size: 1.7em;
  color: #000;
  /*max-width: 600px;*/
}
.hero .hero--text + .hero--subtext {
  margin-top: 15px;
}
.hero .hero--subtext {
  font-weight: 400;
  font-size: 1.3em;
  color: #fff;
  /* max-width: 600px; */
}
.hero .hero--subtext p {
  font-weight: 400;
  font-size: 1em;
  color: #fff;
  max-width: 600px;
}

.image img {
  width: 100%;
}
.image + .text {
  margin-top: 1em;
}

.text + .image {
  margin-top: 60px;
}

.testimonials {
  padding-top: 45px;
  padding-bottom: 40px;
}
.testimonials h1 {
  margin-bottom: 1em;
}
.testimonials .testimonials--container {
  display: flex;
  flex-wrap: wrap;
}
.testimonials .testimonial--attrib {
  font-size: 1.4rem;
  text-transform: uppercase;
  font-weight: bold;
  margin-top: 10px;
}
.testimonials .testimonial--attrib-bio {
  font-size: 1.4rem;
  font-style: italic;
}
.testimonials .testimonial--content b, .testimonials .testimonial--content strong {
  font-weight: 600;
}
.testimonials .testimonial--content i, .testimonials .testimonial--content em {
  font-style: italic;
}
.testimonials .testimonial--content .heading {
  font-size: 1.6rem;
}
.testimonials .testimonial--content .heading p {
  font-size: 1.6rem;
}
.testimonials .testimonial--content.uppercase-1 .heading {
  text-transform: uppercase;
}
.testimonials .testimonial--content {
  width: 100%;
  padding-bottom: 30px;
}
@media (min-width: 840px) {
  .testimonials .testimonial--content {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 2rem;
  }
  .testimonials .testimonial--content p {
    font-size: 2rem;
  }
  .testimonials .testimonial--content {
    padding-bottom: 40px;
    padding-left: 15%;
    padding-right: 15%;
  }
  .testimonials .testimonial--content:nth-child(3n-1), .testimonials .testimonial--content:nth-child(3n-2) {
    padding-right: 35px;
    padding-left: 0;
    width: 50%;
  }
}

.scrollTrigger {
  display: block;
  margin-top: 30px;
}
@media (min-width: 840px) {
  .scrollTrigger {
    margin-top: 60px;
  }
}
.scrollTrigger img {
  width: 30px;
}

#scrollTrigger-desktop {
  display: none;
}
@media (min-width: 840px) {
  #scrollTrigger-desktop {
    display: block;
  }
}

#scrollTrigger-mobile {
  display: block;
}
@media (min-width: 840px) {
  #scrollTrigger-mobile {
    display: none;
  }
}

.highlight {
  padding-top: 35px;
  padding-bottom: 35px;
  background-size: 0;
}
@media (min-width: 840px) {
  .highlight {
    background-size: 45%;
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.highlight .highlight--container {
  display: flex;
  flex-direction: column-reverse;
}
.highlight .highlight--container .highlight--images img {
  width: 100%;
  min-width: 240px;
  max-width: 340px;
  margin-bottom: 20px;
}
@media (min-width: 840px) {
  .highlight .highlight--container .highlight--images img {
    margin-bottom: 40px;
  }
}
.highlight .highlight--container.textFirst {
  flex-direction: column;
}
.highlight .highlight--container.textFirst .highlight--images img {
  margin-top: 30px;
  margin-bottom: 0;
}
@media (min-width: 840px) {
  .highlight .highlight--container.textFirst .highlight--images img {
    margin-top: 0;
    margin-bottom: 40px;
  }
}
@media (min-width: 840px) {
  .highlight .highlight--container .highlight--content {
    padding-top: 20px;
  }
}
@media (min-width: 840px) {
  .highlight .highlight--container {
    display: flex;
    flex-direction: row !important;
    align-items: center;
  }
  .highlight .highlight--container.align-top {
    align-items: flex-start;
  }
  .highlight .highlight--container.align-middle {
    align-items: center;
  }
  .highlight .highlight--container .highlight--content {
    width: 50%;
    padding-top: 0;
  }
  .highlight .highlight--container .highlight--images {
    width: 50%;
  }
  .highlight .highlight--container .highlight--images img {
    width: 100%;
    max-width: 100%;
    margin-bottom: 0;
  }
  .highlight .highlight--container .highlight--images img.format-small {
    max-width: 400px;
  }
  .highlight .highlight--container.textLeft .highlight--images {
    text-align: right;
  }
  .highlight .highlight--container.textLeft.wideLeft .highlight--images {
    padding-left: 9%;
  }
  .highlight .highlight--container.textLeft.wideRight .highlight--content {
    padding-right: 9%;
  }
  .highlight .highlight--container.textRight {
    flex-direction: row-reverse !important;
  }
  .highlight .highlight--container.textRight .highlight--images {
    text-align: left;
  }
  .highlight .highlight--container.textRight.wideLeft .highlight--content {
    padding-left: 9%;
  }
  .highlight .highlight--container.textRight.wideRight .highlight--images {
    padding-right: 9%;
  }
  .highlight .highlight--container.textRight.xWideRight .highlight--images {
    width: 40%;
    padding-right: 9%;
  }
  .highlight .highlight--container.textRight.xWideRight .highlight--content {
    width: 60%;
  }
}
.highlight h1 {
  margin-bottom: 0.3em;
}
.highlight h3 {
  margin-top: 1em;
}
.highlight .button + h3 {
  margin-top: 2em;
}

.text a {
  color: black;
}
.text ol, .text ul {
  padding-left: 1.4em;
}
.text ol ul, .text ul ul {
  list-style: disc;
}
.text ol li, .text ul li {
  font-size: 1.2em;
  line-height: 1.4em;
  margin-top: 0.5em;
}
.text {
  margin-bottom: 30px;
}

.callToAction {
  text-align: center;
  margin-top: 40px;
}

.horizontalRule {
  border-bottom: 1px solid #000;
}
.horizontalRule + .text {
  margin-top: 40px;
}
.horizontalRule + .textAndImage {
  margin-top: 40px;
}
.horizontalRule + .image {
  margin-top: 40px;
}

.textAndImage + .horizontalRule {
  margin-top: 40px;
}
.textAndImage {
  margin-top: 20px;
}
@media (min-width: 840px) {
  .textAndImage {
    margin-top: 50px;
  }
}
.textAndImage:first-sibling() {
  margin-top: 0;
}
@media (min-width: 840px) {
  .textAndImage:first-sibling() {
    margin-top: 0;
  }
}
.textAndImage .textAndImage--container {
  display: flex;
  flex-direction: column;
}
.textAndImage .textAndImage--container .textAndImage--image img {
  width: 100%;
  max-width: 400px;
  margin-top: 20px;
}
.textAndImage .textAndImage--container h2 {
  margin-bottom: 0.4em;
}
@media (min-width: 840px) {
  .textAndImage .textAndImage--container {
    flex-direction: row;
  }
  .textAndImage .textAndImage--container .textAndImage--content {
    width: 60%;
    padding-right: 30px;
  }
  .textAndImage .textAndImage--container .textAndImage--image {
    width: 40%;
  }
  .textAndImage .textAndImage--container .textAndImage--image img {
    width: 100%;
    margin-top: 0;
  }
  .textAndImage .textAndImage--container .textAndImage--image img + img {
    margin-top: 20px;
  }
  .textAndImage .textAndImage--container.textRight {
    flex-direction: row-reverse;
  }
  .textAndImage .textAndImage--container.textRight .textAndImage--content {
    padding-right: 0;
    padding-left: 30px;
  }
}

.team--entries .team--entry {
  margin-bottom: 50px;
}
.team--entries .team--entry .team--mugshot {
  margin-bottom: 20px;
}
@media (min-width: 615px) {
  .team--entries {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .team--entries .team--entry {
    width: 48%;
  }
  .team--entries .team--entry .team--mugshot {
    width: 80%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
  }
}
@media (min-width: 840px) {
  .team--entries .team--entry {
    width: 31%;
  }
}

@media (min-width: 940px) {
  #pricing--steps {
    display: flex;
    flex-direction: row;
  }
}
#pricing--steps h2 {
  font-size: 1.7em;
  color: #1f70b6;
}
@media (min-width: 940px) {
  #pricing--steps h2 {
    min-height: 70px;
  }
}
#pricing--steps {
  /*
  select{
  	padding:6px;
  	@include radius(7px);
  	font-family: 'Quicksand', sans-serif;
  	font-size: 1.1em;
  	option{

  		font-family: 'Quicksand', sans-serif;
  		font-size: 1.1em;
  	}
  }
  */
}
@media (min-width: 940px) {
  #pricing--steps #pricing--step3.maxi {
    width: 66%;
  }
}
#pricing--steps .pricing--step {
  padding-bottom: 30px;
}
@media (min-width: 940px) {
  #pricing--steps .pricing--step {
    width: 33%;
    padding-right: 20px;
  }
}
#pricing--steps .pricing--group {
  margin-top: 12px;
}
#pricing--steps .pricing--group a {
  display: block;
  width: 100%;
  border: 2px solid #1f70b6;
  padding: 11px 14px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  font-size: 1.2em;
  margin-bottom: 12px;
  text-decoration: none;
  color: #1f70b6;
}
#pricing--steps .pricing--group a:hover {
  background: #E5F0F9;
}
#pricing--steps .pricing--group a.here {
  background: #1f70b6;
  color: #fff;
}
#pricing--steps .pricing--group a.here:hover {
  background: #1f70b6;
}
#pricing--steps #pricing--price-container {
  padding: 15px;
  padding-bottom: 35px;
  background: #E5F0F9;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
}
#pricing--steps #pricing--price-container a {
  font-size: 1.4em;
  font-weight: 600;
  background: #1f70b6;
  color: #fff;
  padding: 10px 20px;
  -webkit-border-radius: 25px;
  -moz-border-radius: 25px;
  border-radius: 25px;
  text-decoration: none !important;
}
#pricing--steps #pricing--price {
  font-size: 3.5em;
  font-weight: 600;
  margin-top: -10px;
  margin-bottom: 20px;
}
@media (min-width: 840px) {
  #pricing--steps #pricing--LEA, #pricing--steps #pricing--academy {
    padding-left: 11%;
  }
}
#pricing--steps #pricing--LEA p, #pricing--steps #pricing--academy p {
  font-size: 1.7em;
  font-weight: 600;
}
#pricing--steps #pricing--LEA a, #pricing--steps #pricing--academy a {
  color: #1f70b6;
  text-decoration: underline;
}

#approach--main-tabs {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#approach--main-tabs .approach--main-tab {
  width: 50%;
  padding: 3%;
}
#approach--main-tabs .approach--main-tab img {
  width: 100%;
  opacity: 0.6;
}
#approach--main-tabs .approach--main-tab #dnav path, #approach--main-tabs .approach--main-tab #sixways path {
  fill: #e5e5e4;
}
#approach--main-tabs .approach--main-tab:hover #dnav path, #approach--main-tabs .approach--main-tab:hover #sixways path {
  fill: #d1d1d1;
}
#approach--main-tabs .approach--main-tab.here #dnav path, #approach--main-tabs .approach--main-tab.here #sixways path {
  fill: #02b5dd;
}
#approach--main-tabs .approach--main-tab.here:hover #dnav path, #approach--main-tabs .approach--main-tab.here:hover #sixways path {
  fill: #02b5dd;
}

#approach--panels {
  position: relative;
  top: -30px;
  background: #7BDBF1;
  padding: 30px;
}
@media (min-width: 840px) {
  #approach--panels {
    padding: 50px 60px;
  }
}
#approach--panels h2, #approach--panels h3 {
  color: #fff;
}
#approach--panels h3 {
  margin-top: 30px;
}

#approach--panel-indicators {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

.approach--panel-indicator {
  width: 60px;
  height: 60px;
  display: block;
  transform: scaleX(0.7);
}
.approach--panel-indicator .indicator--gfx {
  width: 60px;
  height: 60px;
  display: block;
  background: #7BDBF1;
  transform: rotate(45deg);
}

#way--selectors {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 40px;
  padding-bottom: 40px;
}
#way--selectors .way--selector {
  width: 15%;
}
#way--selectors .way--selector img {
  width: 100%;
  /* margin-left:15%; */
}

.way--panel {
  text-align: center;
  position: absolute;
  margin: auto;
  width: 100%;
}
.way--panel h2 {
  font-size: 2.2em;
  color: #e96e84;
}
.way--panel p {
  font-size: 1.3em;
}

#char--selectors {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: baseline;
  padding-top: 20px;
  margin-bottom: 30px;
}
#char--selectors .char--selector {
  width: 15%;
}
#char--selectors .char--selector img {
  width: 100%;
  /* margin-left:15%; */
}
#char--selectors #char--selector4 img {
  /*margin-left:-8%;*/
}

#char--panels, #way--panels {
  position: relative;
  height: 200px;
}
@media (min-width: 840px) {
  #char--panels, #way--panels {
    height: 100px;
  }
}

.char--panel {
  text-align: center;
  position: absolute;
  /*max-width: 480px;*/
  width: 100%;
  margin: auto;
}
.char--panel h2 {
  font-size: 2.2em;
  color: #e96e84;
}
.char--panel p {
  font-size: 1.3em;
}

.form--field {
  padding-bottom: 12px;
  position: relative;
}
.form--field input[type=text], .form--field input[type=password] {
  width: 100%;
  max-width: 400px;
  border: 2px solid #000;
  padding: 11px 14px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2em;
}
.form--field input[type=text] option, .form--field input[type=password] option {
  font-family: "Quicksand", sans-serif;
  font-size: 1.2em;
}
.form--field select {
  width: 100%;
  max-width: 400px;
  background: url(data:image/svg+xml;base64,PHN2ZyBpZD0iTGF5ZXJfMSIgZGF0YS1uYW1lPSJMYXllciAxIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0Ljk1IDEwIj48ZGVmcz48c3R5bGU+LmNscy0xe2ZpbGw6I2ZmZjt9LmNscy0ye2ZpbGw6IzQ0NDt9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmFycm93czwvdGl0bGU+PHJlY3QgY2xhc3M9ImNscy0xIiB3aWR0aD0iNC45NSIgaGVpZ2h0PSIxMCIvPjxwb2x5Z29uIGNsYXNzPSJjbHMtMiIgcG9pbnRzPSIxLjQxIDQuNjcgMi40OCAzLjE4IDMuNTQgNC42NyAxLjQxIDQuNjciLz48cG9seWdvbiBjbGFzcz0iY2xzLTIiIHBvaW50cz0iMy41NCA1LjMzIDIuNDggNi44MiAxLjQxIDUuMzMgMy41NCA1LjMzIi8+PC9zdmc+) no-repeat 95% 50%;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #000;
  padding: 11px 30px 11px 14px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2em;
}

.theme-pink input[type=text], .theme-pink input[type=password], .theme-pink select {
  border-color: #e96e84;
}

.submit--button {
  background: #e96e84;
  color: #fff;
  padding: 14px 28px;
  border: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 1.7em;
  margin-top: 20px;
  margin-bottom: 40px;
  cursor: pointer;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.standard--form {
  margin-top: 27px;
  width: 100%;
  max-width: 400px;
}

.blog--list {
  display: flex;
  flex-wrap: wrap;
}
.blog--list .blog--teaser {
  width: 100%;
}
@media (min-width: 490px) {
  .blog--list .blog--teaser {
    width: 50%;
  }
}
@media (min-width: 840px) {
  .blog--list .blog--teaser {
    width: 33%;
  }
}
@media (min-width: 940px) {
  .blog--list .blog--teaser {
    width: 25%;
  }
}
.blog--list .blog--teaser {
  padding-right: 20px;
  padding-bottom: 30px;
}
.blog--list .blog--teaser img {
  width: 100%;
  margin-bottom: 10px;
}
.blog--list h2 {
  font-weight: 500;
}
.blog--list h2 a {
  text-decoration: none;
  color: #000;
}

@media (min-width: 840px) {
  .fui-form .fui-page-container {
    display: flex;
  }
}
@media (min-width: 840px) {
  .fui-form .fui-page-row {
    width: 40%;
  }
}
.fui-form .fui-instructions {
  margin-top: 20px;
}
.fui-form .fui-error-message {
  color: #1f70b6;
}
.fui-form legend {
  display: none;
}
.fui-form label {
  display: none;
  font-family: "Quicksand", sans-serif;
  font-size: 1.2em;
}
.fui-form input[type=text], .fui-form input[type=email] {
  font-family: "Quicksand", sans-serif;
  font-size: 1.2em;
  margin-top: 10px;
  width: 100%;
  /*max-width: 400px; */
  border: 2px solid #1f70b6;
  padding: 11px 14px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}
@media (min-width: 840px) {
  .fui-form input[type=text], .fui-form input[type=email] {
    width: 96%;
  }
}
.fui-form button[type=submit] {
  background: #1f70b6;
  color: #fff;
  padding: 14px 28px;
  border: 0;
  font-family: "Quicksand", sans-serif;
  font-weight: 600;
  font-size: 1.7em;
  margin-top: 20px;
  margin-bottom: 40px;
  cursor: pointer;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
}

.pricing .fui-form h2 {
  font-size: 1.7em;
  color: #1f70b6;
}

@media (min-width: 840px) {
  .faqsForm .fui-form input[type=text], .faqsForm .fui-form input[type=email] {
    width: 100%;
  }
}
@media (min-width: 840px) {
  .faqsForm .fui-form .fui-page-row {
    width: 66%;
  }
}
.faqsForm .fui-form .fui-page-container {
  display: block;
}
.faqsForm .fui-form textarea {
  font-family: "Quicksand", sans-serif;
  font-size: 1.2em;
  border: 2px solid #1f70b6;
  padding: 11px 14px;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  border-radius: 7px;
}

.login--form-container {
  display: flex;
  justify-content: center;
}

.login--form .submit--button, .standard--form .submit--button {
  padding: 10px 20px;
  border-radius: 30px;
  margin-top: 20px;
  font-size: 1.4em;
}
.login--form .submit--button:hover, .standard--form .submit--button:hover {
  background: #f75772;
}

.login--form h2 {
  margin-bottom: 30px;
}
.login--form input {
  padding: 6px 12px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.login--form h4 {
  font-size: 1.6em;
  margin-top: 10px;
  margin-bottom: 10px;
}
.login--form textarea {
  padding: 6px 12px;
  font-family: "Quicksand", sans-serif;
  font-size: 1.3em;
}

.radio--cells {
  display: flex;
  width: 60%;
}
.radio--cells .radio--cell {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 40px;
}
.radio--cells .radio--cell .cell--name {
  text-align: center;
  font-size: 1.3em;
  color: #2E2D2D;
  white-space: nowrap;
  padding: 10px 0;
}
.radio--cells .radio--cell .cell--radio {
  text-align: center;
  background: #ebe7e7;
  padding: 10px 0;
}
.radio--cells .radio--cell .cell--radio input {
  -ms-transform: scale(1.5); /* IE 9 */
  -webkit-transform: scale(1.5); /* Chrome, Safari, Opera */
  transform: scale(1.5);
  padding: 0;
  margin: 0;
}

.signup--text {
  color: #000 !important;
  max-width: 600px;
}

.pwd-toggle {
  width: 30px;
  display: block;
  position: absolute;
  right: 15px;
  top: 11px;
}
.pwd-toggle .icon-off {
  display: block;
}
.pwd-toggle .icon-on {
  display: none;
}
.pwd-toggle.on .icon-off {
  display: none;
}
.pwd-toggle.on .icon-on {
  display: block;
}

.try-thanks .image img, .welcome .image img, .onboarding5 .image img {
  width: 60%;
  max-width: 200px;
}
.try-thanks .image img.mobile, .welcome .image img.mobile, .onboarding5 .image img.mobile {
  display: none;
}
.try-thanks .image img.desktop, .welcome .image img.desktop, .onboarding5 .image img.desktop {
  display: block;
}
@media (min-width: 840px) {
  .try-thanks .image img.mobile, .welcome .image img.mobile, .onboarding5 .image img.mobile {
    display: none;
  }
  .try-thanks .image img.desktop, .welcome .image img.desktop, .onboarding5 .image img.desktop {
    display: block;
  }
}
.try-thanks h1.page--title, .welcome h1.page--title, .onboarding5 h1.page--title {
  font-size: 3.4em !important;
  margin-bottom: 0.5em !important;
}
.try-thanks h1.page--title img, .welcome h1.page--title img, .onboarding5 h1.page--title img {
  max-height: 140px;
  position: relative;
  top: 30px;
}
@media (min-width: 840px) {
  .try-thanks .content--block.text, .welcome .content--block.text, .onboarding5 .content--block.text {
    width: 80%;
    max-width: 800px;
  }
}
.try-thanks .content--block.text p, .welcome .content--block.text p, .onboarding5 .content--block.text p {
  font-size: 1.6em !important;
}
.try-thanks .login--form-container, .welcome .login--form-container, .onboarding5 .login--form-container {
  display: block;
}
.try-thanks .login--form-container button, .welcome .login--form-container button, .onboarding5 .login--form-container button {
  margin-top: 0;
}

.margin--image-container {
  display: flex;
}
.margin--image-container .margin--image {
  flex-grow: 0.5;
  text-align: center;
}
.margin--image-container .margin--image img {
  margin: 50px;
}

/* The switch - the box around the slider */
.switch-container {
  width: 65px;
  height: 31px;
  position: relative;
  margin-right: 8px;
}

/* Hide default HTML checkbox */
.switch-checkbox {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}

.switch {
  width: 100%;
  height: 100%;
  display: block;
  background-color: #e9e9eb;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease-out;
}

/* The slider */
.switch-slider {
  width: 27px;
  height: 27px;
  position: absolute;
  left: calc(50% - 13.5px - 16px);
  top: calc(50% - 13.5px);
  border-radius: 50%;
  background: #FFFFFF;
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.15), 0px 3px 1px rgba(0, 0, 0, 0.06);
  transition: all 0.2s ease-out;
  cursor: pointer;
}

.switch-checkbox:checked + .switch {
  background-color: #9ac14e;
}

.switch-checkbox:checked + .switch .switch-slider {
  left: calc(50% - 13.5px + 16px);
  top: calc(50% - 13.5px);
}

.survey--container {
  max-width: 400px;
}

.devtable td {
  border: 1px solid #ccc;
  padding: 5px;
}
.devtable .graphcell {
  padding: 0 !important;
  vertical-align: bottom;
}
.devtable .graphcell div {
  display: block;
  background-color: #333;
  width: 30px;
  height: 10px;
}
.devtable .graphcell .cell-1 {
  height: 8px !important;
}
.devtable .graphcell .cell-2 {
  height: 16px !important;
}
.devtable .graphcell .cell-3 {
  height: 24px !important;
}
.devtable .graphcell .cell-4 {
  height: 32px !important;
}
.devtable .graphcell .cell-5 {
  height: 40px !important;
}

.warner {
  border: 2px solid red;
  background: #fff;
  color: red;
  padding: 10px;
  font-size: 1.2em;
  position: absolute;
  bottom: 0;
  left: 0;
}
.warner a {
  text-decoration: underline;
}

.announcer {
  border: 2px solid #333;
  background: #ddd;
  padding: 10px;
  font-size: 1.2em;
  margin-bottom: 20px;
}

h1.mega {
  color: #eb933e;
  font-size: 6em;
  font-weight: 600;
}

.members #home--link {
  display: block !important;
  width: 46px;
  padding: 8px 11px;
  background: #2E2D2D;
  flex-grow: 0;
}
.members #home--link img {
  width: 100%;
  display: block;
}
.members #home--link.members {
  width: 57px;
  padding: 10px 14px;
  float: left;
}

.members--nav {
  background: #eaeaea;
  display: flex;
  justify-content: space-between;
}
.members--nav a {
  font-weight: 600;
  font-size: 1.1em;
  line-height: 1em;
  padding: 10px;
  text-decoration: none;
  text-align: center;
  flex-grow: 1;
}
@media (min-width: 840px) {
  .members--nav a {
    font-size: 1.2em;
  }
}
@media (min-width: 940px) {
  .members--nav a {
    font-size: 1.4em;
  }
}
.members--nav.l1 a {
  background: #eaeaea;
}
.members--nav.l1 a.here {
  color: #fff;
}
.members--nav.l1 a.theme-teal {
  color: #5cb38c;
}
.members--nav.l1 a.theme-teal:hover {
  background: #edf7f3;
  color: #5cb38c;
}
.members--nav.l1 a.theme-teal.here {
  background: #5cb38c;
  color: #fff;
}
.members--nav.l1 a.theme-teal.here:hover {
  background: #5cb38c;
  color: #fff;
}
.members--nav.l1 a.theme-cyan {
  color: #54b7dc;
}
.members--nav.l1 a.theme-cyan:hover {
  background: #e6f7fc;
  color: #54b7dc;
}
.members--nav.l1 a.theme-cyan.here {
  background: #54b7dc;
  color: #fff;
}
.members--nav.l1 a.theme-cyan.here:hover {
  background: #54b7dc;
  color: #fff;
}
.members--nav.l1 a.theme-orange {
  color: #eb933e;
}
.members--nav.l1 a.theme-orange:hover {
  background: #fcf3e8;
  color: #eb933e;
}
.members--nav.l1 a.theme-orange.here {
  background: #eb933e;
  color: #fff;
}
.members--nav.l1 a.theme-orange.here:hover {
  background: #eb933e;
  color: #fff;
}
.members--nav.l1 a.theme-green {
  color: #9ac14e;
}
.members--nav.l1 a.theme-green:hover {
  background: #f5f9ed;
  color: #9ac14e;
}
.members--nav.l1 a.theme-green.here {
  background: #9ac14e;
  color: #fff;
}
.members--nav.l1 a.theme-green.here:hover {
  background: #9ac14e;
  color: #fff;
}
.members--nav.l1 a.theme-pink {
  color: #e96e84;
}
.members--nav.l1 a.theme-pink:hover {
  background: #fcf0f2;
  color: #e96e84;
}
.members--nav.l1 a.theme-pink.here {
  background: #e96e84;
  color: #fff;
}
.members--nav.l1 a.theme-pink.here:hover {
  background: #e96e84;
  color: #fff;
}
.members--nav.l2 a.theme-teal {
  background: #edf7f3;
  color: #5cb38c;
}
.members--nav.l2 a.theme-teal:hover {
  background: #cce8dc;
  color: #5cb38c;
}
.members--nav.l2 a.theme-teal.here {
  background: #77c2a3;
  color: #fff;
}
.members--nav.l2 a.theme-teal.here:hover {
  background: #77c2a3;
  color: #fff;
}
.members--nav.l2 a.theme-cyan {
  background: #e6f7fc;
  color: #54b7dc;
}
.members--nav.l2 a.theme-cyan:hover {
  background: #b5e9f4;
  color: #54b7dc;
}
.members--nav.l2 a.theme-cyan.here {
  background: #5dc5e3;
  color: #fff;
}
.members--nav.l2 a.theme-cyan.here:hover {
  background: #5dc5e3;
  color: #fff;
}
.members--nav.l2 a.theme-orange {
  background: #fcf3e8;
  color: #eb933e;
}
.members--nav.l2 a.theme-orange:hover {
  background: #f9debd;
  color: #eb933e;
}
.members--nav.l2 a.theme-orange.here {
  background: #efa855;
  color: #fff;
}
.members--nav.l2 a.theme-orange.here:hover {
  background: #efa855;
  color: #fff;
}
.members--nav.l2 a.theme-green {
  background: #f5f9ed;
  color: #9ac14e;
}
.members--nav.l2 a.theme-green:hover {
  background: #e1ecc8;
  color: #9ac14e;
}
.members--nav.l2 a.theme-green.here {
  background: #afcd70;
  color: #fff;
}
.members--nav.l2 a.theme-green.here:hover {
  background: #afcd70;
  color: #fff;
}
.members--nav.l2 a.theme-pink {
  background: #fcf0f2;
  color: #e96e84;
}
.members--nav.l2 a.theme-pink:hover {
  background: #f6d3da;
  color: #e96e84;
}
.members--nav.l2 a.theme-pink.here {
  background: #ec8c9d;
  color: #fff;
}
.members--nav.l2 a.theme-pink.here:hover {
  background: #ec8c9d;
  color: #fff;
}

.members--l3nav a {
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 600;
  padding: 5px 10px;
  margin-bottom: 5px;
  display: block;
  width: 100%;
  color: #54b7dc;
  background-color: #b5e9f4;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}
.members--l3nav a:hover {
  background-color: #5dc5e3;
  color: #fff;
}
.members--l3nav a.here {
  background-color: #54b7dc;
  color: #fff;
}
.members--l3nav a.here:hover {
  background-color: #54b7dc;
  color: #fff;
}

/*

.members{
	padding: 10px 0;
	border-top: 1px solid $orange;
	&.training{
		display: flex;
	}
	&.toolbox{
		display: flex;
		padding: 30px 0;

	*/
.members .resource--teasers {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.members .resource--teasers .resource--teaser {
  padding: 40px 0;
  border-top: 1px solid #eb933e;
  width: 100%;
}
.members .resource--teasers .resource--teaser .resource--teaser-sub {
  width: 97%;
}
.members .resource--teasers .resource--teaser h4 {
  margin-top: 20px;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 1.1em;
}
.members .resource--teasers .resource--teaser p {
  font-size: 1.1em;
  margin-bottom: 20px;
}
.members .resource--teasers .resource--teaser img {
  width: 100%;
}
.members .resource--teasers .resource--teaser .lozenge {
  font-size: 1.1em;
  padding: 9px 19px 11px 19px;
  display: inline-block;
  text-decoration: none;
  background-color: #D0669F;
  color: #fff;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
@media (min-width: 840px) {
  .members .resource--teasers .resource--teaser {
    width: 50%;
    display: flex;
  }
  .members .resource--teasers .resource--teaser:nth-child(even) {
    justify-content: flex-end;
  }
  .members .resource--teasers .resource--teaser .lozenge {
    margin-bottom: 40px;
  }
  .members .resource--teasers .resource--teaser.third-1 {
    width: 33.3%;
  }
}

@media (min-width: 840px) {
  .bonus-materials .members .resource--teasers .resource--teaser:nth-child(even) {
    justify-content: initial;
  }
  .bonus-materials .members .resource--teasers .resource--teaser:nth-child(2) {
    justify-content: flex-end;
  }
  .bonus-materials .members .resource--teasers .resource--teaser:nth-child(5) {
    justify-content: flex-end;
  }
  .bonus-materials .members .resource--teasers .resource--teaser:nth-child(4) {
    justify-content: center;
  }
  .bonus-materials .members .resource--teasers .resource--teaser:nth-child(7) {
    justify-content: flex-end;
  }
}

.intro {
  border-top: 1px solid #eb933e;
  margin: 0 0 30px 0;
  padding-top: 20px;
  font-size: 1.2em;
}

.training--content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.training--content .training--sidebar {
  width: 100%;
}
@media (min-width: 840px) {
  .training--content .training--sidebar {
    width: 30%;
    padding-right: 20px;
  }
}
.training--content .training--resources {
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #000;
}
.training--content .training--resources a {
  color: #000;
  display: block;
  margin-bottom: 10px;
}
.training--content .training--embed {
  width: 100%;
}
@media (min-width: 840px) {
  .training--content .training--embed {
    width: 70%;
  }
}

.lesson-plans-wrap {
  border-top: 1px solid #000;
  margin-bottom: 30px;
  padding-top: 12px;
  margin-top: 10px;
}

.lesson-plans {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.lesson-plans .lesson-plans--col {
  width: 100%;
}
@media (min-width: 840px) {
  .lesson-plans .lesson-plans--col {
    width: 24%;
  }
}
.lesson-plans .lesson-plans--col h2 {
  color: #000;
  font-weight: 600;
  font-size: 1.3em;
  text-align: left;
  margin-bottom: 20px;
}
.lesson-plans .btn {
  display: block;
  background-color: #e1ecc8;
  padding: 6px 9px 8px 9px;
  font-weight: 600;
  font-size: 1.3em;
  color: #9ac14e;
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease-out;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.lesson-plans .btn h4 {
  font-weight: 600;
  font-size: 1.1rem;
  color: #9ac14e;
  margin-bottom: 2px;
}
.lesson-plans .btn h5 {
  font-weight: 400;
  font-size: 0.8rem;
  color: #000;
}
.lesson-plans .btn h5 b {
  font-weight: 600;
}
.lesson-plans .btn .marker {
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 15px;
  height: 15px;
  border: 1px solid #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}
.lesson-plans .btn .marker img {
  display: none;
  width: 80%;
  position: relative;
  top: 2px;
  left: 1px;
}
.lesson-plans .btn:hover {
  background-color: #afcd70;
  color: #fff;
}
.lesson-plans .btn:hover h4 {
  color: #fff;
}
.lesson-plans .btn.here {
  background-color: #9ac14e;
  color: #fff;
}
.lesson-plans .btn.here h4 {
  color: #fff;
}
.lesson-plans .btn.complete {
  background-color: #ddd;
  color: #999;
}
.lesson-plans .btn.complete h4, .lesson-plans .btn.complete h5 {
  color: #999;
}
.lesson-plans .btn.complete:hover {
  background-color: #ccc;
  color: #999;
}
.lesson-plans .btn.complete:hover h4, .lesson-plans .btn.complete:hover h5 {
  color: #999;
}
.lesson-plans .btn.complete .marker {
  background-color: #9ac14e;
}
.lesson-plans .btn.complete .marker img {
  display: block;
}
.lesson-plans .btn.complete.here {
  background-color: #ccc;
  color: #999;
}
.lesson-plans .btn.complete.here h4, .lesson-plans .btn.complete.here h5 {
  color: #666;
}
.lesson-plans .btn--year {
  padding: 8px 32px;
  margin-right: 12px;
  -webkit-border-radius: 32px;
  -moz-border-radius: 32px;
  border-radius: 32px;
  font-size: 1.7em;
}

#lesson-plans--years .lesson-plans--container {
  display: flex;
  flex-wrap: wrap;
}

.lesson-plan--content h1 {
  color: #1f70b6;
  margin-bottom: 20px;
}
.lesson-plan--content {
  text-align: center;
}
.lesson-plan--content a {
  display: inline-block;
}

.webinars .webinar {
  width: 100%;
  background-color: #e6f7fc;
  padding: 10px 18px;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 1.2em;
  color: #2E2D2D;
  display: flex;
  justify-content: space-between;
}
.webinars .webinar a {
  color: #2E2D2D;
}
.webinars .webinar .notification-content {
  width: 75%;
}

.widepic {
  width: 100%;
  margin-bottom: 40px;
}
.widepic img {
  width: 100%;
}

.notifications .notification {
  width: 100%;
  background-color: #e5e5e5;
  padding: 10px 18px;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 1.2em;
  color: #fff;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
.notifications .notification a {
  color: #fff;
}
.notifications .notification .notification-content {
  width: 75%;
}
.notifications .notification.default {
  background-color: #5cb38c;
}
.notifications .notification.training {
  background-color: #54b7dc;
}
.notifications .notification.toolbox {
  background-color: #eb933e;
}
.notifications .notification.lessons {
  background-color: #9ac14e;
}
.notifications .notification.support {
  background-color: #e96e84;
}

.account--section {
  padding-bottom: 30px;
}
.account--section + .account--section {
  padding-top: 30px;
  border-top: 1px solid #000;
}

.account--users {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 30px;
}
.account--users .account--user {
  width: 49%;
  border: 1px solid #000;
  padding: 20px;
  margin-bottom: 22px;
}

.user--button {
  border: none;
  background: #cccccc;
  padding: 8px;
  margin-bottom: 4px;
}

.details--cols {
  margin-bottom: 40px;
}
@media (min-width: 840px) {
  .details--cols {
    display: flex;
  }
}
@media (min-width: 840px) {
  .details--cols .details--col {
    width: 33%;
  }
}
.details--cols .details--col h3 {
  margin-bottom: 0;
  line-height: 1.6em;
}
.details--cols .details--col p {
  margin-bottom: 0;
  line-height: 1.6em;
}
.details--cols .details--col p + p {
  margin-top: 0;
}
.details--cols .details--col p + h3 {
  margin-top: 1em;
}

.support .intro p {
  font-size: 1.3em;
  font-weight: 600;
}
.support .intro a {
  color: #000;
  font-weight: 600;
}

.resourceCollections h3 {
  font-size: 1.3em;
}
.resourceCollections h3 .lo {
  font-weight: 400 !important;
}
@media (min-width: 615px) {
  .resourceCollections h3 {
    display: flex;
    align-items: center;
  }
}

/*
h3.lesson-heading{
	background-color:$green;
	margin-bottom: 0;
	color: #fff;
	font-size: 1.3em;
	padding: 5px 10px;
}
*/
/*
.resource--list{
	margin-top: 30px;
	h5{
		font-weight: 600;
		margin-bottom: 10px;
	}
}
*/
#ajax-target .lesson-plan .pdf-icon {
  width: 80px;
}
#ajax-target .download-icon {
  display: block;
  width: 40px;
  margin: 10px;
}
#ajax-target h4 {
  font-weight: 600;
  color: #9ac14e;
  font-size: 1.2rem;
}
#ajax-target .lesson-plan {
  padding: 12px;
}
#ajax-target .lesson-plan h4 {
  margin-bottom: 18px;
}
#ajax-target .resource-list {
  padding: 12px;
  text-align: left;
}
#ajax-target .resource-list a {
  color: #000;
  text-decoration: none;
  font-size: 1rem;
  padding: 5px 0;
  border-bottom: 1px solid #000;
  display: block;
}
#ajax-target .actions {
  padding: 12px;
}
#ajax-target .submit--wrap {
  display: flex;
  margin-bottom: 8px;
}

@media (min-width: 840px) {
  #ajax-container--introduction #ajax-target {
    display: flex;
    padding-bottom: 10px;
  }
  #ajax-container--introduction #ajax-target .lesson-plan {
    width: 25%;
    padding: 12px 18px;
  }
  #ajax-container--introduction #ajax-target .lesson-plan .pdf-icon {
    width: 80px;
  }
  #ajax-container--introduction #ajax-target .lesson-plan .download-icon {
    display: block;
    width: 40px;
    margin: 10px;
  }
  #ajax-container--introduction #ajax-target .resource-list {
    width: 50%;
  }
  #ajax-container--introduction #ajax-target .actions {
    display: flex;
    padding: 15px;
  }
  #ajax-container--introduction #ajax-target .actions .actions--sub {
    border-left: 1px solid #000;
    padding-left: 15px;
  }
}

.lesson--heading {
  background-color: #9ac14e;
  margin-bottom: 0;
  padding: 5px 10px;
}
.lesson--heading h3 {
  color: #fff;
  font-size: 1.3em;
}
.lesson--heading {
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

#introduction-lessons--panel {
  width: 100%;
}
.lessons--body {
  background-color: #e1ecc8;
}

.mark--complete label.complete {
  display: none;
}
.mark--complete label.incomplete {
  display: block;
}
.mark--complete.complete label.complete {
  display: block;
}
.mark--complete.complete label.incomplete {
  display: none;
}

.submit-tick-btn {
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  padding: 2px;
  cursor: pointer;
  margin-right: 8px;
}

.submit-tick {
  width: 100%;
  height: 100%;
  display: none;
}

.complete .submit-tick-btn {
  background-color: #9ac14e;
}
.complete .submit-tick-btn .submit-tick {
  display: block;
}

.members--teasers {
  width: 100%;
  margin-bottom: 20px;
}
.members--teasers .members--teaser {
  margin-bottom: 20px;
}
.members--teasers .members--teaser img {
  min-width: 100px;
  width: 20%;
  margin-bottom: 10px;
}
@media (min-width: 615px) {
  .members--teasers {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .members--teasers .members--teaser {
    width: 48%;
  }
  .members--teasers .members--teaser img {
    margin-bottom: 20px;
  }
}
@media (min-width: 940px) {
  .members--teasers {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
  }
  .members--teasers .members--teaser {
    width: 22%;
  }
  .members--teasers .members--teaser img {
    margin-bottom: 20px;
  }
}

.home .members h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.home .members .members-intro {
  font-weight: 600 !important;
  font-size: 1rem;
  margin-bottom: 40px;
}
@media (min-width: 615px) {
  .home .members h1 {
    font-size: 3.4rem;
  }
  .home .members .members-intro {
    font-weight: 600 !important;
    font-size: 1.2rem;
    margin-bottom: 40px;
  }
}

.members .content--block {
  margin-top: 0 !important;
  margin-bottom: 40px !important;
}

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