.ocean-green {
  color: rgb(48, 131, 120);
}

.greeny-blue {
  color: rgb(86, 186, 165);
}

.cloudy-blue {
  color: rgb(194, 223, 213);
}

.white {
  color: #FFFFFF;
}

header {
  position: sticky;
  top: 0;
  z-index: 2;
  width: 100%;
  background-color: #000000;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
}
@media (max-width: 768px) {
  header {
    padding-top: 17px;
    padding-bottom: 17px;
  }
}
@media (max-width: 992px) {
  header .container {
    max-width: none;
  }
}
header .logo img {
  transition: opacity 0.2s ease-out;
  width: auto;
  opacity: 1;
  height: 42px;
}
@media (max-width: 992px) {
  header .logo img {
    height: 31px;
  }
}
header .logo img.hide {
  opacity: 0;
}
header nav {
  display: flex;
  align-items: center;
}
header nav ul {
  top: 4px;
  margin: 0;
  padding: 0 0 0 15px;
  display: flex;
  position: relative;
}
@media (min-width: 768px) {
  header nav ul {
    white-space: nowrap;
  }
}
@media (min-width: 992px) {
  header nav ul {
    left: 8px;
  }
}
header nav ul li {
  align-items: center;
  font-size: 1.7rem;
  line-height: 2rem;
  letter-spacing: 0.67px;
  font-weight: 900;
  margin: 0 8px;
  display: flex;
  white-space: nowrap;
}
header nav ul li.wrap {
  white-space: normal !important;
}
@media (max-width: 768px) {
  header nav ul li {
    display: block;
  }
}
header nav ul li:first-of-type {
  padding-left: 0;
}
header nav ul li:last-of-type {
  padding-right: 0;
}
header nav ul li a:not(.btn) {
  color: #FFFFFF;
  position: relative;
  width: 100%;
  padding: 8px;
}
header nav ul li a:not(.btn):before {
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background-color: #FFFFFF;
  transform-origin: right top;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
header nav ul li a:not(.btn).active {
  color: rgb(86, 186, 165);
}
header nav ul li a:not(.btn):hover {
  text-decoration: none;
  color: rgb(86, 186, 165);
}
header nav ul li a:not(.btn):hover:before {
  transform-origin: left top;
  transform: scaleX(1);
}
header .btn {
  padding: 10px 30px;
  font-size: 1.5rem;
  margin-left: auto;
}
header #marker {
  pointer-events: none;
  position: absolute;
  display: none;
  border-bottom-width: 4px;
  border-bottom-style: solid;
  border-bottom-color: #FFFFFF;
  height: 6px;
  -webkit-transition: width 0.3s, left 0.3s;
  -moz-transition: width 0.3s, left 0.3s;
  -ms-transition: width 0.3s, left 0.3s;
  -o-transition: width 0.3s, left 0.3s;
  transition: width 0.3s, left 0.3s;
}

.mobile-nav {
  height: 100%; /* 100% Full-height */
  top: 65px;
  position: sticky; /* Stay in place */
  z-index: 2; /* Stay on top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
.mobile-nav .mobile-nav-inner {
  position: absolute;
  width: 100%; /* 0 width - change this with JavaScript */
  right: -100%;
  padding: 32px 24px 40px 24px;
  background-color: #000000; /* Black*/
  box-shadow: inset 0 7px 9px -7px rgba(0, 0, 0, 0.4);
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  height: calc(100vh - 65px); /* 100% Full-height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mobile-nav .mobile-nav-inner .footer-social {
  margin-right: 12px;
}
.mobile-nav .mobile-nav-inner img {
  width: 24px;
  height: 24px;
}
.mobile-nav ul {
  list-style-type: none;
  padding: 0;
}
.mobile-nav ul li {
  margin-bottom: 32px;
}
.mobile-nav ul li.button-wpr {
  margin-top: 60px;
}
.mobile-nav ul li.button-wpr a {
  letter-spacing: 1.38pt;
  font-weight: 900;
}
.mobile-nav ul li a:not(.btn) {
  color: #FFFFFF;
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 900;
}

.hamburger {
  display: block;
  width: 33px;
  height: 23px;
  top: -7px;
  left: -5px;
  cursor: pointer;
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
.hamburger span {
  display: block;
  width: 33px;
  height: 2px;
  margin-bottom: 11px;
  position: relative;
  background: #FFFFFF;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

.hamburger span:first-child {
  transform-origin: 0% 0%;
}

.hamburger span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
.hamburger.active span {
  opacity: 1;
  transform: rotate(-45deg) translate(-4px, -5px);
}

/*
 * But let's hide the middle one.
 */
.hamburger.active span:nth-last-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
.hamburger.active span:nth-last-child(3) {
  transform: rotate(45deg) translate(0, 6px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
footer {
  background-color: #000000;
  align-items: center;
  justify-content: center;
}
footer .footer-social img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  border-radius: 50%;
}
footer p {
  color: #FFFFFF;
  font-size: 1.6rem;
  line-height: 1.6rem;
  font-weight: 300;
  margin-right: 12px;
  margin-bottom: 0;
}
footer a.footer-email {
  position: relative;
  top: 5px;
  font-weight: 700;
  color: rgb(86, 186, 165);
  font-size: 1.6rem;
  line-height: 20px;
  letter-spacing: 0.4px;
}

html {
  font-size: 10px;
}

body {
  font-family: "Lato", sans-serif;
  overflow-x: hidden;
}

main {
  overflow-x: hidden;
}

h1, .h1 {
  font-size: 4.4rem;
  font-weight: 900;
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1190px;
  }
}
.btn {
  padding: 8px 16px;
  background-color: rgb(48, 131, 120);
  color: #FFFFFF;
  font-size: 1.7rem;
  letter-spacing: 1.38pt;
  font-weight: 900;
  border-radius: 9pt;
}

a.anchor {
  display: block;
  position: relative;
  top: -65px;
  visibility: hidden;
}

#banner {
  display: none;
  background-color: #000000;
}
#banner .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 10px;
  justify-content: center;
}
#banner .container img {
  width: auto;
  height: 30px;
  margin-right: 15px;
}
@media (max-width: 576px) {
  #banner .container img {
    display: none;
  }
}
#banner .container div {
  font-size: 1.8rem;
  color: #FFFFFF;
}
#banner .container div a {
  color: #FFFFFF;
  text-decoration: underline;
}

