.hero-description {
  max-width: 100rem;
  font-size: 1.4em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 850px) {
  .hero-description {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.playVideo {
  display: block;
  position: absolute;
  top: calc(50% - 133px);
  left: calc(50% - 133px);
  width: 267px;
  height: 267px;
  border: 0;
  background-color: transparent;
  background-image: url(/wp-content/themes/rare-lp-theme/images/icon-play.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  .playVideo {
    top: calc(50% - 90px);
    left: calc(50% - 90px);
    width: 180px;
    height: 180px;
  }
}

.loadFade {
  transform: translateY(5em);
  opacity: 0;
  transition: transform 0.2s linear, opacity 0.2s linear;
}
.loadFade.in-view {
  transform: translateY(0);
  opacity: 1;
}

body {
  background-image: url("../../images/bg-line-dark.svg");
}
body.colorScheme-light {
  background-image: url("../../images/bg-line-light.svg");
}

.goog-te-combo {
  background-image: url("../../images/icon-arrow-down-white.svg");
}

.menu-item-toggle-scheme {
  color: #fff;
  text-align: center;
}

.schemeToggle {
  margin-top: 3rem;
  position: relative;
}

.schemeToggle-label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.schemeToggle-label .far {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  font-size: 3.4rem;
}
.schemeToggle-label .icon-sun {
  display: inline-block;
  width: 4.4rem;
  height: 4.4rem;
  margin-left: 2rem;
  margin-right: 1.6rem;
}

.schemeToggle-toggle {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  bottom: 0;
}

.schemeToggle-track {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 44px;
  border-radius: 44px;
  cursor: pointer;
  background-color: #003C1E;
  transition: 0.4s background-color;
}
.schemeToggle-track:before {
  position: absolute;
  content: "";
  height: 44px;
  width: 44px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition: 0.4s transform;
  border-radius: 50%;
  transform: translate3d(0, 0, 0);
}

.schemeToggle-toggle:checked + .schemeToggle-track {
  background-color: #2196F3;
}

.schemeToggle-toggle:focus + .schemeToggle-track {
  box-shadow: 0 0 1px #2196F3;
}

.schemeToggle-toggle:checked + .schemeToggle-track:before {
  transform: translate3d(66px, 0, 0);
}

.header-mobileJoin {
  display: none;
  margin-top: auto;
  padding: 2.4rem;
}
@media screen and (max-width: 850px) {
  .header-mobileJoin {
    display: block;
  }
}

.header-mobileJoinLink {
  appearance: none;
  background-color: #008542;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .header-mobileJoinLink {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.header-mobileJoinLink:hover, .header-mobileJoinLink:active {
  background-color: #00B75B;
  color: #fff;
}
.header-mobileJoinLink:visited {
  color: #fff;
}

@media screen and (max-width: 850px) {
  #header.nav-is-open {
    background-color: #fff;
  }
}
@media screen and (max-width: 850px) {
  #header.nav-is-open .header-navContainer {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

.entry-content:empty {
  display: none;
}
.entry-content h1,
.entry-content h2 {
  line-height: 1;
  margin-bottom: 0.5em;
}
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
  line-height: 1;
  margin-bottom: 0.75em;
}
.entry-content p {
  margin-bottom: 1.4em;
}
.entry-content ol,
.entry-content ul {
  margin-bottom: 1.4em;
  padding-left: 1.4em;
}
.entry-content ol {
  list-style-type: decimal;
  margin-left: 1.4em;
  padding-left: 0.5em;
}
.entry-content ul {
  list-style-type: disc;
}
.entry-content img {
  height: auto;
  max-width: 100%;
  margin-bottom: 0.9em;
}
.entry-content hr {
  background: #eee;
  border-bottom: 1px solid #ddd;
  border: none;
  height: 2px;
  margin: 2em 0;
}
@media screen and (max-width: 600px) {
  .entry-content .alignleft,
  .entry-content .alignright,
  .entry-content .aligncenter {
    float: none !important;
    display: block !important;
    margin: 0 auto !important;
    margin-bottom: 0.9em !important;
  }
}
.entry-content .alignleft {
  display: inline;
  float: left;
  margin-right: 1em;
}
.entry-content .alignright {
  display: inline;
  float: right;
  margin-left: 1em;
}
.entry-content .aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.9em;
}
.entry-content .assistive-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}
.entry-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
.entry-content .wp-caption {
  border: none;
  color: #969697;
  font-size: 1.5rem;
  margin-bottom: 0;
  max-width: 100%;
}
.entry-content .wp-caption.aligncenter, .entry-content .wp-caption.alignleft, .entry-content .wp-caption.alignright {
  margin-bottom: 0;
}
.entry-content .wp-caption img {
  display: block;
  margin: 1.2% auto 0;
  max-width: 98%;
}
.entry-content .wp-caption .wp-caption-text {
  margin: 0.8075em 0 0;
}
.entry-content .wp-caption-text {
  text-align: center;
}
.entry-content .gallery {
  margin-bottom: 1.4em;
}
.entry-content .gallery a img {
  border: none;
  height: auto;
  max-width: 90%;
}
.entry-content .gallery dd {
  margin: 0;
}
.entry-content embed,
.entry-content iframe,
.entry-content object {
  max-width: 100%;
}
.entry-content table {
  border-collapse: collapse;
  border-spacing: 0;
  color: #fff;
  margin: 1em 0;
  width: 100%;
}
.entry-content td,
.entry-content th {
  border: 1px solid transparent;
  height: 3em;
  transition: background 250ms, color 250ms;
  vertical-align: middle;
}
.entry-content th {
  background: #bfbfbf;
  font-weight: bold;
}
.entry-content td {
  background: #ececec;
  text-align: center;
}
.entry-content tr:nth-child(even) td {
  background: #ececec;
}
.entry-content tr:nth-child(odd) td {
  background: #d9d9d9;
}
.entry-content tr td:hover {
  background: #fff;
  color: #fff;
}
.entry-content .bctt-click-to-tweet {
  background-color: transparent;
  border: none;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0;
}
.entry-content .bctt-ctt-text a {
  color: #7AB800 !important;
  font-family: "pf-square-condensed-pro", sans-serif !important;
  font-size: 4rem;
  font-weight: normal;
  transition: color 125ms;
}
.entry-content .bctt-ctt-text a:hover {
  color: #fff !important;
}

#footer {
  padding: 1em 0;
  margin-top: 5em;
  background-color: #373A3E;
}

#footer-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-column {
  display: flex;
  flex-direction: row;
}
.footer-column.right {
  margin-left: auto;
}

.footer-links,
.footerMenu-social {
  display: flex;
}

.footer-link {
  color: #fff;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.footer-link:hover {
  text-decoration: underline;
  color: #fff;
}
.footer-link:visited {
  color: #fff;
}

.footerMenu-link {
  color: #fff;
  line-height: 1;
}
.footerMenu-link:hover {
  color: rgba(255, 255, 255, 0.75);
}

.footerList {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.footer-logo {
  display: flex;
  width: 3.4rem;
}

.footer-logoImage {
  width: 100%;
  height: 100%;
}

.footer-linksItem {
  margin-left: 3em;
}

.footer-newsletter {
  margin-right: 1em;
}

.footerMenu-socialItem {
  margin-left: 1em;
}

@media screen and (max-width: 1370px) {
  .footer-linksItem {
    margin-left: 2em;
  }
}
@media screen and (max-width: 1280px) {
  .footer-linksItem {
    margin-left: 1em;
  }
  .footer-newsletter {
    margin-right: 0;
  }
}
@media screen and (max-width: 1150px) {
  .footer-link,
  .footer-newsletter {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 1000px) {
  .footerMenu-socialItem {
    margin-left: 0.5em;
  }
}
@media screen and (max-width: 930px) {
  #footer {
    padding: 9rem 0;
  }
  #footer-inner {
    flex-direction: column;
  }
  .footer-column {
    flex-direction: column;
    align-items: center;
  }
  .footer-column.right {
    margin-left: 0;
    text-align: center;
  }
  .footer-logo {
    width: 9.5rem;
    margin-bottom: 6.5rem;
  }
  .footer-link,
  .footer-newsletter {
    font-size: 2rem;
  }
  .footer-newsletter,
  .footer-linksItem {
    margin-bottom: 4rem;
  }
  .footerMenu-socialItem {
    margin-left: 0;
  }
  .footerMenu-socialItem + .footerMenu-socialItem {
    margin-left: 3rem;
  }
  .footerMenu-link {
    font-size: 3rem;
  }
}
@media screen and (max-width: 850px) {
  .footer-linksList {
    flex-direction: column;
    margin-bottom: 5rem;
  }
  .footer-linksItem {
    margin-left: 0;
  }
  .footer-link,
  .footer-newsletter {
    font-size: 2.5rem;
  }
  .footerMenu-link {
    font-size: 2.25rem;
  }
  .footerMenu-socialItem + .footerMenu-socialItem {
    margin-left: 2rem;
  }
}
.home-page {
  background-repeat: repeat-y;
  background-position: center top;
}
@media screen and (max-width: 600px) {
  .home-page {
    background-repeat: no-repeat;
  }
}
.home-page #main {
  margin-top: 0;
}
.home-page #footer {
  margin-top: 0;
}

.homeHero {
  padding: 7.5em 6em;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .homeHero {
    padding: 5em 4em;
  }
}
@media screen and (max-width: 850px) {
  .homeHero {
    padding: 4em 2em;
  }
}
@media screen and (max-width: 600px) {
  .homeHero {
    padding: 4em 0;
  }
}

.homeHero-content {
  position: relative;
  z-index: 1;
}

.homeHero-heading {
  margin: 0 auto;
}

.homeHero-description {
  margin-top: 2em;
  margin-right: auto;
  margin-left: auto;
}

.homeHero-button {
  margin-top: 3em;
  width: 100%;
  max-width: 14em;
}
@media screen and (max-width: 600px) {
  .homeHero-button {
    max-width: 100%;
  }
}

.homeCTAs-gridItem {
  display: flex;
  align-items: flex-start;
  margin-top: 0;
}
.homeCTAs-gridItem:nth-child(2) {
  margin-top: 9.7em;
}
.homeCTAs-gridItem:nth-child(3) {
  margin-top: 19.4em;
}
@media screen and (max-width: 1200px) {
  .homeCTAs-gridItem:nth-child(2) {
    margin-top: 8.7em;
  }
  .homeCTAs-gridItem:nth-child(3) {
    margin-top: 19.7em;
  }
}
@media screen and (max-width: 1100px) {
  .homeCTAs-gridItem:nth-child(2) {
    margin-top: 5.8em;
  }
  .homeCTAs-gridItem:nth-child(3) {
    margin-top: 13.7em;
  }
}
@media screen and (max-width: 1000px) {
  .homeCTAs-gridItem:nth-child(2) {
    margin-top: 7.8em;
  }
  .homeCTAs-gridItem:nth-child(3) {
    margin-top: 17.7em;
  }
}
@media screen and (max-width: 900px) {
  .homeCTAs-gridItem:nth-child(2) {
    margin-top: 8em;
  }
  .homeCTAs-gridItem:nth-child(3) {
    margin-top: 18em;
  }
}
@media screen and (max-width: 850px) {
  .homeCTAs-gridItem {
    margin-top: 0;
  }
  .homeCTAs-gridItem:nth-child(2), .homeCTAs-gridItem:nth-child(3) {
    margin-top: 3em;
  }
}

.homeCTAs-gridLink {
  flex-basis: 100%;
  text-decoration: none;
}
.homeCTAs-gridLink:hover .homeCTAs-gridItemText {
  opacity: 1;
}
.homeCTAs-gridLink:focus .homeCTAs-gridItemText {
  opacity: 1;
}

