@charset "UTF-8";
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

#app-download-modal-personal, #app-download-modal-business {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1001;
}
#app-download-modal-personal:not(.shown), #app-download-modal-business:not(.shown) {
  display: none;
}
#app-download-modal-personal.shown, #app-download-modal-business.shown {
  display: block;
}
#app-download-modal-personal > .modal-content, #app-download-modal-business > .modal-content {
  margin: 0;
  padding: 1em;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 950px;
  background-color: var(--white);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4196078431);
  border-radius: 48px;
  z-index: 3;
  opacity: 0;
  overflow-y: auto;
}
@media screen and (max-width: 980px) {
  #app-download-modal-personal > .modal-content, #app-download-modal-business > .modal-content {
    width: 95%;
    height: 95%;
  }
}
@media screen and (min-width: 980px) {
  #app-download-modal-personal > .modal-content, #app-download-modal-business > .modal-content {
    width: 90%;
    height: auto;
  }
}
#app-download-modal-personal > .modal-content.active, #app-download-modal-business > .modal-content.active {
  animation-duration: 0.2s;
  animation-delay: 0.2s;
  background: var(--white);
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-name: digital-banking-video-modal-fade-in;
}
#app-download-modal-personal > .modal-content .modal-header, #app-download-modal-business > .modal-content .modal-header {
  margin: 0 0 2em;
  text-align: right;
}
#app-download-modal-personal > .modal-content .modal-header button, #app-download-modal-business > .modal-content .modal-header button {
  margin: 0;
  padding: 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  position: relative;
  overflow: hidden;
}
#app-download-modal-personal > .modal-content .modal-header button .button-symbol, #app-download-modal-business > .modal-content .modal-header button .button-symbol {
  display: inline-block;
  height: 100%;
  width: 100%;
  transform: rotate(0deg) scale(1);
  transition: transform 0.35s ease-in-out;
  line-height: 1;
  font-weight: 700;
  font-size: 5rem;
  transform-origin: center;
}
#app-download-modal-personal > .modal-content .modal-header button:focus .button-symbol, #app-download-modal-personal > .modal-content .modal-header button:hover .button-symbol, #app-download-modal-business > .modal-content .modal-header button:focus .button-symbol, #app-download-modal-business > .modal-content .modal-header button:hover .button-symbol {
  transform: rotate(0deg) scale(1.5);
  transition: transform 0.35s ease-in-out;
}
#app-download-modal-personal > .modal-content .items, #app-download-modal-business > .modal-content .items {
  margin: 0;
  list-style: none;
}
@media screen and (min-width: 1px) and (max-width: 549px) {
  #app-download-modal-personal > .modal-content .items, #app-download-modal-business > .modal-content .items {
    padding: 0 clamp(1.5em, 6vw, 3em) clamp(1.5em, 6vw, 3em);
    display: grid;
    align-items: flex-start;
    justify-items: center;
    gap: 3em;
  }
}
@media screen and (min-width: 550px) and (max-width: 899px) {
  #app-download-modal-personal > .modal-content .items, #app-download-modal-business > .modal-content .items {
    padding: 0 clamp(1.5em, 6vw, 3em) clamp(1.5em, 6vw, 3em);
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: center;
    gap: 3em;
  }
}
@media screen and (min-width: 980px) {
  #app-download-modal-personal > .modal-content .items, #app-download-modal-business > .modal-content .items {
    padding: 0 clamp(3em, 7vw, 5em) clamp(3em, 7vw, 5em);
    display: flex;
    align-content: flex-start;
    gap: clamp(1.5em, 5vw, 3em);
  }
}
#app-download-modal-personal > .modal-content .icon, #app-download-modal-business > .modal-content .icon {
  min-width: 50px;
  max-width: 50px;
}
#app-download-modal-personal > .modal-content .text, #app-download-modal-business > .modal-content .text {
  font-family: var(--poppins);
  font-weight: var(--medium);
  font-size: 1.8rem;
}
#app-download-modal-personal > .modal-content .text > *:last-child, #app-download-modal-business > .modal-content .text > *:last-child {
  margin: 0;
}
@media screen and (min-width: 550px) and (max-width: 899px) {
  #app-download-modal-personal > .modal-content .text, #app-download-modal-business > .modal-content .text {
    flex-basis: calc(100% - 50px - 3em);
  }
}
#app-download-modal-personal > .modal-content .qr, #app-download-modal-business > .modal-content .qr {
  text-align: center;
  min-width: 135px;
  max-width: 135px;
}
@media screen and (min-width: 550px) and (max-width: 899px) {
  #app-download-modal-personal > .modal-content .qr, #app-download-modal-business > .modal-content .qr {
    flex-basis: 135px;
  }
}
#app-download-modal-personal > .modal-content .qr img, #app-download-modal-business > .modal-content .qr img {
  width: 100%;
  height: auto;
}
#app-download-modal-personal > .modal-content .qr a, #app-download-modal-business > .modal-content .qr a {
  font-family: var(--acumin-pro);
  font-weight: var(--bold);
  font-size: 1.6rem;
  color: var(--berry-red);
  text-decoration: underline;
  display: inline-block;
}
#app-download-modal-personal > .modal-shroud, #app-download-modal-business > .modal-shroud {
  margin: 0;
  padding: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5607843137);
  position: absolute;
  z-index: 2;
  opacity: 0;
}
#app-download-modal-personal > .modal-shroud.active, #app-download-modal-business > .modal-shroud.active {
  animation-duration: 0.2s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-name: digital-banking-video-modal-fade-in;
}
@keyframes digital-banking-video-modal-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .compare-chart .container .chart-container .column > li:last-child:has(a) a:nth-of-type(1), form .fsSubmitButton, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .compare-chart .container .chart-container .column > li:last-child:has(a) a:hover:nth-of-type(1), form .fsSubmitButton:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .compare-chart .container .chart-container .column > li:last-child:has(a) a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .compare-chart .container .chart-container .column > li:last-child:has(a) a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .compare-chart .container .chart-container .column > li:last-child:has(a) a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.alerts-holder {
  position: relative;
  z-index: 10000;
  display: grid;
  grid-auto-columns: 1fr;
}
.alerts-holder:has(.alert:nth-of-type(2)) {
  row-gap: 0;
}
.location-alerts .alerts-holder:has(.alert) {
  z-index: 10;
}

.alert {
  width: 100%;
  background: var(--background-gray);
  color: var(--black);
  padding: 20px var(--mobile-padding);
  position: relative;
  z-index: 510;
}
@media screen and (min-width: 980px) {
  .alert {
    z-index: 100;
  }
  .location-alerts .alert {
    max-width: var(--max-wrap);
    margin: 0 auto;
  }
}
.alert.hidden-alert {
  display: none;
}
.alert > .content {
  text-align: center;
  max-width: var(--max-wrap);
  margin: 0 auto;
}
.alert > .content .alert-text {
  font-size: 1.6rem;
  display: block;
  text-align: left;
  width: calc(100% - 40px);
  font-weight: 500;
}
.alert > .content .alert-text *:last-child {
  margin: 0;
}
@media screen and (min-width: 980px) {
  .alert > .content .alert-text {
    font-size: 1.8rem;
    text-align: center;
  }
}
.alert > .content .alert-text a {
  color: var(--secondary-color);
  font-weight: 700;
  text-decoration: underline;
}
.alert > .content .alert-text a:hover {
  text-decoration-thickness: 3px;
}
@media screen and (max-width: 980px) {
  .alert > .content {
    text-align: center;
  }
}
.alert.ab-high {
  background: var(--red);
  color: var(--white);
}
.alert.ab-high > .content .alert-text a {
  color: var(--white);
}
.alert.ab-high .alert-close-btn {
  color: var(--white);
}

.alert-close-btn {
  color: var(--red);
  position: absolute;
  font-size: 5rem;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.location-specific-alerts {
  padding: var(--mobile-padding);
}
.location-specific-alerts > .alert {
  z-index: 1;
  max-width: var(--max-wrap);
  margin: 0 auto;
  border-radius: 10px;
}

.alert-bell {
  display: none;
  background-color: #CCC;
  padding: 0 var(--mobile-padding);
}
.alert-bell > .content {
  display: flex;
  align-content: center;
  justify-content: center;
  padding: 0.5em 0;
}
.alert-bell > .content button {
  font-size: 1.4rem;
  font-weight: 700;
  color: #CCC;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  -ms-flex-align: center;
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  height: 2em;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: 0.5em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

.splide__arrow--prev {
  background: url(/Content/images/ico-arrow-left.svg) no-repeat;
  background-size: contain;
}

.splide__arrow--next {
  background: url(/Content/images/ico-arrow-left.svg) no-repeat;
  background-size: contain;
  transform: scaleX(-1);
}

.chat-btn {
  background: var(--red);
  color: var(--white);
  position: fixed;
  bottom: 50px;
  right: 0;
  border-radius: 7px 0 0 7px;
  width: 143px;
  height: 60px;
  z-index: 80;
  display: grid;
  grid-template-columns: 20px max-content;
  grid-gap: 10px;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 980px) {
  .chat-btn {
    width: 53px;
    height: 43px;
    display: block;
  }
  .chat-btn span {
    display: none;
  }
}

#lpChatLinkWebsite {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}

.cookie-notice {
  background: var(--cookie-bar);
  color: var(--white);
  text-align: left;
  position: fixed;
  bottom: 0;
  padding: 1em 0.5em;
  box-shadow: rgba(0, 0, 0, 0.3) 0 0 5px 0;
  box-sizing: border-box;
  z-index: 300;
  width: calc(100vw - 60px);
  padding: 1.5em;
  max-width: 1130px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
  border-radius: 40px;
}
@media screen and (min-width: 980px) {
  .cookie-notice {
    border-radius: 70px;
  }
}
.cookie-notice > .content {
  font-size: 1.4rem;
  max-width: var(--max-wrap);
  margin: 0 auto;
  position: relative;
  padding: 50px 0 0 0;
  /*
      button, a {
          margin-right: 10px;
          font-size: 1.2rem;

          &:last-of-type {
              margin-right: 0;
          }

          color: var(--white);
      }
  }*/
}
.cookie-notice > .content:before {
  content: "";
  width: 41px;
  height: 41px;
  background: url(/Content/Images/ico-cookies.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -3px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 980px) {
  .cookie-notice > .content:before {
    width: 51px;
    height: 51px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 980px) {
  .cookie-notice > .content {
    padding: 0 var(--mobile-padding) 0 90px;
    justify-content: center;
    align-items: center;
    display: grid;
    grid-template-columns: 1fr 280px;
  }
}
.cookie-notice > .content .page-header-info {
  margin-right: 20px;
}
.cookie-notice > .content .page-header-info a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
}
.cookie-notice > .content .page-header-info a:hover {
  text-decoration-thickness: 3px;
}
.cookie-notice > .content .page-header-info *:last-of-type {
  margin-bottom: 0;
}
@media screen and (max-width: 980px) {
  .cookie-notice > .content .page-header-info {
    margin: 0 0 1.3em 0;
  }
}
.cookie-notice > .content .page-header-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.1rem;
}
@media screen and (max-width: 980px) {
  .cookie-notice > .content .page-header-link {
    text-align: center;
    grid-template-columns: 1fr;
    column-gap: 1.1rem;
    row-gap: 0.5em;
  }
}
.cookie-notice > .content .page-header-link .cta-btn, .cookie-notice > .content .page-header-link .ghost-btn {
  min-width: 131px;
  padding: 1em 1em;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 400;
}
.cookie-notice > .content .page-header-link button:first-of-type {
  font-size: 1.4rem;
}
.cookie-notice .close-cookie-alert {
  color: var(--red);
  position: absolute;
  font-size: 4rem;
  top: 50%;
  right: 35px;
  transform: translateY(-50%);
}
@media screen and (max-width: 980px) {
  .cookie-notice .close-cookie-alert {
    display: none;
  }
}

form {
  font-size: 1.8rem;
  padding: 0;
}
form input, form select, form checkbox, form textarea {
  border-radius: 50px;
  background-color: #f5f5f5;
  border: 1px solid var(--border-color);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16) inset;
}
form .fsValidationError {
  border-radius: 10px;
  background-color: #f5f5f5;
  border: 1px solid var(--border-color);
}
form .fsSectionHeader {
  padding: 0;
}
form input {
  width: 100%;
}
.content div[class*=InnerFormBody] {
  padding: 0;
}

.four-oh-four {
  padding: 2em var(--mobile-padding);
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 36%, rgb(24, 48, 44) 36%);
  aspect-ratio: 1;
  width: 100%;
  max-height: 800px;
}
.four-oh-four > .content {
  text-align: center;
}
.four-oh-four > .content .photo {
  text-align: center;
  height: 25vw;
  max-height: 300px;
  margin-bottom: 3em;
}
.four-oh-four > .content .info {
  text-align: center;
  color: var(--white);
}
.four-oh-four > .content .info h1 {
  margin-bottom: 1em;
  font-size: 3rem;
}
.four-oh-four > .content .info > p {
  max-width: 600px;
  margin: 0 auto 2em;
}
.four-oh-four > .content .info .actions {
  display: grid;
  grid-template-columns: fit-content(100%);
  column-gap: 0.5em;
  row-gap: 0.5em;
  justify-content: center;
}
@media screen and (min-width: 980px) {
  .four-oh-four > .content .info .actions {
    display: flex;
  }
}

img,
video,
audio,
iframe,
object {
  max-width: 100%;
}

img:not([src$=".svg"]) {
  height: auto;
}

.video-pop-modal {
  background: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  z-index: 99999999;
  padding: 30px;
}
.video-pop-modal * {
  box-sizing: border-box;
}
.video-pop-modal .video-pop-modal-content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  max-width: 1000px;
}
.video-pop-modal .video-pop-modal-content .video-pop-modal-frame {
  text-align: right;
}
@media screen and (min-width: 980px) {
  .video-pop-modal .video-pop-modal-content .video-pop-modal-frame {
    float: right;
    width: 60%;
  }
}
.video-pop-modal .video-pop-modal-content .js-close-video-pop {
  font-size: 72px;
  font-weight: 200;
  line-height: 0.7;
  color: #FFF;
  display: inline-block;
  margin-bottom: 15px;
  border: none;
  background: none;
}
.video-pop-modal .video-pop-modal-content .video-pop-video video {
  width: 100%;
}
.video-pop-modal .video-pop-modal-content .video-pop-video .video-pop-frame {
  width: 100%;
  padding-bottom: 62.5%;
  position: relative;
}
.video-pop-modal .video-pop-modal-content .video-pop-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.video-pop-modal .video-pop-modal-content .video-pop-info {
  padding-top: 60px;
  color: #FFF;
}
@media screen and (min-width: 980px) {
  .video-pop-modal .video-pop-modal-content .video-pop-info {
    float: left;
    width: 40%;
    padding-right: 40px;
  }
}
.video-pop-modal .video-pop-modal-content .f-video-pop-title {
  font-size: 27px;
  color: #FFF;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 980px) {
  .video-pop-modal .video-pop-modal-content .f-video-pop-title {
    font-size: 37px;
  }
}
.video-pop-modal .video-pop-modal-content .video-pop-description {
  font-size: 12px;
  color: #FFF;
  margin-bottom: 1em;
}
@media screen and (min-width: 980px) {
  .video-pop-modal .video-pop-modal-content .video-pop-description {
    font-size: 18px;
  }
}
.video-pop-modal .video-pop-modal-content .video-pop-transcript.open {
  background: none;
}
.video-pop-modal .video-pop-modal-content .video-pop-transcript .show-transcript-lnk {
  color: #FFF;
  font-size: 18px;
  text-decoration: underline;
  border: none;
  background: none;
}

.video-pop-image {
  margin-bottom: 0.5em;
}

.video-listing .videos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.video-listing .videos .video-container {
  margin: 0 15px 30px;
}

.rate-area .effective_date {
  margin: 0 auto;
  color: var(--primary-color);
  font-family: var(--body-font);
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
.rate-area .rate-disclosure, .rate-area .mod-table-disclosure {
  text-align: left;
  font-size: clamp(1.3rem, 1.4vw, 1.4rem);
}
.rate-area .rate-disclosure ul, .rate-area .rate-disclosure ol, .rate-area .mod-table-disclosure ul, .rate-area .mod-table-disclosure ol {
  margin: 0 auto;
}
.rate-area .rate-disclosure p, .rate-area .rate-disclosure li, .rate-area .mod-table-disclosure p, .rate-area .mod-table-disclosure li {
  margin: 0 auto 1em;
  color: var(--black);
  font-family: var(--body-font);
  line-height: 1.5;
}
.rate-area .rate-disclosure p:last-child, .rate-area .rate-disclosure li:last-child, .rate-area .mod-table-disclosure p:last-child, .rate-area .mod-table-disclosure li:last-child {
  margin: 0 auto;
}

.rate-table {
  max-width: var(--max-wrap);
  margin: 0 auto;
  margin: 0 auto;
}
.rate-table .editableTable {
  margin: 0 auto 3rem;
  width: 100%;
}
.rate-table h3 {
  margin: 0 auto 1em;
  font-family: var(--heading-font);
  font-size: clamp(2.2rem, 2.5vw, 4rem);
  color: var(--primary-color);
  text-transform: uppercase;
}
.rate-table table {
  width: 100%;
  margin-bottom: 2em;
}
.rate-table tr:nth-child(1) {
  border-bottom: solid 1px var(--primary-color);
}
.rate-table tr.row_0 {
  display: none;
  visibility: hidden;
  background-color: var(--white);
}
@media screen and (min-width: 980px) {
  .rate-table tr.row_0 {
    display: table-row;
    visibility: visible;
  }
}
.rate-table tr.col_0 {
  font-weight: bold;
}
@media screen and (min-width: 980px) {
  .rate-table tr td:first-child {
    text-align: left;
  }
}
.rate-table th {
  margin: 0 auto;
  padding: 10px;
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--secondary-color);
  font-size: clamp(1.6rem, 2vw, 2rem);
}
@media screen and (min-width: 980px) {
  .rate-table th:first-child {
    text-align: left;
  }
}
.rate-table td {
  padding: 1rem;
  display: block;
  font-size: clamp(1.6rem, 1.7vw, 1.9rem);
  text-align: left;
}
.rate-table td p:last-child {
  margin: 0 auto;
}
.rate-table td:before {
  margin: 0 1rem 0 0;
  content: attr(data-title) ": ";
  display: inline;
  visibility: visible;
  font-weight: 600;
}
@media screen and (min-width: 980px) {
  .rate-table td:before {
    display: none;
    visibility: hidden;
  }
}
@media screen and (min-width: 980px) {
  .rate-table td {
    display: table-cell;
    text-align: center;
  }
}
@media screen and (max-width: 980px) {
  .rate-table table {
    margin: 0 auto 1.5em;
    width: 100%;
  }
  .rate-table table td {
    display: block;
    text-align: left;
    vertical-align: top;
    white-space: normal;
  }
  .rate-table table thead {
    display: none;
    visibility: hidden;
  }
  .rate-table table .row_0, .rate-table table .col_0 {
    display: none;
    visibility: hidden;
  }
  .rate-table table tr {
    background: #ffffff;
    border: solid 1px #CCC;
    border-width: 0px 0 2px 0;
    /*margin-bottom: 1em;*/
  }
  .rate-table table tr:first-of-type {
    display: none;
  }
  .rate-table table tr, .rate-table table thead {
    display: block;
    padding: 0;
    text-align: left;
  }
  .rate-table table tbody {
    padding: 0;
    text-align: left;
  }
  .rate-table table th {
    padding: 0em;
    display: block;
    text-align: left;
  }
  .rate-table table td, .rate-table table th {
    text-align: center;
  }
  .rate-table table th {
    text-transform: uppercase;
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 600;
  }
  .rate-table table th[data-title]:before, .rate-table table td[data-title]:before {
    content: attr(data-title) ": ";
    font-weight: 600;
    color: #333;
    display: block;
    padding: 0 0 0.2em;
    margin-right: 0;
  }
}
@media screen and (max-width: 980px) and (min-width: 600px) {
  .rate-table table th[data-title]:before, .rate-table table td[data-title]:before {
    display: inline-block;
    width: calc(50% - 1em);
    padding: 0.5em 1em;
    /* border-right: solid 1px #CCC; */
  }
}
@media screen and (max-width: 980px) {
  .rate-table table td[data-hide]:before {
    content: "" !important;
  }
  .rate-table table td {
    padding: 0 1.5em;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.rate-table a {
  color: var(--tertiary-color);
  text-decoration: none !important;
  font-weight: 600;
}
.rate-table a:hover, .rate-table a:focus, .rate-table a.hovered {
  text-decoration: underline !important;
}

.rateTVPage {
  height: 100vh;
  width: 100vw;
  background: black;
  position: fixed;
  display: flex;
  place-content: center;
}
.rateTVPage > .content {
  width: 100%;
  display: grid;
  grid-gap: 20px;
  background: var(--white);
  padding: 20px;
}
@media (orientation: landscape) {
  .rateTVPage > .content {
    grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
  }
  .rateTVPage > .content .photo {
    order: 1;
  }
  .rateTVPage > .content .rateSection {
    order: 0;
  }
}
@media (orientation: portrait) {
  .rateTVPage > .content {
    grid-template-rows: auto max-content;
  }
}
.rateTVPage > .content .photo {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.rateTVPage > .content .rateSection {
  height: 100%;
  border: 10px solid var(--primary-color);
  /*            tr td:nth-child(2),
  tr td:nth-child(4) {
      background: #ECF0EE;
  }*/
}
.rateTVPage > .content .rateSection .f-h1 {
  padding-top: 0.75em;
  font-size: clamp(4rem, 5vw, 7rem);
  text-align: center;
  margin-bottom: 0.25em;
  color: var(--primary-color);
}
.rateTVPage > .content .rateSection .f-h2 {
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 1.5em;
  font-weight: 400;
}
.rateTVPage > .content .rateSection tr td:nth-child(1) {
  font-weight: bold;
}
.rateTVPage > .content .rateSection .rate-table {
  padding: 0 20px;
}
.rateTVPage > .content .rateSection .rate-table th {
  padding: 1.2rem;
  display: table-cell;
}
.rateTVPage > .content .rateSection .rate-table tr {
  display: table-row;
}
.rateTVPage > .content .rateSection .rate-table tr:first-child {
  padding: 0;
}
.rateTVPage > .content .rateSection .rate-table tr:nth-child(odd) {
  background: none;
}
.rateTVPage > .content .rateSection .rate-table tr td {
  display: table-cell;
  padding: 10px;
}
@media (orientation: portrait) {
  .rateTVPage > .content .rateSection .rate-table tr td {
    font-size: clamp(1.6rem, 3vh, 3rem);
  }
}
@media (orientation: landscape) {
  .rateTVPage > .content .rateSection .rate-table tr td {
    font-size: clamp(1.6rem, 3vw, 3rem);
  }
}
.rateTVPage > .content .rateSection .rate-table tr td:before {
  display: none;
}
.rateTVPage > .content .rateSection .rate-disclosure {
  text-align: center;
  font-size: 1.6rem;
  padding: 0 20px;
  /*                margin-top:8vw;*/
}
.rateTVPage > .content .rateSection .bugs {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 0;
  grid-gap: 1em;
}

.sitemap {
  padding: 0 var(--mobile-padding);
  margin-bottom: 4em;
}
.sitemap > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
}
.sitemap > .content > ul {
  list-style: none;
}
@media screen and (min-width: 980px) {
  .sitemap > .content > ul {
    column-count: 2;
    column-gap: 3em;
  }
}
.sitemap > .content > ul li {
  margin-bottom: 0.7em;
}

/** DEFAULT SPEEDBUMP STYLES **/
.speedbump_back, .js-email_pop {
  background-color: rgba(0, 0, 0, 0.7) !important;
  position: fixed;
  overflow: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9100;
  text-align: center;
}

.speedbump_pop_inner, .email_pop_inner {
  display: inline-block;
  max-width: 480px;
  width: 90%;
}

.speedbump_pop_content, .email_pop_content {
  background: var(--white);
  border-radius: 0;
  padding: 0;
  text-align: center;
  padding: 32px;
}

.speedbump_pop_header, .email_pop_header {
  background: var(--white);
  border-radius: 0;
  color: var(--primary-color);
  font-family: var(--heading-font);
  font-weight: bold;
  margin-bottom: 0.7em;
  font-size: 2rem;
}

.speedbump_pop_message, .email_pop_message {
  color: var(--black);
  font-size: 1.6rem;
  font-family: var(--body-font);
  text-align: left;
  margin-bottom: 2em;
}

.speedbump_pop_buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}

.speedbump_pop_buttons .cta-btn, .speedbump_pop_buttons .ghost-btn {
  padding: 0.7em 1em;
}

/*.speedbump_pop_btn, .email_pop_btn {
    display: inline-block;
    padding: .4em 1em;
    font-size: .9em;
    border-radius: 5px;
    text-align: center;
    font-family: var(--body-font);
    font-weight: bold;
}

.speedbump_pop_btn_ok, .email_pop_btn_ok {
    background: var(--tertiary-color);
    color: var(--white);
    margin: 0 15px 15px 0;
    width: 100%;

    &:hover, &:focus {
        background: darken(var(--tertiary-color), 10);
    }
}

.speedbump_pop_btn_cancel, .email_pop_btn_cancel {
    color: var(--primary-color);
    width: 100%;

    &:hover, &:focus {
        text-decoration: underline;
    }
}
*/
@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: grid;
}