#index-body #banner {
  display: block;
}

.download-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.download-buttons .apple img {
  margin-right: 15px;
  margin-bottom: 15px;
}
.download-buttons img {
  flex: 1 0 45%;
  height: 60px;
}

main#index .download-buttons {
  justify-content: flex-start;
}
main#index .rtc-hero {
  background: url("../images/mountain-background-full.webp");
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  align-items: stretch;
  min-height: 360px;
  position: relative;
  color: #FFFFFF;
}
main#index .rtc-hero > .container {
  display: flex;
  flex-direction: column;
  position: relative;
}
main#index .rtc-hero p {
  margin-bottom: 0;
}
main#index .rtc-hero h1 {
  font-size: 5.8rem;
  letter-spacing: 4px;
  padding-bottom: 10px;
  color: #000000;
  font-weight: 900;
  margin-bottom: 0;
  padding-top: 50px;
}
main#index .rtc-hero .solution {
  color: rgb(86, 186, 165);
  font-size: 2.8rem;
  padding-bottom: 22px;
  font-weight: 900;
}
main#index .rtc-hero .dates {
  display: flex;
}
main#index .rtc-hero .dates .dates-text {
  z-index: 1;
  bottom: 16px;
  position: relative;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 2.08px;
  padding-right: 40px;
  padding-top: 8px;
  padding-bottom: 8px;
  background-color: rgb(86, 186, 165);
  border-bottom-right-radius: 70px;
  border-top-right-radius: 70px;
}
main#index .rtc-hero .dates .dates-text:before {
  content: "";
  position: absolute;
  left: -999em;
  right: 0;
  top: 0;
  bottom: 0;
  width: 999em;
  background: rgb(86, 186, 165);
}
main#index .rtc-hero .top {
  display: flex;
  padding-bottom: 30px;
  z-index: 1;
}
main#index .rtc-hero .top .right-m {
  display: none;
}
@media (max-width: 768px) {
  main#index .rtc-hero .top {
    margin-bottom: 0 !important;
  }
  main#index .rtc-hero .top .left {
    width: 100% !important;
  }
  main#index .rtc-hero .top .right-m {
    width: 100% !important;
    display: block !important;
  }
  main#index .rtc-hero .top .right {
    display: none !important;
  }
  main#index .rtc-hero .top .canada-wpr {
    padding-bottom: 30px !important;
  }
}
main#index .rtc-hero .top .left {
  margin-right: 20px;
  width: 40%;
}
main#index .rtc-hero .top .download {
  font-size: 1.9rem;
  font-weight: 900;
  padding-bottom: 9px;
  color: #000000;
}
main#index .rtc-hero .top .conditions {
  font-size: 1rem;
  padding-bottom: 18px;
  color: #000000;
}
main#index .rtc-hero .top .download-buttons {
  padding-bottom: 18px;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