.homeCTAs-gridHeading {
  padding: 1em;
  color: #fff;
  font-size: 2em;
  font-weight: 400;
  text-align: center;
  border-top: 1rem solid #008542;
}
@media screen and (max-width: 1200px) {
  .homeCTAs-gridHeading {
    font-size: 1.8em;
  }
}
@media screen and (max-width: 1100px) {
  .homeCTAs-gridHeading {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 850px) {
  .homeCTAs-gridHeading {
    font-size: 2em;
  }
}

body.colorScheme-light .homeCTAs-gridHeading {
  color: #022A52;
}

.homeCTAs-gridItemBottom {
  position: relative;
  padding-top: 100%;
  height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.homeCTAs-gridItemText {
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 2em;
  opacity: 0;
  text-align: center;
  align-items: center;
  background-color: #008542;
  color: #fff;
  transition: opacity 0.1s linear;
}
@media screen and (max-width: 850px) {
  .homeCTAs-gridItemText {
    padding: 1em;
  }
}

.homeFallback-content {
  width: 32.3%;
}

.homeFallback-heading {
  margin-top: 0;
  font-size: 4em;
  font-weight: 400;
}

.homeFallback-description {
  margin-top: 1.25em;
  max-width: 290px;
}

.homeFallback-link {
  margin-top: 1.75em;
}
@media screen and (max-width: 600px) {
  .homeFallback-link {
    width: 100%;
  }
}

@media screen and (max-width: 850px) {
  .homeFallback {
    text-align: center;
    margin-top: 6em;
  }
  .homeFallback-content {
    width: 100%;
  }
  .homeFallback-description {
    margin-left: auto;
    margin-right: auto;
  }
}
.homeFeed {
  margin-top: calc(3em + (1440px - 4rem) * 0.323 * 1.5 * 0.52);
}
@media screen and (max-width: 1440px) {
  .homeFeed {
    margin-top: calc(3em + (100vw - 4rem) * 0.323 * 1.5 * 0.52);
  }
}
@media screen and (max-width: 850px) {
  .homeFeed {
    margin-top: 10em;
  }
}

.homeFeed-gridItem {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 850px) {
  .homeFeed-gridItem.empty {
    display: none;
  }
}

.homeFeed-gridItem-primary {
  position: relative;
  justify-content: center;
}

.homeFeed-FeaturedImage {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  max-height: 0;
  padding-bottom: 150%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 850px) {
  .homeFeed-FeaturedImage {
    position: relative;
    bottom: auto;
    left: auto;
  }
}

body.colorScheme-light .homeFeed-FeaturedImage::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.33) 50%, rgb(255, 255, 255) 100%);
}

.homeFeed-heading {
  position: relative;
  padding-left: 50%;
  width: 200%;
  font-weight: 400;
  font-size: 4em;
  text-shadow: 0 0 0.75em #000;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .homeFeed-heading {
    width: 180%;
    font-size: 3em;
  }
}
@media screen and (max-width: 1000px) {
  .homeFeed-heading {
    padding-left: 40%;
  }
}
@media screen and (max-width: 850px) {
  .homeFeed-heading {
    padding-left: 0;
    margin-bottom: 0.5em;
    width: 100%;
    font-size: 4em;
    text-align: center;
  }
}

.video-model {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
}
.video-model .embed-container {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  width: 80%;
  text-align: center;
  max-width: 840px;
  max-height: 540px;
  transform: translateY(-50%);
}
.video-model .embed-container iframe {
  width: 100%;
  height: 100%;
}
.video-model .close-model {
  position: absolute;
  top: 10rem;
  right: 3rem;
  font-size: 5rem;
  text-decoration: none;
}
.video-model.open {
  opacity: 1;
  visibility: visible;
}

.l-module.homeSignup {
  margin-top: 34.125em;
}
@media screen and (max-width: 1200px) {
  .l-module.homeSignup {
    margin-top: 28.5em;
  }
}
@media screen and (max-width: 850px) {
  .l-module.homeSignup {
    margin-top: 18.5em;
  }
}
@media screen and (max-width: 600px) {
  .l-module.homeSignup {
    margin-top: 16em;
  }
}
.l-module.homeSignup + #footer {
  margin-top: 7em;
}

.homeSignup-top {
  display: inline-block;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .homeSignup-top {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

.homeSignup-titleArea {
  position: relative;
  float: left;
  padding-bottom: 11em;
  width: 32.3%;
}
@media screen and (max-width: 850px) {
  .homeSignup-titleArea {
    float: none;
    padding-bottom: 3em;
    width: auto;
    flex-basis: 100%;
  }
}

.homeSignup-FeaturedImage {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  max-height: 0;
  padding-bottom: 150%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 850px) {
  .homeSignup-FeaturedImage {
    position: relative;
    bottom: auto;
    left: auto;
  }
}

body.colorScheme-light .homeSignup-FeaturedImage::after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.33) 50%, rgb(255, 255, 255) 100%);
}

.homeSignup-primaryHeading {
  position: relative;
  padding-left: 40%;
  width: 177%;
  font-weight: 400;
  font-size: 4em;
  text-shadow: 0 0 0.75em #000;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .homeSignup-primaryHeading {
    font-size: 3.5em;
  }
}
@media screen and (max-width: 1200px) {
  .homeSignup-primaryHeading {
    font-size: 3em;
  }
}
@media screen and (max-width: 850px) {
  .homeSignup-primaryHeading {
    padding-left: 0;
    margin-bottom: 0.5em;
    width: 100%;
    font-size: 4em;
    text-align: center;
  }
}

.homeSignup-actions {
  float: right;
  width: 47.5%;
  margin-top: -16em;
}
@media screen and (max-width: 850px) {
  .homeSignup-actions {
    float: none;
    flex-basis: 100%;
    width: auto;
    padding-top: 0;
    margin-top: 0;
    text-align: center;
  }
}

.homeSignup-description {
  margin-bottom: 4em;
}
@media screen and (max-width: 850px) {
  .homeSignup-description {
    margin-bottom: 2.5em;
  }
}

.homeSignup-button {
  margin-right: 2em;
  margin-bottom: 1em;
}
@media screen and (max-width: 1100px) {
  .homeSignup-button {
    margin-right: 1em;
  }
}
@media screen and (max-width: 600px) {
  .homeSignup-button {
    width: 100%;
    margin-right: 0;
  }
}
.homeSignup-button:last-child {
  margin-right: 0;
}

.homeSignup-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 110rem;
}

.homeSignup-gridItem {
  flex-basis: 100%;
  position: relative;
  padding-left: 3.5em;
  margin-bottom: 3em;
}
@media screen and (max-width: 850px) {
  .homeSignup-gridItem {
    flex-basis: 100%;
  }
}

.homeSignup-gridHeading {
  font-size: 1.5em;
  line-height: 1.3;
  font-weight: 400;
}
@media screen and (max-width: 850px) {
  .homeSignup-gridHeading {
    font-size: 3.25rem;
    line-height: 1.22;
  }
}

.homeSignup-gridDescription {
  margin-top: 1.2em;
}

.homeSignup .fa-check {
  position: absolute;
  top: 0.5rem;
  left: 0;
  font-size: 1.5em;
}

.sponsors {
  background-color: #fff;
}

.sponsors-inner {
  padding-top: 6.5em;
  padding-bottom: 5.5em;
}

.sponsors-heading {
  color: #373A3E;
  font-size: 2.5em;
  text-align: center;
}

.sponsors-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1em;
}
@media screen and (max-width: 600px) {
  .sponsors-list {
    justify-content: center;
  }
}

.sponsors-listItem {
  display: flex;
  flex-basis: 24%;
  align-items: center;
}
@media screen and (max-width: 850px) {
  .sponsors-listItem {
    flex-basis: 49%;
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 600px) {
  .sponsors-listItem {
    flex-basis: 80%;
    margin-bottom: 0.5em;
  }
}

.sponsors-logo {
  width: 100%;
  height: 100%;
}

.single-people .content-modular.content-noSidebar {
  justify-content: flex-start;
}

.content-modular {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.content-modular.content-noSidebar {
  justify-content: center;
}
.content-modular.content-noSidebar .content-main {
  flex-basis: 820px;
}
@media screen and (max-width: 850px) {
  .content-modular.content-noSidebar .content-main {
    flex-basis: 100%;
  }
}
.content-modular .l-inner {
  padding-right: 0;
  padding-left: 0;
}
.content-modular .content-main {
  flex-basis: calc(100% - 28em);
}
.content-modular .content-main .gridLayout > *,
.content-modular .content-main .featuredPosts-inner > * {
  margin-bottom: 2rem;
}
@media screen and (max-width: 1280px) {
  .content-modular .content-main .gridLayout > *,
  .content-modular .content-main .featuredPosts-inner > * {
    flex-basis: 49%;
  }
}
@media screen and (max-width: 900px) {
  .content-modular .content-main .gridLayout > *,
  .content-modular .content-main .featuredPosts-inner > * {
    flex-basis: 100%;
  }
}
.content-modular .content-sidebar {
  flex-basis: 23em;
}
@media screen and (max-width: 1280px) {
  .content-modular .content-main {
    flex-basis: 55%;
  }
  .content-modular .content-sidebar {
    flex-basis: 37%;
  }
}
@media screen and (max-width: 1100px) {
  .content-modular .content-main {
    flex-basis: 60%;
  }
  .content-modular .content-sidebar {
    flex-basis: 35%;
  }
}
@media screen and (max-width: 850px) {
  .content-modular {
    flex-direction: column;
  }
  .content-modular .content-main {
    flex-basis: 100%;
  }
  .content-modular .content-sidebar {
    flex-basis: 100%;
    padding-top: 2em;
    margin-top: 1em;
    border-top: 0.5em solid #1782F2;
  }
}

.page-template-template-landing-page {
  background-repeat: repeat-y;
  background-position: center top;
}
.page-template-template-landing-page .l-module + .l-module:not(.landingHero) {
  margin-top: 10.5em;
}
@media screen and (max-width: 850px) {
  .page-template-template-landing-page .l-module + .l-module:not(.landingHero) {
    margin-top: 5em;
  }
}

.landingHero-more {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 6em;
}
.landingHero-more.centered {
  justify-content: center;
}
.landingHero-more.centered .landingHero-moreVideo {
  flex-basis: auto;
  width: 100%;
  max-width: 600px;
}

.landingHero-moreText {
  flex-basis: 50%;
}

.landingHero-moreVideo {
  flex-basis: 41%;
}

.landingHero-moreHeading {
  font-size: 2.5em;
  line-height: 1.3;
  font-weight: 700;
}
@media screen and (max-width: 850px) {
  .landingHero-moreHeading {
    font-size: 3.6rem;
    line-height: 1.22;
  }
}

.landingHero-moreDescription {
  margin-top: 1.8em;
}

.landingHero-button {
  margin-top: 2em;
}

.landingHero-videoPreview {
  position: relative;
  display: block;
}

.landingHero-previewImage {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 850px) {
  .landingHero-more {
    flex-direction: column;
    margin-top: 3em;
  }
  .landingHero-moreText {
    flex-basis: 100%;
  }
  .landingHero-moreVideo {
    flex-basis: 100%;
    margin-top: 3em;
  }
}
.linkGrid-primaryHeading {
  margin-bottom: 3rem;
  width: 100%;
  text-align: center;
}

.linkGrid-item {
  display: flex;
}
.linkGrid-item.empty {
  justify-content: center;
  align-items: center;
}

.linkGrid-emptyHeading {
  font-size: 4em;
  line-height: 1.2;
  padding-top: 2rem;
  border-top: 1rem solid #008542;
  text-align: center;
}
@media screen and (max-width: 850px) {
  .linkGrid-emptyHeading {
    font-size: 4.6rem;
    line-height: 1.08;
  }
}

.linkGrid-link {
  display: flex;
  position: relative;
  flex-basis: 100%;
  height: 0;
  padding-top: 100%;
  background-color: #373A3E;
  box-shadow: inset 0 1rem 0 #005BBB;
  color: #fff;
  transition: box-shadow 0.1s linear;
}
.linkGrid-link:hover, .linkGrid-link:active, .linkGrid-link:visited, .linkGrid-link:visited:hover {
  color: #fff;
}
.linkGrid-link:hover, .linkGrid-link:focus {
  box-shadow: inset 0 1rem 0 transparent;
}
.linkGrid-link:hover .linkGrid-content, .linkGrid-link:focus .linkGrid-content {
  padding-top: 2em;
}
.linkGrid-link:hover .linkGrid-content::before, .linkGrid-link:focus .linkGrid-content::before {
  opacity: 0.9;
}
.linkGrid-link:hover .linkGrid-reveal, .linkGrid-link:focus .linkGrid-reveal {
  max-height: 100%;
}
.linkGrid-link.colorColbalt {
  box-shadow: inset 0 1rem 0 #1782F2;
}
.linkGrid-link.colorColbalt .linkGrid-content::before {
  background-color: #1782F2;
}
.linkGrid-link.colorLime {
  box-shadow: inset 0 1rem 0 #7AB800;
}
.linkGrid-link.colorLime .linkGrid-content::before {
  background-color: #7AB800;
}
.linkGrid-link.colorOrange {
  box-shadow: inset 0 1rem 0 #F58233;
}
.linkGrid-link.colorOrange .linkGrid-content::before {
  background-color: #F58233;
}
.linkGrid-link.colorRed {
  box-shadow: inset 0 1rem 0 #BE2B47;
}
.linkGrid-link.colorRed .linkGrid-content::before {
  background-color: #BE2B47;
}
.linkGrid-link.colorYellow {
  box-shadow: inset 0 1rem 0 #EEAF00;
}
.linkGrid-link.colorYellow .linkGrid-content::before {
  background-color: #EEAF00;
}
.linkGrid-link.colorSeafoam {
  box-shadow: inset 0 1rem 0 #00AFD8;
}
.linkGrid-link.colorSeafoam .linkGrid-content::before {
  background-color: #00AFD8;
}

body.colorScheme-light .linkGrid-link {
  background-color: #DDEEFF;
  color: #006FE5;
}
body.colorScheme-light .linkGrid-link.colorColbalt {
  color: #0d75e3;
}
body.colorScheme-light .linkGrid-link.colorLime {
  color: #699f00;
}
body.colorScheme-light .linkGrid-link.colorOrange {
  color: #f4731b;
}
body.colorScheme-light .linkGrid-link.colorRed {
  color: #a9263f;
}
body.colorScheme-light .linkGrid-link.colorYellow {
  color: #d59c00;
}
body.colorScheme-light .linkGrid-link.colorSeafoam {
  color: #009abf;
}
body.colorScheme-light .linkGrid-link:hover, body.colorScheme-light .linkGrid-link:active, body.colorScheme-light .linkGrid-link:visited, body.colorScheme-light .linkGrid-link:visited:hover {
  color: #fff;
}

.linkGrid-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  flex-basis: 100%;
  padding: 4.2em 2em;
  padding-bottom: 0;
  text-align: center;
  background-position: center 65%;
  background-repeat: no-repeat;
  background-size: 40%;
  transition: padding-top 0.1s linear;
}
.linkGrid-content::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #005BBB;
  opacity: 0;
  transition: opacity 0.1s linear;
}