.splide__pagination {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.video-modal {
  margin: 0;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.85);
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
}
.video-modal .video-flex-container {
  margin: 0;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 980px) {
  .video-modal .video-flex-container {
    align-items: center;
  }
}
.video-modal .video-modal-content {
  margin: 0 auto;
  width: calc(100vw - 60px);
  overflow-y: auto;
  max-width: 800px;
  margin: 0 30px;
}
.video-modal .video-modal-content > div, .video-modal .video-modal-content > video {
  width: 100%;
}
.video-modal .video-modal-close {
  margin: 1em 1em 1em auto;
  padding: 0;
  display: block;
  width: 35px;
  height: 35px;
  background-image: url("../icons/body_icon_lightbox-close.svg");
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 35px 35px;
}
@media screen and (min-width: 980px) {
  .video-modal .video-modal-close {
    margin: 0;
    padding: 0;
    position: absolute;
    right: 30px;
    top: 20px;
    color: #FFF;
    font-size: 10rem;
    line-height: 0;
  }
}
.video-modal .video-holder {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 100%;
  height: auto;
  position: relative;
}
.video-modal .local-video {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.video-modal .transcript-container {
  margin: 0;
  color: var(--white);
}
.video-modal .transcript-container .transcript-button {
  margin: 0;
  padding: 0.5em;
  font-size: 1.6rem;
  font-weight: 700;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 980px) {
  .video-modal .transcript-container .transcript-button {
    font-size: 1.8rem;
  }
}
.video-modal .transcript-container .transcript-button:after {
  content: "";
  margin: 0 0 0 0.25em;
  padding: 0;
  background: url("../icons/header_shape_dropdown-arrow.svg") transparent no-repeat center/14px 8px;
  width: 14px;
  height: 8px;
  position: relative;
  display: inline-block;
  transform: scale(1, 1);
  transition: transform 0.25s ease;
}
.video-modal .transcript-container .transcript-content {
  margin: 0;
  padding: 0.5em 0 0;
  display: none;
}
.video-modal .transcript-container .transcript-content > *:last-child {
  margin: 0;
}
.video-modal .transcript-container .transcript-content a {
  color: var(--white);
  text-decoration: underline;
}
.video-modal .transcript-container.active > .transcript-button:after {
  transform: scale(1, -1);
  transition: transform 0.25s ease;
}

.compare-chart {
  padding: 1em 0;
  border-radius: 50px;
  position: relative;
  max-width: var(--max-wrap);
  margin: 0 auto;
  margin-bottom: 4em;
  display: block;
}
@media screen and (max-width: 980px) {
  .compare-chart {
    margin-right: -20px;
  }
}
.compare-chart:before {
  content: "";
  position: absolute;
  inset: 0;
  top: -20px;
  background-color: var(--accentColor);
  z-index: -1;
  border-radius: 50px;
}
.tab-content .compare-chart {
  max-width: 1400px;
  margin: 0 auto 4em;
}
@media screen and (min-width: 980px) {
  .tab-content .compare-chart {
    padding: 3em 5em;
  }
}
.compare-chart ul {
  list-style: none;
  padding-left: 0;
}
.compare-chart ul li {
  padding: 1em 0.3em;
}
.compare-chart ul li.heading {
  font-weight: 700;
}
@media screen and (max-width: 980px) {
  .compare-chart > h2 {
    padding: 0 1em;
    text-align: center;
  }
}
.compare-chart .splide:not(.is-overflow) .splide__arrows {
  display: none;
}
.compare-chart .splide:not(.is-overflow) .splide__slide:last-child {
  margin: 0 !important;
}
.compare-chart .splide__list {
  justify-content: flex-start !important;
}
.compare-chart .container {
  display: grid;
  grid-template-columns: minmax(0, 250px) auto;
  max-width: var(--max-wrap);
  margin: 0 auto;
  max-width: 1400px;
  position: relative;
}
.compare-chart .container .headers {
  visibility: visible;
  position: relative;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-right: 1em;
  border-right: solid 4px var(--black);
  box-shadow: none;
}
.compare-chart .container .headers .heading {
  padding: 0.5em 1em;
  position: relative;
}
.compare-chart .container .headers .heading:after {
  content: "";
  width: calc(100% + 20px);
  bottom: 0;
  left: 0;
  display: block;
  position: absolute;
  height: 1px;
  background: #CCC;
}
.compare-chart .container:has(.column:last-child a) .headers li:last-child:after {
  content: none;
}
.compare-chart .container .chart-container {
  padding-top: 1em;
  padding-bottom: 1em;
  background-color: var(--white);
  border-right: solid 5px var(--black);
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-bottom: 1em;
}
.compare-chart .container .chart-container .splide__slide {
  padding: 0 0 0 0;
}
@media screen and (min-width: 980px) {
  .compare-chart .container .chart-container .splide__slide {
    width: 300px !important;
    flex: none !important;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 980px) {
  .compare-chart .container .chart-container:not(:has(.splide__slide:nth-of-type(3))) .splide__slide {
    width: auto !important;
    flex: 1 0 50% !important;
  }
}
.compare-chart .container .chart-container:not(:has(.splide__slide:nth-of-type(3))) .splide__slide .column > li {
  width: auto !important;
}
.compare-chart .container .chart-container .column {
  width: 100%;
  justify-content: center;
  display: grid;
  grid-template-columns: 1fr;
}
.compare-chart .container .chart-container .column > li {
  text-align: center;
  font-size: 1.8rem;
  border-bottom: 1px solid #CCC;
  text-align: center;
}
@media screen and (min-width: 980px) {
  .compare-chart .container .chart-container .column > li {
    width: 300px;
  }
}
@media screen and (max-width: 980px) {
  .compare-chart .container .chart-container .column > li {
    padding: 0 15px;
    padding-top: 5px;
  }
}
.compare-chart .container .chart-container .column > li svg path {
  fill: var(--pageHighlightColor) !important;
  stroke: var(--pageHighlightColor) !important;
}
.compare-chart .container .chart-container .column > li svg.x-svg path {
  fill: #CCC !important;
  stroke: #CCC !important;
}
.compare-chart .container .chart-container .column > li:has(img[alt=checked]), .compare-chart .container .chart-container .column > li:has(img[alt="not checked"]), .compare-chart .container .chart-container .column > li:has(a[class*=btn]) {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  align-items: center;
}
.compare-chart .container .chart-container .column > li:first-child {
  font-weight: 700;
  border-bottom: 1px solid var(--black);
  position: relative;
  padding-top: 0;
}
.compare-chart .container .chart-container .column > li:first-child:after {
  content: "";
  width: calc(100% - 2em);
  height: 5px;
  background: var(--black);
  position: absolute;
  bottom: 0;
  left: 1em;
  display: block;
}
.compare-chart .container .chart-container .column > li:last-child:has(a) {
  border-bottom: none;
}
.compare-chart .mobile-controls {
  width: 100%;
  justify-content: center;
  grid-column: 1/3;
}
@media screen and (max-width: 980px) {
  .compare-chart .mobile-controls {
    width: calc(100% - 20px);
    height: 53px !important;
  }
  .compare-chart .mobile-controls:nth-child(1) {
    display: none;
  }
}
.compare-chart .mobile-controls .arrows {
  display: flex;
  justify-content: center;
  grid-gap: 1em;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 980px) {
  .compare-chart .mobile-controls .arrows {
    display: flex;
  }
}
.compare-chart .mobile-controls .arrows .splide__arrow {
  background-image: url("../images/carousel-arrow-right.svg");
  height: 24px;
  width: 12px;
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
}
@media screen and (max-width: 980px) {
  .compare-chart .mobile-controls .arrows .splide__arrow {
    box-sizing: content-box;
    padding: 0.5rem;
    top: 2px;
  }
}
.compare-chart .mobile-controls .arrows .splide__arrow--prev {
  transform: scaleX(-1);
  left: 0;
}
@media screen and (max-width: 980px) {
  .compare-chart .mobile-controls .arrows .splide__arrow--prev {
    grid-area: prev;
    justify-self: center;
  }
}
.compare-chart .mobile-controls .arrows .splide__arrow--next {
  transform: scaleX(1);
}
@media screen and (max-width: 980px) {
  .compare-chart .mobile-controls .arrows .splide__arrow--next {
    right: 0;
    grid-area: next;
    justify-self: center;
  }
}
.compare-chart .mobile-controls .splide__pagination {
  display: flex;
  grid-gap: 1.7rem;
  position: relative;
  bottom: 0;
}
@media screen and (max-width: 980px) {
  .compare-chart .mobile-controls .splide__pagination {
    grid-area: dots;
    padding-right: 0;
  }
}
.compare-chart .mobile-controls .splide__pagination li {
  padding: 0 0 0 0 !important;
}
.compare-chart .mobile-controls .splide__pagination li button {
  height: 15px;
  width: 15px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  transition: background-color 0.2s ease;
  background-color: white;
}
.compare-chart .mobile-controls .splide__pagination li button.is-active {
  background-color: var(--primary-color);
  transform: scale(1);
}
.compare-chart .disclosure {
  grid-column: 1/3;
  font-size: 1.2rem;
}

.table-checkmark {
  background-image: url(../images/svg/ico-checkmark.svg);
  height: 16px;
  width: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  filter: var(--theme-spring-filter);
}

.account-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.account-modal.active {
  display: flex;
}
.account-modal .content {
  position: relative;
  background: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 50rem;
}
@media screen and (min-width: 980px) {
  .account-modal .content {
    width: 50rem;
  }
}
.account-modal .content .modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}
.account-modal .content .f-h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}
.account-modal .content .f-h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.account-modal .content .copy {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  color: #555;
}
.account-modal .content .account-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media screen and (min-width: 980px) {
  .account-modal .content .account-columns {
    grid-template-columns: repeat(2, 1fr);
  }
}
.account-modal .content .account-columns .column--existing, .account-modal .content .account-columns .column--new {
  padding: 1rem;
}
.account-modal .content .login-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.account-modal .content .login-form label {
  font-size: 1.4rem;
}
.account-modal .content .login-form .input {
  width: 100%;
  padding: 0.8rem;
  font-size: 1.4rem;
  border: 1px solid #ccc;
  border-radius: 0.3rem;
}
.account-modal .content .login-form .button {
  margin-top: 1rem;
}
.account-modal .content .button {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  border: none;
  border-radius: 0.3rem;
  cursor: pointer;
  text-align: center;
}
.account-modal .content .button--primary {
  background-color: #123;
  color: #fff;
}
.account-modal .content .button--secondary {
  background-color: transparent;
  color: #123;
  border: 1px solid #123;
  margin-left: 1rem;
}

.privacy-policy table {
  width: 100%;
  margin-bottom: 3em !important;
  border: solid 1px;
  table-layout: fixed;
}
.privacy-policy table tr {
  border-bottom: solid 1px;
}
.privacy-policy table tr:last-of-type {
  border-bottom: none;
}
.privacy-policy table thead {
  background: var(--hrcu-deep-forest);
  color: var(--white);
}
.privacy-policy table td, .privacy-policy table th {
  padding: 10px;
}
.privacy-policy table th {
  font-weight: 700;
}

.form-grid {
  /* form */
}
.form-grid > .content {
  display: grid;
  grid-gap: 50px;
  max-width: 1100px;
}
@media screen and (min-width: 980px) {
  .form-grid > .content {
    grid-template-columns: auto 300px;
  }
}
@media screen and (max-width: 800px) {
  .form-grid .support-card {
    width: unset;
  }
  .form-grid .ktc-checkbox-list {
    margin: 2em auto;
    display: block;
  }
}
.form-grid .support-card {
  background: var(--hrcu-deep-forest);
  color: white;
  padding: 30px 25px;
  border-radius: 15px;
}
.form-grid .support-card h1 {
  margin: 0 0 25px 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}
.form-grid .support-card strong {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}
.form-grid .support-card p {
  margin: 0 0 15px 0;
  opacity: 0.9;
}
.form-grid .support-card .section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.form-grid .support-card .section a {
  color: #FFF;
}
.form-grid .support-card .ghost-btn-white:hover {
  background-color: white;
  color: #2d4a3e;
}
@media screen and (max-width: 1000px) {
  .form-grid .two-col-section > .content {
    display: block;
  }
  .form-grid .support-card {
    width: 100%;
  }
}
.form-grid form input[type=submit] {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 5px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.form-grid form input[type=submit]:hover {
  background: var(--primary-hover-color);
  color: var(--primary-color);
}
.form-grid form input[type=text],
.form-grid form input[type=email],
.form-grid form input[type=tel],
.form-grid form textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  margin-bottom: 1em;
  box-shadow: none;
  background-color: #fff;
  border: solid 1px #18302C;
}
.form-grid form textarea {
  height: 80px;
  resize: vertical;
}
.form-grid form input[type=checkbox] {
  margin-right: 8px;
}
.form-grid form label {
  display: block;
  margin-bottom: 4px;
  font-weight: bold;
}
.form-grid form .ktc-checkbox-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  row-gap: 1em;
  gap: 1em;
  margin: 1em auto 2em auto;
}
.form-grid form .ktc-checkbox {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 1em;
  align-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 980px) {
  .form-grid form .ktc-checkbox {
    display: block;
  }
}
.form-grid form .ktc-checkbox label {
  font-weight: normal;
}
.form-grid form .ktc-checkbox input {
  max-width: 16px;
  box-shadow: none;
}
.form-grid form label[for=form-Contact_Form-16bc_MultipleChoice_SelectedValues] {
  margin-top: 2em;
}

.tab-nav {
  position: relative;
}
.tab-nav button {
  position: relative;
  z-index: 2;
  background: none !important;
}
.tab-nav:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  height: calc(var(--highlight-height) - 0px);
  background: var(--pageHighlightColor);
  border-radius: 40px;
  z-index: 1;
  transition: all 0.3s ease, width 0.3s ease;
  transform: translate(calc(var(--highlight-left) - 5px), calc(var(--highlight-top) - 8px));
  width: calc(var(--highlight-width) + 7px); /* JS will set this initially */
}

body:has(.feature .image-back):has(.account-tabs .tab-nav button:nth-child(2).active) .account-tabs .tab-nav:after {
  background: var(--hrcu-sunset) !important;
}

.rate-tabs .tab-nav::after {
  content: none !important;
}

.blog-header {
  background-color: #1C7540;
}
.blog-header .header-content {
  padding: 2em;
  max-width: 1200px;
  margin: auto;
}
@media screen and (min-width: 980px) {
  .blog-header .header-content {
    padding: 4em 2em 2em;
  }
}
.blog-header .header-content h1 {
  font-size: clamp(2.4rem, 4.3vw, 5.4rem);
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 980px) {
  .blog-header .header-content h1 {
    text-align: left;
  }
}
.blog-header .header-content .blog-filters {
  color: #fff;
  align-items: center;
}
@media screen and (min-width: 980px) {
  .blog-header .header-content .blog-filters {
    display: flex;
    gap: 1em;
  }
}
@media screen and (min-width: 980px) {
  .blog-header .header-content .blog-filters .label {
    margin-bottom: 1rem;
  }
}
.blog-header .header-content .blog-filters .categories {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 8px;
}
.blog-header .header-content .blog-filters .js-filter-category {
  border: 1px solid #67A278;
  padding: 6px 22px;
  border-radius: 20px;
  min-width: 50px;
}
.blog-header .header-content .blog-filters .js-filter-category img {
  width: 24px;
  margin-right: 8px;
  margin-bottom: 2px;
  /* margin-top: 0px; */
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(2%) hue-rotate(295deg) brightness(104%) contrast(101%);
}
.blog-header .header-content .blog-filters .js-filter-category.active img {
  filter: none;
}
.blog-header .header-content .blog-filters .js-filter-category:hover {
  border: 1px solid #1C7540;
  background: #fff;
  color: #18302C;
}
.blog-header .header-content .blog-filters .js-filter-category:hover img {
  filter: none;
}
@media screen and (max-width: 980px) {
  .blog-header .header-content .blog-filters {
    display: none;
  }
}
.blog-header .header-content .blog-filters-mobile {
  display: none;
}
@media screen and (max-width: 980px) {
  .blog-header .header-content .blog-filters-mobile {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
  }
}
.blog-header .header-content .blog-filters-mobile .filter {
  border-left: 1px solid #21884f;
  color: #7fbb9a;
  padding-left: 1em;
}
.blog-header .header-content .blog-filters-mobile .filter .label {
  margin-bottom: 0.8em;
}
.blog-header .header-content .blog-filters-mobile .filter select {
  text-transform: none;
  width: 100%;
  min-width: calc(100vw - 2em - 120px);
  height: 40px;
  color: var(--black);
  padding: 0 0 0 1em;
  border-radius: 20px;
}
.blog-header .header-content .blog-filters-mobile .image > img {
  width: 2em;
}

.blog-index {
  padding: 1em;
  max-width: 1200px;
  margin: auto;
}
.blog-index .featured-blogs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}
@media screen and (max-width: 980px) {
  .blog-index .featured-blogs {
    display: block;
  }
}
.blog-index .featured-blogs .featured-blog-entry {
  margin-bottom: 1em;
}
.blog-index .featured-blogs .featured-blog-entry .blog-image {
  border-radius: 24px;
  width: 100%;
  aspect-ratio: 17/10;
  object-fit: cover;
}
.blog-index .featured-blogs .featured-blog-entry .blog-meta {
  display: flex;
  padding: 8px;
  justify-content: space-between;
}
.blog-index .featured-blogs .featured-blog-entry .blog-meta img {
  width: 20px;
}
.blog-index .featured-blogs .featured-blog-entry .blog-info {
  padding: 8px;
}
.blog-index .blogs-listing {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 10px; /* optional spacing between items */
  margin-top: 2em;
}
@media screen and (max-width: 980px) {
  .blog-index .blogs-listing {
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
  }
}
.blog-index .blogs-listing .blog-entry .blog-image {
  border-radius: 18px;
  aspect-ratio: 17/10;
  object-fit: cover;
}
.blog-index .blogs-listing .blog-entry .blog-image img {
  border-radius: 18px;
}
.blog-index .blogs-listing .blog-entry .blog-meta {
  display: flex;
  padding: 8px;
  justify-content: space-between;
}
.blog-index .blogs-listing .blog-entry .blog-meta img {
  width: 16px;
}
.blog-index .blogs-listing .blog-entry .blog-info {
  padding: 8px;
}
.blog-index .blogs-listing .blog-entry .blog-info a {
  text-decoration: underline;
}
.blog-index .load-more {
  text-align: center;
  display: block;
  margin: 4em auto;
}

.blogs-listing-overflow {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 10px; /* optional spacing between items */
  margin-top: 2em;
  padding: 1em;
  max-width: 1200px;
  margin: auto;
}
@media screen and (max-width: 980px) {
  .blogs-listing-overflow {
    grid-template-columns: repeat(2, 1fr); /* 3 equal columns */
  }
}
.blogs-listing-overflow .blog-entry .blog-image {
  border-radius: 18px;
  aspect-ratio: 17/10;
  object-fit: cover;
}
.blogs-listing-overflow .blog-entry .blog-image img {
  border-radius: 18px;
}
.blogs-listing-overflow .blog-entry .blog-meta {
  display: flex;
  padding: 8px;
  justify-content: space-between;
}
.blogs-listing-overflow .blog-entry .blog-meta img {
  width: 16px;
}
.blogs-listing-overflow .blog-entry .blog-info {
  padding: 8px;
}
.blogs-listing-overflow .blog-entry .blog-info a {
  text-decoration: underline;
}