main#index .rtc-hero .top .download-buttons .apple img {
  margin-bottom: 15px;
}
main#index .rtc-hero .top .canada-wpr {
  display: flex;
}
main#index .rtc-hero .top .canada-wpr img {
  margin-right: 6px;
}
main#index .rtc-hero .top .canada-wpr .canada {
  font-weight: 900;
  font-size: 1.3rem;
  color: rgb(208, 2, 27);
}
main#index .rtc-hero .top .right {
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(-50%);
  width: 60%;
}
main#index .rtc-hero .top .right .bubble {
  position: absolute;
  top: -66px;
  right: 0;
  width: 165px;
  height: 165px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  background-color: rgb(86, 186, 165);
}
main#index .rtc-hero .top .right .bubble div:first-child {
  font-weight: 900;
  font-size: 3.4rem;
}
main#index .rtc-hero .top .right .bubble div:last-child {
  font-weight: 900;
  font-size: 1.6rem;
}
main#index .rtc-hero .top .right-m {
  position: relative;
}
main#index .rtc-hero .top .right-m .bubble {
  position: absolute;
  top: -30px;
  right: 0;
  width: 94px;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  background-color: rgb(86, 186, 165);
}
main#index .rtc-hero .top .right-m .bubble div:first-child {
  font-weight: 900;
  font-size: 1.8rem;
}
main#index .rtc-hero .top .right-m .bubble div:last-child {
  font-weight: 900;
  font-size: 1.1rem;
}
main#index .rtc-hero .win {
  font-weight: 900;
  padding-bottom: 7px;
  font-size: 1.2rem;
  letter-spacing: 2.08px;
}
main#index .rtc-hero .prize-single {
  font-weight: 600;
  font-size: 1.7rem;
  padding-bottom: 10px;
}
main#index .rtc-hero .prizes {
  padding-left: 2rem;
  margin-bottom: 0;
  padding-bottom: 10px;
}
main#index .rtc-hero .prizes li {
  font-weight: 600;
  font-size: 1.7rem;
  padding-bottom: 5px;
}
main#index .rtc-hero .otherPrizes {
  font-weight: 700;
  font-style: italic;
  font-size: 1.2rem;
  padding-bottom: 31px;
}
main#index .rtc-hero .logos {
  padding-bottom: 25px;
  display: flex;
}
@media (max-width: 768px) {
  main#index .rtc-hero .logos {
    flex-direction: column !important;
  }
  main#index .rtc-hero .logos .left, main#index .rtc-hero .logos .right {
    width: 100% !important;
  }
  main#index .rtc-hero .logos .left img, main#index .rtc-hero .logos .right img {
    margin-top: 0 !important;
  }
  main#index .rtc-hero .logos .partners-header h3 {
    font-size: 1.4rem !important;
  }
  main#index .rtc-hero .logos .right {
    padding-top: 30px;
  }
  main#index .rtc-hero .logos .right .logo-imgs {
    flex-wrap: wrap;
    justify-content: center;
  }
  main#index .rtc-hero .logos .right .logo-imgs img {
    margin-right: 27px;
    padding-bottom: 25px;
    max-height: 90px !important;
  }
}
main#index .rtc-hero .logos .left {
  margin-right: 50px;
  width: 35%;
}
main#index .rtc-hero .logos .left .partners-header {
  margin-bottom: 8px;
}
main#index .rtc-hero .logos .left img {
  max-height: 80px !important;
}
main#index .rtc-hero .logos .right {
  width: 65%;
}
main#index .rtc-hero .logos .partners-header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}
main#index .rtc-hero .logos .partners-header div:first-child, main#index .rtc-hero .logos .partners-header div:last-child {
  height: 1px;
  background-color: #ffffff;
  flex-grow: 1;
}
main#index .rtc-hero .logos .partners-header h3 {
  font-weight: 900;
  margin-left: 20px;
  margin-right: 20px;
  font-size: 0.8rem;
  letter-spacing: 1.38px;
  color: #ffffff;
  margin-bottom: 0;
}
main#index .rtc-hero .logos .logo-imgs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
main#index .rtc-hero .logos .logo-imgs img {
  max-height: 70px;
  width: auto;
}
main#index .rtc-hero .logos .logo-imgs img.kanga {
  max-height: 42px;
}
main#index .rtc-hero .thanks {
  letter-spacing: 1.73px;
}
main#index .rtc-hero .thanks.end {
  padding-bottom: 10px;
}
main#index .rtc-hero .terms.end {
  padding-bottom: 38px;
}
main#index .rtc-hero .thanks, main#index .rtc-hero .terms {
  font-size: 1rem;
  line-height: 1.3rem;
}
main#index .rtc-hero .credit {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #FFFFFF;
  font-size: 0.85rem;
}
main#index .rtc-hero .credit a {
  color: #FFFFFF;
}
@media (max-width: 768px) {
  main#index .rtc-hero .thanks, main#index .rtc-hero .terms {
    font-size: 1.5rem;
    line-height: 2.2rem;
    padding-bottom: 18px;
  }
  main#index .rtc-hero .thanks {
    letter-spacing: 2.6px;
  }
}
main#index .rtc-hero .background-white, main#index .rtc-hero .background-black {
  position: relative;
  background: rgba(255, 255, 255, 0.75);
}
main#index .rtc-hero .background-white:before, main#index .rtc-hero .background-black:before {
  left: -999em;
  background: rgba(255, 255, 255, 0.75);
  content: "";
  display: block;
  position: absolute;
  width: 999em;
  top: 0;
  bottom: 0;
}
main#index .rtc-hero .background-white:after, main#index .rtc-hero .background-black:after {
  right: -999em;
  background: rgba(255, 255, 255, 0.75);
  content: "";
  display: block;
  position: absolute;
  width: 999em;
  top: 0;
  bottom: 0;
}
main#index .rtc-hero .background-black {
  background: rgba(0, 0, 0, 0.75) !important;
}
main#index .rtc-hero .background-black:before {
  background: rgba(0, 0, 0, 0.75) !important;
}
main#index .rtc-hero .background-black:after {
  background: rgba(0, 0, 0, 0.75) !important;
}
main#index .sub-hero.sub-hero-main {
  background: url("../images/image-header-main.webp");
  background-size: cover;
  background-position: 50% 100%;
}
main#index .sub-hero.sub-hero-main:before {
  display: none;
}
main#index .sub-hero h1 {
  font-size: 5.8rem;
  line-height: 5.3rem;
  letter-spacing: 4px;
  padding-bottom: 6px;
  font-weight: 900;
  margin-bottom: 24px;
}
main#index .sub-hero .h1 {
  padding-bottom: 28px;
  font-size: 4.8rem;
  color: rgb(86, 186, 165);
  font-weight: 900;
  margin-bottom: 0 !important;
}
main#index .sub-hero p {
  color: #FFFFFF;
  font-size: 2.4rem;
  line-height: 3.7rem;
  margin-bottom: 40px;
}
main#index .sub-hero .now-available {
  margin-top: 40px;
}
main#index .sub-hero .now-available p {
  margin-bottom: 7px;
  font-size: 1.5rem;
  line-height: 1.5rem;
  color: #FFFFFF;
}
main#index .sub-hero .now-available .now-available-row {
  display: flex;
}
main#index .sub-hero .now-available .now-available-row .now-available-item {
  display: flex;
  align-items: center;
  border-radius: 12.5px;
  padding: 1px 10px 1px 13px;
  margin-right: 8px;
  background-color: #000000;
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
}
main#index .sub-hero .now-available .now-available-row .now-available-item span {
  color: #FFFFFF;
  font-size: 1.5rem;
  margin-right: 5px;
}
main#index .sub-hero .article-text {
  font-size: 1.9rem;
  line-height: 2.9rem;
  letter-spacing: -0.17;
  font-weight: bold;
  margin-bottom: 43px !important;
  max-width: 818px !important;
  margin-top: 0;
}
main#index h2, main#index .h2 {
  font-size: 3.8rem;
  font-weight: 900;
  text-align: center;
}
main#index .h3 {
  font-size: 3.4rem;
  font-weight: 600;
}
main#index section.climbers, main#index section.connected, main#index section.memberships {
  font-size: 2.3rem;
}
@media (min-width: 992px) {
  main#index section.memberships {
    height: 500px;
  }
  main#index section.memberships .container {
    height: 500px;
  }
  main#index section.memberships .container .full-height-row {
    height: 100%;
  }
}
@media (min-width: 992px) {
  main#index section.memberships {
    height: 800px;
  }
  main#index section.memberships .container {
    height: 800px;
  }
}