.linkGrid-reveal {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-top: 1em;
  height: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.1s linear;
}

.linkGrid-heading {
  position: relative;
  font-size: 2.3em;
  line-height: 1;
  transition: margin-bottom 0.1s linear;
}
@media screen and (max-width: 1400px) {
  .linkGrid-heading {
    font-size: 3.55vw;
  }
}

.linkGrid-questions {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.linkGrid-row {
  display: flex;
  flex-direction: row;
}
.linkGrid-row + .linkGrid-row {
  margin-top: 0.75em;
}

.linkGrid-secondaryHeading {
  font-size: 1.7em;
}

.linkGrid-questionHeading {
  font-size: 1.5em;
  flex-basis: 3.5em;
}

.linkGrid-description {
  flex-basis: calc(100% - 3.5em);
  font-size: 1em;
}

.linkGrid-list {
  text-align: left;
  list-style: inside;
}

.linkGrid-learnMore {
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 2px solid #fff;
  text-transform: uppercase;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  font-size: 1.2em;
}

.linkGrid-design .linkGrid-item .linkGrid-link {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.linkGrid-design .linkGrid-item:nth-child(1) {
  order: 5;
}
.linkGrid-design .linkGrid-item:nth-child(2) {
  order: 1;
}
.linkGrid-design .linkGrid-item:nth-child(2) .linkGrid-link {
  background-image: url(../../images/number1.svg);
}
.linkGrid-design .linkGrid-item:nth-child(3) {
  order: 2;
}
.linkGrid-design .linkGrid-item:nth-child(3) .linkGrid-link {
  background-image: url(../../images/number2.svg);
}
.linkGrid-design .linkGrid-item:nth-child(4) {
  order: 3;
}
.linkGrid-design .linkGrid-item:nth-child(4) .linkGrid-link {
  background-image: url(../../images/number3.svg);
}
.linkGrid-design .linkGrid-item:nth-child(5) {
  order: 4;
}
.linkGrid-design .linkGrid-item:nth-child(5) .linkGrid-link {
  background-image: url(../../images/number4.svg);
}
.linkGrid-design .linkGrid-item:nth-child(6) {
  order: 6;
}
.linkGrid-design .linkGrid-item:nth-child(6) .linkGrid-link {
  background-image: url(../../images/number5.svg);
}
.linkGrid-design .linkGrid-item:nth-child(7) {
  order: 7;
}
.linkGrid-design .linkGrid-item:nth-child(7) .linkGrid-link {
  background-image: url(../../images/number6.svg);
}
.linkGrid-design .linkGrid-item:nth-child(8) {
  order: 8;
}
.linkGrid-design .linkGrid-item:nth-child(8) .linkGrid-link {
  background-image: url(../../images/number7.svg);
}
.linkGrid-design .linkGrid-item:nth-child(9) {
  order: 9;
}
.linkGrid-design .linkGrid-item:nth-child(9) .linkGrid-link {
  background-image: url(../../images/number8.svg);
}

body.colorScheme-light .linkGrid-design .linkGrid-item:nth-child(2) .linkGrid-link {
  background-image: url(../../images/number1-white.svg);
}
body.colorScheme-light .linkGrid-design .linkGrid-item:nth-child(3) .linkGrid-link {
  background-image: url(../../images/number2-white.svg);
}
body.colorScheme-light .linkGrid-design .linkGrid-item:nth-child(4) .linkGrid-link {
  background-image: url(../../images/number3-white.svg);
}
body.colorScheme-light .linkGrid-design .linkGrid-item:nth-child(5) .linkGrid-link {
  background-image: url(../../images/number4-white.svg);
}
body.colorScheme-light .linkGrid-design .linkGrid-item:nth-child(6) .linkGrid-link {
  background-image: url(../../images/number5-white.svg);
}
body.colorScheme-light .linkGrid-design .linkGrid-item:nth-child(7) .linkGrid-link {
  background-image: url(../../images/number6-white.svg);
}
body.colorScheme-light .linkGrid-design .linkGrid-item:nth-child(8) .linkGrid-link {
  background-image: url(../../images/number7-white.svg);
}
body.colorScheme-light .linkGrid-design .linkGrid-item:nth-child(9) .linkGrid-link {
  background-image: url(../../images/number8-white.svg);
}

.linkGrid-science .linkGrid-heading {
  margin-bottom: -1rem;
}

@media screen and (max-width: 1400px) {
  .linkGrid-content {
    padding-top: 6vw;
    padding-right: 1em;
    padding-left: 1em;
  }
  .linkGrid-heading {
    font-size: 3.55vw;
  }
  .linkGrid-science .linkGrid-heading {
    font-size: 3vw;
    margin-bottom: -0.5rem;
  }
  .linkGrid-reveal {
    margin-top: 0.5em;
  }
  .linkGrid-learnMore {
    margin-top: 1.2em;
    padding-top: 1.2em;
  }
}
@media screen and (max-width: 1300px) {
  .linkGrid-questionHeading {
    flex-basis: 3em;
    font-size: 1.2em;
  }
  .linkGrid-secondaryHeading {
    font-size: 1.5em;
    line-height: 1;
  }
  .linkGrid-description {
    flex-basis: calc(100% - 3em);
  }
  .linkGrid-learnMore {
    margin-top: 0.8em;
    padding-top: 0.8em;
  }
}
@media screen and (max-width: 1200px) {
  .linkGrid-link:hover .linkGrid-content {
    padding-top: 1.25em;
  }
  .linkGrid-science .linkGrid-heading {
    margin-bottom: 0;
  }
  .linkGrid-reveal {
    margin-top: 0.25em;
  }
  .linkGrid-row + .linkGrid-row {
    margin-top: 0.5em;
  }
  .linkGrid-learnMore-label.second {
    display: none;
  }
  .linkGrid-learnMore {
    margin-top: 0.5em;
    padding-top: 0.5em;
  }
}
@media screen and (max-width: 1000px) {
  .linkGrid-item {
    flex-basis: 49%;
  }
  .linkGrid-content {
    padding-top: 10vw;
    padding-right: 1.5em;
    padding-left: 1.5em;
  }
  .linkGrid-link:hover .linkGrid-content {
    padding-top: 3em;
  }
  .linkGrid-heading,
  .linkGrid-science .linkGrid-heading {
    font-size: 2.5em;
  }
  .linkGrid-reveal {
    margin-top: 1em;
  }
  .linkGrid-questionHeading {
    flex-basis: 3.5em;
    font-size: 1.5em;
  }
  .linkGrid-description {
    flex-basis: calc(100% - 3.5em);
  }
  .linkGrid-learnMore {
    font-size: 1em;
    margin-top: 1.2em;
    margin-bottom: 1.2em;
  }
  .linkGrid-design .linkGrid-item:nth-child(1) {
    order: 1;
  }
  .linkGrid-design .linkGrid-item:nth-child(2) {
    order: 2;
  }
  .linkGrid-design .linkGrid-item:nth-child(3) {
    order: 3;
  }
  .linkGrid-design .linkGrid-item:nth-child(4) {
    order: 4;
  }
  .linkGrid-design .linkGrid-item:nth-child(5) {
    order: 5;
  }
}
@media screen and (max-width: 900px) {
  .linkGrid-content {
    padding-right: 1em;
    padding-left: 1em;
  }
  .linkGrid-link:hover .linkGrid-content {
    padding-top: 2em;
  }
  .linkGrid-science .linkGrid-heading {
    font-size: 2.25em;
  }
}
@media screen and (max-width: 850px) {
  .linkGrid-heading {
    font-size: 2.25em;
  }
  .linkGrid-link:hover .linkGrid-content {
    padding-top: 1.5em;
  }
  .linkGrid-questionHeading {
    display: none;
  }
  .linkGrid-description {
    flex-basis: 100%;
  }
}
@media screen and (max-width: 800px) {
  .linkGrid-item {
    flex-basis: 100%;
  }
  .linkGrid-content {
    padding-right: 2em;
    padding-left: 2em;
  }
  .linkGrid-link:hover .linkGrid-content {
    padding-top: 3em;
  }
  .linkGrid-heading,
  .linkGrid-science .linkGrid-heading {
    font-size: 3em;
  }
  .linkGrid-content {
    padding-top: 20vw;
  }
  .linkGrid-reveal {
    margin-top: 1.5em;
  }
  .linkGrid-questionHeading {
    display: none;
  }
  .linkGrid-description {
    flex-basis: 100%;
    font-size: 1.2em;
  }
  .linkGrid-listItem {
    font-size: 1em;
  }
  .linkGrid-learnMore {
    font-size: 1.5em;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
  }
  .linkGrid-row + .linkGrid-row {
    margin-top: 1.25em;
  }
}
@media screen and (max-width: 600px) {
  .linkGrid-content {
    padding-right: 1em;
    padding-left: 1em;
  }
  .linkGrid-learnMore {
    font-size: 1.25em;
    margin-top: 1.25em;
    margin-bottom: 1.25em;
  }
}
@media screen and (max-width: 500px) {
  .linkGrid-link:hover .linkGrid-content {
    padding-top: 2em;
  }
  .linkGrid-reveal {
    margin-top: 1em;
  }
  .linkGrid-description {
    font-size: 1em;
  }
  .linkGrid-science .linkGrid-heading {
    font-size: 2.5em;
  }
}
@media screen and (max-width: 400px) {
  .linkGrid-link:hover .linkGrid-content {
    padding-top: 1em;
  }
  .linkGrid-science .linkGrid-heading {
    font-size: 2.25em;
  }
  .linkGrid-description {
    font-size: 0.9em;
  }
  .linkGrid-row + .linkGrid-row {
    margin-top: 0.5em;
  }
  .linkGrid-learnMore {
    font-size: 1.25em;
    margin-top: 1em;
    margin-bottom: 1em;
  }
}
.featuredResources-top {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}

.featuredResources-description {
  flex-basis: 50%;
  margin-top: 1.5em;
}

.featuredResources-CTA {
  margin-left: auto;
}

.featuredResources-link {
  text-decoration: none;
}
.featuredResources-link svg {
  margin-left: 1rem;
  width: 15px;
  transform: translateY(3px);
}
.featuredResources-link svg path {
  fill: #008542;
}
.featuredResources-link:hover svg path {
  fill: #00B75B;
}
.featuredResources-link:visited {
  text-decoration: none;
}

.featuredResources-columns {
  margin-top: 4em;
}

@media screen and (max-width: 900px) {
  .featuredResources-top {
    justify-content: flex-start;
    align-items: flex-start;
  }
  .featuredResources-description {
    flex-basis: 100%;
  }
  .featuredResources-CTA {
    margin-top: 1.5em;
    margin-left: 0;
  }
  .featuredResources-columns {
    margin-top: 2em;
  }
}
.archiveContent-inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.listings {
  flex-basis: calc(100% - 20em);
}

.filters {
  flex-basis: 17em;
}

.listings-grid > * {
  flex-basis: 49%;
}
@media screen and (max-width: 1000px) {
  .listings-grid > * {
    flex-basis: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .listings {
    flex-basis: 65%;
  }
  .filters {
    flex-basis: 30%;
  }
}
@media screen and (max-width: 850px) {
  .archiveContent-inner {
    flex-direction: column;
  }
  .listings {
    flex-basis: 100%;
  }
  .filters {
    flex-basis: 100%;
    margin-bottom: 2em;
  }
}
.error404 .hero-heading {
  font-size: 5em;
}
.error404 .hero-description {
  font-size: 3rem;
}
.error404 #footer {
  margin-top: 31vh;
}
@media screen and (max-width: 1100px) {
  .error404 #footer {
    margin-top: 40vh;
  }
}
@media screen and (max-width: 1100px) and (max-height: 800px) {
  .error404 #footer {
    margin-top: 29vh;
  }
}
@media screen and (max-width: 930px) {
  .error404 #footer {
    margin-top: 15vh;
  }
}
.error404 .homeLink-box {
  display: block;
}
.error404 .homeLink-box a {
  font-family: "pf-square-condensed-pro", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 2.5rem;
}
.error404 .homeLink-box .far {
  font-size: 2rem;
}
.error404 .hero-socialList {
  display: none;
}