.blog-detail-wrapper .blog-detail-content .article-header {
  position: relative;
}
.blog-detail-wrapper .blog-detail-content .article-header .header-controls {
  position: absolute;
  top: 200px;
  left: 100px;
  z-index: 2;
  color: #fff !important;
}
.blog-detail-wrapper .blog-detail-content .article-header .header-controls a, .blog-detail-wrapper .blog-detail-content .article-header .header-controls button P {
  color: #fff !important;
}
.blog-detail-wrapper .blog-detail-content .article-header::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 300px;
  content: "";
  background-color: #1c7540;
  z-index: 1;
}
.blog-detail-wrapper .blog-detail-content .article-header .header-content {
  max-width: 50%;
  margin: auto;
  z-index: 2;
  max-width: 700px;
  position: relative;
}
.blog-detail-wrapper .blog-detail-content .article-header .header-content img {
  border-radius: 24px;
  margin-top: 4em;
  margin-bottom: 1em;
}
@media screen and (max-width: 980px) {
  .blog-detail-wrapper .blog-detail-content .article-header .header-content {
    padding: 1em;
  }
}
.blog-detail-wrapper .blog-detail-content .article-body {
  max-width: 700px;
  margin: auto;
}
@media screen and (max-width: 980px) {
  .blog-detail-wrapper .blog-detail-content .article-body {
    padding: 1em;
  }
}
.blog-detail-wrapper .blog-detail-content .share-section {
  max-width: 700px;
  margin: auto;
  text-align: center;
  margin-top: 4em;
}
.blog-detail-wrapper .blog-detail-content .share-section .share-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1em;
}
.blog-detail-wrapper .blog-detail-content .share-section .share-links li a {
  height: 20px;
  display: flex;
  gap: 10px;
}
.blog-detail-wrapper .blog-detail-content .share-section .share-links li a img, .blog-detail-wrapper .blog-detail-content .share-section .share-links li a svg {
  height: 20px;
  width: 20px;
}
.blog-detail-wrapper .related-articles {
  max-width: var(--max-wrap);
  margin: 0 auto;
  margin-top: 4rem;
}
.blog-detail-wrapper .related-articles .related-articles-title {
  text-align: center;
}
.blog-detail-wrapper .related-articles .related-articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 3em;
  gap: 10px; /* optional spacing between items */
  margin-top: 2em;
}
@media screen and (max-width: 980px) {
  .blog-detail-wrapper .related-articles .related-articles-grid {
    grid-template-columns: repeat(2, 335px); /* 3 equal columns */
  }
}
.blog-detail-wrapper .related-articles .related-articles-grid .related-article-card .article-image-wrapper {
  aspect-ratio: 313/182;
}
.blog-detail-wrapper .related-articles .related-articles-grid .related-article-card .article-image-wrapper > img {
  border-radius: 18px;
  height: 100% !important;
  width: 100%;
  object-fit: cover;
}
.blog-detail-wrapper .related-articles .related-articles-grid .related-article-card .article-meta {
  display: flex;
  padding: 8px;
  justify-content: space-between;
}
.blog-detail-wrapper .related-articles .related-articles-grid .related-article-card .article-meta .blog-categories {
  display: flex;
  column-gap: 8px;
}
.blog-detail-wrapper .related-articles .related-articles-grid .related-article-card .article-meta .blog-categories img {
  width: 16px;
}
.blog-detail-wrapper .related-articles .related-articles-grid .related-article-card .article-info {
  padding: 8px;
}
.blog-detail-wrapper .related-articles .related-articles-grid .related-article-card .article-info a {
  text-decoration: underline;
}

.event-index {
  padding: 1em;
  max-width: 1200px;
  margin: auto;
}
.event-index .events-listing {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  margin-top: 2em;
}
@media screen and (max-width: 980px) {
  .event-index .events-listing {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
.event-index .events-listing .event-entry {
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.5s ease-in-out;
  border: solid 2px #18302C;
}
.event-index .events-listing .event-entry:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.event-index .events-listing .event-entry .event-image {
  height: 250px;
  overflow: hidden;
}
.event-index .events-listing .event-entry .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.event-index .events-listing .event-entry .event-meta {
  display: flex;
  padding: 1em;
  justify-content: center;
  align-items: center;
}
.event-index .events-listing .event-entry .event-meta .event-date {
  color: #18302C;
  font-size: 2em;
  border-right: solid 2px #808080;
  padding: 0.5em 0.5em 0.5em 0;
}
.event-index .events-listing .event-entry .event-meta .event-title {
  padding-left: 1.5em;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5em;
  color: #333;
}
.event-index .events-listing .event-entry .event-meta .event-copy {
  padding-left: 1.5em;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.5em;
  color: #333;
}
.event-index .events-listing .event-entry .event-actions {
  padding: 0 1em 1.5em;
  text-align: center;
  margin: 1em auto;
}
.event-index .load-more {
  text-align: center;
  display: block;
  margin: 4em auto;
}
.event-index .load-more button {
  padding: 12px 40px;
  font-size: 1rem;
}

.events-listing-overflow {
  display: none;
}

.past-events-section {
  background-color: #18302C;
  padding: 3em 0;
  margin-top: 4em;
}
.past-events-section .content {
  max-width: 1200px;
  margin: auto;
  padding: 0 1em;
}
.past-events-section .content h2 {
  margin-bottom: 2em;
  text-align: center;
  color: #FFFEF5;
}
.past-events-section .past-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2em;
}
@media screen and (max-width: 980px) {
  .past-events-section .past-events-grid {
    grid-template-columns: 1fr;
  }
}
.past-events-section .past-events-grid .past-event-entry {
  background: #FFFEF5;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.past-events-section .past-events-grid .past-event-entry .event-image {
  height: 150px;
  overflow: hidden;
  position: relative;
}
.past-events-section .past-events-grid .past-event-entry .event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(30%);
}
.past-events-section .past-events-grid .past-event-entry .event-info {
  padding: 1em;
}
.past-events-section .past-events-grid .past-event-entry .event-info .event-date {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 0.5em;
}
.past-events-section .past-events-grid .past-event-entry .event-info .event-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5em;
  color: #333;
}
.past-events-section .past-events-grid .past-event-entry .event-info a {
  color: #1C7540;
  font-size: 1.3rem;
  text-decoration: underline;
}

.blog-detail-wrapper .blog-detail-content .article-header {
  position: relative;
}
.blog-detail-wrapper .blog-detail-content .article-header .header-controls {
  position: absolute;
  top: 200px;
  left: 100px;
  z-index: 2;
  color: #fff !important;
}
.blog-detail-wrapper .blog-detail-content .article-header .header-controls a, .blog-detail-wrapper .blog-detail-content .article-header .header-controls button P {
  color: #fff !important;
}
.blog-detail-wrapper .blog-detail-content .article-header::before {
  position: absolute;
  display: block;
  width: 100%;
  height: 300px;
  content: "";
  background-color: #1c7540;
  z-index: 1;
}
.blog-detail-wrapper .blog-detail-content .article-header .header-content {
  max-width: 50%;
  margin: auto;
  z-index: 2;
  max-width: 700px;
  position: relative;
}
.blog-detail-wrapper .blog-detail-content .article-header .header-content img {
  border-radius: 24px;
  margin-top: 4em;
  margin-bottom: 1em;
}
.blog-detail-wrapper .blog-detail-content .article-body {
  max-width: 700px;
  margin: auto;
}
.blog-detail-wrapper .blog-detail-content .share-section {
  max-width: 700px;
  margin: auto;
  text-align: center;
  margin-top: 4em;
}
.blog-detail-wrapper .blog-detail-content .share-section .share-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 1em;
}
.blog-detail-wrapper .blog-detail-content .share-section .share-links li + li {
  margin-left: 1rem;
}
.blog-detail-wrapper .related-articles {
  margin-top: 4rem;
}
.blog-detail-wrapper .related-articles .related-articles-grid {
  display: grid;
  gap: 2rem;
}
.blog-detail-wrapper .related-articles .related-articles-grid .related-article-card a {
  display: block;
}
.blog-detail-wrapper .related-articles .related-articles-grid .related-article-card .article-image-wrapper img {
  width: 100%;
  height: auto;
}
.blog-detail-wrapper .related-articles .related-articles-grid .related-article-card .article-meta {
  display: flex;
  justify-content: space-between;
}
.directory-box {
  padding: 0 var(--mobile-padding);
  margin-bottom: 3em;
}
@media screen and (min-width: 980px) {
  .directory-box {
    margin-bottom: 5em;
  }
}
.content .directory-box {
  padding: 0;
}
.directory-box > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
}
.directory-box .top-section {
  text-align: center;
}
@media screen and (min-width: 980px) {
  .directory-box .top-section {
    text-align: left;
  }
}
.directory-box .team {
  display: grid;
  grid-template-columns: max-content;
  grid-gap: 1.5em;
}
@media screen and (max-width: 980px) {
  .directory-box .team {
    justify-content: center;
  }
}
@media screen and (min-width: 980px) {
  .directory-box .team {
    grid-template-columns: repeat(auto-fit, 350px);
    justify-content: flex-start;
    grid-gap: clamp(2em, 3vw, 5em);
  }
}
.directory-box .directory-item .image {
  width: 100%;
  aspect-ratio: 6/8;
  object-fit: cover;
  margin-bottom: 1.5em;
}
.directory-box .directory-item .name {
  font-size: 2.3rem;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 0;
}
.directory-box .directory-item .title {
  font-weight: 500;
  font-size: 1.6rem;
  font-style: italic;
  margin-bottom: 0.5em;
}
.directory-box .directory-item p {
  font-size: 1.8rem;
  margin-bottom: 0;
}
.directory-box .directory-item p span {
  color: var(--secondary-color);
  font-weight: 700;
}
.directory-box .directory-item .email {
  font-weight: 700;
  color: var(--secondary-color);
  /*text-decoration: underline;

  &:hover {
  	text-decoration-thickness: 2px;
  }*/
}
.directory-box .directory-item a {
  text-decoration: underline transparent;
  transition: text-decoration 0.2s ease;
}
.directory-box .directory-item a:hover {
  text-decoration: underline currentcolor;
}

.directory-detail {
  margin-bottom: 4em;
  margin-top: 2em;
}
.directory-detail > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  padding: 0 var(--mobile-padding);
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 980px) {
  .directory-detail > .content {
    grid-template-columns: 30% 1fr;
    grid-gap: clamp(40px, 5vw, 50px);
  }
}
.directory-detail .photoAndCTA .photo {
  background: #F6F6F6;
  background: linear-gradient(0deg, #F6F6F6 80%, rgba(19, 46, 83, 0) 80%);
  text-align: center;
  margin-bottom: 1em;
}
.directory-detail .photoAndCTA .photo .reg-photo {
  display: inline-block;
}
.directory-detail .photoAndCTA .photo .alt-photo {
  display: none;
}
.directory-detail .photoAndCTA .photo.has-alt-photo:hover .reg-photo {
  display: none;
}
.directory-detail .photoAndCTA .photo.has-alt-photo:hover .alt-photo {
  display: inline-block;
}
.directory-detail .photoAndCTA .actions {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1em;
  width: 100vw;
  position: fixed;
  bottom: 0;
  left: 0;
  background: var(--blue);
  z-index: 100;
  padding: 1em var(--mobile-padding);
}
.directory-detail .photoAndCTA .actions .accordion-button {
  position: relative;
  z-index: 101;
  color: white;
}
.directory-detail .photoAndCTA .actions .accordion-button span {
  position: relative;
}
.directory-detail .photoAndCTA .actions .accordion-button span:before {
  content: "";
  position: relative;
  right: -8.5em;
  top: 2px;
  border-radius: 1px;
  width: 0.25em;
  height: 1em;
  background-color: var(--tertiary-color);
  display: inline-block;
  transition: transform 0.2s ease-in-out;
}
.directory-detail .photoAndCTA .actions .accordion-button span:after {
  content: "";
  position: relative;
  border-radius: 1px;
  right: -1.5em;
  top: 2px;
  width: 0.25em;
  height: 1em;
  background-color: var(--tertiary-color);
  display: inline-block;
  transform: rotate(90deg);
}
.directory-detail .photoAndCTA .actions .accordion-content {
  margin: 0 auto;
  display: none;
}
@media screen and (min-width: 980px) {
  .directory-detail .photoAndCTA .actions .accordion-content {
    display: block !important;
  }
}
.directory-detail .photoAndCTA .actions .accordion-content .container {
  padding: 2em;
  display: grid;
  grid-gap: 1em;
  grid-template-columns: max-content;
  margin: 0 auto;
}
@media screen and (min-width: 980px) {
  .directory-detail .photoAndCTA .actions .accordion-content .container {
    padding: 0;
  }
}
@media screen and (max-width: 980px) {
  .directory-detail .photoAndCTA .actions .accordion-content .container .ghost-btn {
    color: var(--white);
  }
}
@media screen and (min-width: 980px) {
  .directory-detail .photoAndCTA .actions {
    position: relative;
    background: none;
    width: 100%;
  }
  .directory-detail .photoAndCTA .actions .accordion-button {
    display: none;
  }
}
.directory-detail .photoAndCTA .actions.active .accordion-button span:before {
  transform: rotate(90deg);
}
@media screen and (min-width: 980px) {
  .directory-detail .info {
    padding-top: 3em;
  }
}
.directory-detail .info .f-h1 {
  color: var(--blue);
  font-size: clamp(2.5rem, 3vw, 3.8rem);
  margin-bottom: 0;
}
.directory-detail .info p {
  font-size: 1.6rem;
  color: var(--gray);
  margin-bottom: 0.5em;
}
.directory-detail .info .contact {
  margin-bottom: 1.5em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.directory-detail .info .contact ul {
  list-style: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
}
.directory-detail .info .contact ul.contact-info li {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--heading-font);
}
.directory-detail .info .contact ul.contact-info li:after {
  content: " | ";
  color: var(--tertiary-color);
  font-weight: 700;
  padding: 0 10px;
}
.directory-detail .info .contact ul.contact-info li:last-of-type:after {
  content: none;
}
.directory-detail .info .contact ul.social li {
  padding: 0 0.5em;
}
@media screen and (max-width: 980px) {
  .directory-detail .info .contact ul.social li {
    align-items: flex-end;
  }
}
.directory-detail .info .contact ul.social li img {
  min-width: 25px;
}
.directory-detail .info .bio {
  border-top: 1px solid var(--blue);
  padding-top: 1.5em;
}

.hydrated .directory-detail .photoAndCTA .cta-buttons {
  max-width: 260px;
}

.breadcrumb-area {
  padding: 3em var(--mobile-padding) 1em;
  font-size: 1.2rem;
  margin-bottom: 3em;
}
.breadcrumb-area > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .breadcrumb-area {
    display: none;
  }
}
.breadcrumb-area a {
  color: var(--black);
  text-decoration: none;
}
.breadcrumb-area a:after {
  content: "|";
  margin: 0 0.7em;
}
.breadcrumb-area *:last-child:after {
  content: none;
}

.team-header {
  padding: 20px 0 0;
  margin-bottom: 4em;
}
@media screen and (min-width: 980px) {
  .team-header {
    padding: 80px var(--mobile-padding) 0;
    background: linear-gradient(180deg, rgba(var(--white), 1) 0%, rgba(var(--white), 1) 80px, #f6f6f6 80px);
    position: relative;
  }
  .team-header:after {
    content: "";
    width: 50vw;
    height: calc(100% - 80px);
    display: block;
    background: #E3E3E3;
    position: absolute;
    z-index: 0;
    bottom: 0;
    right: 0;
  }
  .heartland .team-header:after {
    width: 100vw;
  }
}
.team-header > .content {
  position: relative;
  z-index: 1;
  max-width: var(--max-wrap);
  margin: 0 auto;
}
@media screen and (min-width: 980px) {
  .team-header > .content {
    background: rgb(246, 246, 246);
    background: linear-gradient(90deg, #f6f6f6 0%, #f6f6f6 calc(50% - clamp(100px, 40vw, 500px)), #e3e3e3 calc(50% - clamp(100px, 40vw, 500px)));
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 40px;
  }
  .heartland .team-header > .content {
    background: #E3E3E3;
  }
}
.team-header > .content .photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1.25;
}
@media screen and (max-width: 980px) {
  .team-header > .content .photo {
    background: linear-gradient(180deg, rgba(var(--white), 1) 0%, rgba(var(--white), 1) 80px, #e3e3e3 80px);
  }
}
.team-header > .content .photo:before {
  content: "";
  position: absolute;
  aspect-ratio: 160/181;
  background-image: url(/Content/Images/internal-header-wings.svg);
  background-size: contain;
  background-repeat: no-repeat;
  top: 0;
  left: -90px;
  right: 0;
  height: 100%;
  z-index: 0;
}
.heartland .team-header > .content .photo:before {
  content: none;
}

@media screen and (max-width: 980px) {
  .team-header > .content .photo:before {
    height: calc(100% - 80px);
    top: auto;
    left: 0;
    bottom: 0;
    z-index: 1;
  }
}
@media screen and (max-width: 980px) {
  .team-header > .content .photo:after {
    content: "";
    width: 50%;
    height: calc(100% - 80px);
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    background: #F6F6F6;
    z-index: 0;
  }
}
.team-header > .content .photo img {
  position: absolute;
  width: 100%;
  height: calc(100% + 80px);
  object-fit: contain;
  object-position: bottom;
  bottom: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 980px) {
  .team-header > .content .photo img {
    width: 90%;
    left: 5%;
  }
}
.team-header > .content .info-area {
  display: grid;
  padding: 3em 2em;
  background: #F6F6F6;
}
@media screen and (min-width: 980px) {
  .team-header > .content .info-area {
    grid-template-columns: 1fr 1fr;
    grid-gap: 40px;
    padding: 4em 0;
    background: none;
  }
}
@media screen and (max-width: 980px) {
  .team-header > .content .info-area .info {
    text-align: center;
    margin-bottom: 2em;
  }
}
.team-header > .content .info-area .info h1 {
  color: var(--black);
  margin-bottom: 0;
}
.team-header > .content .info-area .info .position {
  font-weight: 700;
  margin-bottom: 1.5em;
  font-size: clamp(1.6rem, 2vw, 2rem);
}
.team-header > .content .info-area .info dl {
  display: flex;
  padding: 0;
  flex-wrap: wrap;
  column-gap: 7px;
  font-weight: 700;
  margin-bottom: 0.7em;
  font-size: clamp(1.6rem, 2vw, 2rem);
}
@media screen and (max-width: 980px) {
  .team-header > .content .info-area .info dl {
    justify-content: center;
  }
}
.team-header > .content .info-area .info dl dd, .team-header > .content .info-area .info dl dt {
  padding: 0;
  margin: 0;
}
.team-header > .content .info-area .info dl dt {
  font-weight: 400;
}
@media screen and (min-width: 980px) {
  .team-header > .content .info-area > .actions {
    padding: 0 40px;
    border-left: solid 1px #CCC;
  }
}
.team-header > .content .info-area > .actions .employee-links {
  display: grid;
  grid-gap: 0.4em;
}

.locations-list-page {
  max-width: 1050px;
  margin: auto;
  padding: 1em;
}
@media screen and (min-width: 1500px) {
  .locations-list-page {
    max-width: 1400px;
  }
}
.locations-list-page .location-header {
  text-align: center;
}
.locations-list-page .location-header h1 {
  color: #18302C;
}
.locations-list-page .location-header .js-location-filters {
  margin: auto;
  max-width: 400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #E8E8E8;
  border-radius: 35px;
  padding: 5px;
}
.locations-list-page .location-header .js-location-filters .filter {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 35px;
  padding: 10px;
  transition: all 0.2s ease-in-out;
  gap: 0.5em;
}
.locations-list-page .location-header .js-location-filters .filter.active {
  background-color: #9FA3FF;
  font-weight: bold;
}
.locations-list-page .location-header .js-location-filters .filter:not(.active):hover {
  background-color: #E8E8E8;
}
.locations-list-page .locations-list {
  margin: auto;
  max-width: 1000px;
  display: grid;
  grid-template-columns: repeat(auto-fit, 375px);
  justify-content: center;
  padding: 2em 0;
  gap: 2rem;
}
@media screen and (min-width: 1500px) {
  .locations-list-page .locations-list {
    max-width: 1400px;
  }
}
.locations-list-page .locations-list .location-item {
  width: 375px;
  border-radius: 24px;
  border: 2px solid #18302C;
  overflow: hidden;
}
.locations-list-page .locations-list .location-item .location-img {
  position: relative;
}
.locations-list-page .locations-list .location-item .location-img::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 20%;
  background-color: #9FA3FF;
  bottom: -10px;
  left: 2em;
}
.locations-list-page .locations-list .location-item .info {
  padding: 2em;
}
.locations-list-page .locations-list .location-item .info .location-services {
  margin-bottom: 1em;
}
.locations-list-page .locations-list .location-item .info .location-services * {
  display: inline;
}
.locations-list-page .locations-list .location-item .info .location-services img {
  width: 20px;
  margin-right: 0.25em;
  filter: invert(91%) sepia(89%) saturate(282%) hue-rotate(116deg) brightness(122%) contrast(91%);
}
.locations-list-page .locations-list .location-item .info .location-services img:first-of-type {
  margin-left: 0.5em;
}
.locations-list-page .locations-list .location-item .info .location-actions {
  text-align: center;
  padding-top: 2em;
}
.locations-list-page .locations-list .location-item .info .location-actions a {
  width: 80%;
  margin-bottom: 0.5em;
  padding: 0.65em 2.2em 0.65em 2.2em;
}
.locations-list-page .locations-more-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  padding: 2em 0;
}
@media screen and (max-width: 980px) {
  .locations-list-page .locations-more-info {
    display: block;
  }
}
.locations-list-page .locations-more-info .info-card {
  background-color: #18302C;
  text-align: center;
  border-radius: 24px;
  padding: 2em;
}
@media screen and (max-width: 980px) {
  .locations-list-page .locations-more-info .info-card {
    margin-bottom: 1em;
  }
}
.locations-list-page .locations-more-info .info-card img {
  margin: 4em auto;
  text-align: center;
  max-height: 150px;
  position: relative;
}
.locations-list-page .locations-more-info .info-card p, .locations-list-page .locations-more-info .info-card h2 {
  color: #fff !important;
}
.locations-list-page .locations-more-info .info-card p {
  text-align: left;
}
.locations-list-page .locations-more-info .info-card .actions a {
  display: block;
}
.locations-list-page .locations-more-info .info-card .actions a:not(:last-of-type) {
  margin-bottom: 1em;
}
.locations-list-page .itm-info {
  padding: 4em;
  border: 1px solid #18302C;
  border-radius: 24px;
}
.locations-list-page .holiday-hours {
  padding: 4em;
  border: 1px solid #18302C;
  border-radius: 24px;
}
.locations-list-page .holiday-hours h2 {
  text-align: center;
}
.locations-list-page .holiday-hours h2 img {
  margin-right: 0.5em;
}
.locations-list-page .holiday-hours ul {
  padding: 0;
  column-width: 250px;
  column-gap: 2rem;
  list-style: none;
  margin: 0;
}
.locations-list-page .holiday-hours ul li {
  break-inside: avoid;
  margin-bottom: 1em;
}
.locations-list-page .holiday-hours ul li .date {
  font-size: 2.75rem;
  margin-right: 5px;
}

.locations-detail-wrap {
  max-width: 1250px;
  margin: auto;
  padding: 1em;
}