@media (max-width: 768px) {
  main#survey .container {
    padding: 80px 45px;
  }
}

section.sub-hero {
  background: url("../images/image-header-main.webp");
  background-size: cover;
  background-position: 50% 100%;
  display: flex;
  align-items: stretch;
  min-height: 210px;
  position: relative;
}
@media (max-width: 768px) {
  section.sub-hero {
    min-height: 127px;
  }
}
section.sub-hero h1 {
  letter-spacing: 1.5px;
  color: #FFFFFF;
  margin-bottom: 0;
}
@media (min-width: 768px) and (max-width: 992px) {
  section.sub-hero h1 {
    font-size: 4rem !important;
  }
}
section.sub-hero .container {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
}
@media (max-width: 768px) {
  section.sub-hero .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
section.sub-hero .credit {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #FFFFFF;
  font-size: 0.8rem;
}
section.sub-hero .credit a {
  color: #FFFFFF;
}
section.sub-hero .article-text {
  color: #FFFFFF;
  font-size: 1.8rem;
  margin-top: 15px;
  max-width: 672px;
  text-align: justify;
}
section.sub-hero .article-button {
  margin-top: 15px;
  align-self: flex-start;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  font-size: 2rem;
  padding: 7px 30px;
}
section.sub-hero #carouselImages .carousel-inner .wrapper {
  display: flex;
  align-items: center;
}
section.sub-hero #carouselImages .carousel-inner img.first {
  max-height: 590px;
  z-index: 1;
}
section.sub-hero #carouselImages .carousel-inner img.second {
  max-height: 500px;
  position: relative;
  right: 80px;
}
@media (min-width: 992px) and (max-width: 1200px) {
  section.sub-hero #carouselImages .carousel-inner img.first {
    max-height: 480px;
  }
  section.sub-hero #carouselImages .carousel-inner img.second {
    max-height: 390px;
    right: 60px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  section.sub-hero #carouselImages .carousel-inner img.first {
    max-height: 390px;
  }
  section.sub-hero #carouselImages .carousel-inner img.second {
    max-height: 300px;
    right: 60px;
  }
}
section.sub-hero .carousel-labels-wpr {
  width: 100%;
}
section.sub-hero .carousel-labels-wpr .carousel-label {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-left: 1px solid white;
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.16);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-bottom: 8px;
}
section.sub-hero .carousel-labels-wpr .carousel-label .wrapper {
  display: none;
  align-self: center;
  align-items: center;
}
section.sub-hero .carousel-labels-wpr .carousel-label .wrapper img.first {
  max-height: 357px;
}
section.sub-hero .carousel-labels-wpr .carousel-label .wrapper img.second {
  max-height: 304px;
  position: relative;
  right: 40px;
}
section.sub-hero .carousel-labels-wpr .carousel-label .title {
  color: #FFFFFF;
  font-size: 1.8rem;
  letter-spacing: -0.18pt;
}
section.sub-hero .carousel-labels-wpr .carousel-label .subtitle {
  display: none;
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1.9rem;
}
section.sub-hero .carousel-labels-wpr .carousel-label.active {
  border-left: 4px solid white;
}
section.sub-hero .carousel-labels-wpr .carousel-label.active .title {
  font-weight: 900;
  font-size: 2rem;
}
section.sub-hero .carousel-labels-wpr .carousel-label.active .subtitle {
  display: block;
}
section.sub-hero .carousel-labels-wpr .carousel-label.active .wrapper {
  display: flex;
}
section.sub-hero .carousel-labels-wpr .carousel-controls {
  margin-top: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.sub-hero .carousel-labels-wpr .carousel-controls ol {
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
}
section.sub-hero .carousel-labels-wpr .carousel-controls ol li {
  cursor: pointer;
  height: 8px;
  width: 8px;
  margin-right: 8px;
  background-color: transparent;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
section.sub-hero .carousel-labels-wpr .carousel-controls ol li.active {
  background-color: rgba(255, 255, 255, 0.8);
}
section.sub-hero .carousel-labels-wpr .carousel-controls .carousel-pause {
  cursor: pointer;
  width: 16px;
  height: 16px;
  background-color: transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: #FFFFFF;
}

section.links {
  padding-top: 80px;
  padding-bottom: 80px;
}
section.links .link-wrapper {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
section.links h2 {
  font-weight: 700;
  font-size: 3rem;
  line-height: 3.6rem;
  margin-bottom: 24px;
}
section.links p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: rgb(74, 74, 74);
  margin-bottom: 40px;
}
section.links .btn {
  margin-bottom: 32px;
}
section.links a:not(.btn) {
  color: rgb(48, 131, 120);
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}
section.review {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #000000;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
section.review img {
  margin-bottom: 24px;
  height: 18px;
}
section.review p.review {
  margin-bottom: 24px;
  font-size: 2.4rem;
  line-height: 3.6rem;
  text-align: center;
  color: #FFFFFF;
}
section.review p.name {
  font-weight: 300;
  font-size: 1.6rem;
  margin-bottom: 0;
  color: #FFFFFF;
}

section.news-main {
  background-color: rgb(231, 230, 230);
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 80px;
}
section.news-main .news-items {
  display: flex;
  margin-bottom: 40px;
  overflow: scroll;
}
section.news-main .news-items .news-item-small {
  display: flex;
  flex-direction: column;
  min-width: 300px;
  padding: 0;
  background-color: #FFFFFF;
  min-height: 302px;
  border-radius: 16px;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.16);
}
section.news-main .news-items .news-item-small:not(:last-of-type) {
  margin-right: 16px;
}
section.news-main .news-items .news-item-small .top {
  width: 100% !important;
}
section.news-main .news-items .news-item-small .top img {
  height: 205px !important;
  border-radius: 16px 16px 0 0 !important;
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}
section.news-main .news-items .news-item-small .top .news-image:hover {
  text-decoration: none;
}
section.news-main .news-items .news-item-small .top .news-item-upper {
  background-color: #000000;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 24px;
  border-radius: 16px 0 0 16px;
}
section.news-main .news-items .news-item-small .top .news-item-upper {
  height: 205px !important;
  border-radius: 16px 16px 0 0 !important;
}
section.news-main .news-items .news-item-small .bottom {
  padding: 24px 24px 36px 24px;
}
section.news-main .news-items .news-item-small .bottom .title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 3.6rem;
  margin-bottom: 24px;
}
section.news-main .news-items .news-item-small .bottom .link {
  font-weight: 900;
  font-size: 1.6rem;
  line-height: 2.4rem;
  color: rgb(48, 131, 120);
}
section.news-main .news-items .news-item-small .bottom .link:after {
  content: url("../images/icon-external-link.svg");
  margin-left: 8px;
  width: 16px;
  height: 16px;
  display: inline-block;
}

section.partners {
  padding-top: 80px;
  padding-bottom: 80px;
}
section.partners h2 {
  font-size: 3.7rem;
  line-height: 4.6rem;
  margin-bottom: 40px;
  font-weight: 900;
}
section.partners h3 {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 600;
  margin-bottom: 24px;
}
section.partners h3.community-support {
  margin-top: 22px;
}
section.partners a {
  margin-right: 16px;
}
section.partners img {
  margin-bottom: 18px;
  width: 82px;
  height: 72px;
}
section.partners .partner-images {
  display: grid; /* 1 */
  grid-template-columns: repeat(auto-fill, 82px); /* 2 */
  grid-gap: 16px; /* 3 */
  justify-content: space-between; /* 4 */
  width: 100%;
}

section.download {
  background-image: url("../images/mountain-background-full-2.webp");
  background-size: cover;
  background-position: 50% 50%;
  padding-bottom: 24px;
  padding-top: 68px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
  align-items: center;
  position: relative;
  flex-direction: column;
}
@media (max-width: 768px) {
  section.download {
    padding-top: 60px;
    padding-bottom: 20px;
  }
  section.download .message {
    margin-bottom: 32px !important;
  }
  section.download .download-buttons {
    margin-bottom: 32px !important;
  }
}
section.download .container {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  justify-content: center;
}
section.download h2 {
  font-size: 3.7rem;
  line-height: 4.6rem;
  margin-bottom: 44px;
  color: #FFFFFF;
  text-align: center;
  font-weight: 900;
}
section.download .download-buttons {
  margin-bottom: 64px;
}
section.download .subtext {
  text-align: center;
  color: #FFFFFF;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 2.1rem;
  margin-bottom: 10px;
}
section.download .message {
  color: rgb(86, 186, 165);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 2.1rem;
  margin-bottom: 57px;
}
section.download .credit {
  position: absolute;
  bottom: 16px;
  right: 16px;
  color: #FFFFFF;
  font-size: 0.8rem;
}
section.download .credit a {
  color: #FFFFFF;
}

section.team-members .container-fluid {
  max-width: 1140px;
}
section.team-members .blurb {
  font-size: 2.4rem;
  line-height: 40px;
  letter-spacing: 0.75px;
  font-weight: 800;
  margin-bottom: 64px;
  margin-top: 42px;
}
section.team-members .team-member {
  display: flex;
  flex-direction: row;
  margin-bottom: 48px;
}
section.team-members .team-member .team-image {
  margin-right: 32px;
}
section.team-members .team-member .team-image img {
  width: 136px;
  height: 136px;
  border-radius: 50%;
}
@media (max-width: 576px) {
  section.team-members .team-member .team-image img {
    width: 80px;
    height: 80px;
  }
}
section.team-members .team-member .team-desc .team-name {
  font-weight: 900;
  font-size: 2.8rem;
  line-height: 32px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
section.team-members .team-member .team-desc .team-title {
  font-size: 2.2rem;
  line-height: 32px;
  text-transform: uppercase;
}
section.team-members .team-member .team-desc .team-text {
  margin-top: 16px;
  font-size: 1.6rem;
  line-height: 28px;
}

section.special-thanks {
  background-color: rgb(231, 230, 230);
  padding-top: 64px;
  padding-bottom: 80px;
}
section.special-thanks .possible {
  font-size: 3.5rem;
  line-height: 4rem;
  letter-spacing: -0.26px;
  margin-bottom: 48px;
  font-weight: 900;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 768px) {
  section.special-thanks .possible {
    font-size: 3rem;
  }
}
section.special-thanks .thanks-names {
  display: flex;
  flex-direction: row;
  margin: 0;
}
section.special-thanks .thanks-names .thanks-name {
  font-size: 2.4rem;
  line-height: 3.2rem;
  display: flex;
  font-weight: bold;
  letter-spacing: -0.22px;
}
section.special-thanks .thanks-names .thanks-name img {
  align-self: center;
  margin-left: 10px;
  width: 24px;
  height: 24px;
}
section.special-thanks .thanks-names .thanks-title {
  margin-bottom: 48px;
  font-size: 1.7rem;
  line-height: 3.2rem;
  font-style: italic;
}
@media (max-width: 768px) {
  section.special-thanks .thanks-names .thanks-title {
    flex-basis: 100%;
  }
}

section.core {
  background-color: rgb(231, 230, 230);
}
@media (max-width: 768px) {
  section.core .container {
    max-width: none;
  }
  section.core .container .core-left {
    padding-left: 64px;
  }
}
@media (max-width: 768px) and (max-width: 576px) {
  section.core .container .core-left {
    padding-left: 20px;
  }
}
@media (max-width: 768px) {
  section.core .container .core-right {
    padding: 0;
  }
  section.core .container .core-right .core-right-top {
    padding-bottom: 80px;
  }
  section.core .container .core-right .core-right-bottom {
    padding-top: 80px;
  }
}
section.core .title {
  font-size: 3.7rem;
  font-weight: 900;
  margin-bottom: 24px;
}
section.core .subtitle {
  font-weight: 900;
  font-size: 3rem;
}
section.core .subtitle-thin {
  font-size: 2.4rem;
}
section.core .text {
  font-size: 1.6rem;
  line-height: 26px;
  margin-top: 8px;
}
section.core .core-left {
  padding-top: 80px;
  padding-bottom: 80px;
}
section.core .core-right {
  z-index: 1;
}
section.core .core-right .core-right-top {
  padding-top: 80px;
  background-color: rgb(11, 77, 73);
  color: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 50%;
  padding-left: 64px;
}
@media (max-width: 576px) {
  section.core .core-right .core-right-top {
    padding-left: 20px;
  }
}
section.core .core-right .core-right-top:after {
  background-color: rgb(11, 77, 73);
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: calc(66.6666666667vw - 15px);
  z-index: -1;
}
section.core .core-right .core-right-bottom {
  background-color: #000000;
  color: #FFFFFF;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 80px;
  height: 50%;
  padding-left: 64px;
}
@media (max-width: 576px) {
  section.core .core-right .core-right-bottom {
    padding-left: 20px;
  }
}
section.core .core-right .core-right-bottom:after {
  background-color: #000000;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: calc(66.6666666667vw - 15px);
  z-index: -1;
}

section.careers {
  padding-top: 40px;
  padding-bottom: 100px;
}
section.careers h2 {
  font-weight: 900;
  font-size: 3.7rem;
  line-height: 4.6rem;
  letter-spacing: 1px;
  margin-bottom: 24px;
}
section.careers .subtitle {
  font-size: 2.4rem;
  line-height: 3.6rem;
  font-weight: 700;
  margin-bottom: 40px;
}
section.careers .subtitle a {
  color: rgb(36, 162, 154);
}
section.careers .blurb {
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: rgb(74, 74, 74);
}
section.careers h3 {
  font-weight: 900;
  font-size: 2.4rem;
  color: rgb(48, 131, 120);
  margin-bottom: 24px;
}
section.careers .job {
  font-weight: 900;
  font-size: 2rem;
  margin-bottom: 24px;
}
section.careers .ready {
  margin-top: 32px;
  font-size: 2rem;
  line-height: 3.2rem;
}
section.careers .email {
  color: rgb(48, 131, 120);
  font-weight: 900;
}
section.careers .callout {
  background-color: rgb(231, 230, 230);
  padding: 36px 24px 36px 32px;
  border-radius: 16px;
}
section.careers .callout h3 {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 3.6rem;
  margin-bottom: 16px;
  color: #000000;
}
section.careers .callout div {
  font-style: italic;
  font-size: 1.6rem;
  line-height: 2.5rem;
  color: rgb(74, 74, 74);
}

section.contact {
  padding-top: 40px;
  padding-bottom: 144px;
}
section.contact .messages {
  font-size: 1.8rem;
  margin-bottom: 32px;
}
section.contact #contact-form {
  display: flex;
  flex-direction: column;
}
section.contact h2 {
  font-size: 2.4rem;
  line-height: 4.8rem;
  font-weight: 800;
  margin-bottom: 40px;
}
section.contact .unbold {
  font-weight: 500;
}
section.contact input[type=text], section.contact input[type=email], section.contact textarea {
  font-size: 1.6rem;
  background-color: rgb(245, 245, 245);
  padding: 15px 9px;
  border: none;
  border-bottom: 1px solid rgb(14, 20, 21);
  margin-bottom: 40px;
}
section.contact input[type=text]::placeholder, section.contact input[type=email]::placeholder, section.contact textarea::placeholder {
  color: rgb(56, 112, 104);
  opacity: 1;
}
section.contact input[type=text], section.contact input[type=email] {
  width: 100%;
}
section.contact .btn-container .btn-lg {
  padding: 1rem 1rem;
  font-size: 2.5rem;
  line-height: 1.6;
  border-radius: 0.6rem;
}
section.contact .textarea-container {
  position: relative;
}
section.contact .textarea-container textarea {
  width: 100%;
}
section.contact .textarea-container .chars-remaining {
  color: rgb(144, 144, 144);
  font-size: 1.6rem;
  position: absolute;
  right: 16px;
  bottom: 56px;
}

section.survey .container-fluid {
  padding: 60px 30px;
  max-width: 1440px;
  display: flex;
  font-size: 1.6rem;
}
@media (max-width: 1140px) {
  section.survey .container-fluid {
    flex-wrap: wrap;
  }
  section.survey .container-fluid .survey-left {
    flex-basis: 100% !important;
  }
  section.survey .container-fluid .above {
    display: block;
  }
  section.survey .container-fluid .left {
    display: none;
  }
}
@media (min-width: 1140px) {
  section.survey .container-fluid {
    padding-right: 5px;
  }
  section.survey .container-fluid .above {
    display: none;
  }
  section.survey .container-fluid .left {
    display: block;
  }
}
section.survey .container-fluid .survey-left {
  flex: 0 0 30%;
  width: 100%;
  text-align: left;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-bottom: none;
  border-radius: 10px;
  overflow-y: auto;
  height: 450px;
}
section.survey .container-fluid .survey-left .btn {
  padding: 0 32px;
  margin: 0;
  font-size: 1.6rem;
  color: #000000;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  background-color: rgba(0, 0, 0, 0.03);
  height: 49.8888888889px;
  display: flex;
  align-items: center;
}
section.survey .container-fluid .survey-left .btn.ui-accordion-header-active {
  font-weight: 700;
  color: rgb(86, 186, 165);
}
section.survey .container-fluid .survey-left .btn:hover {
  color: rgb(86, 186, 165);
}
section.survey .container-fluid .survey-left .card-body {
  display: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}
section.survey .container-fluid .survey-left .card-body li {
  margin-bottom: 5px;
}
section.survey .container-fluid .survey-left .card-body li .apply-dataset {
  color: #000000;
}
section.survey .container-fluid .survey-left .card-body li .apply-dataset:hover {
  color: rgb(86, 186, 165);
}
section.survey .container-fluid .survey-left .card-body li .apply-dataset.active {
  font-weight: 700;
}
section.survey .container-fluid .survey-right {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  max-width: 100%;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1140px) {
  section.survey .container-fluid .survey-right {
    padding-top: 50px;
  }
  section.survey .container-fluid .survey-right .chart-and-legend {
    flex-direction: column;
  }
  section.survey .container-fluid .survey-right .chart-and-legend #legend {
    order: -1;
  }
  section.survey .container-fluid .survey-right .chart-and-legend #legend ul {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (min-width: 1140px) {
  section.survey .container-fluid .survey-right .chart-container {
    padding-left: 30px;
  }
}
section.survey .container-fluid .survey-right .title-container {
  align-items: center;
  text-align: center;
  margin-bottom: auto;
}
@media (min-width: 1140px) {
  section.survey .container-fluid .survey-right .title-container.no-chart {
    padding-top: 57px;
  }
}
section.survey .container-fluid .survey-right .title-container h2 {
  font-size: 2.6rem;
  margin-bottom: 32px;
}
section.survey .container-fluid .survey-right .title-container p {
  margin-top: 30px;
  font-size: 2.2rem;
}
section.survey .container-fluid .survey-right .chart-and-legend {
  display: flex;
  align-items: center;
}
section.survey .container-fluid .survey-right .chart-and-legend #legend {
  flex-basis: 25%;
}
section.survey .container-fluid .survey-right .chart-and-legend #legend ul {
  padding-left: 0;
  list-style: none;
}
section.survey .container-fluid .survey-right .chart-and-legend #legend ul li {
  cursor: pointer;
  margin-right: 10px;
  margin-bottom: 2.5px;
  display: flex;
  align-items: center;
}
section.survey .container-fluid .survey-right .chart-and-legend #legend ul li span.legend-bar {
  width: 36px;
  height: 14px;
  flex-shrink: 0;
  flex-basis: 36px;
}
section.survey .container-fluid .survey-right .chart-and-legend #legend ul li span:not(.legend-bar) {
  padding-left: 8px;
}
section.survey .container-fluid .survey-right .chart-container {
  position: relative;
  display: flex;
  flex-grow: 1;
  width: 100%;
  align-items: center;
  justify-content: center;
}