.filters-section {
  flex-grow: 1;
}
.filters-section + .filters-section {
  margin-top: 2em;
}

.filters-primaryHeading {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}

.filters-sectionHeading {
  display: block;
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-size: 1.11em;
  border-bottom: 3px solid #062543;
}

.filters-checkboxLabel {
  font-size: 0.9em;
  line-height: 1.5;
  cursor: pointer;
}
@media screen and (max-width: 850px) {
  .filters-checkboxLabel {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.filters-checkbox {
  display: none;
}
.filters-checkbox:checked + .filters-checkboxLabel .filters-fauxCheckbox {
  background-color: #7AB800;
  background-position: center;
  border: 2px solid #7AB800;
}

.filters-fauxCheckbox {
  display: inline-block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  border: 2px solid #008542;
  position: relative;
  bottom: 0.1em;
  vertical-align: middle;
  background-image: url("../../images/icon-checkmark.svg");
  background-size: 10px 7px;
  background-repeat: no-repeat;
  background-position: center -150%;
  transition: background-color 125ms, border 125ms;
}

.filters-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (max-width: 850px) {
  .filters-list {
    flex-direction: row;
  }
}

.filters-listItem {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 850px) {
  .filters-listItem {
    margin-right: 1em;
  }
}

.filters-search {
  padding: 1rem 0;
  padding-right: 5rem;
  width: 100%;
  border: 0;
  background: none;
  box-shadow: 0 3px 0 #008542;
  color: #fff;
  font-size: 1.1em;
}
.filters-search:focus, .filters-search:active {
  box-shadow: 0 3px 0 #008542;
}

.filters-search-container {
  position: relative;
  max-width: 70rem;
}

.filters-submitSubmit {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 5rem;
  border: 0;
  font-size: 1em;
  color: #008542;
  background-color: transparent;
  cursor: pointer;
}
.filters-submitSubmit:hover, .filters-submitSubmit:focus {
  color: #00B75B;
}

.filters-submit {
  appearance: none;
  background-color: #008542;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  .filters-submit {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.filters-submit:hover, .filters-submit:active {
  background-color: #00B75B;
  color: #fff;
}
.filters-submit:visited {
  color: #fff;
}
.filters-submit .fa-arrow-right {
  font-size: 0.8em;
}

[data-whatintent=mouse] *:focus,
[data-whatintent=touch] *:focus {
  outline: none;
}

.user-is-tabbing :focus {
  outline: 3px dashed #0066b2;
  box-shadow: 0 0 4px 8px #f58233;
}

.accessibilityAnchor {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 1px;
  width: 1px;
  word-wrap: normal;
  font-size: 0.1px;
  color: transparent;
  background-color: transparent;
  margin: 0;
  padding: 0;
}
.accessibilityAnchor:focus {
  clip: auto;
  height: auto;
  width: auto;
  color: #F58233;
  background-color: #fff;
  padding: 5px;
  overflow: visible;
  font-size: 1.5rem;
}

.button {
  appearance: none;
  background-color: #008542;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  .button {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.button:hover, .button:active {
  background-color: #00B75B;
  color: #fff;
}
.button:visited {
  color: #fff;
}

.docebo-button {
  appearance: none;
  background-color: #008542;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
  border: none !important;
}
@media screen and (max-width: 850px) {
  .docebo-button {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.docebo-button:hover, .docebo-button:active {
  background-color: #00B75B;
  color: #fff;
}
.docebo-button:visited {
  color: #fff;
}

.icon-parallax {
  position: absolute;
  display: block;
  opacity: 0.2;
  z-index: 0;
}
.icon-parallax img {
  width: 100%;
  transition: opacity 0.35s ease-in, transform 0.35s ease-in;
}
@media screen and (max-width: 1100px) {
  .icon-parallax img {
    width: 80%;
  }
}
.icon-parallax img.lazyload {
  opacity: 0;
}
.icon-parallax img.lazyloaded {
  opacity: 1;
  transform: translateY(0);
}
.icon-parallax.small svg {
  width: 50%;
}
@media screen and (max-width: 1100px) {
  .icon-parallax.small svg {
    width: 35%;
  }
}

body.colorScheme-light .icon-parallax {
  opacity: 0.1;
}

.icon-parallax-frame {
  width: 99px;
  height: 100px;
}

.icon-parallax-thinking {
  width: 85px;
  height: 100px;
}

.icon-parallax-lamp {
  width: 69px;
  height: 100px;
}

.icon-parallax-rocket {
  width: 93px;
  height: 100px;
}

.icon-parallax-ruler {
  width: 38px;
  height: 100px;
}

.icon-parallax-molecule {
  width: 112px;
  height: 100px;
}

.icon-parallax-molecule-alt {
  width: 111px;
  height: 100px;
}

.icon-hero-one {
  top: -15rem;
  left: 25%;
}

.icon-hero-two {
  bottom: 0;
  left: 4vw;
}

.icon-hero-three {
  bottom: 25rem;
  right: 0;
}

.icon-hero-four {
  bottom: 0;
  right: 7vw;
}

.icon-hero-five {
  left: 0;
  top: 10rem;
}

.icon-hero-six {
  right: 18%;
  bottom: -10rem;
}

.icon-want-two {
  bottom: 23rem;
  left: 3vw;
}
.icon-want-two img {
  opacity: 1 !important;
}

.icon-seeing-one {
  right: 9%;
  top: 15rem;
}

.icon-seeing-two {
  bottom: -20rem;
  right: 40%;
}

.icon-seeing-three {
  right: 10%;
  bottom: -9rem;
}

.icon-feed-one {
  top: 5rem;
  left: 20%;
  z-index: 0 !important;
}

.icon-feed-two {
  bottom: 5rem;
  right: 15%;
  z-index: 0 !important;
}
.icon-feed-two img {
  opacity: 1 !important;
}

.icon-feed-three {
  bottom: -5rem;
  left: 36%;
}

.icon-feed-four {
  top: 41rem;
  right: 10%;
}

.icon-signup-one {
  top: -11rem;
  left: 50%;
}

@media screen and (max-width: 1100px) {
  .icon-hero-one {
    top: -2rem;
    left: 33%;
  }
  .icon-feed-three {
    bottom: 0rem;
  }
  .icon-feed-four {
    top: 22rem;
  }
}
@media screen and (max-width: 850px) {
  .icon-parallax {
    display: none;
  }
}
.postPassword-input {
  background-color: transparent;
  border: 1px solid #008542;
  border-radius: 1.2rem 0 1.2rem 0;
  color: #008542;
  font-size: 1.5rem;
  line-height: 1;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 0 0 1px rgba(0, 133, 66, 0);
  transform: box-shadow 0.1s linear;
}
.postPassword-input:focus {
  box-shadow: 0 0 0 1px #008542;
}

.accordion-primaryHeading {
  margin-bottom: 1rem;
}

.accordion-listItem {
  position: relative;
  display: flex;
  flex-direction: column;
}
.accordion-listItem + .accordion-listItem {
  margin-top: 1rem;
}
.accordion-listItem.active .accordion-descriptionText {
  max-height: 99999px;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.1s, max-height 0.2s cubic-bezier(0, 1, 0, 1);
}
.accordion-listItem.active .accordion-toggleIcon::before {
  transform: rotate(90deg);
  opacity: 0;
}
.accordion-listItem.active .accordion-toggleIcon::after {
  transform: rotate(180deg);
}

.accordion-headingText {
  background-color: #008542;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  padding: 1em;
  transition: background-color 0.1s linear;
}
.accordion-headingText:hover {
  background-color: #00B75B;
  color: #fff;
}

body.colorScheme-light .accordion-headingText {
  color: #fff;
}

.accordion-toggleIcon {
  position: relative;
  margin-top: 3px;
  width: 22px;
  height: 22px;
}
.accordion-toggleIcon::before, .accordion-toggleIcon::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 4px;
  background-color: #fff;
  opacity: 1;
  transition: transform 0.1s linear;
}
.accordion-toggleIcon::before {
  top: calc(50% - 2px);
}
.accordion-toggleIcon::after {
  top: 9px;
  transform: rotate(90deg);
}

.accordion-heading {
  font-size: 2rem;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 1em;
}

.accordion-descriptionText {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 1.4em 1em;
  padding-left: 5.8rem;
  pointer-events: none;
  transition: opacity 0.1s, max-height 0.1s cubic-bezier(0, 1, 0, 1);
}
@media screen and (max-width: 850px) {
  .accordion-descriptionText {
    padding-left: 1em;
  }
}

.accordion-descriptionText-inner {
  margin-bottom: 1em;
}

.accordion-toggle {
  position: absolute;
  top: 0;
  right: 0;
  visibility: hidden;
}
.accordion-toggle:checked {
  /*		~ .accordion-answerText {
  			transition: max-height 400ms ease-in, margin 1ms linear;
  			max-height: 100vh;
  		}*/
}

.breadcrumbs-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.breadcrumbs-inner a {
  text-decoration: none;
}
.breadcrumbs-inner a:visited {
  color: #008542;
}
.breadcrumbs-inner a:visited:hover {
  color: #00B75B;
}

.breadcrumbs-inner > * {
  margin-right: 0.5em;
}

.breadcrumb-separator {
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url(/wp-content/themes/rare-lp-theme/images/breadcrumb-arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(2px);
}

.card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #373A3E;
  border-top: 1rem solid #008542;
  text-decoration: none;
}
.card:visited {
  color: #008542;
}
.card:hover .card-text, .card:focus .card-text {
  background-color: #008542;
}
.card:hover .card-tab, .card:focus .card-tab {
  background-color: #008542;
  color: #fff;
}
.card:hover .card-behaviorTerm, .card:focus .card-behaviorTerm {
  color: #fff;
}
.card:hover .card-behaviorTerm path, .card:focus .card-behaviorTerm path {
  fill: rgba(255, 255, 255, 0.9);
}

body.colorScheme-light .card:hover .card-text, body.colorScheme-light .card:focus .card-text {
  background-color: #008542;
}
body.colorScheme-light .card:hover .card-title, body.colorScheme-light .card:focus .card-title {
  color: #fff;
}
body.colorScheme-light .card:hover .card-tab, body.colorScheme-light .card:focus .card-tab {
  background-color: #008542;
  color: #fff;
}

.card-image {
  flex-basis: 100%;
  padding-top: 50%;
  height: 0;
  max-height: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.card-image.noImage {
  background-image: url(/wp-content/themes/rare-lp-theme/images/watermark.png);
  background-size: 50%;
  background-color: #52555B;
}

.card-text {
  position: relative;
  flex-grow: 1;
  background-color: #373A3E;
  transition: background-color 0.1s linear;
  font-family: "pf-square-condensed-pro", sans-serif;
}

body.colorScheme-light .card-text {
  background-color: #E4EBF5;
}

.card-title {
  padding: 1.3em;
  color: #fff;
  font-size: 1.5em;
  font-weight: 400;
  text-decoration: none;
}

body.colorScheme-light .card-title {
  color: #022A52;
}

.card-tab {
  position: absolute;
  top: -5.2rem;
  left: 1rem;
  padding: 0 1.5em;
  height: 5.2rem;
  line-height: 5.2rem;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #373A3E;
  color: #008542;
  border-radius: 0 1rem 0 0;
  transition: background-color 0.1s linear, color 0.1s linear;
}

body.colorScheme-light .card-tab {
  background-color: #E4EBF5;
}

.card-behaviorTerm {
  display: flex;
  flex-direction: row;
  padding: 1.3em;
  padding-top: 0;
  margin-top: -0.95em;
  color: #fff;
  font-size: 1.2em;
}
.card-behaviorTerm svg {
  margin-right: 0.5em;
  height: 30px;
  width: 30px;
}
.card-behaviorTerm path {
  transition: fill 0.1s linear;
}

body.colorScheme-light .card-behaviorTerm {
  color: #022A52;
}

.cta-content {
  padding: 4em 4.5em;
  background-color: var(--accent-color, #005BBB);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .cta-content {
    padding: 3em 2.5em;
  }
}

.cta-description {
  font-size: 1.4em;
  line-height: 1.2;
  margin-bottom: 1em;
  font-weight: 700;
}
@media screen and (max-width: 850px) {
  .cta-description {
    font-size: 1.8rem;
    line-height: 1.4;
  }
}
.cta-description h1,
.cta-description h2 {
  line-height: 1;
  margin-bottom: 0.5em;
}
.cta-description h3,
.cta-description h4,
.cta-description h5,
.cta-description h6 {
  line-height: 1;
  margin-bottom: 0.75em;
}
.cta-description p {
  margin-bottom: 1.4em;
}
.cta-description ol,
.cta-description ul {
  margin-bottom: 1.4em;
  padding-left: 1.4em;
}
.cta-description ol {
  list-style-type: decimal;
  margin-left: 1.4em;
  padding-left: 0.5em;
}
.cta-description ul {
  list-style-type: disc;
}
.cta-description img {
  height: auto;
  max-width: 100%;
  margin-bottom: 0.9em;
}
.cta-description hr {
  background: #eee;
  border-bottom: 1px solid #ddd;
  border: none;
  height: 2px;
  margin: 2em 0;
}
@media screen and (max-width: 600px) {
  .cta-description .alignleft,
  .cta-description .alignright,
  .cta-description .aligncenter {
    float: none !important;
    display: block !important;
    margin: 0 auto !important;
    margin-bottom: 0.9em !important;
  }
}
.cta-description .alignleft {
  display: inline;
  float: left;
  margin-right: 1em;
}
.cta-description .alignright {
  display: inline;
  float: right;
  margin-left: 1em;
}
.cta-description .aligncenter {
  clear: both;
  display: block;
  margin: 0 auto;
  margin-bottom: 0.9em;
}
.cta-description .assistive-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
}
.cta-description .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
.cta-description .wp-caption {
  border: none;
  color: #969697;
  font-size: 1.5rem;
  margin-bottom: 0;
  max-width: 100%;
}
.cta-description .wp-caption.aligncenter, .cta-description .wp-caption.alignleft, .cta-description .wp-caption.alignright {
  margin-bottom: 0;
}
.cta-description .wp-caption img {
  display: block;
  margin: 1.2% auto 0;
  max-width: 98%;
}
.cta-description .wp-caption .wp-caption-text {
  margin: 0.8075em 0 0;
}
.cta-description .wp-caption-text {
  text-align: center;
}
.cta-description .gallery {
  margin-bottom: 1.4em;
}
.cta-description .gallery a img {
  border: none;
  height: auto;
  max-width: 90%;
}
.cta-description .gallery dd {
  margin: 0;
}
.cta-description embed,
.cta-description iframe,
.cta-description object {
  max-width: 100%;
}
.cta-description table {
  border-collapse: collapse;
  border-spacing: 0;
  color: #fff;
  margin: 1em 0;
  width: 100%;
}
.cta-description td,
.cta-description th {
  border: 1px solid transparent;
  height: 3em;
  transition: background 250ms, color 250ms;
  vertical-align: middle;
}
.cta-description th {
  background: #bfbfbf;
  font-weight: bold;
}
.cta-description td {
  background: #ececec;
  text-align: center;
}
.cta-description tr:nth-child(even) td {
  background: #ececec;
}
.cta-description tr:nth-child(odd) td {
  background: #d9d9d9;
}
.cta-description tr td:hover {
  background: #fff;
  color: #fff;
}

.cta-button-clear {
  display: block;
  width: 100%;
  clear: both;
}

.cta-button-clear {
  width: 100%;
  clear: both;
}
@media screen and (min-width: 768px) {
  .cta-button-clear {
    display: inline-block;
    width: auto;
    margin-right: 1rem;
  }
}

.cta-button {
  appearance: none;
  background-color: #fff;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #373A3E;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  .cta-button {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.cta-button:hover, .cta-button:active {
  background-color: rgba(255, 255, 255, 0.75);
  color: #373A3E;
}
.cta-button:visited {
  color: #373A3E;
}

.cta-landingPage .cta-content {
  background-color: transparent;
  border-top: 0.5em solid #005BBB;
  border-bottom: 0.5em solid #005BBB;
}
.cta-landingPage .cta-description {
  font-family: "pf-square-condensed-pro", sans-serif;
  font-size: 4em;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (max-width: 850px) {
  .cta-landingPage .cta-description {
    font-size: 4.6rem;
    line-height: 1.08;
  }
}
.cta-landingPage .cta-button {
  appearance: none;
  background-color: #008542;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  .cta-landingPage .cta-button {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.cta-landingPage .cta-button:hover, .cta-landingPage .cta-button:active {
  background-color: #00B75B;
  color: #fff;
}
.cta-landingPage .cta-button:visited {
  color: #fff;
}

.ctaButton-button {
  appearance: none;
  background-color: var(--accent-color, #005BBB);
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
  color: #fff;
  width: 100%;
}
@media screen and (max-width: 850px) {
  .ctaButton-button {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.ctaButton-button:hover, .ctaButton-button:active {
  background-color: var(--accent-color, #006FE5);
  color: #fff;
}
.ctaButton-button:visited {
  color: #fff;
}
.ctaButton-button.colorBlue {
  appearance: none;
  background-color: #005BBB;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  .ctaButton-button.colorBlue {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.ctaButton-button.colorBlue:hover, .ctaButton-button.colorBlue:active {
  background-color: #006FE5;
  color: #fff;
}
.ctaButton-button.colorBlue:visited {
  color: #fff;
}
.ctaButton-button.colorColbalt {
  appearance: none;
  background-color: #1782F2;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  .ctaButton-button.colorColbalt {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.ctaButton-button.colorColbalt:hover, .ctaButton-button.colorColbalt:active {
  background-color: #1995FF;
  color: #fff;
}
.ctaButton-button.colorColbalt:visited {
  color: #fff;
}
.ctaButton-button.colorLime {
  appearance: none;
  background-color: #7AB800;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  .ctaButton-button.colorLime {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.ctaButton-button.colorLime:hover, .ctaButton-button.colorLime:active {
  background-color: #8DD500;
  color: #fff;
}
.ctaButton-button.colorLime:visited {
  color: #fff;
}
.ctaButton-button.colorOrange {
  appearance: none;
  background-color: #F58233;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  .ctaButton-button.colorOrange {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.ctaButton-button.colorOrange:hover, .ctaButton-button.colorOrange:active {
  background-color: #FF9A34;
  color: #fff;
}
.ctaButton-button.colorOrange:visited {
  color: #fff;
}
.ctaButton-button.colorRed {
  appearance: none;
  background-color: #BE2B47;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  .ctaButton-button.colorRed {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.ctaButton-button.colorRed:hover, .ctaButton-button.colorRed:active {
  background-color: #D93151;
  color: #fff;
}
.ctaButton-button.colorRed:visited {
  color: #fff;
}
.ctaButton-button.colorYellow {
  appearance: none;
  background-color: #EEAF00;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  .ctaButton-button.colorYellow {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.ctaButton-button.colorYellow:hover, .ctaButton-button.colorYellow:active {
  background-color: #FFCE00;
  color: #fff;
}
.ctaButton-button.colorYellow:visited {
  color: #fff;
}
.ctaButton-button.colorSeafoam {
  appearance: none;
  background-color: #00AFD8;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  .ctaButton-button.colorSeafoam {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.ctaButton-button.colorSeafoam:hover, .ctaButton-button.colorSeafoam:active {
  background-color: #00C3F0;
  color: #fff;
}
.ctaButton-button.colorSeafoam:visited {
  color: #fff;
}

.divider {
  display: flex;
}

.divider-thick .divider-bar {
  background-color: #1782F2;
  height: 10px;
}

.divider-medium .divider-bar {
  background-color: #373A3E;
  height: 6px;
}

.divider-thin .divider-bar {
  background-color: #062543;
  height: 3px;
}

.featuredPosts-inner {
  display: flex;
  flex-direciton: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.featuredPosts-inner > * {
  flex-basis: 49%;
}
.featuredPosts-inner .card-image {
  padding-top: 70%;
}
.featuredPosts-inner .card {
  height: auto;
}

.videoContainer {
  height: 0;
  padding-bottom: 56.25%;
  position: relative;
}
.videoContainer iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.fullWidthMedia-inner {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.fullWidthMedia-image {
  height: auto;
  width: 100%;
}

.fullWidthMedia-caption {
  margin-top: 1.5em;
  font-size: 1.6rem;
}

@media screen and (max-width: 600px) {
  .fullWidthMedia-hasVideo .playVideo {
    display: none;
  }
}

.gridPeople-listItem {
  display: flex;
  flex-direction: column;
  margin-bottom: 5rem;
}
@media screen and (max-width: 850px) {
  .gridPeople-listItem {
    margin-bottom: 3rem;
  }
}

.gridPeople-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: #fff;
  text-decoration: none;
}
.gridPeople-link:hover, .gridPeople-link:focus {
  color: #00B75B;
}

body.colorScheme-light .gridPeople-link {
  color: #022A52;
}
body.colorScheme-light .gridPeople-link:hover, body.colorScheme-light .gridPeople-link:focus {
  color: #00B75B;
}

.gridPeople-image {
  padding-top: 100%;
  width: 100%;
  height: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.gridPeople-name {
  margin-top: 1em;
  font-size: 2.4rem;
  font-weight: 400;
}

.gridPeople-job {
  margin-top: 1em;
  font-size: 1.6rem;
}
@media screen and (max-width: 850px) {
  .gridPeople-job {
    margin-top: 0.5em;
  }
}

.relatedTerm-identifier {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 1em;
}

.relatedTerm-icon {
  margin-right: 1em;
  height: 4em;
  width: auto;
}

.relatedTerm-name {
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.testimonial-content {
  padding: 2em 2.5em;
  background-color: #373A3E;
  background-image: url(/wp-content/themes/rare-lp-theme/images/quotes.png);
  background-repeat: no-repeat;
  background-position: center 1.5em;
  background-size: auto;
}

body.colorScheme-light .testimonial-content {
  color: #fff;
}

.testimonial-primaryHeading {
  margin-bottom: 0.5em;
}

.testimonial-quotedText,
.testimonial-attributionName {
  font-size: 2.4rem;
  font-family: "pf-square-condensed-pro", sans-serif;
}

.testimonial-quotedText {
  position: relative;
}

.testimonial-attributionTitle {
  font-size: 1.6rem;
}

.testimonial-attribution {
  display: flex;
  flex-direction: row;
  margin-top: 1em;
}

.testimonial-image {
  margin-right: 1em;
  width: 3em;
  height: 100%;
}

/*.textBlock-content {
	h2, h3, h4, h5, h6 {
		font-weight: 400;
	}

	h2 {
		@include responsive-font(2.5em, 1.3, 3.6rem, 1.22);
	}

	h3 {
		@include responsive-font(1.8em, 1.33, 3rem, 1.13);
	}

	h4 {
		@include responsive-font(1.5em, 1.2, 2.4rem, 1.33);
	}

	h5, h6 {
		@include responsive-font(1.2em, 1.5, 2rem, 1.2);
	}
}
*/
body.buddypress .l-inner .l-inner {
  padding: 0;
}

body .buddypress-wrap input[type=email]:focus,
body .buddypress-wrap input[type=password]:focus,
body .buddypress-wrap input[type=tel]:focus,
body .buddypress-wrap input[type=text]:focus,
body .buddypress-wrap input[type=url]:focus,
body .buddypress-wrap textarea:focus {
  box-shadow: none;
}

.buddypress-wrap label {
  cursor: pointer;
}

body .buddypress-wrap .standard-form.profile-edit input:focus,
body .buddypress-wrap .standard-form input:focus,
body .buddypress-wrap .standard-form select:focus,
body .buddypress-wrap .standard-form textarea:focus {
  background: transparent;
  color: #008542;
}

.content-main .buddypress-wrap .standard-form p.description {
  color: #fff;
}

body.colorScheme-light .content-main .buddypress-wrap .standard-form p.description {
  color: #022A52;
}

body.buddypress .buddypress-wrap .activity-read-more a,
body.buddypress .buddypress-wrap .comment-reply-link,
body.buddypress .buddypress-wrap .generic-button a,
body.buddypress .buddypress-wrap a.bp-title-button,
body.buddypress .buddypress-wrap a.button,
body.buddypress .buddypress-wrap input[type=button],
body.buddypress .buddypress-wrap input[type=reset],
body.buddypress .buddypress-wrap input[type=submit],
body.buddypress .buddypress-wrap ul.button-nav:not(.button-tabs) li a {
  appearance: none;
  background-color: #008542;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
}
@media screen and (max-width: 850px) {
  body.buddypress .buddypress-wrap .activity-read-more a,
  body.buddypress .buddypress-wrap .comment-reply-link,
  body.buddypress .buddypress-wrap .generic-button a,
  body.buddypress .buddypress-wrap a.bp-title-button,
  body.buddypress .buddypress-wrap a.button,
  body.buddypress .buddypress-wrap input[type=button],
  body.buddypress .buddypress-wrap input[type=reset],
  body.buddypress .buddypress-wrap input[type=submit],
  body.buddypress .buddypress-wrap ul.button-nav:not(.button-tabs) li a {
    font-size: 1.8rem;
    line-height: 1;
  }
}
body.buddypress .buddypress-wrap .activity-read-more a:hover, body.buddypress .buddypress-wrap .activity-read-more a:active,
body.buddypress .buddypress-wrap .comment-reply-link:hover,
body.buddypress .buddypress-wrap .comment-reply-link:active,
body.buddypress .buddypress-wrap .generic-button a:hover,
body.buddypress .buddypress-wrap .generic-button a:active,
body.buddypress .buddypress-wrap a.bp-title-button:hover,
body.buddypress .buddypress-wrap a.bp-title-button:active,
body.buddypress .buddypress-wrap a.button:hover,
body.buddypress .buddypress-wrap a.button:active,
body.buddypress .buddypress-wrap input[type=button]:hover,
body.buddypress .buddypress-wrap input[type=button]:active,
body.buddypress .buddypress-wrap input[type=reset]:hover,
body.buddypress .buddypress-wrap input[type=reset]:active,
body.buddypress .buddypress-wrap input[type=submit]:hover,
body.buddypress .buddypress-wrap input[type=submit]:active,
body.buddypress .buddypress-wrap ul.button-nav:not(.button-tabs) li a:hover,
body.buddypress .buddypress-wrap ul.button-nav:not(.button-tabs) li a:active {
  background-color: #00B75B;
  color: #fff;
}
body.buddypress .buddypress-wrap .activity-read-more a:visited,
body.buddypress .buddypress-wrap .comment-reply-link:visited,
body.buddypress .buddypress-wrap .generic-button a:visited,
body.buddypress .buddypress-wrap a.bp-title-button:visited,
body.buddypress .buddypress-wrap a.button:visited,
body.buddypress .buddypress-wrap input[type=button]:visited,
body.buddypress .buddypress-wrap input[type=reset]:visited,
body.buddypress .buddypress-wrap input[type=submit]:visited,
body.buddypress .buddypress-wrap ul.button-nav:not(.button-tabs) li a:visited {
  color: #fff;
}

body.buddypress #buddypress input[type=reset],
body.buddypress #buddypress input[type=search],
body.buddypress #buddypress input[type=submit] {
  border-radius: 1.2rem 0 1.2rem 0;
}

.content-main .buddypress-wrap .bp-tables-user tbody tr,
.content-main .buddypress-wrap table.forum tbody tr,
.content-main .buddypress-wrap table.wp-profile-fields tbody tr {
  background: transparent;
}

.content-main .buddypress-wrap .bp-tables-user tr.alt td,
.content-main .buddypress-wrap table.wp-profile-fields tr.alt td {
  background: #1f2123;
}

body.colorScheme-light .content-main .buddypress-wrap .bp-tables-user tr.alt td,
body.colorScheme-light .content-main .buddypress-wrap table.wp-profile-fields tr.alt td {
  background: #DDEEFF;
}

.buddypress-wrap table.notification-settings th.title,
.buddypress-wrap table.profile-settings th.title {
  font-weight: bold;
  text-align: left;
}

.content-main .buddypress-wrap .bp-feedback {
  background-color: #373A3E;
  color: #fff;
  padding: 1rem;
  border: 1px solid #52555B;
}

.content-main .buddypress-wrap .register-page .bp-feedback {
  background-color: #000;
  border: 1px solid #fff;
  border-radius: 1.2rem 0 1.2rem 0;
}
.content-main .buddypress-wrap .register-page .bp-feedback .bp-icon {
  display: none;
}
.content-main .buddypress-wrap .register-page .bp-feedback p {
  color: #fff;
  padding-left: 1rem;
}
.content-main .buddypress-wrap .register-page .bp-feedback p a {
  appearance: none;
  background-color: #008542;
  border-radius: 1rem 0 1rem 0;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font-size: 1.05em;
  line-height: 1;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-weight: 700;
  padding: 1em 0.9em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.1s linear, background-color 0.1s linear;
  color: #fff !important;
  margin-left: 2rem;
}
@media screen and (max-width: 850px) {
  .content-main .buddypress-wrap .register-page .bp-feedback p a {
    font-size: 1.8rem;
    line-height: 1;
  }
}
.content-main .buddypress-wrap .register-page .bp-feedback p a:hover, .content-main .buddypress-wrap .register-page .bp-feedback p a:active {
  background-color: #00B75B;
  color: #fff;
}
.content-main .buddypress-wrap .register-page .bp-feedback p a:visited {
  color: #fff;
}

body.colorScheme-light .content-main .buddypress-wrap .register-page .bp-feedback {
  background-color: #E4EBF5;
}
body.colorScheme-light .content-main .buddypress-wrap .register-page .bp-feedback p {
  color: #022A52;
}

body.buddypress.page .buddypress-wrap h1,
body.buddypress.page .buddypress-wrap h2,
body.buddypress.page .buddypress-wrap h3,
body.buddypress.page .buddypress-wrap h4,
body.buddypress.page .buddypress-wrap h5,
body.buddypress.page .buddypress-wrap h6 {
  margin: 2rem 0;
}
body.buddypress.page .buddypress-wrap h1:first-child,
body.buddypress.page .buddypress-wrap h2:first-child,
body.buddypress.page .buddypress-wrap h3:first-child,
body.buddypress.page .buddypress-wrap h4:first-child,
body.buddypress.page .buddypress-wrap h5:first-child,
body.buddypress.page .buddypress-wrap h6:first-child {
  margin-top: 0;
}

.content-main .buddypress-wrap .item-body h2.screen-heading {
  font-size: 4em;
  line-height: 1.3;
  font-weight: bold;
}
@media screen and (max-width: 850px) {
  .content-main .buddypress-wrap .item-body h2.screen-heading {
    font-size: 3.6rem;
    line-height: 1.22;
  }
}

.content-main .buddypress-wrap .item-body h3.screen-heading {
  font-size: 2.1em;
  line-height: 1.3;
  font-weight: 400;
}
@media screen and (max-width: 850px) {
  .content-main .buddypress-wrap .item-body h3.screen-heading {
    font-size: 3.6rem;
    line-height: 1.22;
  }
}

.content-main .buddypress-wrap .item-body h4.screen-heading {
  font-size: 1.8em;
  line-height: 1.3;
  font-weight: bold;
}
@media screen and (max-width: 850px) {
  .content-main .buddypress-wrap .item-body h4.screen-heading {
    font-size: 3.6rem;
    line-height: 1.22;
  }
}

body.buddypress .content {
  margin-top: 3em;
}

body.buddypress .content-locked {
  position: relative;
  margin-top: -14.3em;
}

@media screen and (max-width: 46.8em) {
  body .buddypress-wrap .single-screen-navs {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    margin-bottom: 2em;
    border: 0;
  }
  .scrollbar-5 body .buddypress-wrap .single-screen-navs {
    width: calc(100vw - 5px);
    margin-left: calc(-50vw + 2.5px + 50%);
    margin-right: calc(-50vw + 2.5px + 50%);
  }
  .scrollbar-12 body .buddypress-wrap .single-screen-navs {
    width: calc(100vw - 12px);
    margin-left: calc(-50vw + 6px + 50%);
    margin-right: calc(-50vw + 6px + 50%);
  }
  .scrollbar-15 body .buddypress-wrap .single-screen-navs {
    width: calc(100vw - 15px);
    margin-left: calc(-50vw + 7.5px + 50%);
    margin-right: calc(-50vw + 7.5px + 50%);
  }
  .scrollbar-17 body .buddypress-wrap .single-screen-navs {
    width: calc(100vw - 17px);
    margin-left: calc(-50vw + 8.5px + 50%);
    margin-right: calc(-50vw + 8.5px + 50%);
  }
  body .buddypress-wrap .single-screen-navs li {
    border-radius: 0 !important;
  }
  body .buddypress-wrap .bp-subnavs {
    padding: 0 10px;
  }
  body .buddypress-wrap .bp-subnavs li {
    border-top: 1px solid #52555B;
    border-radius: 0 !important;
  }
}
.content-main .buddypress-wrap .bp-pagination .bp-pagination-links a.page-numbers,
.content-main .buddypress-wrap .bp-pagination .bp-pagination-links span.page-numbers {
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  line-height: 1.25;
  margin: 0 0.4em;
  transition: border 100ms;
  text-align: center;
  text-decoration: none;
  position: relative;
  font-family: "pf-square-condensed-pro", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}
.content-main .buddypress-wrap .bp-pagination .bp-pagination-links a.page-numbers:not(.dots):hover,
.content-main .buddypress-wrap .bp-pagination .bp-pagination-links span.page-numbers:not(.dots):hover {
  color: #fff;
  border-bottom: 3px solid #00B75B;
  text-decoration: none;
}
.content-main .buddypress-wrap .bp-pagination .bp-pagination-links a.page-numbers.current,
.content-main .buddypress-wrap .bp-pagination .bp-pagination-links span.page-numbers.current {
  color: #52555B;
  text-decoration: underline;
}

.signup-form {
  display: flex;
}
@media screen and (max-width: 860px) {
  .signup-form {
    flex-wrap: wrap;
  }
}

.register-section {
  max-width: 860px;
}

#basic-details-section {
  padding-right: 100px;
}
@media screen and (max-width: 960px) {
  #basic-details-section {
    padding-right: 50px;
  }
}
@media screen and (max-width: 860px) {
  #basic-details-section {
    order: 2;
  }
}

@media screen and (max-width: 860px) {
  #profile-details-section {
    order: 1;
    margin-bottom: 4rem;
  }
}

.content-main .buddypress-wrap .standard-form input[type=color],
.content-main .buddypress-wrap .standard-form input[type=date],
.content-main .buddypress-wrap .standard-form input[type=datetime-local],
.content-main .buddypress-wrap .standard-form input[type=datetime],
.content-main .buddypress-wrap .standard-form input[type=email],
.content-main .buddypress-wrap .standard-form input[type=month],
.content-main .buddypress-wrap .standard-form input[type=number],
.content-main .buddypress-wrap .standard-form input[type=password],
.content-main .buddypress-wrap .standard-form input[type=range],
.content-main .buddypress-wrap .standard-form input[type=search],
.content-main .buddypress-wrap .standard-form input[type=tel],
.content-main .buddypress-wrap .standard-form input[type=text],
.content-main .buddypress-wrap .standard-form input[type=time],
.content-main .buddypress-wrap .standard-form input[type=url],
.content-main .buddypress-wrap .standard-form input[type=week] {
  background-color: transparent;
  border: 1px solid #008542;
  border-radius: 1.2rem 0 1.2rem 0;
  color: #008542;
  font-size: 1.5rem;
  line-height: 1;
  padding: 1.5rem 2.5rem;
  box-shadow: 0 0 0 1px rgba(0, 133, 66, 0);
  transform: box-shadow 0.1s linear;
}
.content-main .buddypress-wrap .standard-form input[type=color]:focus,
.content-main .buddypress-wrap .standard-form input[type=date]:focus,
.content-main .buddypress-wrap .standard-form input[type=datetime-local]:focus,
.content-main .buddypress-wrap .standard-form input[type=datetime]:focus,
.content-main .buddypress-wrap .standard-form input[type=email]:focus,
.content-main .buddypress-wrap .standard-form input[type=month]:focus,
.content-main .buddypress-wrap .standard-form input[type=number]:focus,
.content-main .buddypress-wrap .standard-form input[type=password]:focus,
.content-main .buddypress-wrap .standard-form input[type=range]:focus,
.content-main .buddypress-wrap .standard-form input[type=search]:focus,
.content-main .buddypress-wrap .standard-form input[type=tel]:focus,
.content-main .buddypress-wrap .standard-form input[type=text]:focus,
.content-main .buddypress-wrap .standard-form input[type=time]:focus,
.content-main .buddypress-wrap .standard-form input[type=url]:focus,
.content-main .buddypress-wrap .standard-form input[type=week]:focus {
  box-shadow: 0 0 0 1px #008542;
}

.content-main .buddypress-wrap .standard-form input[required]:invalid,
.content-main .buddypress-wrap .standard-form select[required]:invalid,
.content-main .buddypress-wrap .standard-form textarea[required]:invalid {
  border-color: initial;
}

.content-main .buddypress-wrap .standard-form input.hasBeenBlurred[required]:invalid {
  border-color: #008542;
  background-image: url("../../images/icon-form-invalid.svg");
  background-size: 40px 35px;
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

.content-main .buddypress-wrap .standard-form input.hasBeenBlurred[required]:valid {
  border-color: #008542;
  background-image: url("../../images/icon-form-valid.svg");
  background-size: 40px 40px;
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

p.c4wp-display-captcha-form input[type=text].c4wp_user_input_captcha {
  padding: 10px 5px 10px 5px !important;
}

.select-container {
  position: relative;
  background-image: url("../../images/icon-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 25px 13px;
  border: 1px solid #008542;
  border-radius: 1.2rem 0 1.2rem 0;
}
.select-container select {
  width: calc(100% - 2rem - 25px);
}

.content-main .buddypress-wrap .standard-form select {
  appearance: none;
  border: 1px solid #008542;
  border-radius: 1.2rem 0 1.2rem 0;
  background-color: transparent;
  background-image: url("../../images/icon-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 25px 13px;
  color: #008542;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 2rem calc(3rem + 25px) 2rem 2rem;
  line-height: 1;
}

.content-main #buddypress select {
  border-radius: 1.2rem 0 1.2rem 0;
}

#signup-privacy-policy-accept {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px !important;
}
#signup-privacy-policy-accept:checked ~ .fauxCheckbox {
  background-color: #7AB800;
  background-position: center;
  border: 2px solid #7AB800;
}
#signup-privacy-policy-accept:focus ~ .fauxCheckbox {
  border-color: #7ab800;
}

.privacy-fauxCheckbox {
  display: inline-block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  border: 2px solid #008542;
  position: relative;
  bottom: 0.1em;
  vertical-align: middle;
  background-image: url("../../images/icon-checkmark.svg");
  background-size: 10px 7px;
  background-repeat: no-repeat;
  background-position: center -150%;
  transition: background-color 125ms, border 125ms;
  margin-right: 0.33em;
}

.register-extras {
  background-color: #373A3E;
  padding: 4rem;
  border: 1px solid #52555B;
  opacity: 0.7;
}

body.colorScheme-light .register-extras {
  color: #fff;
}

.register-extrasHeading {
  font-size: 1.8em;
  margin-bottom: 1rem !important;
}
.register-extrasHeading .icon-checkmark {
  display: inline-block;
  background-image: url("../../images/icon-checkmark.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 30px;
  height: 24px;
}

.register-extrasItem + .register-extrasItem {
  margin-top: 4rem;
}

.below-submit {
  font-style: italic;
  margin-top: 1em;
  opacity: 0.8;
}

.newUserRegister-validateDetails {
  height: 1px;
  opacity: 0;
  padding: 0;
  pointer-events: none;
  position: absolute;
  width: 1px;
}

.user_email2 {
  height: inherit;
  opacity: inherit;
  padding: inherit;
  pointer-events: inherit;
  position: inherit;
  width: inherit;
}

.buddypress-wrap .profile.edit .editfield {
  background: transparent !important;
}

.content-main .buddypress-wrap .standard-form label {
  display: inline-block;
  padding-left: 0.75rem;
  letter-spacing: -0.033em;
}

.field-container input[type=checkbox] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px !important;
}
.field-container input[type=checkbox]:checked ~ .field-fauxCheckbox {
  background-color: #7AB800;
  background-position: center;
  border: 2px solid #7AB800;
}
.field-container input[type=checkbox]:focus ~ .field-fauxCheckbox {
  border-color: #7ab800;
}

.field-fauxCheckbox {
  display: inline-block;
  margin-right: 5px;
  width: 16px;
  height: 16px;
  border: 2px solid #008542;
  position: relative;
  bottom: 0.1em;
  vertical-align: middle;
  background-image: url("../../images/icon-checkmark.svg");
  background-size: 10px 7px;
  background-repeat: no-repeat;
  background-position: center -150%;
  transition: background-color 125ms, border 125ms;
  margin-right: 0.33em;
}

.content-main .buddypress-wrap .standard-form div.checkbox label:nth-child(n+2) {
  margin-top: 0;
  color: #fff;
}

.field-container input[type=radio] {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px !important;
}
.field-container input[type=radio]:checked ~ .fauxRadio {
  border: 1px solid #7AB800;
}
.field-container input[type=radio]:checked ~ .fauxRadio::before {
  opacity: 1;
}
.field-container input[type=radio]:focus ~ .fauxRadio {
  border-width: 2px;
}

.fauxRadio {
  display: inline-block;
  width: 24px;
  height: 24px;
  border: 1px solid #008542;
  border-radius: 50%;
  position: relative;
  bottom: 0.1em;
  vertical-align: middle;
  transition: background-color 125ms, border 125ms;
}
.fauxRadio::before {
  content: "";
  display: block;
  position: absolute;
  left: calc(50% - 6px);
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #7AB800;
  pointer-events: none;
  opacity: 0;
  transition: opacity 125ms;
}

.radio-button-options .option-label {
  position: relative;
  padding-left: 30px !important;
  left: -20px;
}

.content-main .buddypress-wrap .standard-form div.radio div label {
  color: #fff;
  margin: 0;
}

.content-main .buddypress-wrap .standard-form .description {
  background: transparent;
}

.buddypress-wrap .standard-form .field-visibility-settings-header {
  font-style: italic;
  margin-top: 1em;
  font-size: 1.5rem;
}

.field-visibility-settings-notoggle::after {
  content: "(required)";
}

.buddypress .buddypress-wrap button.visibility-toggle-link {
  text-decoration: underline;
}

.radio input[type=radio] {
  display: none;
}
.radio input[type=radio]:checked + .fauxRadio {
  border: 1px solid #7AB800;
}
.radio input[type=radio]:checked + .fauxRadio::before {
  opacity: 1;
}
.radio .field-visibility-text {
  position: relative;
  padding-left: 0.66rem;
}

.content-main .buddypress-wrap .standard-form textarea {
  background-color: transparent;
  border: 1px solid #008542;
  border-radius: 1.2rem 0 1.2rem 0;
  color: #008542;
  font-size: 1.5rem;
  padding: 1.5rem 2.5rem;
}
.content-main .buddypress-wrap .standard-form textarea:focus {
  border-color: #008542;
  border-width: 1px;
  outline: 1px dashed #F58233;
  outline-offset: 2px;
}

body .content-main #buddypress textarea {
  border-radius: 1.2rem 0 1.2rem 0;
}

.buddypress-wrap table.notification-settings,
.buddypress-wrap table.profile-settings {
  max-width: 720px;
  margin-top: 5rem;
}
.buddypress-wrap table.notification-settings th.title:first-child,
.buddypress-wrap table.profile-settings th.title:first-child {
  width: 70%;
}

#bp-data-export {
  margin-bottom: 10rem;
}

@media screen and (min-width: 46.8em) {
  .content-main .buddypress-wrap.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links) {
    border-bottom: none;
    border-top: none;
    box-shadow: none;
    background-color: #1f2123;
  }
}
@media screen and (min-width: 46.8em) {
  body.colorScheme-light .content-main .buddypress-wrap.bp-dir-hori-nav:not(.bp-vertical-navs) nav:not(.tabbed-links) {
    background-color: #DDEEFF;
  }
}

.content-main .buddypress-wrap:not(.bp-single-vert-nav) .main-navs > ul > li > a,
.content-main .bp-navs ul li a,
.content-main .bp-navs ul li span {
  padding: 0.5em 1em 0.35em 1em;
}

@media screen and (min-width: 46.8em) {
  #object-nav {
    background-color: transparent;
    border-bottom: 10px solid #008542;
  }
}

#item-body {
  margin-top: 0;
}

.content-main .buddypress-wrap .bp-subnavs {
  margin-top: 0;
}

@media screen and (min-width: 46.8em) {
  .content-main .buddypress-wrap .main-navs:not(.dir-navs) li.current a,
  .content-main .buddypress-wrap .main-navs:not(.dir-navs) li.selected a {
    background: #008542;
    color: #fff;
    border-radius: 1.2rem 0 0 0;
  }
}

@media screen and (min-width: 46.8em) {
  .content-main .buddypress-wrap .bp-subnavs li.current a,
  .content-main .buddypress-wrap .bp-subnavs li.selected a {
    background: #52555B;
    color: #fff;
    position: relative;
  }
  .content-main .buddypress-wrap .bp-subnavs li.current a::before,
  .content-main .buddypress-wrap .bp-subnavs li.selected a::before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: 0;
    left: calc(50% - 14px);
    border-top: 10px solid #008542;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
  }
}