.locations-detail-page .location-detail-header {
  margin-bottom: 3rem;
  background-color: #18302C;
  margin-top: 4em;
}
.locations-detail-page .location-detail-header .location-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  overflow: hidden;
  max-width: 1275px;
  padding: 2em;
  margin: auto;
}
@media screen and (max-width: 980px) {
  .locations-detail-page .location-detail-header .location-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.locations-detail-page .location-detail-header .location-hero .ghost-btn-white {
  min-width: 273px;
}
.locations-detail-page .location-detail-header .location-hero .branch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
}
@media screen and (max-width: 980px) {
  .locations-detail-page .location-detail-header .location-hero .branch-image {
    max-height: 200px;
  }
}
.locations-detail-page .location-detail-header .location-hero .location-header-info {
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.locations-detail-page .location-detail-header .location-hero .location-header-info h1 {
  color: white;
  margin-bottom: 1rem;
}
.locations-detail-page .location-detail-header .location-hero .location-header-info h1 .branch-label {
  font-weight: normal;
  font-size: 0.8em;
}
.locations-detail-page .location-detail-header .location-hero .location-header-info .header-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 980px) {
  .locations-detail-page .location-detail-header .location-hero .location-header-info .header-buttons {
    justify-content: center;
    display: block;
  }
  .locations-detail-page .location-detail-header .location-hero .location-header-info .header-buttons a {
    margin-top: 1em;
  }
}
.locations-detail-page .location-detail-header .location-hero .location-header-info .header-buttons a.google-btn img {
  width: 20px;
  height: 20px;
}
.locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info {
  display: flex;
  gap: 3rem;
}
@media screen and (max-width: 980px) {
  .locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info {
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
  }
}
.locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info .address-info,
.locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info .phone-info {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info .address-info img,
.locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info .phone-info img {
  width: 24px;
  height: 24px;
  margin-top: 0.25rem;
}
.locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info .address-info p,
.locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info .phone-info p {
  margin: 0;
  color: white;
  line-height: 1.5;
}
.locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info .address-info a,
.locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info .phone-info a {
  color: white;
  text-decoration: none;
}
.locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info .address-info a:hover,
.locations-detail-page .location-detail-header .location-hero .location-header-info .contact-info .phone-info a:hover {
  text-decoration: underline;
}
.locations-detail-page .location-info {
  margin-bottom: 3rem;
}
.locations-detail-page .location-info .services-full-container {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}
.locations-detail-page .location-info .services-full-container:not(:has(.services-sidebar)) {
  display: block;
}
@media screen and (max-width: 980px) {
  .locations-detail-page .location-info .services-full-container {
    grid-template-columns: 1fr;
  }
}
.locations-detail-page .location-info .services-full-container .services-sidebar {
  background-color: #18302C;
  border-radius: 24px;
  padding: 2rem;
  color: white;
}
.locations-detail-page .location-info .services-full-container .services-sidebar h2 {
  color: white;
  margin-bottom: 2rem;
  text-align: center;
}
.locations-detail-page .location-info .services-full-container .services-sidebar .services-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2em;
}
.locations-detail-page .location-info .services-full-container .services-sidebar .services-grid .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1em;
}
.locations-detail-page .location-info .services-full-container .services-sidebar .services-grid .service-item img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
}
.locations-detail-page .location-info .services-full-container .services-sidebar .services-grid .service-item p {
  margin: 0;
  font-size: 1.6rem;
  color: white;
}
.locations-detail-page .location-info .services-full-container .content-area {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.locations-detail-page .location-info .services-full-container .hours-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.locations-detail-page .location-info .services-full-container .hours-grid:has(> div:nth-child(2):last-child) {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 980px) {
  .locations-detail-page .location-info .services-full-container .hours-grid {
    grid-template-columns: 1fr;
  }
}
.locations-detail-page .location-info .services-full-container .hours-grid .hours-card {
  border: solid 1px #18302C;
  border-radius: 16px;
  padding: 1.5rem;
}
.locations-detail-page .location-info .services-full-container .hours-grid .hours-card h3 {
  margin-bottom: 1rem;
  color: #18302C;
}
.locations-detail-page .location-info .services-full-container .hours-grid .hours-card dl {
  margin: 0;
}
.locations-detail-page .location-info .services-full-container .hours-grid .hours-card dl dt {
  font-weight: 600;
  color: #333;
  margin-bottom: 0.25rem;
}
.locations-detail-page .location-info .services-full-container .hours-grid .hours-card dl dd {
  margin: 0 0 1rem 0;
  color: #666;
}
.locations-detail-page .location-info .services-full-container .hours-grid .hours-card dl:last-child dd {
  margin-bottom: 0;
}
.locations-detail-page .location-info .services-full-container .hours-grid .hours-card .atm-message {
  margin-bottom: 0;
  margin-top: 1em;
  color: #333;
}
.locations-detail-page .location-info .services-full-container .itm-services-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  background-color: #9FA3FF;
  border-radius: 24px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .locations-detail-page .location-info .services-full-container .itm-services-banner {
    grid-template-columns: 1fr;
  }
}
.locations-detail-page .location-info .services-full-container .itm-services-banner .itm-image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.locations-detail-page .location-info .services-full-container .itm-services-banner .itm-info-section {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.locations-detail-page .location-info .services-full-container .itm-services-banner .itm-info-section h3 {
  margin-bottom: 1rem;
}
.locations-detail-page .location-info .services-full-container .itm-services-banner .itm-info-section h3, .locations-detail-page .location-info .services-full-container .itm-services-banner .itm-info-section p {
  color: #18302C;
}
.locations-detail-page .locations-list {
  margin: auto;
  max-width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 2em 0;
  gap: 2rem;
}
.locations-detail-page .locations-list .location-item {
  width: 375px;
  border-radius: 24px;
  border: 1px solid #18302C;
}
.locations-detail-page .locations-list .location-item .location-img {
  position: relative;
}
.locations-detail-page .locations-list .location-item .location-img::after {
  position: absolute;
  content: "";
  height: 10px;
  width: 20%;
  background-color: #9FA3FF;
  bottom: -10px;
  left: 15%;
}
.locations-detail-page .locations-list .location-item .info {
  padding: 2em;
}
.locations-detail-page .locations-list .location-item .info .location-services {
  margin-bottom: 1em;
}
.locations-detail-page .locations-list .location-item .info .location-services * {
  display: inline;
}
.locations-detail-page .locations-list .location-item .info .location-services img {
  width: 1em;
  margin-right: 0.25em;
}
.locations-detail-page .locations-list .location-item .info .location-services img:first-of-type {
  margin-left: 0.5em;
}
.locations-detail-page .locations-list .location-item .info .location-actions {
  text-align: center;
  padding-top: 2em;
}
.locations-detail-page .locations-list .location-item .info .location-actions a {
  width: 80%;
  margin-bottom: 0.5em;
}
.locations-detail-page .locations-more-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
  padding: 2em 0;
}
@media screen and (max-width: 980px) {
  .locations-detail-page .locations-more-info {
    display: block;
  }
}
.locations-detail-page .locations-more-info .info-card {
  background-color: #18302C;
  text-align: center;
  border-radius: 24px;
  padding: 2em;
}
@media screen and (max-width: 980px) {
  .locations-detail-page .locations-more-info .info-card {
    margin-bottom: 1em;
  }
}
.locations-detail-page .locations-more-info .info-card img {
  margin: 4em auto;
  text-align: center;
  max-height: 150px;
  position: relative;
}
.locations-detail-page .locations-more-info .info-card p, .locations-detail-page .locations-more-info .info-card h2 {
  color: #fff !important;
}
.locations-detail-page .locations-more-info .info-card p {
  text-align: left;
}
.locations-detail-page .locations-more-info .info-card .actions a {
  display: block;
}
.locations-detail-page .locations-more-info .info-card .actions a:not(:last-of-type) {
  margin-bottom: 1em;
}
.locations-detail-page .holiday-hours {
  padding: 4em;
  border: 1px solid #18302C;
  border-radius: 24px;
}
.locations-detail-page .holiday-hours h2 {
  text-align: center;
}
.locations-detail-page .holiday-hours h2 img {
  margin-right: 0.5em;
}
.locations-detail-page .holiday-hours > p {
  text-align: center;
  margin-bottom: 2em;
}
.locations-detail-page .holiday-hours ul {
  padding: 0;
  column-width: 250px;
  column-gap: 2rem;
  list-style: none;
  margin: 0;
}
.locations-detail-page .holiday-hours ul li {
  break-inside: avoid;
  margin-bottom: 1em;
}
.locations-detail-page .holiday-hours ul li .date {
  font-size: 2.75rem;
  margin-right: 5px;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

.tab-section {
  padding: 3em var(--mobile-padding);
}
.tab-section > .content {
  margin: 0 auto;
  max-width: 1260px;
}
.tab-section > .content > h2 {
  margin-bottom: 0.7em;
  text-align: center;
}
.tab-section > .content .tabs .js-tab-header {
  display: none;
}
body:has(.ktc-admin-ui) .js-tab-header {
  display: block !important;
  background: var(--hrcu-river);
  padding: 0.5em 1em;
  margin: 0 -1em;
  width: calc(100% + 2em);
  margin-bottom: 1em;
  text-align: left;
}

.tab-section > .content .tabs .js-tab {
  display: none;
}
.tab-section > .content .tabs .js-tab.active {
  display: block;
}
.tab-section > .content .tabs .js-tab:nth-of-type(2) .cards:before {
  filter: var(--blue-filter);
  right: 0;
  left: auto;
  top: -20px;
  transform: translateX(50%);
}
body:has(.ktc-admin-ui) .js-tab {
  border: solid 2px var(--hrcu-river) !important;
  padding: 0 1em 1em !important;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1em;
}

.tab-section > .content .tabs .tab-nav {
  display: flex;
  column-gap: 0.3em;
  justify-content: center;
  padding: 5px;
  border-radius: 50px;
  border: solid 2px #E8E8E8;
  width: max-content;
  margin: 0 auto 2em;
}
.tab-section > .content .tabs .tab-nav button {
  width: 140px;
  padding: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5em;
  border-radius: 50px;
  font-weight: 500;
  font-family: var(--heading-font);
}
@media screen and (min-width: 980px) {
  .tab-section > .content .tabs .tab-nav button {
    width: 200px;
  }
}
.tab-section > .content .tabs .tab-nav button.active {
  background: var(--hrcu-river);
}
.tab-section > .content .tabs .tab-nav button:nth-child(2).active {
  background: var(--hrcu-sunset);
  color: var(--white);
}
.tab-section > .content .tabs .tab-nav button:nth-child(2).active img {
  filter: brightness(100);
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .account-block-full > .content > .info .actions a:first-of-type, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .account-block-full > .content > .info .actions a:hover:first-of-type, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .account-block-full > .content > .info .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .account-block-full > .content > .info .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .account-block-full > .content > .info .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.account-block-full {
  --highlightColor: none;
  --textColor: var(--black);
  --svgColor: none;
  --backgroundColor: none;
  padding: 3em var(--mobile-padding);
}
@media screen and (min-width: 980px) {
  .account-block-full:nth-child(even of .account-block-full) .photo {
    order: 2;
  }
}
.content .account-block-full {
  padding: 3em 0;
}
.account-block-full > .content {
  display: grid;
  grid-gap: 10px;
  max-width: var(--max-wrap);
  margin: 0 auto;
}
@media screen and (min-width: 980px) {
  .account-block-full > .content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}
@media screen and (max-width: 980px) {
  .account-block-full > .content > .photo {
    width: 100%;
    aspect-ratio: 4/3;
  }
}
.account-block-full > .content > .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}
.account-block-full > .content > .info {
  padding: 1em;
}
@media screen and (min-width: 980px) {
  .account-block-full > .content > .info {
    padding: 3em 4em;
  }
}
.account-block-full > .content > .info h2 {
  margin-bottom: 0.7em;
  font-weight: 300;
}
@media screen and (max-width: 980px) {
  .account-block-full > .content > .info h2 {
    text-align: center;
  }
}
.account-block-full > .content > .info .copy {
  margin-bottom: 2em;
}
.account-block-full > .content > .info .copy *:last-child {
  margin: 0;
}
.account-block-full > .content > .info .copy ul {
  padding: 0;
  list-style: none;
}
.account-block-full > .content > .info .copy ul li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 1em;
}
.account-block-full > .content > .info .copy ul li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/Content/images/checkmark.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 0;
}
.account-block-full > .content > .info .actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max-content, 250px));
  grid-gap: 0.5em;
}
@media screen and (max-width: 980px) {
  .account-block-full > .content > .info .actions {
    justify-content: center;
  }
}
.account-block-full .disclosure > button {
  margin: 3rem 0;
  background: #EEEAE1;
  padding: 0.7em 3em 0.7em 1.5em;
  border-radius: 10px;
  display: block;
  position: relative;
}
.account-block-full .disclosure > button:before, .account-block-full .disclosure > button:after {
  content: "";
  width: 15px;
  height: 1px;
  background: var(--black);
  position: absolute;
  display: block;
  top: 50%;
  right: 1.5em;
}
.account-block-full .disclosure > button:after {
  transform: rotate(-90deg);
  transition: transform 0.5s ease;
}
.account-block-full .disclosure > .disclosure-copy {
  display: none;
  padding: 1em;
}
.account-block-full .disclosure.open {
  background: #EEEAE1;
  border-radius: 15px;
  text-align: left;
}
.account-block-full .disclosure.open > button:after {
  transform: rotate(0);
}
.account-block-full .disclosure.open > .disclosure-copy {
  display: block;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

.account-tabs {
  padding: 3em var(--mobile-padding);
}
.account-tabs > .content {
  margin: 0 auto;
}
.account-tabs > .content > h2 {
  margin-bottom: 0.7em;
  text-align: center;
}
.account-tabs > .content .tabs .js-tab-header {
  display: none;
}
.account-tabs > .content .tabs .js-tab {
  display: none;
}
.account-tabs > .content .tabs .js-tab cards * {
  opacity: 1;
  transition: 0.2s ease-in-out;
}
@starting-style {
  .account-tabs > .content .tabs .js-tab cards * {
    opacity: 0;
  }
}
body:has(.ktc-admin-ui) .account-tabs > .content .tabs .js-tab {
  display: block;
}

.account-tabs > .content .tabs .js-tab.active {
  display: block;
}
.account-tabs > .content .tabs .js-tab:nth-of-type(2) .cards:before {
  filter: var(--blue-filter);
  right: 0;
  left: auto;
  top: -20px;
  transform: translateX(50%);
}
.account-tabs > .content .tabs .tab-nav {
  display: flex;
  column-gap: 0.3em;
  justify-content: center;
  padding: 5px;
  border-radius: 50px;
  border: solid 2px #E8E8E8;
  width: max-content;
  margin: 0 auto 2em;
}
@media screen and (max-width: 980px) {
  .account-tabs > .content .tabs .tab-nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 30px;
    max-width: max-content;
  }
}
.account-tabs > .content .tabs .tab-nav button {
  width: 200px;
  padding: 8px 15px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  column-gap: 0.5em;
  border-radius: 30px;
  font-weight: 500;
  font-family: var(--heading-font);
}
.account-tabs > .content .tabs .tab-nav button img {
  width: 32px;
}
@media screen and (max-width: 980px) {
  .account-tabs > .content .tabs .tab-nav button {
    width: 225px;
  }
}
@media screen and (min-width: 980px) {
  .account-tabs > .content .tabs .tab-nav button {
    padding: 8px;
    border-radius: 50px;
    width: 200px;
    justify-content: center;
  }
}
.account-tabs > .content .tabs .tab-nav button.active {
  background: var(--pageHighlightColor);
}
body:has(.feature .image-back) .account-tabs > .content .tabs .tab-nav button:nth-child(2).active {
  background: var(--hrcu-sunset);
  color: var(--white);
}
body:has(.feature .image-back) .account-tabs > .content .tabs .tab-nav button:nth-child(2).active img {
  filter: brightness(100);
}

.disclosure > button {
  margin: 0 auto;
  background: #EEEAE1;
  padding: 0.7em 3em 0.7em 1.5em;
  border-radius: 10px;
  display: block;
  position: relative;
}
.disclosure > button:before, .disclosure > button:after {
  content: "";
  width: 15px;
  height: 1px;
  background: var(--black);
  position: absolute;
  display: block;
  top: 50%;
  right: 1.5em;
}
.disclosure > button:after {
  transform: rotate(-90deg);
  transition: transform 0.5s ease;
}
.disclosure > .disclosure-copy {
  display: none;
  padding: 1em;
}
.disclosure.open {
  background: #EEEAE1;
  border-radius: 15px;
  text-align: left;
}
.disclosure.open > button:after {
  transform: rotate(0);
}
.disclosure.open > .disclosure-copy {
  display: block;
}