section.news {
  margin-top: 80px;
  margin-bottom: 90px;
}
@media (max-width: 768px) {
  section.news div.news-item {
    min-height: auto !important;
    flex-direction: column;
  }
  section.news div.news-item .news-image {
    width: 100% !important;
  }
  section.news div.news-item .news-image img {
    height: 205px !important;
    border-radius: 16px 16px 0 0 !important;
  }
  section.news div.news-item .news-image .news-item-upper {
    height: 205px !important;
    border-radius: 16px 16px 0 0 !important;
  }
  section.news div.news-item .news-body {
    padding-right: 30px;
    padding-left: 30px;
  }
  section.news div.news-item .news-body h3 {
    font-size: 2.2rem;
    line-height: 2.7rem;
    letter-spacing: -0.2px;
  }
  section.news div.news-item.featured .news-body h3 {
    font-size: 3.2rem;
    line-height: 3.9rem;
    letter-spacing: -0.29;
  }
  section.news div.news-item.featured .news-body p {
    margin-bottom: 26px;
  }
}
section.news h2 {
  font-size: 1.9rem;
  font-weight: 900;
  font-style: normal;
  letter-spacing: 2.07px;
  margin-bottom: 35px;
  color: rgb(144, 144, 144);
}
section.news .news-item {
  display: flex;
  min-height: 302px;
  border-radius: 16px;
  -webkit-box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.16);
  margin-bottom: 40px;
}
section.news .news-item.featured {
  min-height: 400px;
  margin-bottom: 80px;
}
section.news .news-item.featured .news-image {
  width: 45%;
}
section.news .news-item.featured .news-body {
  padding-right: 65px;
}
section.news .news-item.featured .news-body h3 {
  margin-bottom: 30px;
  font-size: 4rem;
  line-height: 4.8rem;
  letter-spacing: -0.36px;
}
section.news .news-item.featured .news-body h3 a {
  color: #212529;
}
section.news .news-item.featured .news-body p {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 500;
  color: #4a4a4a;
  margin-bottom: 30px;
}
section.news .news-item .news-image {
  width: 40%;
  flex-shrink: 0;
}
section.news .news-item .news-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 16px 0 0 16px;
}
section.news .news-item .news-image .news-item-upper {
  background-color: #000000;
  display: flex;
  align-items: center;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  padding: 24px;
  border-radius: 16px 0 0 16px;
}
section.news .news-item .news-body {
  padding-left: 50px;
  padding-right: 46px;
  padding-top: 35px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.news .news-item .news-body h3 {
  font-size: 2.6rem;
  line-height: 3.2rem;
  font-weight: bold;
  letter-spacing: -0.23;
  margin-bottom: 24px;
}
section.news .news-item .news-body h3 a {
  color: #000000;
}
section.news .news-item .news-body p {
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 500;
  color: #4a4a4a;
  margin-bottom: 29px;
}
section.news .news-item .news-body > a {
  letter-spacing: 0.64px;
  font-size: 1.6rem;
  font-weight: 900;
  color: rgb(48, 131, 120);
}
section.news .news-item .news-body > a.external:before {
  content: url("../images/icon-external-link.svg");
  margin-right: 7px;
  width: 18px;
  height: 18px;
  display: inline-block;
}
section.news #load-more {
  margin-top: 14px;
  font-size: 1.6rem;
  letter-spacing: 1.84px;
  color: rgb(48, 131, 120);
  font-weight: 900;
}