@media screen and (min-width: 46.8em) {
  body.colorScheme-light .content-main .buddypress-wrap .bp-subnavs li.current a,
  body.colorScheme-light .content-main .buddypress-wrap .bp-subnavs li.selected a {
    background: #00391c;
  }
}
@media screen and (min-width: 46.8em) {
  body.colorScheme-light .content-main .buddypress-wrap .bp-subnavs li.current a:hover,
  body.colorScheme-light .content-main .buddypress-wrap .bp-subnavs li.selected a:hover {
    color: #fff;
  }
}

@media screen and (min-width: 46.8em) {
  .content-main .buddypress-wrap .bp-subnavs li a,
  .content-main .buddypress-wrap .bp-subnavs li a {
    padding-top: 20px;
    padding-bottom: 14px;
  }
}

.button-tabs a {
  border-bottom: 4px solid transparent;
  padding: 0.5em 1em;
  position: relative;
  transition: color 125ms, border 125ms;
}

body.buddypress .buddypress-wrap .button-nav li.current a,
body.buddypress .buddypress-wrap .button-nav li a:hover {
  background: transparent;
  border-bottom: 4px solid #008542;
  color: #008542;
}

body.buddypress .buddypress-wrap .button-nav li.current a {
  color: #fff;
}
body.buddypress .buddypress-wrap .button-nav li.current a::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: 100%;
  left: calc(50% - 14px);
  border-top: 10px solid #008542;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
}