.rate-section {
  padding: 3em var(--mobile-padding);
}
.rate-section:has(.actions) {
  padding: 1.5em var(--mobile-padding) 3em var(--mobile-padding);
}
.content .rate-section {
  padding: 3em 0;
}
.content .rate-section:has(.actions) {
  padding: 1.5em 0 3em 0;
}
.rate-section > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
}
.rate-section > .content .rate-section-header {
  text-align: center;
  margin-bottom: 2em;
}
@media screen and (max-width: 980px) {
  .rate-section > .content .table {
    overflow: auto;
    margin-bottom: 1em;
  }
}
.rate-section > .content .table table {
  width: 100%;
  margin-bottom: 1em;
}
.rate-section > .content .table table th {
  text-align: center;
  padding: 0.7em 1em;
}
.rate-section > .content .table table td {
  padding: 0.7em 1em;
  text-align: left;
  font-size: clamp(1.6rem, 1.4vw, 1.8rem);
  font-weight: 300;
  background: #F3F1E8;
  border-left: solid 2px var(--black);
}
.rate-section > .content .table table tr:nth-child(odd) td {
  background: var(--white);
}
.rate-section > .content .disclosure > button {
  margin: 0 auto 0 0;
}
@media screen and (min-width: 980px) {
  .rate-section > .content .mobile-only {
    display: none;
  }
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

.financial-wellness {
  --highlightColor: var(--hrcu-deep-forest);
  --textColor: var(--white);
  --svgColor: none;
  padding: 3em var(--mobile-padding);
  background: var(--highlightColor);
}
.financial-wellness > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
}
.financial-wellness > .content > h2 {
  color: var(--textColor);
  margin-bottom: 1em;
  text-align: center;
}
.financial-wellness > .content .cards .card {
  max-width: 400px;
}
.financial-wellness > .content .cards .card .photo {
  aspect-ratio: 44/25;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.5em;
  border: solid 2px #1C7540;
}
.financial-wellness > .content .cards .card .photo img, .financial-wellness > .content .cards .card .photo video {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
.financial-wellness > .content .cards .card .info {
  text-align: center;
}
.financial-wellness > .content .cards .card .info h3 {
  color: var(--textColor);
  margin-bottom: 1.5em;
}
.financial-wellness > .content .cards .card .info .actions {
  text-align: center;
}
.financial-wellness > .content .cards .card .info .actions a {
  color: var(--textColor);
}
@media screen and (min-width: 980px) {
  .financial-wellness > .content .splide__list {
    display: flex !important;
    flex-wrap: nowrap;
    column-gap: clamp(10px, 1vw, 30px);
    justify-content: center;
  }
  .financial-wellness > .content .splide__list > li {
    flex: 0 1 400px;
  }
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

.calculators {
  padding: 3em var(--mobile-padding);
}
.calculators > .content {
  margin: 0 auto;
}
.calculators > .content > h2 {
  margin-bottom: 0.7em;
  text-align: center;
}
.calculators > .content > h2 img {
  margin-right: 7px;
}
.calculators > .content .tabs .js-tab-header {
  display: none;
}
.calculators > .content .tabs .js-tab {
  display: none;
}
.calculators > .content .tabs .js-tab.active {
  display: block;
}
.calculators > .content .tabs .js-tab:nth-of-type(2) .cards:before {
  filter: var(--blue-filter);
  right: 0;
  left: auto;
  top: -20px;
  transform: translateX(50%);
}
.calculators > .content .tabs .tab-nav {
  display: flex;
  column-gap: 0.3em;
  justify-content: center;
  width: max-content;
  margin: 0 auto 2em;
}
.calculators > .content .tabs .tab-nav:after {
  content: none !important;
}
@media screen and (max-width: 980px) {
  .calculators > .content .tabs .tab-nav {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 30px;
  }
}
.calculators > .content .tabs .tab-nav button {
  border: solid 2px var(--white);
  font-weight: 500;
  font-family: var(--heading-font);
  margin: 0 auto;
  background: #EEEAE1;
  padding: 0.7em 3em 0.7em 1.5em;
  border-radius: 10px;
  text-align: left;
  display: block;
  position: relative;
}
.calculators > .content .tabs .tab-nav button:before, .calculators > .content .tabs .tab-nav button:after {
  content: "";
  width: 15px;
  height: 1px;
  background: var(--black);
  position: absolute;
  display: block;
  top: 50%;
  right: 1.5em;
}
.calculators > .content .tabs .tab-nav button:after {
  transform: rotate(-90deg);
  transition: transform 0.5s ease;
}
.calculators > .content .tabs .tab-nav button.active {
  border-color: var(--hrcu-deep-forest);
}
.calculators > .content .tabs .tab-nav button.active:after {
  transform: rotate(0);
}
.calculators > .content .calculator {
  padding: 0 var(--mobile-padding);
}
.calculators > .content .calculator > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  border: solid 2px var(--hrcu-deep-forest);
  border-radius: 20px;
}
.calculators > .content .calc-container {
  background-color: var(--white);
}

.calc-container {
  background-color: var(--white) !important;
}

.calc-container .container .box {
  background: none !important;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
  background: none !important;
}
.captioned-photo {
  margin: auto;
  max-width: 400px;
}
.captioned-photo img {
  border-radius: 24px;
  width: 100%;
}
.captioned-photo .caption {
  display: block;
  padding-left: 12px;
  padding-top: 8px;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .card-grid > .content .card .info .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .card-grid > .content .card .info .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .card-grid > .content .card .info .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.card-grid {
  --highlightColor: var(--hrcu-spring);
  --textColor: var(--black);
  --svgColor: none;
  padding: 3em var(--mobile-padding);
}
.content .card-grid {
  padding: 3em 0;
}
.card-grid > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
}
.card-grid > .content > h2 {
  text-align: center;
  margin-bottom: 1.5em;
}
.card-grid > .content > .copy {
  max-width: var(--max-wrap-small);
  margin: 0 auto;
  margin: 0 auto 2em;
}
.card-grid > .content .cards {
  display: grid;
  grid-gap: clamp(30px, 3vw, 50px);
  justify-content: center;
  grid-template-columns: 1fr;
  max-width: 1216px;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 980px) {
  .card-grid > .content .cards {
    grid-template-columns: repeat(auto-fit, 372px);
  }
}
.card-grid > .content .cards:before {
  content: "";
  width: 153px;
  height: 230px;
  background: url(/Content/images/mini-logo.svg) no-repeat;
  background-size: contain;
  filter: var(--theme-black-filter);
  display: block;
  position: absolute;
  z-index: 3;
  left: 0;
  top: -20px;
  transform: translateX(-50%);
}
.card-grid > .content .card {
  border: solid 2px var(--black);
  border-radius: 30px;
  overflow: hidden;
}
.card-grid > .content .card .photo {
  aspect-ratio: 37/27;
  position: relative;
}
.card-grid > .content .card .photo img, .card-grid > .content .card .photo video {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
.card-grid > .content .card .photo:after {
  content: "";
  width: 70px;
  height: 8px;
  background-color: var(--highlightColor);
  position: absolute;
  bottom: -8px;
  left: 50px;
}
.card-grid > .content .card .info {
  padding: 2em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 980px) {
  .card-grid > .content .card .info {
    min-height: 300px;
  }
}
.card-grid > .content .card .info .content > h3 {
  font-size: clamp(2rem, 2vw, 2.4rem);
  margin-bottom: 0.8em;
}
.card-grid > .content .card .info .content .copy {
  margin-bottom: 1.5em;
}
.card-grid > .content .card .info .content .copy:last-child {
  margin-bottom: 0;
}
.card-grid > .content .card .info .actions {
  display: grid;
  grid-template-columns: minmax(auto, max-content);
  grid-gap: 0.5em;
  justify-content: center;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .pillars > .content .cards .grid-item .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .pillars > .content .cards .grid-item .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .pillars > .content .cards .grid-item .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.pillars {
  --highlightColor: var(--hrcu-deep-forest);
  --textColor: var(--hrcu-deep-forest);
  --svgColor: none;
  padding: 3em var(--mobile-padding);
  border-bottom: solid 1px #E8E8E8;
}
.pillars > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  max-width: 1600px;
}
.pillars > .content > h2 {
  text-align: center;
  margin-bottom: 1.5em;
}
.pillars > .content > .copy {
  max-width: var(--max-wrap-small);
  margin: 0 auto;
  margin: 0 auto 2em;
  text-align: center;
}
.pillars > .content .cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 40px;
  justify-content: center;
}
@media screen and (min-width: 980px) {
  .pillars > .content .cards {
    grid-template-columns: repeat(auto-fit, 370px);
  }
  .pillars > .content .cards:has(div:nth-child(6)) div:nth-child(4) {
    grid-column-start: 1;
  }
}
.pillars > .content .cards .grid-item {
  padding: 2em 1em;
  position: relative;
}
.pillars > .content .cards .grid-item:after {
  content: "";
  height: 2px;
  width: 100%;
  background: var(--highlightColor);
  position: absolute;
  bottom: -20px;
  left: 0;
}
.pillars > .content .cards .grid-item:last-of-type:after {
  content: none;
}
@media screen and (min-width: 980px) {
  .pillars > .content .cards .grid-item:after {
    content: "";
    width: 2px;
    height: 100%;
    background: #E8E8E8;
    position: absolute;
    top: 0;
    right: -20px;
    left: auto;
  }
}
.pillars > .content .cards .grid-item > img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  margin-bottom: 1em;
  filter: var(--svgColor);
}
.pillars > .content .cards .grid-item > h2 {
  color: var(--highlightColor);
  margin-bottom: 1.2em;
}
.pillars > .content .cards .grid-item .copy {
  margin-bottom: 2em;
}
.pillars > .content .cards .grid-item .actions {
  display: grid;
  grid-template-columns: minmax(auto, max-content);
  grid-gap: 0.5em;
  justify-content: center;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .horizontal-icons > .content .card .info .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .horizontal-icons > .content .card .info .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .horizontal-icons > .content .card .info .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.horizontal-icons {
  --highlightColor: var(--pageHighlightColor);
  --textColor: var(--black);
  --svgColor: none;
  padding: 3em var(--mobile-padding);
}
.content .horizontal-icons {
  padding: 3em 0;
}
.horizontal-icons > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
}
.horizontal-icons > .content > h2 {
  text-align: center;
  margin-bottom: 1.5em;
}
.horizontal-icons > .content > .copy {
  max-width: var(--max-wrap-small);
  margin: 0 auto;
  margin: 0 auto 2em;
}
.horizontal-icons > .content .cards {
  display: grid;
  grid-gap: clamp(30px, 3vw, 50px);
  justify-content: center;
  grid-template-columns: 1fr;
  position: relative;
}
@media screen and (min-width: 980px) {
  .horizontal-icons > .content .cards {
    grid-template-columns: repeat(auto-fit, 372px);
  }
  .horizontal-icons > .content .cards:has(:nth-child(4):last-child) {
    grid-template-columns: repeat(2, 372px);
  }
}
.horizontal-icons > .content .card {
  border: solid 2px var(--black);
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
.horizontal-icons > .content .card:first-of-type {
  overflow: visible;
}
.horizontal-icons > .content .card:first-of-type::before {
  content: "";
  width: 153px;
  height: 230px;
  background: url(/Content/images/mini-logo.svg) no-repeat;
  background-size: contain;
  filter: var(--orange-filter);
  display: block;
  position: absolute;
  z-index: 3;
  left: 0;
  top: -20px;
  transform: translateX(-50%);
  z-index: 0;
}
.horizontal-icons > .content .card:after {
  content: "";
  width: 70px;
  height: 8px;
  background-color: var(--highlightColor);
  position: absolute;
  top: 0px;
  left: 50px;
}
.horizontal-icons > .content .card .photo {
  display: none;
  aspect-ratio: 37/27;
  position: relative;
}
.horizontal-icons > .content .card .photo img, .horizontal-icons > .content .card .photo video {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
.horizontal-icons > .content .card .photo:after {
  content: "";
  width: 70px;
  height: 8px;
  background-color: var(--highlightColor);
  position: absolute;
  bottom: -8px;
  left: 50px;
}
.horizontal-icons > .content .card .info {
  padding: 2em;
}
.horizontal-icons > .content .card .info > h3 {
  font-size: clamp(2rem, 2vw, 2.4rem);
  margin-bottom: 0.8em;
}
.horizontal-icons > .content .card .info .copy {
  margin-bottom: 1.5em;
}
.horizontal-icons > .content .card .info .copy:last-child {
  margin-bottom: 0;
}
.horizontal-icons > .content .card .info .actions {
  display: grid;
  grid-template-columns: minmax(auto, max-content);
  grid-gap: 0.5em;
  justify-content: center;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .ghost-btn-white, .products > .content .cards .card .info .actions a {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .ghost-btn-white, .products > .content .cards .card .info .actions a {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .ghost-btn-white:hover, .products > .content .cards .card .info .actions a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white, .products > .content .cards .card .info .actions a {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover, .products > .content .cards .card .info .actions a:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.products {
  --highlightColor: var(--hrcu-deep-forest);
  --textColor: var(--white);
  --svgColor: none;
  padding: 3em var(--mobile-padding);
}
.products > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  max-width: 1600px;
}
.products > .content > h2 {
  text-align: center;
  margin-bottom: 1.5em;
}
.products > .content > .copy {
  max-width: var(--max-wrap-small);
  margin: 0 auto;
  margin: 0 auto 2em;
}
.products > .content .cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  justify-content: center;
}
@media screen and (min-width: 980px) {
  .products > .content .cards {
    grid-template-columns: repeat(auto-fit, 370px);
  }
}
.products > .content .cards .card {
  border: solid 2px var(--highlightColor);
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 980px) {
  .products > .content .cards .card {
    background: var(--highlightColor);
  }
}
.products > .content .cards .card .photo {
  aspect-ratio: 37/27;
  position: relative;
}
.products > .content .cards .card .photo img, .products > .content .cards .card .photo video {
  object-fit: cover;
  object-position: top;
  width: 100%;
  height: 100%;
}
.products > .content .cards .card .info {
  padding: 2em;
  background: var(--highlightColor);
  color: var(--textColor);
}
.products > .content .cards .card .info:before {
  content: "";
  width: 26px;
  height: 38px;
  background: url(/Content/images/mini-logo.svg) no-repeat;
  background-size: contain;
  display: block;
  margin: 0 auto 1em;
  filter: var(--green-filter);
}
.products > .content .cards .card .info > .content {
  text-align: center;
}
.products > .content .cards .card .info > .content h3 {
  color: var(--textColor);
  font-size: clamp(2rem, 2vw, 2.4rem);
  margin-bottom: 0.8em;
}
.products > .content .cards .card .info > .content .copy {
  margin-bottom: 1.5em;
}
.products > .content .cards .card .info > .content .copy:last-child {
  margin-bottom: 0;
}
.products > .content .cards .card .info .actions {
  display: grid;
  grid-template-columns: minmax(auto, max-content);
  grid-gap: 0.5em;
  justify-content: center;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .ghost-btn-white, .community-involvement > .content .header .info > .actions a {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .ghost-btn-white, .community-involvement > .content .header .info > .actions a {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .ghost-btn-white:hover, .community-involvement > .content .header .info > .actions a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white, .community-involvement > .content .header .info > .actions a {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover, .community-involvement > .content .header .info > .actions a:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.community-involvement {
  --highlightColor: var(--hrcu-sunset);
  --textColor: var(--white);
  --svgColor: none;
  padding: 3em var(--mobile-padding);
}
.community-involvement > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  max-width: 1730px;
  display: grid;
  grid-gap: 12px;
  grid-template-columns: 50% 50%;
}
@media screen and (min-width: 980px) {
  .community-involvement > .content {
    grid-template-columns: 1fr 2fr 2fr 2fr;
    grid-gap: 12px;
  }
}
.community-involvement > .content .header {
  grid-column: 1/3;
}
@media screen and (min-width: 980px) {
  .community-involvement > .content .header {
    padding: 4em 4em;
    display: grid;
    grid-template-columns: 3fr 5fr;
    column-gap: 5em;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    grid-column: 1/5;
  }
}
.community-involvement > .content .header .info {
  justify-content: flex-end;
  display: flex;
  flex-wrap: wrap;
  row-gap: 0;
  flex-direction: column;
}
@media screen and (max-width: 980px) {
  .community-involvement > .content .header .info {
    position: relative;
    padding: 2em 1em;
    margin-bottom: 10px;
  }
}
.community-involvement > .content .header .info > img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
  top: 0;
  left: 0;
}
@media screen and (max-width: 980px) {
  .community-involvement > .content .header .info > img {
    left: calc(-1 * var(--mobile-padding));
    max-width: none;
    width: 100vw;
  }
}
.community-involvement > .content .header .info > h2 {
  font-weight: 500;
  font-size: clamp(6rem, 7vw, 9.5rem);
  margin-bottom: 0.4em;
  color: var(--white);
  line-height: 0.8;
}
.community-involvement > .content .header .info > .actions a {
  background: rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 980px) {
  .community-involvement > .content .header .info > .actions a {
    width: 100%;
  }
}
.community-involvement > .content .header .stats {
  display: grid;
  row-gap: 12px;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 980px) {
  .community-involvement > .content .header .stats {
    column-gap: 12px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.community-involvement > .content .header .stats .stat-box {
  padding: 1em 0.5em;
  border-radius: 30px;
  border: solid 3px var(--hrcu-sunset);
  color: var(--hrcu-deep-forrest);
  backdrop-filter: blur(10px);
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.community-involvement > .content .header .stats .stat-box:nth-child(2) {
  border: solid 3px var(--hrcu-spring);
}
.community-involvement > .content .header .stats .stat-box:nth-child(3) {
  border: solid 3px var(--hrcu-leaf);
}
@media screen and (min-width: 980px) {
  .community-involvement > .content .header .stats .stat-box {
    color: var(--white);
    padding: 2em 1em;
  }
}
.community-involvement > .content .header .stats .stat-box > img {
  object-fit: contain;
  object-position: center;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 980px) {
  .community-involvement > .content .header .stats .stat-box > img {
    filter: var(--green-filter);
  }
}
@media screen and (min-width: 980px) {
  .community-involvement > .content .header .stats .stat-box > img {
    width: 100px;
    height: 100px;
  }
}
.community-involvement > .content .header .stats .stat-box > .f-stat {
  font-weight: 500;
  margin-bottom: 0.1em;
  font-size: 2.7rem;
  color: var(--hrcu-deep-forrest);
}
@media screen and (min-width: 980px) {
  .community-involvement > .content .header .stats .stat-box > .f-stat {
    color: var(--white);
    font-size: clamp(4rem, 5vw, 6.5rem);
  }
}
.community-involvement > .content .social-box {
  background: var(--hrcu-spring);
  text-align: center;
  border-radius: 30px;
  color: var(--hrcu-deep-forrest);
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
@media screen and (max-width: 980px) {
  .community-involvement > .content .social-box {
    grid-column: 1/3;
    flex-direction: row;
    column-gap: 10px;
    height: auto;
    padding: 0.7em;
    align-items: center;
    border-radius: 10px;
  }
}
.community-involvement > .content .social-box .social-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 4px;
}
@media screen and (min-width: 980px) {
  .community-involvement > .content .social-box .social-links {
    grid-template-columns: 1fr 1fr;
  }
}
.community-involvement > .content .social-box .social-links > a {
  display: block;
  opacity: 1;
  transition: opacity 0.2s ease;
}
.community-involvement > .content .social-box .social-links > a:hover {
  opacity: 0.75;
}
@media screen and (max-width: 980px) {
  .community-involvement > .content .photo-1 {
    grid-column: 1/3;
  }
}
.community-involvement > .content .photo-1, .community-involvement > .content .photo-2, .community-involvement > .content .photo-3 {
  border-radius: 30px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top;
  width: 100%;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

.cross-sells {
  padding: 3em var(--mobile-padding);
}
.cross-sells > .content {
  max-width: var(--max-wrap-small);
  margin: 0 auto;
}
.cross-sells > .content > h2 {
  margin-bottom: 1.5em;
  text-align: center;
  font-size: clamp(2.6rem, 3vw, 3.6rem);
}
.cross-sells > .content .cross-sell-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
}
.cross-sells > .content .cross-sell-list .cross-sell {
  display: grid;
  grid-template-columns: 5fr 8fr;
  border: solid 2px var(--black);
  border-radius: 0 20px 20px 20px;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  .cross-sells > .content .cross-sell-list .cross-sell {
    border: none;
    grid-template-columns: 1fr;
    grid-template-rows: 25vw max-content;
    border-radius: 0;
  }
}
.cross-sells > .content .cross-sell-list .cross-sell:nth-of-type(2n + 2) {
  grid-template-columns: 8fr 5fr;
  border-radius: 20px 20px 0 20px;
}
@media screen and (max-width: 980px) {
  .cross-sells > .content .cross-sell-list .cross-sell:nth-of-type(2n + 2) {
    border: none;
    grid-template-columns: 1fr;
    grid-template-rows: 25vw max-content;
    border-radius: 0;
  }
}
.cross-sells > .content .cross-sell-list .cross-sell:nth-of-type(2n + 2) .photo {
  order: 1;
}
@media screen and (min-width: 980px) {
  .cross-sells > .content .cross-sell-list .cross-sell:nth-of-type(2n + 2) .photo {
    order: 2;
  }
}
.cross-sells > .content .cross-sell-list .cross-sell:nth-of-type(2n + 2) .photo:before {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0;
  background-size: auto 105%;
  background-position: left;
  filter: var(--blue-filter);
}
@media screen and (max-width: 980px) {
  .cross-sells > .content .cross-sell-list .cross-sell:nth-of-type(2n + 2) .photo:before {
    height: 50vw;
    left: auto;
    right: 0;
    border-radius: 0px 20px 0 0px;
    top: 0;
    bottom: 0;
  }
}
.cross-sells > .content .cross-sell-list .cross-sell:nth-of-type(2n + 2) .photo:after {
  left: 7vw;
  filter: var(--blue-filter);
  right: -2em;
}
@media screen and (max-width: 980px) {
  .cross-sells > .content .cross-sell-list .cross-sell:nth-of-type(2n + 2) .photo img, .cross-sells > .content .cross-sell-list .cross-sell:nth-of-type(2n + 2) .photo video {
    border-radius: 20px 20px 0 20px;
    left: auto;
    right: 0;
  }
}
.cross-sells > .content .cross-sell-list .cross-sell:nth-of-type(2n + 2) .info {
  order: 1;
}
@media screen and (max-width: 980px) {
  .cross-sells > .content .cross-sell-list .cross-sell:nth-of-type(2n + 2) .info {
    margin: 0 auto 0 0;
  }
}
.cross-sells > .content .cross-sell-list .cross-sell .photo {
  order: 1;
  width: 100%;
  height: 100%;
  position: relative;
}
.cross-sells > .content .cross-sell-list .cross-sell .photo:before {
  content: "";
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  left: -2em;
  background: url(/Content/images/mini-logo.svg) no-repeat;
  background-size: auto 120%;
  background-position: right;
  opacity: 0.8;
  z-index: 2;
  filter: var(--orange-filter);
}
@media screen and (max-width: 980px) {
  .cross-sells > .content .cross-sell-list .cross-sell .photo:before {
    height: 50vw;
    border-radius: 0px 0 0 20px;
  }
}
@media screen and (max-width: 980px) {
  .cross-sells > .content .cross-sell-list .cross-sell .photo:after {
    content: "";
    width: 30px;
    height: 36px;
    position: absolute;
    top: 0;
    left: 0;
    background: url(/Content/images/mini-logo.svg) no-repeat;
    background-size: contain;
    z-index: 2;
    filter: var(--orange-filter);
    top: 50%;
    right: 7vw;
    left: auto;
  }
}
.cross-sells > .content .cross-sell-list .cross-sell .photo img, .cross-sells > .content .cross-sell-list .cross-sell .photo video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width: 980px) {
  .cross-sells > .content .cross-sell-list .cross-sell .photo img, .cross-sells > .content .cross-sell-list .cross-sell .photo video {
    height: 50vw;
    width: 70vw;
    border-radius: 0 20px 20px 20px;
  }
}
.cross-sells > .content .cross-sell-list .cross-sell .info {
  order: 2;
  padding: 20px 4em;
  min-height: 170px;
  align-content: center;
}
@media screen and (max-width: 980px) {
  .cross-sells > .content .cross-sell-list .cross-sell .info {
    width: calc(100% - 20px);
    margin: 0 0 0 auto;
    padding: calc(25vw + 1em) 1em 2em 1em;
    border: solid 2px var(--black);
    border-radius: 10px;
    min-height: 0;
  }
}
.cross-sells > .content .cross-sell-list .cross-sell .info > h3 {
  margin-bottom: 1em;
}
.cross-sells > .content .cross-sell-list .cross-sell .info .actions a:after {
  filter: brightness(0);
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .ghost-btn-white, .cta-block > .content .actions a {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .ghost-btn-white, .cta-block > .content .actions a {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .ghost-btn-white:hover, .cta-block > .content .actions a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white, .cta-block > .content .actions a {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover, .cta-block > .content .actions a:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.cta-block {
  --highlightColor: var(--hrcu-deep-forest);
  --textColor: var(--white);
  --svgColor: none;
  padding: 3em var(--mobile-padding);
  background: var(--highlightColor);
  color: var(--textColor);
}
.cta-block > .content {
  margin: 0 auto;
}
.cta-block > .content > h2 {
  margin-bottom: 0.7em;
  text-align: center;
  color: var(--white);
}
.cta-block > .content .copy {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2em;
}
.cta-block > .content .actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max-content, 250px));
  grid-gap: 0.5em;
  justify-content: center;
}
@charset "UTF-8";
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .directory-header > .content > .sidebar .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .directory-header > .content > .sidebar .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .directory-header > .content > .sidebar .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.directory-header {
  --highlightColor: var(---hrcu-river);
  --textColor: var(--black);
  --svgColor: none;
}
@media screen and (min-width: 980px) {
  .directory-header {
    padding-top: 1.9em;
    margin: 0 auto;
  }
}
.directory-header > .breadcrumb {
  display: none;
  background: var(--white);
  padding: 0.5em clamp(var(--mobile-padding), 4vw, 2em);
  padding-left: clamp(20px, 3vw, 60px);
}
@media screen and (min-width: 980px) {
  .directory-header > .breadcrumb {
    display: block;
  }
}
.directory-header > .breadcrumb .breadcrumb-nav {
  max-width: 1400px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #8F9998;
}
.directory-header > .breadcrumb .breadcrumb-nav a {
  text-decoration: none;
  font-weight: 300;
  color: #8F9998;
}
.directory-header > .breadcrumb .breadcrumb-nav a:after {
  content: "/";
  display: inline-block;
  margin: 0 0.1em 0 0.2em;
}
.directory-header > .content {
  display: grid;
  position: relative;
  grid-template-areas: "photo" "info" "sidebar" "nav";
  grid-template-columns: 1fr;
}
@media screen and (min-width: 980px) {
  .directory-header > .content {
    grid-gap: 40px;
    grid-template-areas: "info nav sidebar";
    grid-template-columns: 1fr clamp(250px, 22vw, 374px) 290px;
    min-height: 836px;
  }
}
.directory-header > .content > .background {
  grid-area: photo;
  width: 100%;
  aspect-ratio: 43/22;
}
@media screen and (min-width: 980px) {
  .directory-header > .content > .background {
    width: calc(100% - 290px);
    height: 100%;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
  }
  .directory-header > .content > .background:before {
    content: "";
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0) 100%);
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    display: block;
  }
}
.directory-header > .content > .background img, .directory-header > .content > .background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.directory-header > .content > .info {
  padding: 2em var(--mobile-padding);
  grid-area: info;
  color: var(--black);
}
@media screen and (min-width: 980px) {
  .directory-header > .content > .info {
    padding: 2em;
    color: var(--white);
    align-self: center;
    margin: 0 40px;
  }
}
.directory-header > .content > .info h1 {
  color: var(--black);
  margin-bottom: 0;
  font-size: clamp(3.7rem, 7vw, 5rem);
  line-height: 1;
}
@media screen and (min-width: 980px) {
  .directory-header > .content > .info h1 {
    font-size: clamp(8rem, 7vw, 11rem);
    color: var(--white);
  }
}
.directory-header > .content > .info .sub-heading {
  color: var(--black);
  margin-bottom: 0.8em;
  font-weight: 400;
}
@media screen and (min-width: 980px) {
  .directory-header > .content > .info .sub-heading {
    color: var(--white);
    font-size: clamp(2.7rem, 3vw, 3.7rem);
  }
}
.directory-header > .content > .info .copy {
  max-width: 70%;
  margin-top: 1em;
  margin-bottom: 2em;
}
@media screen and (max-width: 980px) {
  .directory-header > .content > .info .copy {
    max-width: unset;
  }
}
.directory-header > .content > .info .copy *:last-child {
  margin: 0;
}
.directory-header > .content > .info .actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max-content, 250px));
  grid-gap: 0.5em;
}
.directory-header > .content > .directory-nav-wrapper {
  grid-area: nav;
}
.directory-header > .content > .directory-nav-wrapper .directory-nav {
  background: var(--white);
  font-size: clamp(1.6rem, 1.6vw, 2.1rem);
  padding: 50px 30px 20px 40px;
  border: solid 2px var(--black);
  border-radius: 20px;
  margin: var(--mobile-padding);
}
@media screen and (min-width: 980px) {
  .directory-header > .content > .directory-nav-wrapper .directory-nav {
    margin: 40px 0;
  }
}
.directory-header > .content > .directory-nav-wrapper .directory-nav > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.directory-header > .content > .directory-nav-wrapper .directory-nav > ul li {
  margin-bottom: 1.5em;
  list-style: none;
}
.directory-header > .content > .directory-nav-wrapper .directory-nav > ul li a {
  color: var(--black);
  display: block;
  text-decoration: none;
  font-weight: 400;
  font-size: clamp(2.1rem, 3vw, 2.6rem);
}
.directory-header > .content > .directory-nav-wrapper .directory-nav > ul li a:after {
  content: "→";
  display: inline-block;
  margin-left: 3px;
  transform: translateX(0);
  transition: transform 0.5s ease;
}
.directory-header > .content > .directory-nav-wrapper .directory-nav > ul li a:hover:after, .directory-header > .content > .directory-nav-wrapper .directory-nav > ul li a:focus:after {
  transform: translateX(5px);
}
.directory-header > .content > .sidebar {
  grid-area: sidebar;
  background: var(--pageHighlightColor);
  color: var(--textColor);
  padding: 2em var(--mobile-padding);
  display: grid;
  grid-gap: 1em;
  grid-template-columns: 46px 1fr;
  margin-bottom: 1em;
}
@media screen and (min-width: 980px) {
  .directory-header > .content > .sidebar {
    padding: 90px 1em;
    text-align: center;
    display: block;
    margin-bottom: 0;
  }
}
.directory-header > .content > .sidebar > img {
  margin: 0 auto 1em;
  width: 46px;
}
.directory-header > .content > .sidebar .actions {
  display: grid;
  grid-gap: 0.5em;
}
@media screen and (max-width: 980px) {
  .directory-header > .content > .sidebar .actions {
    padding-left: 1em;
    border-left: solid 1px var(--black);
  }
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.disclosure-area {
  padding: 3em var(--mobile-padding);
}
.content .disclosure-area {
  padding: 0;
}
.disclosure-area > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

.faq-block {
  padding: 3em var(--mobile-padding);
}
.faq-block > .content {
  margin: 0 auto;
  max-width: 900px;
}
.faq-block > .content > h2 {
  margin-bottom: 0.7em;
  text-align: center;
}
.faq-block > .content .faq-section {
  margin-bottom: 2em;
}
.faq-block > .content .faq-section > h3 {
  font-size: clamp(2rem, 2vw, 2.6rem);
  font-weight: 400;
  margin-bottom: 0.4em;
}
.faq-block > .content .faq-section .faqs .accordion {
  margin-bottom: 5px;
}
.faq-block > .content .faq-section .faqs .accordion > button {
  margin: 0 auto;
  background: #F8F5EE;
  padding: 1em 3em 1em 1.5em;
  text-align: left;
  border-radius: 7px;
  display: block;
  position: relative;
  width: 100%;
}
.faq-block > .content .faq-section .faqs .accordion > button:before, .faq-block > .content .faq-section .faqs .accordion > button:after {
  content: "";
  width: 15px;
  height: 1px;
  background: var(--black);
  position: absolute;
  display: block;
  top: 50%;
  right: 1.5em;
}
.faq-block > .content .faq-section .faqs .accordion > button:after {
  transform: rotate(-90deg);
  transition: transform 0.5s ease;
}
.faq-block > .content .faq-section .faqs .accordion > .accordion-copy {
  display: none;
  padding: 1em 1.5em;
}
.faq-block > .content .faq-section .faqs .accordion.open {
  background: #F8F5EE;
  border-radius: 7px;
  text-align: left;
}
.faq-block > .content .faq-section .faqs .accordion.open > button:after {
  transform: rotate(0);
}
.faq-block > .content .faq-section .faqs .accordion.open > .accordion-copy {
  display: block;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .featured-rates > .content > .rate-tabs .js-tab-content .account-standard .actions a:not([class*=btn]):first-of-type, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .featured-rates > .content > .rate-tabs .js-tab-content .account-standard .actions a:hover:not([class*=btn]):first-of-type, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .featured-rates > .content > .rate-tabs .js-tab-content .account-standard .actions a:not([class*=btn]), .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .featured-rates > .content > .rate-tabs .js-tab-content .account-standard .actions a:not([class*=btn]), .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .featured-rates > .content > .rate-tabs .js-tab-content .account-standard .actions a:hover:not([class*=btn]), .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.featured-rates {
  --highlightColor: var(--hrcu-deep-forest);
  --svgColor: none;
  padding: 3em var(--mobile-padding);
}
.content .featured-rates {
  padding: 0;
}
.featured-rates > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  padding: 2em 1em;
  border: solid 2px var(--black);
  border-radius: 20px;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  font-weight: 300;
  color: var(--black);
}
@media screen and (min-width: 980px) {
  .featured-rates > .content .mobile-rate-filter {
    display: none;
  }
}
.featured-rates > .content .mobile-rate-filter .mobile-rate-drop-header {
  font-weight: 600;
  font-size: 2.2rem;
  margin-bottom: 0.6em;
  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 0.5em;
  align-items: center;
  padding-left: 0.8em;
  font-family: var(--heading-font);
}
.featured-rates > .content .mobile-rate-filter .mobile-rate-drop {
  border: solid 2px var(--black);
  padding: 0.5em 1em 0.5em 2em;
  width: calc(100% - 30px);
  border-radius: 25px;
  text-align: left;
  position: relative;
  margin-bottom: 4rem;
}
.featured-rates:has(.rate-drop-open) .mobile-rate-drop {
  border-radius: 25px 25px 0 0 !important;
}

.featured-rates > .content .mobile-rate-filter .mobile-rate-drop:after {
  content: "";
  width: 11px;
  height: 20px;
  background: url(/Content/images/dropdown-arrows.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: -22px;
  top: 9px;
}
.featured-rates > .content > .rate-tabs {
  display: grid;
  position: relative;
}
@media screen and (min-width: 980px) {
  .featured-rates > .content > .rate-tabs {
    grid-template-columns: 2fr 3fr;
  }
}
.featured-rates > .content > .rate-tabs.rate-drop-open .tab-nav {
  display: block;
}
@media screen and (max-width: 980px) {
  .featured-rates > .content > .rate-tabs .tab-nav {
    display: none;
    border: solid 2px var(--black);
    border-radius: 25px;
    border-top: none;
    width: calc(100% - 30px);
    padding: 0;
    position: absolute;
    background: var(--white);
    z-index: 3;
    top: -89px;
  }
}
@media screen and (min-width: 980px) {
  .featured-rates > .content > .rate-tabs .tab-nav {
    border-right: solid 1px var(--black);
    padding: 3em 0;
  }
}
.featured-rates > .content > .rate-tabs .tab-nav button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.8em 2em 0.8em 1em;
  text-align: right;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
@media screen and (max-width: 980px) {
  .featured-rates > .content > .rate-tabs .tab-nav button {
    padding: 0.8em;
    text-align: left;
  }
}
.featured-rates > .content > .rate-tabs .tab-nav button.active {
  font-weight: 700;
}
@media screen and (min-width: 980px) {
  .featured-rates > .content > .rate-tabs .tab-nav button.active:after {
    content: "";
    width: 9px;
    height: 100%;
    position: absolute;
    background: var(--highlightColor);
    top: 0;
    right: 0;
  }
}
.featured-rates > .content > .rate-tabs .js-tab {
  display: none;
}
.featured-rates > .content > .rate-tabs .js-tab > button {
  display: none;
}
.featured-rates > .content > .rate-tabs .js-tab.active {
  display: block;
}
.featured-rates > .content > .rate-tabs .js-tab-content {
  text-align: center;
  font-size: 1.8rem;
  padding: 2em 0;
}
.featured-rates > .content > .rate-tabs .js-tab-content .rate-value {
  font-size: clamp(4.5rem, 5vw, 6rem);
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1;
  margin-bottom: 0.4em;
}
.featured-rates > .content > .rate-tabs .js-tab-content .rate-value sup {
  font-size: 45%;
  top: -0.8em;
}
.featured-rates > .content > .rate-tabs .js-tab-content .account-standard {
  padding: 2em;
  text-align: left;
}
@media screen and (min-width: 980px) {
  .featured-rates > .content > .rate-tabs .js-tab-content .account-standard {
    padding: 2em 2em 2em 3.5em;
  }
}
.featured-rates > .content > .rate-tabs .js-tab-content .account-standard h2 {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 15px;
  font-weight: 300;
}
.featured-rates > .content > .rate-tabs .js-tab-content .account-standard h2 img {
  margin-top: -13px;
}
.featured-rates > .content > .rate-tabs .js-tab-content .account-standard .copy {
  padding-left: 75px;
  max-width: 600px;
}
.featured-rates > .content > .rate-tabs .js-tab-content .account-standard .copy ul {
  padding: 0 0 0 1em;
}
.featured-rates > .content > .rate-tabs .js-tab-content .account-standard.no-icon h2 {
  display: block;
}
.featured-rates > .content > .rate-tabs .js-tab-content .account-standard.no-icon .copy {
  padding-left: 0;
}
.featured-rates > .content > .rate-tabs .js-tab-content .account-standard .actions {
  padding-top: 2em;
  margin-bottom: 2em;
  display: grid;
  justify-content: center;
  grid-gap: 10px;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .feature .info .actions a:first-of-type, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .feature .info .actions a:hover:first-of-type, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .feature .info .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .feature .info .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .feature .info .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.feature {
  --highlightColor: var(--hrcu-spring);
  --textColor: var(--black);
  --svgColor: none;
  --pageHighlightColor: var(--highlightColor) !important;
  position: relative;
  margin-bottom: 1em;
}
.feature > .content {
  max-width: var(--max-wrap-large);
  margin: 0 auto;
  padding: var(--mobile-padding);
  position: relative;
  z-index: 2;
  padding: 6em 0px 8em clamp(0px, 4vw, 140px);
}
@media screen and (max-width: 980px) {
  .feature > .content {
    padding: 0;
  }
}
.feature .image-back {
  aspect-ratio: 43/20;
  width: 100%;
}
@media screen and (min-width: 980px) {
  .feature .image-back {
    position: absolute;
    top: 0;
    left: 0;
    aspect-ratio: unset;
    height: 100%;
    z-index: -1;
  }
}
.feature .image-back img, .feature .image-back video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.feature .info {
  max-width: 483px;
  background: var(--highlightColor);
  color: var(--textColor);
  padding: 2em 2em 4em;
  border-radius: 0 0 110px;
}
@media screen and (max-width: 980px) {
  .feature .info {
    padding: 2em;
    margin: var(--mobile-padding);
  }
}
@media screen and (min-width: 980px) {
  .feature .info {
    padding: 7em 5em 10em;
    border-radius: 0 0 250px;
  }
}
.feature .info h1 {
  margin-bottom: 0.5em;
  color: var(--textColor);
  font-size: clamp(3rem, 3vw, 4rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.feature .info .copy {
  margin-bottom: 1.3em;
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
.feature .info .copy:last-child {
  margin-bottom: 0;
}
.feature .info .actions {
  display: grid;
  grid-template-columns: minmax(auto, max-content);
  grid-gap: 0.5em;
  max-width: 100%;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .grid-accounts > .content .account-standard .actions a:not([class*=btn]):first-of-type, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .grid-accounts > .content .account-standard .actions a:hover:not([class*=btn]):first-of-type, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .grid-accounts > .content .account-standard .actions a:not([class*=btn]), .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .grid-accounts > .content .account-standard .actions a:not([class*=btn]), .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .grid-accounts > .content .account-standard .actions a:hover:not([class*=btn]), .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.grid-accounts {
  --highlightColor: var(--pageHighlightColor);
  --textColor: var(--black);
  --svgColor: none;
  padding: 3em var(--mobile-padding);
}
.content .grid-accounts {
  padding: 3em 0;
}
.grid-accounts > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  max-width: 1660px;
}
.grid-accounts > .content > h2 {
  text-align: center;
}
.grid-accounts > .content .copy {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 2em;
}
.grid-accounts > .content .accounts {
  display: grid;
  grid-gap: 17px;
  justify-content: center;
  width: 100%;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 980px) {
  .grid-accounts > .content .accounts {
    grid-template-columns: repeat(auto-fit, clamp(300px, 26vw, 540px));
  }
}
@media screen and (min-width: 980px) {
  .grid-accounts > .content .accounts:has(.account-standard:nth-child(4)) {
    grid-template-columns: clamp(300px, 26vw, 540px) clamp(300px, 26vw, 540px);
  }
}
@media screen and (min-width: 980px) {
  .grid-accounts > .content .accounts:has(.account-standard:nth-child(5)) {
    grid-template-columns: repeat(auto-fit, clamp(300px, 26vw, 540px));
  }
}
.grid-accounts > .content .account-standard {
  border: solid 2px var(--black);
  border-radius: 10px;
  padding: 3em 2em;
  position: relative;
}
.grid-accounts > .content .account-standard:before {
  content: "";
  width: 70px;
  height: 11px;
  background: var(--highlightColor);
  position: absolute;
  left: 20px;
  top: 0;
  display: block;
  z-index: 3;
}
.grid-accounts > .content .account-standard h2 {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-gap: 15px;
  font-weight: 300;
  align-items: center;
}
.grid-accounts > .content .account-standard .copy {
  padding-left: 65px;
  text-align: left;
}
@media screen and (max-width: 980px) {
  .grid-accounts > .content .account-standard .copy {
    padding-left: 0px;
  }
}
@media screen and (min-width: 980px) {
  .grid-accounts > .content .account-standard .copy {
    padding-left: 65px;
  }
}
.grid-accounts > .content .account-standard .copy ul {
  padding: 0 0 0 1em;
  text-align: left;
}
.grid-accounts > .content .account-standard .actions {
  border-top: solid 1px #E8E8E8;
  padding-top: 2em;
  margin-bottom: 2em;
  display: grid;
  justify-content: center;
  grid-gap: 10px;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .ghost-btn-white, .highlighted-product > .content .info > .actions a {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .ghost-btn-white, .highlighted-product > .content .info > .actions a {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .ghost-btn-white:hover, .highlighted-product > .content .info > .actions a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white, .highlighted-product > .content .info > .actions a {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover, .highlighted-product > .content .info > .actions a:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.highlighted-product {
  position: relative;
  background: var(--hrcu-deep-forest);
  padding: 2em;
}
@media screen and (min-width: 980px) {
  .highlighted-product {
    padding: 5em var(--mobile-padding);
    background: linear-gradient(90deg, var(--hrcu-spring) 0%, var(--hrcu-spring) calc(50% - clamp(100px, 28vw, 420px)), var(--hrcu-deep-forest) calc(50% - clamp(100px, 28vw, 420px)), var(--hrcu-deep-forest) 100%);
  }
}
.highlighted-product:before {
  content: "";
  background: var(--highlightColor);
  border-radius: 0 0 100px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 190px;
}
@media screen and (min-width: 980px) {
  .highlighted-product:before {
    width: 100px;
    height: 100%;
    left: calc(50% - clamp(100px, 28vw, 420px) - 5px);
  }
}
.content .highlighted-product {
  margin: 0 calc(-1 * var(--mobile-padding));
}
.highlighted-product > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  display: grid;
  grid-gap: 1em;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 980px) {
  .highlighted-product > .content {
    grid-gap: 4em;
    grid-template-columns: 3fr 5fr;
  }
}
.highlighted-product > .content .photo img {
  width: 100%;
}
.highlighted-product > .content .info {
  color: var(--white);
  padding: 1em 0;
}
.highlighted-product > .content .info > h2 {
  color: var(--white);
  margin-bottom: 0.7em;
}
.highlighted-product > .content .info > h2 img {
  margin-right: 0.7em;
}
.highlighted-product > .content .info > .copy {
  margin-bottom: 1em;
  text-align: left;
  margin: 0 auto 2em;
}
.highlighted-product > .content .info > .copy *:last-child {
  margin-bottom: 0;
}
.highlighted-product > .content .info > .copy ul, .highlighted-product > .content .info > .copy ol {
  width: max-content;
  max-width: 100%;
  text-align: left;
  margin: 0 0 1em;
  column-gap: 4em;
  padding: 0;
  list-style: none;
}
.highlighted-product > .content .info > .copy ul li, .highlighted-product > .content .info > .copy ol li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 1em;
}
.highlighted-product > .content .info > .copy ul li:before, .highlighted-product > .content .info > .copy ol li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/Content/images/checkmark.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 0;
  filter: brightness(100);
}
.highlighted-product > .content .info > .actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max-content, 250px));
  grid-gap: 0.5em;
}
@media screen and (min-width: 980px) {
  .highlighted-product > .content .info > .actions {
    justify-content: flex-start;
  }
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .light.join-block .join-area > .content .cols .steps ol li .actions a, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .light.join-block .join-area > .content .cols .steps ol li .actions a:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .ghost-btn-white, .join-block .join-area > .content .cols .steps ol li .actions a {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .ghost-btn-white, .join-block .join-area > .content .cols .steps ol li .actions a {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .ghost-btn-white:hover, .join-block .join-area > .content .cols .steps ol li .actions a:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white, .join-block .join-area > .content .cols .steps ol li .actions a {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover, .join-block .join-area > .content .cols .steps ol li .actions a:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.join-block {
  padding: 2em 0;
}
.join-block button.join-btn {
  background: var(--hrcu-deep-forest);
  border-radius: 50px;
  color: var(--white);
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 500;
  font-family: var(--heading-font);
  padding: 0.7em 4em 0.7em 2em;
  position: relative;
  max-width: 500px;
  margin: 0 auto;
  display: block;
  transform: translateY(50%);
}
@media screen and (min-width: 980px) {
  .join-block button.join-btn {
    padding: 0.7em 4em;
  }
}
.join-block button.join-btn::after, .join-block button.join-btn:before {
  content: "";
  width: 15px;
  height: 15px;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 30px;
  background: var(--hrcu-spring);
  transition: all 0.5s ease;
  transform: rotate(40deg) translate(-6px, 6px);
}
.join-block button.join-btn:after {
  transform: rotate(-40deg) translate(1px, 2px);
}
.join-block button.join-btn.active:before {
  transform: rotate(-40deg) translate(-6px, -5px);
}
.join-block button.join-btn.active:after {
  transform: rotate(40deg) translate(2px, -2px);
}
.join-block .join-area {
  background: var(--hrcu-deep-forest);
  padding: 3em var(--mobile-padding);
  --joinBlockTextColor: var(--white);
  display: none;
}
.light.join-block .join-area {
  display: block;
  background: none;
  --joinBlockTextColor: var(--black);
}

@media screen and (min-width: 980px) {
  .join-block .join-area {
    padding: 3em;
  }
}
.join-block .join-area > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  padding: 0 var(--mobile-padding);
}
.join-block .join-area > .content > h2 {
  color: var(--joinBlockTextColor);
  margin-bottom: 1.2em;
  text-align: center;
}
.join-block .join-area > .content > .copy {
  text-align: center;
  max-width: var(--max-wrap-small);
  margin: 0 auto;
  margin-bottom: 3em;
}
.join-block .join-area > .content .cols {
  display: grid;
  grid-gap: 1.5em;
}
@media screen and (min-width: 980px) {
  .join-block .join-area > .content .cols {
    grid-template-columns: 1fr 1fr;
  }
}
.join-block .join-area > .content .cols .collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: 27vw 38vw 27vw;
  grid-gap: 10px;
  order: 2;
}
@media screen and (min-width: 980px) {
  .join-block .join-area > .content .cols .collage {
    order: 1;
    grid-template-rows: 268px 385px 268px;
  }
}
.join-block .join-area > .content .cols .collage picture {
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: relative;
}
.join-block .join-area > .content .cols .collage picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
@media screen and (min-width: 980px) {
  .join-block .join-area > .content .cols .collage picture {
    border-radius: 30px;
  }
}
.join-block .join-area > .content .cols .collage picture.photo-1 {
  grid-column: 1/span 4;
}
.join-block .join-area > .content .cols .collage picture.photo-2 {
  grid-column: 5/span 3;
}
.join-block .join-area > .content .cols .collage picture.photo-2:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--hrcu-lilac);
  opacity: 0.5;
  z-index: 3;
}
.join-block .join-area > .content .cols .collage picture.photo-3 {
  grid-column: 1/span 7;
}
.join-block .join-area > .content .cols .collage picture.photo-4 {
  grid-column: 1/span 3;
}
.join-block .join-area > .content .cols .collage picture.photo-4:before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--hrcu-sunset);
  opacity: 0.3;
  z-index: 3;
}
.join-block .join-area > .content .cols .collage picture.photo-5 {
  grid-column: 4/span 4;
}
.join-block .join-area > .content .cols .steps {
  color: var(--joinBlockTextColor);
  order: 1;
}
@media screen and (min-width: 980px) {
  .join-block .join-area > .content .cols .steps {
    order: 2;
  }
}
.join-block .join-area > .content .cols .steps ol {
  list-style: none;
  padding-left: 0;
}
.join-block .join-area > .content .cols .steps ol li {
  counter-increment: name;
  padding-left: 65px;
  position: relative;
}
.join-block .join-area > .content .cols .steps ol li .step-header {
  font-size: 2.1rem;
  font-family: var(--heading-font);
  padding-top: 0.3em;
  margin-bottom: 1.5em;
  font-weight: 400;
}
.join-block .join-area > .content .cols .steps ol li > h2 {
  color: var(--joinBlockTextColor);
  font-size: clamp(3rem, 3vw, 4rem);
  font-weight: 500;
  margin-bottom: 0.5em;
}
.join-block .join-area > .content .cols .steps ol li .copy {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  margin-bottom: 3em;
}
.join-block .join-area > .content .cols .steps ol li .copy a {
  color: var(--joinBlockTextColor);
  text-decoration: underline;
}
.join-block .join-area > .content .cols .steps ol li:before {
  content: counter(name);
  position: absolute;
  top: 0;
  left: 0;
  width: 43px;
  height: 43px;
  display: flex;
  color: var(--joinBlockTextColor);
  justify-content: center;
  align-items: center;
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 500;
  border-radius: 50%;
  border: solid 2px var(--joinBlockTextColor);
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

.jump-nav {
  --highlightColor: var(--hrcu-deep-forest);
  --textColor: var(--white);
  --svgColor: none;
  padding: 1em var(--mobile-padding);
}
.jump-nav > .content {
  margin: 0 auto;
  max-width: 1400px;
}
.jump-nav > .content > .jump-links {
  background: var(--highlightColor);
  padding: 0.7em 4em;
  display: flex;
  flex-wrap: wrap;
  border-radius: 8px;
  justify-content: center;
}
@media screen and (max-width: 980px) {
  .jump-nav > .content > .jump-links {
    column-gap: 1em;
  }
}
.jump-nav > .content > .jump-links span {
  display: none;
}
@media screen and (min-width: 980px) {
  .jump-nav > .content > .jump-links span {
    display: none;
  }
}
.jump-nav > .content > .jump-links button {
  color: var(--textColor);
  font-size: clamp(1.4rem, 1.4vw, 1.6rem);
}
@media screen and (min-width: 980px) {
  .jump-nav > .content > .jump-links button:after {
    content: "|";
    color: var(--pageHighlightColor);
    margin: 0 1em;
  }
  .jump-nav > .content > .jump-links button:last-of-type:after {
    content: none;
  }
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .multi-product-enhanced-header > .content > .info .actions a:first-of-type, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .multi-product-enhanced-header > .content > .info .actions a:hover:first-of-type, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .multi-product-enhanced-header > .content > .info .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .multi-product-enhanced-header > .content > .info .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .multi-product-enhanced-header > .content > .info .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.multi-product-enhanced-header {
  --highlightColor: var(--hrcu-river);
  --textColor: var(--white);
  --svgColor: none;
  padding: 1em var(--mobile-padding) 0em;
}
@media screen and (min-width: 980px) {
  .multi-product-enhanced-header {
    padding: 3em 3em 5em;
  }
}
.multi-product-enhanced-header > .breadcrumb {
  display: none;
  background: var(--white);
  padding: 0.5em clamp(var(--mobile-padding), 4vw, 2em);
}
@media screen and (min-width: 980px) {
  .multi-product-enhanced-header > .breadcrumb {
    display: block;
    margin: 0 auto;
    max-width: var(--max-wrap-large);
  }
}
.multi-product-enhanced-header > .breadcrumb .breadcrumb-nav {
  max-width: 1400px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #8F9998;
}
.multi-product-enhanced-header > .breadcrumb .breadcrumb-nav a {
  text-decoration: none;
  font-weight: 300;
  color: #8F9998;
}
.multi-product-enhanced-header > .breadcrumb .breadcrumb-nav a:after {
  content: "/";
  display: inline-block;
  margin: 0 0.1em 0 0.2em;
}
.multi-product-enhanced-header > .content {
  display: grid;
  align-items: center;
  position: relative;
  max-width: var(--max-wrap-large);
  margin: 0 auto;
}
@media screen and (min-width: 980px) {
  .multi-product-enhanced-header > .content {
    grid-gap: 30px;
    grid-template-columns: 1fr 1fr;
  }
  .compact.multi-product-enhanced-header > .content {
    grid-template-columns: 2fr 5fr;
  }
}
.multi-product-enhanced-header > .content > .photo {
  position: relative;
  aspect-ratio: 1.44;
}
.multi-product-enhanced-header > .content > .photo:before {
  content: "";
  width: 67px;
  height: calc(100% + 100px);
  background: var(--highlightColor);
  border-radius: 0 0 60px 0;
  position: absolute;
  left: -50px;
  top: 20%;
  z-index: 1;
}
@media screen and (min-width: 980px) {
  .multi-product-enhanced-header > .content > .photo:before {
    width: 377px;
    height: calc(75% + 50px);
    bottom: -50px;
    border-radius: 0 0 180px 0;
    top: auto;
  }
}
.multi-product-enhanced-header > .content > .photo:after {
  content: "";
  width: 110px;
  height: 160px;
  background: url(/Content/images/mini-logo.svg) no-repeat;
  filter: var(--theme-black-filter);
  position: absolute;
  left: -70px;
  bottom: calc(44% - 50px);
  background-size: contain;
  z-index: 5;
}
.multi-product-enhanced-header > .content > .photo img, .multi-product-enhanced-header > .content > .photo video {
  height: auto;
  aspect-ratio: 1.44;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  width: 100%;
  right: 0;
  z-index: 3;
  position: relative;
}
@media screen and (min-width: 980px) {
  .multi-product-enhanced-header > .content > .photo img, .multi-product-enhanced-header > .content > .photo video {
    width: calc(100% - 20px);
    position: absolute;
    aspect-ratio: 1.5;
  }
}
.multi-product-enhanced-header > .content > .info {
  padding: 1em 2.5em 1em 2.5em;
  color: var(--black);
}
@media screen and (min-width: 980px) {
  .multi-product-enhanced-header > .content > .info {
    padding: 4em 2em;
    max-width: 800px;
  }
}
.multi-product-enhanced-header > .content > .info h1 {
  color: var(--black);
  margin-bottom: 0.3em;
  font-size: 3.2rem;
  line-height: 1;
}
@media screen and (min-width: 980px) {
  .multi-product-enhanced-header > .content > .info h1 {
    font-size: clamp(4rem, 5vw, 6rem);
  }
}
.multi-product-enhanced-header > .content > .info .sub-heading {
  color: var(--black);
  margin-bottom: 0.8em;
  font-weight: 400;
  font-size: 2.2rem;
}
@media screen and (min-width: 980px) {
  .multi-product-enhanced-header > .content > .info .sub-heading {
    font-size: clamp(2.5rem, 2.7vw, 3.3rem);
  }
}
.multi-product-enhanced-header > .content > .info .copy {
  margin-bottom: 2em;
}
.multi-product-enhanced-header > .content > .info .copy *:last-child {
  margin: 0;
}
.multi-product-enhanced-header > .content > .info .copy ul {
  padding: 0;
  list-style: none;
}
.multi-product-enhanced-header > .content > .info .copy ul li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 1em;
}
.multi-product-enhanced-header > .content > .info .copy ul li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/Content/images/checkmark.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 0;
}
.multi-product-enhanced-header > .content > .info .actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
  grid-gap: 0.5em;
}
@media screen and (min-width: 980px) {
  .multi-product-enhanced-header > .content > .info .actions {
    grid-template-columns: repeat(auto-fit, minmax(max-content, 250px));
  }
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .multi-product-header > .content > .info .actions a:first-of-type, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .multi-product-header > .content > .info .actions a:hover:first-of-type, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .multi-product-header > .content > .info .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .multi-product-header > .content > .info .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .multi-product-header > .content > .info .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.multi-product-header {
  --highlightColor: var(--red);
  --textColor: var(--white);
  --svgColor: none;
  padding: 1em var(--mobile-padding) 3em;
}
@media screen and (max-width: 980px) {
  .multi-product-header {
    padding-bottom: 0em;
  }
}
@media screen and (min-width: 980px) {
  .multi-product-header {
    padding: 3em 3em 5em;
  }
}
.multi-product-header > .breadcrumb {
  display: none;
  background: var(--white);
  padding: 0.5em clamp(var(--mobile-padding), 4vw, 2em);
}
@media screen and (min-width: 980px) {
  .multi-product-header > .breadcrumb {
    display: block;
  }
}
.multi-product-header > .breadcrumb .breadcrumb-nav {
  max-width: calc(1900px - clamp(20px, 3vw, 50px));
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 300;
  color: #8F9998;
}
.multi-product-header > .breadcrumb .breadcrumb-nav a {
  text-decoration: none;
  font-weight: 300;
  color: #8F9998;
}
.multi-product-header > .breadcrumb .breadcrumb-nav a:after {
  content: "/";
  display: inline-block;
  margin: 0 0.1em 0 0.2em;
}
.multi-product-header > .content {
  display: grid;
  align-items: center;
  position: relative;
  max-width: var(--max-wrap);
  margin: 0 auto;
}
@media screen and (min-width: 980px) {
  .multi-product-header > .content {
    grid-gap: 30px;
    grid-template-columns: 2.7fr 5fr;
  }
}
.multi-product-header > .content > .photo {
  position: relative;
  height: clamp(210px, 68vw, 656px);
}
@media screen and (min-width: 980px) {
  .multi-product-header > .content > .photo {
    height: clamp(300px, 19vw, 426px);
  }
}
.multi-product-header > .content > .photo:before {
  content: "";
  height: clamp(200px, 67vw, 636px);
  width: 52%;
  position: absolute;
  top: 0;
  left: calc(-50% + 40px);
  border: solid 2px var(--highlightColor);
  border-radius: 20px;
  display: block;
  z-index: 1;
}
@media screen and (min-width: 980px) {
  .multi-product-header > .content > .photo:before {
    top: 0;
    left: 40px;
    height: clamp(200px, 26vw, 376px);
  }
}
.multi-product-header > .content > .photo:after {
  content: "";
  width: 110px;
  height: 160px;
  background: url(/Content/images/mini-logo.svg) no-repeat;
  filter: var(--theme-black-filter);
  position: absolute;
  transform: translateY(-50%);
  background-size: contain;
  z-index: 12;
  left: -50px;
  top: 50%;
}
@media screen and (min-width: 980px) {
  .multi-product-header > .content > .photo:after {
    left: 0;
    top: clamp(40px, 6vw, 116px);
    transform: none;
    width: 110px;
    height: 160px;
  }
}
.multi-product-header > .content > .photo img, .multi-product-header > .content > .photo video {
  width: calc(100% - 20px);
  height: auto;
  aspect-ratio: 38/25;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
  position: absolute;
  top: 29px;
  right: 0;
  z-index: 3;
}
@media screen and (min-width: 980px) {
  .multi-product-header > .content > .photo img, .multi-product-header > .content > .photo video {
    top: 59px;
    width: calc(100% - 90px);
    aspect-ratio: 1.5;
    z-index: 14;
  }
}
.multi-product-header > .content > .info {
  padding: 1em 2.5em 1em 2.5em;
  color: var(--black);
  max-width: 800px;
}
@media screen and (min-width: 980px) {
  .multi-product-header > .content > .info {
    padding: 4em 2em;
  }
}
.multi-product-header > .content > .info h1 {
  color: var(--black);
  margin-bottom: 0.3em;
  font-size: 3.2rem;
  line-height: 1;
}
@media screen and (min-width: 980px) {
  .multi-product-header > .content > .info h1 {
    font-size: clamp(4rem, 5vw, 6rem);
  }
}
.multi-product-header > .content > .info .sub-heading {
  color: var(--black);
  margin-bottom: 0.8em;
  font-size: clamp(1.6rem, 1.6vw, 2rem);
  font-weight: 600;
}
@media screen and (min-width: 980px) {
  .multi-product-header > .content > .info .sub-heading {
    font-size: clamp(2.5rem, 2.7vw, 3.3rem);
  }
}
.multi-product-header > .content > .info .copy {
  margin-bottom: 2em;
}
.multi-product-header > .content > .info .copy h2 {
  font-family: var(--heading-font) !important;
}
.multi-product-header > .content > .info .copy *:last-child {
  margin: 0;
}
.multi-product-header > .content > .info .copy ul {
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 980px) {
  .compact.multi-product-header > .content > .info .copy ul {
    column-count: 2;
    column-gap: 2em;
  }
}

.multi-product-header > .content > .info .copy ul li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 1em;
}
.multi-product-header > .content > .info .copy ul li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/Content/images/checkmark.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 0;
}
.multi-product-header > .content > .info .actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max-content, 250px));
  grid-gap: 0.5em;
}
@media screen and (max-width: 980px) {
  .multi-product-header > .content > .info .actions {
    justify-content: center;
    grid-template-columns: 1fr;
  }
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .text-only-header > .content > .info .actions a:first-of-type, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .text-only-header > .content > .info .actions a:hover:first-of-type, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .text-only-header > .content > .info .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .text-only-header > .content > .info .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .text-only-header > .content > .info .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.text-only-header {
  padding: 2em var(--mobile-padding) 1em;
}
@media screen and (min-width: 980px) {
  .text-only-header {
    padding: 5em var(--mobile-padding) 2em;
  }
}
.text-only-header > .breadcrumb {
  display: none;
  background: var(--white);
  padding: 0.5em clamp(var(--mobile-padding), 4vw, 2em);
}
@media screen and (min-width: 980px) {
  .text-only-header > .breadcrumb {
    display: block;
  }
}
.text-only-header > .breadcrumb .breadcrumb-nav {
  max-width: 1400px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #8F9998;
}
.text-only-header > .breadcrumb .breadcrumb-nav a {
  text-decoration: none;
  font-weight: 300;
  color: #8F9998;
}
.text-only-header > .breadcrumb .breadcrumb-nav a:after {
  content: "/";
  display: inline-block;
  margin: 0 0.1em 0 0.2em;
}
.text-only-header > .content {
  text-align: center;
}
.text-only-header > .content > .info {
  color: var(--black);
}
.text-only-header > .content > .info h1 {
  color: var(--black);
  margin-bottom: 0.3em;
  font-size: 3.2rem;
  line-height: 1;
}
@media screen and (min-width: 980px) {
  .text-only-header > .content > .info h1 {
    font-size: clamp(4rem, 5vw, 6rem);
  }
}
.text-only-header > .content > .info .copy {
  margin-bottom: 2em;
}
.text-only-header > .content > .info .copy h2 {
  font-family: var(--heading-font) !important;
  font-weight: 500 !important;
}
.text-only-header > .content > .info .copy *:last-child {
  margin: 0;
}
.text-only-header > .content > .info .copy ul {
  padding: 0;
  list-style: none;
}
.text-only-header > .content > .info .copy ul li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 1em;
}
.text-only-header > .content > .info .copy ul li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/Content/images/checkmark.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 0;
}
.text-only-header > .content > .info .actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(max-content, 250px));
  grid-gap: 0.5em;
  justify-content: center;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.rate-grid {
  padding: 1em var(--mobile-padding) 1em;
  color: var(--white);
}
@media screen and (min-width: 980px) {
  .rate-grid {
    padding: 3em var(--mobile-padding);
  }
}
.rate-grid > .content .cards {
  margin: 0 auto;
  max-width: 1600px;
  grid-template-columns: 100%;
}
@media screen and (min-width: 980px) {
  .rate-grid > .content .cards {
    grid-template-columns: repeat(auto-fit, clamp(300px, 33.33% - 20px, 500px));
    display: grid;
    grid-gap: 30px;
  }
}
.rate-grid > .content .cards > a {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-gap: 1em;
  border: solid 2px var(--hrcu-deep-forest);
  border-radius: 20px;
  grid-template-columns: 50px 1fr 40px;
  padding: 0.5em 1em;
  width: 100%;
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: box-shadow 0.25s ease, font-weight 0.25s ease, color 0.25s ease;
}
.rate-grid > .content .cards > a:hover, .rate-grid > .content .cards > a:focus {
  box-shadow: 0 8px 32px 0 rgba(24, 48, 44, 0.35);
}
@media screen and (min-width: 980px) {
  .rate-grid > .content .cards > a {
    grid-template-columns: 1fr;
    grid-gap: 1em;
    padding: 3em;
    font-size: 2rem;
    grid-gap: 1em;
    text-align: center;
    margin-bottom: 0;
  }
}
.rate-grid > .content .cards > a > img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  justify-self: center;
}
.rate-grid > .content .cards > a .title {
  font-size: clamp(2.2rem, 2vw, 2.6rem);
}
.rate-grid > .content .cards > a:hover .title, .rate-grid > .content .cards > a:focus .title {
  font-weight: bold;
  transition: font-weight 0.25s;
}
.rate-grid > .content .cards > a .go {
  display: block;
  width: 40px;
  height: 40px;
  background: url(/Content/images/ico-circle-arrow.svg) no-repeat;
  background-size: contain;
  justify-self: center;
}
.rate-grid > .content .cards .card {
  grid-column: auto/span 2;
  background: var(--hrcu-deep-forest);
  border-radius: 20px;
  display: grid;
  padding: 1.5em;
  align-items: center;
}
@media screen and (min-width: 980px) {
  .rate-grid > .content .cards .card {
    padding: 1.5em 3em;
    grid-template-columns: 1fr 3fr;
  }
}
.rate-grid > .content .cards .card > img {
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}
@media screen and (min-width: 980px) {
  .rate-grid > .content .cards .card > img {
    display: block;
  }
}
.rate-grid > .content .cards .card .info {
  text-align: center;
  color: var(--white);
}
@media screen and (min-width: 980px) {
  .rate-grid > .content .cards .card .info {
    padding: 0 60px;
  }
}
.rate-grid > .content .cards .card .info > h3 {
  margin-bottom: 0.7em;
  color: var(--white);
}
.rate-grid > .content .cards .card .info .copy {
  margin-bottom: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rate-grid > .content .cards .card .info .copy > p {
  max-width: 500px;
}
.rate-grid > .content .cards .card .info .copy *:last-child {
  margin: 0;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .rate-block > .content > .actions a:first-of-type, .rate-block > .content .rate-section-header .actions a:first-of-type, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .rate-block > .content > .actions a:hover:first-of-type, .rate-block > .content .rate-section-header .actions a:hover:first-of-type, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .rate-block > .content > .actions a, .rate-block > .content .rate-section-header .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .rate-block > .content > .actions a, .rate-block > .content .rate-section-header .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .rate-block > .content > .actions a:hover, .rate-block > .content .rate-section-header .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.rate-block {
  padding: 3em var(--mobile-padding);
  text-align: center;
}
.content .rate-block {
  padding: 0;
}
.rate-block > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
}
.rate-block > .content > h2 {
  margin-bottom: 1em;
  text-align: center;
}
.single-rate.rate-block > .content > h2 {
  margin-bottom: 0;
}

.rate-block > .content > .actions {
  display: grid;
  grid-template-columns: minmax(auto, max-content);
  grid-gap: 0.5em;
  max-width: 100%;
  justify-content: center;
}
.rate-block > .content .rate-section-header .actions {
  margin-bottom: 1.5em;
  display: flex;
  column-gap: 0.5em;
  row-gap: 0.5em;
  justify-content: center;
}
@media screen and (max-width: 980px) {
  .rate-block > .content .rate-section-header .actions {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 0.5em;
  }
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.rewards-block .rewards-area {
  background: #f3f1e8;
  padding: 3em var(--mobile-padding);
}
@media screen and (min-width: 980px) {
  .rewards-block .rewards-area {
    padding: 3em;
  }
}
.rewards-block .rewards-area > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  padding: 0 var(--mobile-padding);
}
.rewards-block .rewards-area > .content > h2 {
  color: var(--joinBlockTextColor);
  margin-bottom: 1.2em;
  text-align: center;
}
.rewards-block .rewards-area > .content > .copy {
  text-align: center;
  max-width: var(--max-wrap-small);
  margin: 0 auto;
  margin-bottom: 3em;
}
.rewards-block .rewards-area > .content .rewards {
  list-style: none;
  padding-left: 0;
}
.rewards-block .rewards-area > .content .rewards .reward-option {
  counter-increment: name;
  position: relative;
  display: grid;
  gap: 4em;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  transform: translateY(30px); /* subtle slide up */
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.rewards-block .rewards-area > .content .rewards .reward-option.visible {
  opacity: 1;
  transform: none;
}
@media screen and (max-width: 980px) {
  .rewards-block .rewards-area > .content .rewards .reward-option {
    display: block;
  }
}
.rewards-block .rewards-area > .content .rewards .reward-option:not(:last-of-type) {
  margin-bottom: 4em;
}
.rewards-block .rewards-area > .content .rewards .reward-option:nth-child(2n) .photo-area {
  grid-template-columns: 35fr 65fr;
}
.rewards-block .rewards-area > .content .rewards .reward-option:nth-child(2n) .photo-area > img {
  order: 2;
}
.rewards-block .rewards-area > .content .rewards .reward-option .photo-area {
  display: grid;
  gap: 5%;
  grid-template-columns: 65fr 35fr;
  width: 100%;
}
@media screen and (max-width: 980px) {
  .rewards-block .rewards-area > .content .rewards .reward-option .photo-area {
    display: block;
  }
}
.rewards-block .rewards-area > .content .rewards .reward-option .photo-area img {
  display: block;
  border-radius: 24px;
  aspect-ratio: 0.7;
  max-height: max-content;
  object-fit: cover;
}
@media screen and (max-width: 980px) {
  .rewards-block .rewards-area > .content .rewards .reward-option .photo-area img {
    display: none;
  }
}
.rewards-block .rewards-area > .content .rewards .reward-option .photo-area .optionNum {
  --numSize: 80px;
  --numContainerSize: 120px;
  background-color: #aaeee7;
  padding: 2em;
  border-radius: 24px;
  min-width: 0 !important;
  text-align: center;
  max-height: fit-content;
  align-content: center;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 980px) {
  .rewards-block .rewards-area > .content .rewards .reward-option .photo-area .optionNum {
    width: 150px;
    aspect-ratio: unset;
    margin: 2em auto;
  }
}
.rewards-block .rewards-area > .content .rewards .reward-option .photo-area .optionNum span {
  display: block;
  font-size: var(--numSize);
  line-height: var(--numSize);
  color: #18302c;
  font-weight: 900;
  font-family: var(--heading-font);
}
.rewards-block .rewards-area > .content .rewards .reward-option .photo-area .optionNum span, .rewards-block .rewards-area > .content .rewards .reward-option .photo-area .optionNum span > * {
  margin: 0;
}
.rewards-block .rewards-area > .content .rewards .reward-option > .info > h2 {
  color: var(--joinBlockTextColor);
  font-size: clamp(3rem, 3vw, 4rem);
  font-weight: 500;
  margin-bottom: 0.5em;
}
.rewards-block .rewards-area > .content .rewards .reward-option > .info .copy {
  font-size: clamp(1.6rem, 1.6vw, 1.8rem);
  margin-bottom: 3em;
}
.rewards-block .rewards-area > .content .rewards .reward-option > .info .copy a {
  color: var(--joinBlockTextColor);
  text-decoration: underline;
}
.rewards-block .rewards-area > .content .rewards .reward-option > .info .disclosure > button {
  margin: 2em 0;
}
@media screen and (max-width: 980px) {
  .rewards-block .rewards-area > .content .rewards .reward-option > .info .actions {
    text-align: center;
  }
  .rewards-block .rewards-area > .content .rewards .reward-option > .info .actions a {
    width: 100%;
  }
  .rewards-block .rewards-area > .content .rewards .reward-option > .info .actions a:not(:last-of-type) {
    margin-bottom: 1em;
  }
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

.standalone-product {
  --highlightColor: var(--hrcu-deep-forest);
  --textColor: var(--white);
  --svgColor: var(--theme-filter-white);
  padding: 3em var(--mobile-padding);
}
.standalone-product > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 15px;
}
@media screen and (min-width: 980px) {
  .standalone-product > .content {
    grid-template-columns: 59fr 72fr;
  }
}
.standalone-product > .content .photo {
  width: 100%;
  aspect-ratio: 39/26;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 980px) {
  .standalone-product > .content .photo {
    width: 100%;
    height: 100%;
  }
}
.standalone-product > .content .photo img, .standalone-product > .content .photo video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  position: absolute;
  top: 0;
  left: 0;
}
.standalone-product > .content .info {
  background-color: var(--highlightColor);
  color: var(--textColor);
  padding: 2em;
  border-radius: 20px;
}
@media screen and (min-width: 980px) {
  .standalone-product > .content .info {
    padding: 5em 6em;
    align-content: center;
  }
}
.standalone-product > .content .info > h3, .standalone-product > .content .info > h2 {
  color: var(--textColor);
  margin-bottom: 1em;
}
.standalone-product > .content .info > h3:has(a):after, .standalone-product > .content .info > h2:has(a):after {
  filter: var(--svgColor);
}
.standalone-product > .content .info > h3:has(a) a, .standalone-product > .content .info > h2:has(a) a {
  color: var(--textColor);
  text-decoration: none;
}
.standalone-product > .content .info .copy {
  font-size: clamp(1.6rem, 1.8vw, 1.8rem);
}
.standalone-product > .content .info .copy *:last-child {
  margin: 0;
}
.standalone-product > .content .info .copy a {
  color: var(--textColor);
  text-decoration: underline;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.team-grid {
  --highlightColor: var(--hrcu-spring);
  --svgColor: none;
  padding: 1em var(--mobile-padding) 1em;
}
@media screen and (min-width: 980px) {
  .team-grid {
    padding: 2em var(--mobile-padding);
  }
}
.team-grid > .content {
  margin: 0 auto;
  max-width: 1600px;
}
.team-grid > .content > h2 {
  text-align: center;
  margin-bottom: 0.5em;
}
.team-grid > .content:not(:has(.copy)) > h2 {
  margin-bottom: 2em;
}
.team-grid > .content .copy {
  text-align: center;
  max-width: var(--max-wrap-small);
  margin: 0 auto;
  margin-bottom: 3em;
}
.team-grid > .content .employees {
  grid-template-columns: 100%;
}
@media screen and (min-width: 980px) {
  .team-grid > .content .employees {
    grid-template-columns: repeat(auto-fit, clamp(300px, 33.33% - 20px, 500px));
    display: grid;
    grid-gap: 30px;
    justify-content: center;
  }
}
.team-grid > .content .employees > .employee {
  display: block;
  padding: 2em 2em 3em;
  position: relative;
}
.team-grid > .content .employees > .employee:before {
  content: "";
  width: 100%;
  height: calc(100% - 30vw);
  border-radius: 20px;
  border: solid 2px var(--hrcu-deep-forest);
  position: absolute;
  top: 30vw;
  left: 0;
  z-index: -1;
}
@media screen and (min-width: 980px) {
  .team-grid > .content .employees > .employee:before {
    top: 0;
    height: 100%;
    left: 70px;
    width: calc(100% - 70px);
  }
}
.team-grid > .content .employees > .employee .employee-header {
  display: grid;
  margin-bottom: 1.5em;
  grid-gap: 1em;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 980px) {
  .team-grid > .content .employees > .employee .employee-header {
    grid-template-columns: 5fr 6fr;
  }
}
.team-grid > .content .employees > .employee .employee-header .photo {
  position: relative;
}
.team-grid > .content .employees > .employee .employee-header .photo > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}
.team-grid > .content .employees > .employee .employee-header .photo > img[src*=jpg] {
  border: solid 6px #a0e0a0;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
}
.team-grid > .content .employees > .employee .employee-header .contact-info {
  color: var(--hrcu-deep-forest);
}
.team-grid > .content .employees > .employee .employee-header .contact-info h2 {
  margin: 0;
  color: var(--hrcu-deep-forest);
}
.team-grid > .content .employees > .employee .employee-header .contact-info h3 {
  margin-bottom: 1em;
  font-weight: 400;
  color: var(--hrcu-deep-forest);
}
.team-grid > .content .employees > .employee .bio {
  margin-bottom: 2.5em;
}
@media screen and (min-width: 980px) {
  .team-grid > .content .employees > .employee .bio {
    padding-left: 70px;
  }
}
.team-grid > .content .employees > .employee .actions {
  display: grid;
  grid-gap: 0.5em;
  grid-template-columns: minmax(200px, max-content);
  justify-content: center;
}
@media screen and (min-width: 980px) {
  .team-grid > .content .employees > .employee .actions {
    padding-left: 70px;
  }
}
.team-grid > .content .employees .membership {
  grid-column: auto/span 2;
  background: var(--hrcu-deep-forest);
  border-radius: 20px;
  display: grid;
  padding: 1.5em;
  align-items: center;
}
@media screen and (min-width: 980px) {
  .team-grid > .content .employees .membership {
    grid-template-columns: 1fr 3fr;
  }
}
.team-grid > .content .employees .membership > img {
  width: 100%;
  height: 100%;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
  display: none;
}
@media screen and (min-width: 980px) {
  .team-grid > .content .employees .membership > img {
    display: block;
  }
}
.team-grid > .content .employees .membership .info {
  text-align: center;
  color: var(--white);
}
.team-grid > .content .employees .membership .info > h3 {
  margin-bottom: 0.7em;
  color: var(--white);
}
.team-grid > .content .employees .membership .info .copy {
  margin-bottom: 2em;
}
.team-grid > .content .employees .membership .info .copy *:last-child {
  margin: 0;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

.testimonial-banner {
  padding: 3em var(--mobile-padding);
  overflow-x: clip;
  padding-top: clamp(280px, 33vw, 665px);
  margin-top: 3em;
  position: relative;
}
.content .testimonial-banner {
  padding: 0;
}
.testimonial-banner .testimonial-grid {
  position: absolute;
  top: 0;
  display: grid;
  margin-bottom: 1em;
  width: 170vw;
  max-width: 2500px;
  min-width: 1450px;
  grid-template-columns: 4fr 2fr 2fr 2fr 3fr 4fr 4fr;
  grid-template-rows: clamp(150px, 18vw, 350px) clamp(100px, 12vw, 275px);
  transform: translateX(0);
  transition: transform 0.5s ease;
  grid-template-areas: "main testimonial testimonial testimonial secondary-image secondary-icon ending-video" "main logo-area logo-area secondary-testimonial secondary-testimonial secondary-testimonial ending-image";
  grid-gap: 20px;
  left: 20px;
  cursor: grab;
  user-select: none;
}
@media screen and (min-width: 980px) {
  .testimonial-banner .testimonial-grid {
    left: calc(50% - clamp(80px, 31vw, 700px));
  }
}
.testimonial-banner .testimonial-grid:active {
  cursor: grabbing;
}
.testimonial-banner .testimonial-grid * {
  pointer-events: none; /* Prevents interference with drag on child elements */
}
.testimonial-banner .testimonial-grid img {
  user-drag: none;
}
.testimonial-banner .testimonial-grid .main-image {
  grid-area: main;
}
.testimonial-banner .testimonial-grid .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
}
.testimonial-banner .testimonial-grid .main-testimonial {
  grid-area: testimonial;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-left: 100px;
}
.testimonial-banner .testimonial-grid .main-testimonial h3 {
  position: relative;
  font-size: clamp(2rem, 2.5vw, 3.1rem);
  font-weight: 500;
  margin-bottom: 0.1em;
}
.testimonial-banner .testimonial-grid .main-testimonial h3:before {
  content: "";
  width: 75px;
  height: 55px;
  background: url(/Content/images/testimonial-quote.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: -100px;
  display: block;
}
.testimonial-banner .testimonial-grid .main-testimonial .author {
  font-size: clamp(1.6rem, 1.5vw, 2rem);
}
.testimonial-banner .testimonial-grid .logo-area {
  grid-area: logo-area;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.testimonial-banner .testimonial-grid .logo-area .photo {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}
.testimonial-banner .testimonial-grid .logo-area .photo:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(var(--hrcu-spring), 0.8);
  z-index: 2;
}
.testimonial-banner .testimonial-grid .logo-area .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.testimonial-banner .testimonial-grid .logo-area .logo {
  background: var(--hrcu-sunset);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.testimonial-banner .testimonial-grid .logo-area .logo img {
  width: 30%;
}
.testimonial-banner .testimonial-grid .secondary-image {
  grid-area: secondary-image;
}
.testimonial-banner .testimonial-grid .secondary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
}
.testimonial-banner .testimonial-grid .secondary-icon {
  grid-area: secondary-icon;
}
.testimonial-banner .testimonial-grid .secondary-icon img {
  width: 90%;
  height: 90%;
  object-fit: contain;
}
.testimonial-banner .testimonial-grid .secondary-testimonial {
  grid-area: secondary-testimonial;
  background: var(--hrcu-deep-forest);
  border-radius: 15px;
  color: var(--white);
  padding: 1em 2em;
  align-items: flex-start;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 980px) {
  .testimonial-banner .testimonial-grid .secondary-testimonial {
    padding: 1em 4em;
  }
}
.testimonial-banner .testimonial-grid .secondary-testimonial .copy {
  line-height: 1.3;
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (min-width: 980px) {
  .testimonial-banner .testimonial-grid .secondary-testimonial .copy {
    font-size: 2rem;
    font-weight: 400;
  }
}
.testimonial-banner .testimonial-grid .secondary-testimonial .author {
  margin-bottom: 0;
}
.testimonial-banner .testimonial-grid .ending-video {
  grid-area: ending-video;
}
.testimonial-banner .testimonial-grid .ending-video img, .testimonial-banner .testimonial-grid .ending-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
}
.testimonial-banner .testimonial-grid .ending-image {
  grid-area: ending-image;
  position: relative;
}
.testimonial-banner .testimonial-grid .ending-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 15px;
}
.testimonial-banner .testimonial-grid .ending-image:after {
  content: "";
  width: 20%;
  height: 30%;
  background: url(/Content/images/testimonial-quote.svg) no-repeat;
  background-size: contain;
  position: absolute;
  right: 10px;
  bottom: 10px;
  display: block;
}
.testimonial-banner .controls {
  display: grid;
  justify-content: flex-end;
  grid-template-columns: 146px 146px;
  grid-gap: 10px;
}
@media screen and (max-width: 980px) {
  .testimonial-banner .controls {
    justify-content: center;
    margin-top: 2em;
  }
}
.testimonial-banner .controls .left-arrow {
  width: 146px;
  height: 48px;
  background: url(/Content/images/arrow-left.svg) no-repeat;
  background-size: contain;
  text-indent: -9000em;
}
.testimonial-banner .controls .right-arrow {
  width: 146px;
  height: 48px;
  background: url(/Content/images/arrow-left.svg) no-repeat;
  background-size: contain;
  transform: scaleX(-1);
  text-indent: -9000em;
}
.testimonial-banner .controls .left-arrow, .testimonial-banner .controls .right-arrow {
  transition: ease-in-out;
}
.testimonial-banner .controls .left-arrow:hover, .testimonial-banner .controls .right-arrow:hover {
  filter: invert(1);
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

.testimonial-block {
  padding: 3em 0;
}
@media screen and (max-width: 980px) {
  .testimonial-block {
    padding: 3em 20px;
  }
}
.testimonial-block > .content {
  border: solid 2px #18302C;
  padding: 4em;
  border-radius: 24px;
  max-width: 900px;
  margin: auto;
}
.testimonial-block > .content p:first-child {
  font-size: 1.8rem;
  line-height: 3.6rem;
}
.testimonial-block > .content img {
  margin-bottom: 1em !important;
  filter: var(--pageHighlightFilter);
}
.two-col-section .testimonial-block {
  height: 100%;
}
.two-col-section .testimonial-block > .content {
  height: 100%;
  align-content: center;
}
.content .testimonial-block {
  padding: 0;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .text-block > .content > .actions a:first-of-type, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .text-block > .content > .actions a:hover:first-of-type, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .text-block > .content > .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .text-block > .content > .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .text-block > .content > .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.text-block {
  padding: 3em var(--mobile-padding);
  text-align: center;
}
.content .text-block {
  padding: 0;
}
.text-block > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  max-width: 900px;
}
.text-block > .content > h2 {
  margin-bottom: 1em;
}
.text-block > .content > h2 img {
  max-height: 55px;
}
.text-block > .content > .copy {
  margin-bottom: 1em;
  max-width: 900px;
  margin: 0 auto 2em;
}
.text-block > .content > .copy *:last-child {
  margin-bottom: 0;
}
.text-block > .content > .copy ul, .text-block > .content > .copy ol {
  width: max-content;
  max-width: 100%;
  text-align: left;
  margin: 0 auto 1em;
  column-gap: 4em;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 980px) {
  .text-block > .content > .copy ul, .text-block > .content > .copy ol {
    column-count: 2;
  }
  .cols-one.text-block > .content > .copy ul, .text-block > .content > .copy ol {
    column-count: 1;
  }
  .cols-three.text-block > .content > .copy ul, .text-block > .content > .copy ol {
    column-count: 3;
  }
}
.text-block > .content > .copy ul ul, .text-block > .content > .copy ol ul {
  column-count: 1;
  list-style: disc;
}
.text-block > .content > .copy ul ul li:before, .text-block > .content > .copy ol ul li:before {
  content: none;
}
.text-block > .content > .copy ul li, .text-block > .content > .copy ol li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 1em;
}
.text-block > .content > .copy ul li:before, .text-block > .content > .copy ol li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/Content/images/checkmark.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 0;
}
.text-block > .content > .actions {
  display: grid;
  grid-template-columns: minmax(auto, max-content);
  grid-gap: 0.5em;
  max-width: 100%;
  justify-content: center;
}
.text-block > .content:has(.disclosure) > .actions {
  margin-bottom: 2em;
}
:root {
  --body-font: "PP Neue Montreal", sans-serif;
  --heading-font: "Founders Grotesk", sans-serif;
  --mobile-padding: 20px;
  --max-wrap-large: 1920px;
  --max-wrap: 1400px;
  --max-wrap-small: 900px;
  --max-wrap-xsmall: 800px;
  --primary-color: var(--hrcu-deep-forest);
  --secondary-color: var(--hrcu-leaf);
  --tertiarycolor: var(--hrcu-sunset);
  --hrcu-deep-forest: #18302C;
  --hrcu-leaf: #1C7540;
  --hrcu-spring: #A0E0A0;
  --hrcu-daffodil: #FFF86C;
  --hrcu-sunset: #FD5B32;
  --hrcu-river: #AAEEE7;
  --hrcu-lilac: #9FA3FF;
  --hrcu-warm-white: #FFFEF5;
  --hrcu-pink: #FF24DB;
  --white: var(--hrcu-warm-white);
  --black: var(--hrcu-deep-forest);
  --background-gray: #EFEFEF;
  --background-dark-gray: #E8E8E8;
  --gray: #757575;
  --team-gray: #c1c1c1;
  --light-gray: #DCDED7;
  --border-color: #E9E9E9;
  --internal-header-gray: #EEEEEE;
  --internal-header-black: #303030;
  --form-element-border: #E6E6E6;
  --dark-red: #96031D;
  --light-red: #E31937;
  --red: #E31937;
  --yellow: #F2D53C;
  --purple: #5F18E3;
  --orange: #E35F18;
  --green: #00BEA2;
  --teel: #18E3C5;
  --blue: #189CE3;
  --notice-color: #ecf0ee;
  --alert-color: #7b2020;
  --accordion-border: #c3c3c3;
  --input-border: #707070;
  --directory-red: #ce603e;
  --team-background: #F6F6F6;
  --darker-team-gray: #e3e3e3;
  --bio-detail-border: #bfbfbf;
  --alert-bell: #f2f2f2;
  --dark-gray: #58585A;
  --cookie-bar: #385D58;
  --orange-filter: brightness(0) saturate(100%) invert(42%) sepia(95%) saturate(1333%) hue-rotate(338deg) brightness(97%) contrast(105%);
  --green-filter: brightness(0) saturate(100%) invert(39%) sepia(12%) saturate(2330%) hue-rotate(91deg) brightness(90%) contrast(94%);
  --light-green-filter: brightness(0) saturate(100%) invert(36%) sepia(44%) saturate(807%) hue-rotate(91deg) brightness(88%) contrast(83%);
  --blue-filter: brightness(0) saturate(100%) invert(86%) sepia(44%) saturate(225%) hue-rotate(116deg) brightness(99%) contrast(90%);
}