section.community {
  margin-top: 80px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  section.community {
    margin-top: 60px;
    margin-bottom: 70px;
  }
}
section.community h2 {
  font-weight: 900;
  letter-spacing: -0.36pt;
  font-size: 4rem;
  margin-bottom: 20px;
}
section.community .subtext {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin-bottom: 48px;
  font-weight: 500;
  color: rgb(74, 74, 74);
}
section.community .amb-container {
  overflow: hidden;
  position: relative;
  transition: height 0.5s ease;
}
@media (min-width: 576px) and (max-width: 768px) {
  section.community .amb-container {
    max-width: 550px;
  }
}
section.community .amb-selector, section.community .amb-bio {
  transition: transform 0.5s ease;
}
section.community .amb-selector {
  transform: translateX(0);
}
section.community .amb-selector.slide-out {
  transform: translateX(-105%);
}
section.community .amb-tile-container {
  margin-left: -8px;
  margin-right: -8px;
}
section.community .amb-tile-container .col-lg-4 {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 20px;
}
section.community .amb-tile-container .amb-tile {
  display: block;
  border-radius: 16px;
  box-shadow: 0 0 24px 1px rgba(0, 0, 0, 0.1607843137);
}
section.community .amb-tile-container .amb-tile:hover {
  text-decoration-color: #000000;
}
section.community .amb-tile-container .amb-tile.disabled {
  box-shadow: none;
  background-color: #e5e5e5;
}
section.community .amb-tile-container .amb-tile > img {
  width: 100%;
  height: auto;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  object-fit: cover;
  max-height: 303px;
}
@media (max-width: 768px) {
  section.community .amb-tile-container .amb-tile > img {
    max-height: 257px;
    object-position: 88% 5%;
  }
}
section.community .amb-tile-container .amb-tile .amb-name {
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000000;
}
section.community .amb-tile-container .amb-tile .amb-name span, section.community .amb-tile-container .amb-tile .amb-name .name {
  font-weight: bold;
  font-size: 2.6rem;
  letter-spacing: -0.23pt;
}
@media (max-width: 768px) {
  section.community .amb-tile-container .amb-tile .amb-name span, section.community .amb-tile-container .amb-tile .amb-name .name {
    font-size: 2.4rem;
  }
}
section.community .amb-tile-container .amb-tile .amb-name .title {
  font-style: italic;
  font-size: 1.9rem;
}
@media (max-width: 768px) {
  section.community .amb-tile-container .amb-tile .amb-name .title {
    font-size: 1.7rem;
  }
}
section.community .amb-bio {
  transform: translateX(105%);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
section.community .amb-bio.slide-in {
  transform: translateX(0);
}
section.community .amb-bio .amb-bio-inner {
  padding: 15px;
}
section.community .amb-bio .amb-back {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  font-size: 1.6rem;
  letter-spacing: 2.4pt;
  color: rgb(48, 131, 120);
  font-weight: 900;
}
section.community .amb-bio .amb-back img {
  margin-right: 15px;
  width: 9px;
  height: 15px;
  transform: rotate(180deg);
}
section.community .amb-bio .amb-bio-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  margin-bottom: 16px;
}
section.community .amb-bio .amb-bio-caption {
  font-style: italic;
  font-size: 1.6rem;
  line-height: 2.6rem;
  color: rgb(74, 74, 74);
}
section.community .amb-bio .amb-bio-name {
  font-weight: 900;
  font-size: 4.9rem;
  margin-bottom: 28px;
}
@media (max-width: 768px) {
  section.community .amb-bio .amb-bio-name {
    font-size: 4rem;
  }
}
section.community .amb-bio .amb-bio-title {
  font-style: italic;
  font-size: 2.4rem;
  line-height: 3.2rem;
  letter-spacing: -0.22pt;
  margin-bottom: 56px;
}
@media (max-width: 768px) {
  section.community .amb-bio .amb-bio-title {
    font-size: 2rem;
  }
}
section.community .amb-bio .amb-bio-social {
  display: flex;
  margin-bottom: 40px;
}
section.community .amb-bio .amb-bio-social img {
  margin-right: 14px;
  width: 34px;
  height: 34px;
}
section.community .amb-bio .amb-bio-content {
  color: rgb(74, 74, 74);
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 500;
  margin-bottom: 48px;
}
section.community .amb-bio .amb-bio-subheader {
  color: rgb(74, 74, 74);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 2.4rem;
  margin-bottom: 16px;
}
section.community .amb-bio .amb-bio-subtext {
  color: rgb(74, 74, 74);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
  margin-bottom: 16px;
}
section.community .contact {
  border-radius: 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 50px;
  padding-left: 12px;
  padding-right: 12px;
}
section.community .contact .top {
  font-weight: 900;
  font-size: 3.7rem;
  line-height: 4.6rem;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  section.community .contact .top {
    font-size: 2.8rem;
    line-height: 3.4rem;
  }
}
section.community .contact .bottom {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 3.6rem;
}
@media (max-width: 768px) {
  section.community .contact .bottom {
    font-size: 2rem;
    line-height: 3.2rem;
  }
}
section.community .contact .bottom a {
  color: rgb(36, 162, 154);
}

.lato-black {
  font-weight: 900;
}

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