body.colorScheme-light.buddypress .buddypress-wrap .button-nav li.current a {
  background-color: #008542;
}

.item-body .profile.edit {
  max-width: 720px;
}

.content-main .buddypress-wrap .profile.edit .editfield {
  border: 1px solid #52555B;
}

.bp-user .single-headers .activity {
  display: inline-block;
  font-size: 12px;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.75);
  border-radius: 5px;
}

#dir-members-search-form {
  border: none;
  border-bottom: 3px solid #008542;
}

.content-main .buddypress-wrap .bp-search form:focus:hover,
.content-main .buddypress-wrap .bp-search form:hover,
.content-main .buddypress-wrap .select-wrap:focus:hover,
.content-main .buddypress-wrap .select-wrap:hover {
  box-shadow: none;
}

.content-main .buddypress-wrap form.bp-dir-search-form input[type=search],
.content-main .buddypress-wrap form.bp-dir-search-form input[type=text],
.content-main .buddypress-wrap form.bp-invites-search-form input[type=search],
.content-main .buddypress-wrap form.bp-invites-search-form input[type=text],
.content-main .buddypress-wrap form.bp-messages-search-form input[type=search],
.content-main .buddypress-wrap form.bp-messages-search-form input[type=text] {
  padding: 3px 0;
  color: #008542;
}