.max-wrap > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-medium > .content {
  max-width: var(--max-wrap) !important;
  margin: 0 auto;
}

.max-wrap-large > .content {
  max-width: var(--max-wrap-large) !important;
  margin: 0 auto;
}

.max-wrap-small > .content {
  max-width: var(--max-wrap-small) !important;
  margin: 0 auto;
}

.max-wrap-xsmall > .content {
  max-width: var(--max-wrap-xsmall) !important;
  margin: 0 auto;
}

/**
// Buttons
*/
/*** FOCUS STYLES ***/
a:focus, button:focus, input:focus, select:focus {
  outline: 1px dotted #3a87ad;
  /* box-shadow: 0 0 5px 1px #3a87ad; */
}

div:focus, section:focus {
  outline: none;
  box-shadow: none;
}

.cta-btn, .text-block-enhanced > .content > .actions a:first-of-type, .cta-btn-brown {
  display: inline-block;
  background: var(--primary-color);
  color: var(--white);
  font-size: 1.8rem;
  padding: 0.65em 3.2em 0.65em 3.2em;
  min-width: 200px;
  break-inside: avoid;
  border-radius: 50px;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--primary-color);
  text-align: center;
  line-height: 1.3;
  transition: all 0.5s ease;
}
.cta-btn:hover, .text-block-enhanced > .content > .actions a:hover:first-of-type, .cta-btn-brown:hover {
  background: rgba(var(--primary-hover-color), 0);
  color: var(--primary-color);
}

.cta-btn-brown {
  background: var(--tertiary-color);
  border-color: var(--tertiary-color);
}

.ghost-btn, .text-block-enhanced > .content > .actions a, .ghost-btn-white {
  display: inline-block;
  background: none;
  color: var(--hrcu-deep-forest);
  break-inside: avoid;
  font-size: 1.8rem;
  border-radius: 50px;
  padding: 0.65em 3.2em 0.65em 3.2em;
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 500;
  border: solid 2px var(--hrcu-deep-forest);
  transition: all 0.5s ease;
  line-height: 1.3;
}
@media screen and (min-width: 980px) {
  .ghost-btn, .text-block-enhanced > .content > .actions a, .ghost-btn-white {
    padding: 0.65em 3.2em 0.65em 3.2em;
    min-width: 200px;
  }
}
.ghost-btn:hover, .text-block-enhanced > .content > .actions a:hover, .ghost-btn-white:hover {
  background: var(--primary-color);
  color: var(--white);
}

.ghost-btn-white {
  border: solid 2px var(--white);
  color: var(--white);
  break-inside: avoid;
}
.ghost-btn-white:hover {
  background: var(--white);
  color: var(--primary-color);
}

.apple-btn {
  display: block;
  color: transparent;
  background: url("/Content/images/bug-app.svg") no-repeat center var(--hrcu-leaf);
  height: 53px;
  min-width: 200px;
  background-size: contain;
  border-radius: 50px;
  transform: scale(1);
  break-inside: avoid;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.apple-btn .text {
  visibility: hidden;
}
.apple-btn:hover, .apple-btn:focus {
  opacity: 1;
  transform: scale(1.04);
}

.android-btn {
  display: block;
  color: transparent;
  break-inside: avoid;
  background: url("/Content/images/bug-play.svg") no-repeat center var(--hrcu-leaf);
  background-size: contain;
  height: 53px;
  min-width: 200px;
  transform: scale(1);
  transition: opacity 0.2s ease, transform 0.2s ease;
  border-radius: 50px;
}
.android-btn .text {
  visibility: hidden;
}
.android-btn:hover, .android-btn:focus {
  opacity: 1;
  transform: scale(1.05);
}

@keyframes scaleBackground {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.5);
  }
}
.icon-lnk {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 1.3rem;
  line-height: 1.3;
  font-weight: 500;
}
.icon-lnk img {
  margin-right: 5px;
}