.content-main .buddypress-wrap form.bp-dir-search-form button[type=submit],
.content-main .buddypress-wrap form.bp-invites-search-form button[type=submit],
.content-main .buddypress-wrap form.bp-messages-search-form button[type=submit] {
  padding: 0;
  max-width: 30px;
}

.content-main .buddypress-wrap form.bp-dir-search-form button[type=submit] span,
.content-main .buddypress-wrap form.bp-invites-search-form button[type=submit] span,
.content-main .buddypress-wrap form.bp-messages-search-form button[type=submit] span {
  font-size: 30px;
  line-height: 1;
  width: 30px;
  height: 30px;
  color: #008542;
}

body #buddypress div.select-wrap {
  position: relative;
  background-image: url("../../images/icon-arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 2rem center;
  background-size: 25px 13px;
  border: 1px solid #008542;
  border-radius: 1.2rem 0 1.2rem 0;
}
body #buddypress div.select-wrap select {
  width: calc(100% - 2rem - 25px);
}

#members-order-by {
  appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  color: #008542;
  cursor: pointer;
  font-size: 1em;
  padding: 2rem;
  line-height: 1;
}

.content-main .buddypress-wrap .select-wrap span.select-arrow {
  display: none;
}

.buddypress-wrap .bp-pagination.top {
  padding: 2em 0 1em 0;
}

.buddypress-wrap .grid.bp-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: stretch;
}

.content-main .grid > li .list-wrap {
  background: transparent;
  border: none;
}

.buddypress-wrap .grid.bp-list > li {
  min-width: 255px;
}

@media screen and (min-width: 46.8em) {
  .content-main .bp-list li .item .item-meta,
  .content-main .bp-list li .item .list-title {
    float: none;
    text-align: left;
  }
}

body.buddypress .buddypress-wrap #user_switching_switch_to.generic-button a {
  background-color: transparent;
  display: inline;
  border: none;
  padding: 0.5em;
}

.content-main .buddypress-wrap .warn {
  color: #BE2B47;
}
.content-main .buddypress-wrap #group-create-body .bp-cover-image-status p.warning {
  background: #005BBB;
}
.content-main .buddypress-wrap .bp-feedback.info .bp-icon,
.content-main .buddypress-wrap .bp-feedback.help .bp-icon {
  background-color: #005BBB;
}
.content-main .buddypress-wrap .bp-feedback.error .bp-icon,
.content-main .buddypress-wrap .bp-feedback.warning .bp-icon {
  background-color: #BE2B47;
}
.content-main .buddypress-wrap .bp-feedback.loading .bp-icon {
  background-color: #F58233;
}
.content-main .buddypress-wrap .bp-feedback.success .bp-icon,
.content-main .buddypress-wrap .bp-feedback.updated .bp-icon {
  background-color: #7AB800;
}
.modal {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
  display: none;
  height: 100%;
  justify-content: center;
  left: 0;
  padding: 10rem;
  position: fixed;
  top: 0;
  width: 100%;
  transform: translate3d(0, -101%, 0);
  transition: transform 150ms ease-out;
  z-index: 100;
}
.modal.is-active {
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 640px) {
  .modal {
    padding: 3%;
  }
}

.closeModal {
  display: none;
  position: absolute;
  top: 0;
  right: -4rem;
  padding: 0;
  margin: 0;
  height: 40px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}
@media screen and (max-width: 850px) {
  .closeModal {
    top: -4rem;
    right: 0;
  }
}

.is-active .closeModal {
  display: block;
}

.modal-videoContainer {
  max-width: 1280px;
  max-height: 720px;
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
.modal-videoContainer iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 1480px) {
  .modal-videoContainer {
    width: calc(100vw - 200px);
    height: calc(56.25vh + 200px);
    padding-top: 0;
  }
}

.disqus-container {
  margin-bottom: -3em;
  background-color: #000;
}

body.colorScheme-light .disqus-container {
  background-color: #fff;
}

.disqus-inner {
  padding-top: 8em;
  padding-bottom: 5em;
}

.cc-window {
  opacity: 1;
  transition: opacity 1s ease;
}

.cc-window.cc-invisible {
  opacity: 0;
}

.cc-animate.cc-revoke {
  transition: transform 1s ease;
}

.cc-animate.cc-revoke.cc-top {
  transform: translateY(-2em);
}

.cc-animate.cc-revoke.cc-bottom {
  transform: translateY(2em);
}

.cc-animate.cc-revoke.cc-active.cc-top {
  transform: translateY(0);
}

.cc-animate.cc-revoke.cc-active.cc-bottom {
  transform: translateY(0);
}

.cc-revoke:hover {
  transform: translateY(0);
}

.cc-grower {
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s;
}

.cc-revoke,
.cc-window {
  position: fixed;
  overflow: hidden;
  box-sizing: border-box;
  font-family: Helvetica, Calibri, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5em;
  display: flex;
  flex-wrap: nowrap;
  z-index: 9999;
}

.cc-window.cc-static {
  position: static;
}

.cc-window.cc-floating {
  padding: 2em;
  max-width: 24em;
  flex-direction: column;
}

.cc-window.cc-banner {
  padding: 1em 1.8em;
  width: 100%;
  flex-direction: row;
}

.cc-revoke {
  padding: 0.5em;
}

.cc-revoke:hover {
  text-decoration: underline;
}

.cc-header {
  font-size: 18px;
  font-weight: 700;
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
  cursor: pointer;
}

.cc-link {
  opacity: 0.8;
  display: inline-block;
  padding: 0.2em;
  text-decoration: underline;
}

.cc-link:hover {
  opacity: 1;
}

.cc-link:active, .cc-link:visited {
  color: initial;
}

.cc-btn {
  display: block;
  padding: 0.4em 0.8em;
  font-size: 0.9em;
  font-weight: 700;
  border-width: 2px;
  border-style: solid;
  text-align: center;
  white-space: nowrap;
}

.cc-highlight .cc-btn:first-child {
  background-color: transparent;
  border-color: transparent;
}

.cc-highlight .cc-btn:first-child:focus, .cc-highlight .cc-btn:first-child:hover {
  background-color: transparent;
  text-decoration: underline;
}

.cc-close {
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 1.6em;
  opacity: 0.9;
  line-height: 0.75;
}

.cc-close:focus, .cc-close:hover {
  opacity: 1;
}

.cc-revoke.cc-top {
  top: 0;
  left: 3em;
  border-bottom-left-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
}

.cc-revoke.cc-bottom {
  bottom: 0;
  left: 3em;
  border-top-left-radius: 0.5em;
  border-top-right-radius: 0.5em;
}

.cc-revoke.cc-left {
  left: 3em;
  right: unset;
}

.cc-revoke.cc-right {
  right: 3em;
  left: unset;
}

.cc-top {
  top: 1em;
}

.cc-left {
  left: 1em;
}

.cc-right {
  right: 1em;
}

.cc-bottom {
  bottom: 1em;
}

.cc-floating > .cc-link {
  margin-bottom: 1em;
}

.cc-floating .cc-message {
  display: block;
  margin-bottom: 1em;
}

.cc-window.cc-floating .cc-compliance {
  flex: 1 0 auto;
}

.cc-window.cc-banner {
  align-items: center;
}

.cc-banner.cc-top {
  left: 0;
  right: 0;
  top: 0;
}

.cc-banner.cc-bottom {
  max-width: 1440px;
  left: auto;
  right: auto;
  bottom: 0;
}

.cc-banner .cc-message {
  display: block;
  flex: 1 1 auto;
  max-width: 100%;
  margin-right: 1em;
}

.cc-compliance {
  display: flex;
  align-items: center;
  align-content: space-between;
}

.cc-floating .cc-compliance > .cc-btn {
  flex: 1;
}

.cc-btn + .cc-btn {
  margin-left: 0.5em;
}

@media print {
  .cc-revoke, .cc-window {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .cc-btn {
    white-space: normal;
  }
}
@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
  .cc-window.cc-top {
    top: 0;
  }
  .cc-window.cc-bottom {
    bottom: 0;
  }
  .cc-window.cc-banner, .cc-window.cc-floating, .cc-window.cc-left, .cc-window.cc-right {
    left: 0;
    right: 0;
  }
  .cc-window.cc-banner {
    flex-direction: column;
  }
  .cc-window.cc-banner .cc-compliance {
    flex: 1 1 auto;
  }
  .cc-window.cc-floating {
    max-width: none;
  }
  .cc-window .cc-message {
    margin-bottom: 1em;
  }
  .cc-window.cc-banner {
    align-items: unset;
  }
  .cc-window.cc-banner .cc-message {
    margin-right: 0;
  }
}
.cc-floating.cc-theme-classic {
  padding: 1.2em;
  border-radius: 5px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
  text-align: center;
  display: inline;
  flex: none;
}

.cc-theme-classic .cc-btn {
  border-radius: 5px;
}

.cc-theme-classic .cc-btn:last-child {
  min-width: 140px;
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
  display: inline-block;
}

.cc-theme-edgeless.cc-window {
  padding: 0;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 2em;
  margin-bottom: 1.5em;
}

.cc-banner.cc-theme-edgeless .cc-btn {
  margin: 0;
  padding: 0.8em 1.8em;
  height: 100%;
}

.cc-banner.cc-theme-edgeless .cc-message {
  margin-left: 1em;
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
  margin-left: 0;
}

.pagination {
  font-family: "pf-square-condensed-pro", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
.pagination .screen-reader-text {
  display: none;
}

.page-numbers {
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  line-height: 1.25;
  margin: 0 0.4em;
  transition: border 100ms;
  text-align: center;
  text-decoration: none;
  position: relative;
}
.page-numbers:not(.dots):hover {
  color: #fff;
  border-bottom: 3px solid #00B75B;
  text-decoration: none;
}
.page-numbers.current {
  color: #52555B;
  text-decoration: underline;
}

.pagination-arrow {
  font-size: 0.8em;
}

.behaviorListings-otherLinks {
  max-width: calc(820px + 4rem);
}

.behaviorListings-description {
  margin-top: 1rem;
}

.behaviorListings-seeAllLink {
  display: inline-block;
  margin-top: 1em;
  text-decoration: none;
}
.behaviorListings-seeAllLink:hover {
  color: #00B75B;
  text-decoration: none;
}

.behaviorListings-inner {
  margin-top: 3rem;
  max-width: calc(820px + 4rem);
}

.home-page {
  background-image: url("../../images/line3.png");
}

.content-locked {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  margin-bottom: -3em;
  margin-top: -26em;
  padding: 5em 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, black 100%);
}
.scrollbar-5 .content-locked {
  width: calc(100vw - 5px);
  margin-left: calc(-50vw + 2.5px + 50%);
  margin-right: calc(-50vw + 2.5px + 50%);
}
.scrollbar-12 .content-locked {
  width: calc(100vw - 12px);
  margin-left: calc(-50vw + 6px + 50%);
  margin-right: calc(-50vw + 6px + 50%);
}
.scrollbar-15 .content-locked {
  width: calc(100vw - 15px);
  margin-left: calc(-50vw + 7.5px + 50%);
  margin-right: calc(-50vw + 7.5px + 50%);
}
.scrollbar-17 .content-locked {
  width: calc(100vw - 17px);
  margin-left: calc(-50vw + 8.5px + 50%);
  margin-right: calc(-50vw + 8.5px + 50%);
}

body.colorScheme-light .content-locked {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, white 100%);
}

.content-locked-inner {
  width: 100%;
  max-width: 94rem;
  margin: 0 auto;
}

.content-locked-content {
  margin: 0 1em;
  padding: 3em;
  background-color: #373A3E;
  text-align: center;
  font-size: 1.5em;
}
.content-locked-content p {
  margin-bottom: 0.75rem;
  font-size: 0.9em;
}
.content-locked-content p:last-child {
  margin-bottom: 0;
}

body.colorScheme-light .content-locked-content {
  color: #fff;
}

.content-locked-heading {
  font-weight: 400;
  margin-bottom: 2rem !important;
}

@media screen and (max-width: 850px) {
  .content-locked {
    margin-top: -16em;
  }
  .content-locked-content {
    padding: 1.5em;
  }
}
/*# sourceMappingURL=sourcemaps/style-noncritical.css.map */