.icon-lnk-vertical {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-direction: column;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--black);
  text-align: center;
}
.icon-lnk-vertical img {
  margin-bottom: 1em;
  filter: invert(1);
}

.top-lnk:before {
  content: "";
  width: 10px;
  height: 22px;
  background: url(/Content/Images/arrow-up.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.cta-lnk, .cta-lnk-white {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.cta-lnk:after, .cta-lnk-white:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.cta-lnk:hover:after, .cta-lnk-white:hover:after {
  transform: translateX(0.2em);
}

.cta-lnk-blue {
  color: var(--primary-color);
  font-weight: 700;
  transition: all 0.5s ease;
  position: relative;
  max-width: calc(100vw - 40px);
}
.cta-lnk-blue:hover {
  text-decoration: underline;
  font-weight: 700;
}

.cta-lnk-white {
  color: var(--white) !important;
}

.arrow-lnk {
  position: relative;
  display: inline-flex;
  column-gap: 5px;
  align-items: center;
}
.arrow-lnk:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk:hover:after {
  transform: translateX(0.2em);
}

.arrow-lnk-large {
  position: relative;
  display: inline-flex;
  column-gap: 7px;
  align-items: center;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-family: var(--heading-font);
  font-weight: 500;
}
.arrow-lnk-large:after {
  content: "";
  background: url(/Content/images/ico-arrow.svg);
  color: var(--black);
  transition: transform 0.5s ease;
  transform: translateX(0);
  width: 20px;
  height: 11px;
  background-size: contain;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
}
.arrow-lnk-large:hover:after {
  transform: translateX(0.2em);
}

.text-block-enhanced {
  padding: 3em var(--mobile-padding);
  text-align: center;
}
.content .text-block-enhanced {
  padding: 0;
}
.two-col-section .text-block-enhanced {
  height: 100%;
}
.two-col-section .text-block-enhanced > .content {
  height: 100%;
  align-content: center;
}
.text-block-enhanced > .content {
  max-width: var(--max-wrap);
  margin: 0 auto;
  border: solid 2px var(--hrcu-deep-forest);
  border-radius: 20px;
  padding: 3em;
  text-align: center;
}
.text-block-enhanced > .content > h2 {
  max-width: 900px;
  margin: 0 auto 1.5em;
}
.text-block-enhanced > .content > h2 img {
  margin-right: 0.3em;
  max-height: 55px;
}
.text-block-enhanced > .content:has(> h3) > h2 {
  margin-bottom: 0.1em;
}
.text-block-enhanced > .content > h3 {
  font-size: 1.8rem;
  font-weight: 500;
  max-width: 725px;
  margin: 1em auto 2em;
}
.text-block-enhanced > .content > .copy {
  margin-bottom: 1em;
  text-align: left;
  max-width: 900px;
  margin: 0 auto 2em;
}
.text-block-enhanced > .content > .copy *:last-child {
  margin-bottom: 0;
}
.text-block-enhanced > .content > .copy ul, .text-block-enhanced > .content > .copy ol {
  width: max-content;
  max-width: 100%;
  text-align: left;
  margin: 0 auto 1em 0;
  column-gap: 4em;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 980px) {
  .text-block-enhanced > .content > .copy ul, .text-block-enhanced > .content > .copy ol {
    column-count: 2;
  }
  .cols-one.text-block-enhanced > .content > .copy ul, .text-block-enhanced > .content > .copy ol {
    column-count: 1;
  }
  .cols-three.text-block-enhanced > .content > .copy ul, .text-block-enhanced > .content > .copy ol {
    column-count: 3;
  }
}
.text-block-enhanced > .content > .copy ul ul, .text-block-enhanced > .content > .copy ol ul {
  column-count: 1;
  list-style: disc;
}
.text-block-enhanced > .content > .copy ul ul li:before, .text-block-enhanced > .content > .copy ol ul li:before {
  content: none;
}
.text-block-enhanced > .content > .copy ul li, .text-block-enhanced > .content > .copy ol li {
  padding-left: 34px;
  position: relative;
  margin-bottom: 1em;
}
.text-block-enhanced > .content > .copy ul li:before, .text-block-enhanced > .content > .copy ol li:before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/Content/images/checkmark.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 3px;
  left: 0;
}
.text-block-enhanced > .content > .actions {
  display: grid;
  grid-template-columns: minmax(auto, max-content);
  grid-gap: 0.5em;
  max-width: 100%;
  justify-content: center;
  margin-bottom: 2em;
}
.text-block-enhanced > .content:has(.flair-text) {
  position: relative;
  border: 6px solid var(--secondary-color);
}
@media screen and (max-width: 980px) {
  .text-block-enhanced > .content:has(.flair-text) .f-h2 {
    padding-top: 6.5rem;
  }
}
.text-block-enhanced > .content:has(.flair-text) .flair-text {
  position: absolute;
  left: 0;
  top: 3.5rem;
  display: flex;
  background-color: var(--secondary-color);
  column-gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  max-width: 250px;
  padding: 5px 1.8rem 5px 2.2rem;
}
.text-block-enhanced > .content:has(.flair-text) .flair-text img {
  aspect-ratio: 1;
  height: 3rem;
  width: 3rem;
}
.text-block-enhanced > .content:has(.flair-text) .flair-text p {
  font-family: "Founders Grotesk", sans-serif;
  font-size: clamp(1.8rem, 2vw, 2.2rem);
  color: white;
  font-weight: 500;
  margin-bottom: 0;
}
.text-block-enhanced > .content:has(.flair-text) .flair-text:after {
  content: "";
  aspect-ratio: 31/42;
  height: 100%;
  position: absolute;
  top: 8px;
  bottom: -8px;
  right: -19px;
  z-index: -1;
  background-image: url(../images/ico-offer-banner-tail.svg);
  background-size: contain;
  background-position: left;
  background-repeat: no-repeat;
}
/*# sourceMappingURL=main.min.css.map */
