/* ==========================================================================
   CSS Custom Properties (Design Tokens)
   ========================================================================== */
:root {
  /* -- Primary brand blues -- */
  --clr-brand:               #006099;
  --clr-brand-util:          #2075d6;
  --clr-brand-mid:           #007bbd;
  --clr-brand-dark:          #004066;
  --clr-brand-link:          #0090de;

  /* -- Accent colours -- */
  --clr-green:               #62a60a;
  --clr-green-bright:        #93d500;
  --clr-cyan:                #0098c8;
  --clr-teal:                #3dc9c9;
  --clr-orange:              #ff9240;
  --clr-purple:              #7356d9;
  --clr-yellow:              #f2c912;
  --clr-mint:                #7cbf87;
  --clr-light-mint:          #c7f2ce;


  /* -- Decorative menu accents -- */
  --clr-accent-teal:         #9acabc;
  --clr-accent-orange:       #faa958;
  --clr-accent-violet:       #5c79ff;

  /* -- Text colours -- */
  --clr-text:                #2f3031;
  --clr-text-muted:          #6e7073;
  --clr-text-dark:           #404040;
  --clr-text-warning:        #233c4b;

  /* -- Neutral / border greys -- */
  --clr-grey-pale:           #cccccc;
  --clr-grey-mid:            #acaeb2;
  --clr-grey-light:          #c9cdd1;
  --clr-grey-bg:             #e9edf2;
  --clr-grey-faint:          #f5f7fa;

  /* -- Pale background tints -- */
  --clr-bg-green:            #ddff91;
  --clr-bg-green-faint:      #f6ffeb;
  --clr-bg-green-notice:     #c7f2ce;
  --clr-bg-orange:           #ffeee0;
  --clr-bg-orange-faint:     #fff8f2;
  --clr-bg-yellow-faint:     #fffbeb;
  --clr-bg-yellow:           #fff1a6;
  --clr-bg-yellow-warning:   #fff7c9;
  --clr-bg-teal:             #d5eded;
  --clr-bg-blue:             #e9f4ff;
  --clr-bg-blue-soft:        #e0efff;
  --clr-bg-blue-faint:       #f5fcff;
  --clr-bg-blue-faintest:    #f7fbff;
  --clr-bg-blue-notice:      #d6f5ff;
  --clr-bg-cyan-faint:       #edfbff;
  --clr-bg-mint-faint:       #f2fff4;

  /* -- State / alert colours -- */
  --clr-alert:               #cc3a27;

  /* -- Utility -- */
  --clr-white:               #fff;
  --clr-white-alpha:         rgba(255, 255, 255, 0.4);
  --clr-overlay-light:       rgba(0, 0, 0, 0.1);
  --clr-overlay-lmid:        rgba(0, 0, 0, 0.2);
  --clr-overlay-mid:         rgba(0, 0, 0, 0.4);
  --clr-overlay-dark:        rgba(0, 0, 0, 0.5);
  --clr-overlay-darker:        rgba(0, 0, 0, 0.8);
}

/* ---------- MEPP 2025 ----------- */
body {
    font-family: 'Montserrat', sans-serif;
}

#main-wrapper {
    padding-bottom: 100px;
}

ol, li, td, tr, th {
    font-family: 'Roboto Flex', sans-serif;
}

a:hover,
a:focus {
    color: #0090de !important;
}

h1 {
    font-family: "Playfair Display", serif;
    font-size: 72px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.11;
    letter-spacing: -2.16px;
    text-align: left;
    color: var(--clr-brand);
}

h2 {
    font-family: "Playfair Display", serif;
    font-size: 48px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: -1.44px;
    text-align: left;
    color: var(--clr-brand);
    margin-bottom: 32px;
}

h3 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -1.2px;
    text-align: left;
    color: var(--clr-brand);
    margin-bottom: 32px;
}

h4 {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: -0.96px;
    text-align: left;
    color: var(--clr-brand);
    margin-bottom: 32px;
}

h5 {
    font-family: 'Montserrat', sans-serif;;
    font-size: 22px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: -0.66px;
    text-align: left;
    color: var(--clr-brand);
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-text);
    font-size: min(24px, 4vw);
}

/* ---------- GENERIC ----------- */
.ff-mon {
    font-family: 'Montserrat', sans-serif;
}

.ff-rob {
    font-family: 'Roboto Flex', sans-serif;
}

.ff-pf {
    font-family: "Playfair Display", serif;
}

.fs-18 {
    font-size: 18px !important;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-24 {
    font-size: 24px;
}

.fw-500 {
    font-weight: 500;
}

.f-pepp-blue {
    color: var(--clr-brand);
}

.f-pepp-lblue {
    color: var(--clr-brand-mid);
}

.f-pepp-grey {
    color: var(--clr-text);
}

.f-pepp-green {
    color: var(--clr-green);
}

.border-blue {
    border: 1px solid var(--clr-brand-mid);
    border-radius: 24px;
}

a.underline {
    text-decoration: underline !important;
}

.bg-mepp-mint {
    background: var(--clr-light-mint);
}

.bg-mepp-orange {
    background: var(--clr-bg-orange);
    border-color: var(--clr-bg-orange);
}

.bg-mepp-orange-team {
    background: #ffd0ad;
}

.bg-mepp-yellow-team {
    background: #faeaa2;
}

.bg-mepp-green-team {
    background: #daf4b7;
}

.bg-mepp-mint-team {
    background: #c7f2ce;
}

.bg-mepp-blue-team {
    background: #d7effc;
}

.bg-mepp-blue {
    background: var(--clr-bg-teal);
}

.bg-mepp-yellow {
    background: var(--clr-bg-yellow);
}

.bg-mepp-green {
    background: var(--clr-bg-green);
    border-radius: 24px;
}

.fa-file-pdf {
    color: var(--clr-orange);
}

blockquote {
    position: relative;
    padding: 1.5rem 0;
    margin: 2rem 0;
}

blockquote::before {
  content: "\201C";
  position: absolute;
  top: -40px;
  left: -5px;
  font-size: 8rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--clr-green-bright);
  line-height: 1;
}

blockquote > p {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px !important;
    font-weight: 600 !important;
    font-stretch: normal !important;
    font-style: normal !important;
    line-height: normal !important;
    letter-spacing: -0.96px !important;
    text-align: left !important;
    color: var(--clr-brand) !important;
}

/* ---------- LAYOUT ----------- */
.mepp-container,
.pepp-container {
    margin: 0 60px;
}

/* SEARCH */

.search-container {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  margin-right: 20px;
}

.form-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 32px;
  background: var(--clr-grey-bg);
  transition: all 0.3s;
}

.form-item > div {
    margin-bottom: 0 !important;
}

.form-item:focus-within {
    box-shadow: 0 1px 4px 0 var(--clr-overlay-mid);
    background: var(--clr-white);
}

.form-item input.form-control {
  flex: 1;
  padding: 12px 16px;
  border: none;
  background: transparent;
  font-size: 16px;
  outline: none;
}

.form-item input.form-control:focus {
    box-shadow: none;
}

.form-item input.form-control::placeholder {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: var(--clr-text);
}

.search-submit-btn {
  padding: 12px 12px;
  background: var(--clr-brand-mid);
  color: var(--clr-white);
  border: none;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 7px;
}

.search-submit-btn:hover {
  background: var(--clr-brand);
}

.search-submit-btn i {
  font-size: 16px;
}

.search-container label {
    display: none;
}

#collapseSearchInner {
    justify-content: center;
    padding-left: 20px;
}

#collapseSearchInner > div {
    flex: 1;
}

#collapseSearchInner .form-item{
    background: var(--clr-white);
}

#collapseSearchInner .search-container {
    max-width: unset;
}

/* ---------- MENUS ----------- */
.top-bar-menu .nav-link,
.mega-menu .menu-level-0 > li > a {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.71;
    letter-spacing: 0.28px;
    color: var(--clr-white);
}

.main-menu .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.72px;
    color: var(--clr-brand);
    padding: 0 22px;
}

.main-menu .nav {
    justify-content: space-between;
}

.top-bar-menu .nav-item:first-child .nav-link,
.main-menu li:first-child a,
.mega-menu .menu-level-0 > .menu-item:first-child {
    padding-left: 0 !important;
}

.mega-menu {
    position: relative;
}

.mega-menu .menu-level-0 {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu .menu-level-0 > .menu-item {
    position: relative;
    padding: 8px 12px;
}

.mega-menu .mega-menu-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--clr-purple);
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    min-width: 415px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
    z-index: 1000;
    padding-top: 32px;
}

.mega-menu .menu-item--expanded:hover {
    background: var(--clr-purple);
}

.mega-menu .menu-item:hover > .mega-menu-content {
    opacity: 1;
    visibility: visible;
}

.mega-menu .menu-level-1 {
    flex-direction: column;
    list-style: none;
    padding: 32px 32px 16px 32px;
    border-top: 2px solid var(--clr-white-alpha);
}

.mega-menu .menu-level-1 .menu-link__text {
    display: inline-block;
}

.mega-menu .menu-level-1 .menu-item {
    padding: 0;
}

.mega-menu .menu-level-1 a {
    text-decoration: none;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: 0.36px;
    color: var(--clr-white);
    display: inline-block;
}

.mega-menu .menu-level-1 .menu-item {
    margin-bottom: 16px;
}

.mega-menu .menu-level-1 .menu-item:nth-child(3n+1) a span {
    padding-bottom: 3px;
    border-bottom: 2px solid var(--clr-accent-teal);
    margin-right: 10px;
}

.mega-menu .menu-level-1 .menu-item:nth-child(3n+2) a span{
    padding-bottom: 3px;
    border-bottom: 2px solid var(--clr-accent-orange);
    margin-right: 10px;
}

.mega-menu .menu-level-1 .menu-item:nth-child(3n) a span{
    padding-bottom: 3px;
    border-bottom: 2px solid var(--clr-accent-violet);
    margin-right: 10px;
}

.mega-menu-top {
    padding: 0 32px 32px 32px;
}

.mega-menu-top span {
    display: inline-block;
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 300;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: var(--clr-grey-pale);
}

.mega-menu-top img {
    max-width: 140px;
}

.mega-menu .menu-item--expanded > .menu-link {
  pointer-events: none; 
}

.mega-menu .menu-item--expanded {
  pointer-events: auto;
}

/* ---------- HEADER ----------- */
.header-wrapper {
    padding-top: 32px;
}

.navbar-brand img {
    width: 104px;
    height: 56px;
}

.main-nav-wrapper {
    padding: 40px 0 30px 0;
    border-bottom: 1px solid var(--clr-grey-light);
}

.header-items {
    display: flex;
    justify-content: space-between;
    align-items: anchor-center;
}

.header-right {
    display: flex;
    align-items: anchor-center;
}

/* ---------- FOOTER ----------- */
.footer {
    margin-bottom: 5rem;
}

.footer-contact p {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    line-height: 1.33;
    color: var(--clr-text);
    margin-bottom: 3px;
}

.footer-contact > div {
    margin-bottom: 2rem;
}

.footer ul.nav > li > a,
.footer ul.nav > li .nav-title .nav-item {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    color: var(--clr-green);
}

.footer ul.nav ul.menu {
    padding-left: 0;
}

.footer ul.nav ul.menu li {
    list-style: none;
}

.footer ul.nav ul.menu li a {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.32px;
    color: var(--clr-brand);
}

footer.sub-footer {
    background-color: transparent;
    height: 200px;
}

.sub-footer-wrapper {
    display: flex;
    justify-content: flex-end;
    column-gap: 35px;
}

.sub-footer-text {
    font-size: 12px;
    line-height: 2.67;
    letter-spacing: 0.24px;
    color: var(--clr-text);
}

.sub-footer-logo img {
    max-width: 175px;
}

.footer ul.nav .nav-title svg { 
    display: none;
}

.footer ul.nav .nav-title .nav-item {
    border: 0;
    background: transparent;
    padding: 0.5rem;
}

#accordionFooter .accordion-button:not(.collapsed),
#accordionFooter .accordion-button {
    border: 0;
    border-bottom: 1px solid var(--clr-brand-mid);
    background-color: var(--clr-white);
}

#accordionFooter .accordion-body .nav {
    flex-direction: column;
}

.sm-icon .icon-bg {
    color: #f5f7fa;
}

.sm-icon .icon-brand {
    color: var(--clr-brand);
}

.sm-icon svg.fa-youtube {
    margin-left: -5px;
}

/* ---------- HOME ----------- */
.section-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    line-height: 1.33;
    color: var(--clr-text);
    margin-bottom: 3rem;
    display: block;
}

.section-link {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 0.36px;
    color: var(--clr-brand);
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.33;
    color: var(--clr-brand);
    margin-bottom: 2rem;
}

.home-section-title {
    font-family: "Playfair Display", serif;
    font-size: min(72px, 5vw);
    font-weight: 600;
    line-height: 1.11;
    letter-spacing: -2.16px;
    color: var(--clr-brand);
    margin-bottom: 4rem;
}

.home-header {
    padding-top: 230px;
    margin-bottom: 210px;
}

h1.home-title {
    font-size: min(96px, 6vw);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -3.12px;
    color: var(--clr-white);
}

.inner-section-wrapper {
    padding: 60px 50px;
    border-radius: 24px;
}

.home-cards {
    margin-bottom: 5rem;
}

.home-cards .card {
    padding: 40px 32px;
    border-left: 16px solid;
    border-radius: 24px;
}

.footer-bg {
    background-size: cover;
    background-image: url("/themes/custom/mepp_2025/img/bg/footer-bg.png");
    background-repeat: no-repeat;
}

.bg-wrapper {
    background-size: contain;
    background-image: url("/themes/custom/mepp_2025/img/bg/rectangle@3x.png");
    background-position: top right;
    background-repeat: no-repeat;
}

.green-bg-wrapper {
    background-size: cover;
    background-image: url("/themes/custom/pepp_2025/images/bg/vector.webp");
    background-position: top right;
    background-repeat: no-repeat;
}

.home-retirement .ad-wrapper {
    padding-bottom: 0;
}

.home-retirement .ad-wrapper .home-calc-bg {
    background-size: contain;
    background-image: url("/themes/custom/pepp_2025/images/home/retirement-calc-couple.webp");
    background-position: bottom right;
    background-repeat: no-repeat;
    overflow: hidden;
}

.home-retirement .ad-wrapper .home-calc-bg img { 
    transform-origin: bottom;
    margin-top: 25px;
    transform: translateY(75px) scale(0.9);
}

#main > div > main {
    padding: 0;
}

.home-cards #cardContainer > div:nth-child(3n+1) .card {
    border-color: var(--clr-yellow);
}

.home-cards #cardContainer > div:nth-child(3n+2) .card {
    border-color: var(--clr-mint);
}

.home-cards #cardContainer > div:nth-child(3n) .card {
    border-color: var(--clr-orange);
}

.home-cards .card .card-title {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.19;
    color: var(--clr-brand);
    margin-bottom: 2rem;
}

.home-cards .card .card-text {
    font-size: 18px;
    line-height: 1.33;
    color: var(--clr-text);
    margin-bottom: 4rem;
}

.home-cards .card a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.33;
    letter-spacing: 0.36px;
    color: var(--clr-brand);
}

.home-cards .card-footer {
    text-align: right;
    border: 0;
    background-color: inherit;
}

.home-section-header {
    font-size: 72px;
    font-weight: 600;
    line-height: 1.11;
    letter-spacing: -2.16px;
    color: var(--clr-brand);
}

.node--home section {
    margin-bottom: 2rem;
}

.member-update-outer {
    background: var(--clr-light-mint);
    border: 1px solid var(--clr-light-mint);
    border-radius: 24px;
}

.update-wrapper {
    padding: 38px 0;
    border-bottom: 1px solid var(--clr-brand-mid);
}

.update-wrapper:last-child {
    border-bottom: 0;
}

.update-wrapper span {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-overlay-darker);
}

.featured-insight {
    display: flex;
    flex-direction: column;
}

.featured-insight img {
    border-radius: 24px;
    margin-bottom: 32px;
}

.home--insight-title a {
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.19;
    letter-spacing: normal;
    color: var(--clr-brand);
    margin-bottom: 8px;
}

.featured-insight .home--insight-title a {
    font-size: 32px;
}

.home--insight-date {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: 0.28px;
    color: var(--clr-text-muted);
}

.home--insight-img {
    flex-shrink: 0;
    max-width: 164px;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
}

.home--insight-details {
    padding-left: 20px;
}

.insight-list {
    display: flex;
    flex-direction: row;
    padding-bottom: 39px;
    border-bottom: 1px solid var(--clr-brand-util);
}

.insight-list:last-child {
    border: 0;
}

.insight-list:not(:first-child) {
    margin-top: 40px;
}

.insight-list .home--insight-title {
    font-size: 24px;
}

.home--ac-link {
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.4px;
    color: var(--clr-brand);
    padding: 16px;
    background: var(--clr-bg-blue-faint);
    border-radius: 16px;
    margin-bottom: 16px;
    align-items: anchor-center;
}

.home--ac-link:hover {
    color: var(--clr-white) !important;
    background: var(--clr-brand-mid);
}

.node--toc-item a {
    justify-content: space-between;
    align-items: anchor-center;
}

.home--ac-link svg,
.node--toc-item a svg {
    opacity: 0;
    /* transition: opacity 0.2s ease; */
}

.home--ac-link:hover svg,
.node--toc-item a:hover svg {
    opacity: 1;
}

.ad-wrapper {
    background: url("/themes/custom/mepp_2025/img/bg/blue.webp");
    background-repeat: no-repeat;
    border-radius: 24px;
    background-size: cover;
    /* max-height: 750px;
    overflow: hidden; */
}

.ad-wrapper {
    text-align: center;
}

.ad-img-wrapper {
    padding: 0 20px;
}

.home-team .team-grid,
.node--learning-team .team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 160px));
    gap: 48px;
    justify-content: center;
}

.home-team .team-grid .grid-item,
.node--learning-team .team-grid .grid-item,
.team-item {
    width: 100%;
    aspect-ratio: 1 / 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.home-team .team-grid .grid-item img,
.node--learning-team .team-grid .grid-item img,
.team-item img {
    width: 100%;
} 

.team-item {
    max-width: 160px;
}

.fund-control-wrapper {
    padding-right: 50px;
}

.fund-dropdown {
    margin-bottom: 16px;
}

.fund-select__control   .fund-select__value-container {
    padding: 18px 16px;
}

.fund-select__value-container .fund-select__single-value {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: 0.36px;
    text-align: left;
    color: var(--clr-brand);
}

.fund-select__indicator-separator,
.fund-select__clear-indicator {
    display: none;
}

.fund-select__indicators .fund-select__indicator {
    color: var(--clr-brand);
}

.home--arlo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

#mepp-arlo-home .arlo-item {
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--clr-brand-mid);
    background: var(--clr-white);
}

#mepp-arlo-home .arlo-item span {
    display: inline-block;
}

#mepp-arlo-home .arlo-item .event-banner {
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: var(--clr-green);
    margin-bottom: 8px;
}

#mepp-arlo-home .arlo-item .event-name {
    font-size: 24px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.08;
    letter-spacing: normal;
    color: var(--clr-brand);
    margin-bottom: 16px;
}

#mepp-arlo-home .arlo-item .event-date,
#mepp-arlo-home .arlo-item .event-location {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.29;
    letter-spacing: normal;
    color: var(--clr-text-dark);
    margin-bottom: 8px;
}

#mepp-arlo-home .arlo-item .event-title {
    font-size: 40px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -1.2px;
    color: var(--clr-brand);
    margin-bottom: 24px;
}

#mepp-arlo-home .arlo-item .event-callout {
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 2;
    letter-spacing: 0.4px;
    color: var(--clr-brand);
    display: inline-block;
    padding: 5px 16px;
    border: 1px transparent;
    border-radius: 20px;
    background: var(--clr-bg-blue-soft);
    margin-bottom: 10px;
}

#mepp-arlo-home .arlo-item .event-for {
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: 0.28px;
    text-align: left;
    color: var(--clr-text-muted);
}

#mepp-arlo-home .arlo-item .event-detail {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-text);
    margin-bottom: 40px;
}

.home-cards #cardContainer,
#mepp-arlo-home #eventCC {
    -ms-overflow-style: none;
    scrollbar-width: none;
    margin-bottom: 60px;
    overflow: auto;
}

.home-cards #cardContainer > *,
#eventCC > * {
    padding-right: calc(1.5rem * .5);
    padding-left: calc(1.5rem * .5);
}

.uv-chart-legend {
    margin-left: 35px;
}

.uv-chart-legend .card-title {
    position: relative;
    padding-top: 12px;
    font-family: 'Roboto Flex', sans-serif !important;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: 0.36px;
    color: var(--clr-text);
}

.uv-chart-legend .card-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15%;
    height: 4px;
}

.uv-chart-legend .legend-0 .card-title::before {
    background: var(--clr-brand-mid)
}

.uv-chart-legend .legend-1 .card-title::before {
    background: var(--clr-green)
}

.uv-chart-legend .legend-2 .card-title::before {
    background: var(--clr-orange)
}

.home-full-ad .ad-wrapper {
    margin-top: 50px;
}

/* ---------- BASIC PAGE ----------- */
ol.breadcrumb {
    display: inline-flex;
    align-items: anchor-center;
    padding: 8px 16px;
    border: 1px solid var(--clr-brand-mid);
    border-radius: 32px;
    margin: 24px 0 72px 0;
}

ol.breadcrumb .breadcrumb-item ,
ol.breadcrumb .breadcrumb-item a,
ol.breadcrumb .breadcrumb-item span {
    font-family: 'Roboto Flex', sans-serif;
    /* font-variation-settings: 'wdth' 140; */
    font-weight: 600;
    font-stretch: 130%;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    font-size: 14px;
    color: var(--clr-brand);
    text-decoration: none;
    padding-left: 0;
}

ol.breadcrumb .breadcrumb-item span.breadcrumb-separator {
    padding: 0 8px 0 6px;
}

ol.breadcrumb > * {
    margin-bottom: 0 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: none;
}

.node--basic-menu-title {
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    color: var(--clr-green);
    margin-bottom: 8px;
}

.node--basic-menu-sub {
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -0.6px;
    text-align: left;
    color: var(--clr-brand-mid);
    padding-bottom: 16px;
    margin-bottom: 32px;
    border-bottom: 1px solid #cdcfd1;
}

.left-navigation ul.nav {
    flex-direction: column;
    padding: 0;
}

.left-navigation ul.nav > li {
    padding: 16px 24px;
}

.left-navigation ul.nav > li:hover {
    color: var(--clr-brand-link);
    text-decoration: underline !important;
}

.left-navigation ul.nav a {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: 0.4px;
    color: var(--clr-brand-mid);
    text-decoration: none;
    padding: 4px 0;
}

.left-navigation ul.nav li.menu-item--active-trail {
    padding: 16px;
    background: var(--clr-bg-blue-faintest);
    border-left: 8px solid var(--clr-brand-mid);
    border-radius: 8px;
    
}

.left-navigation ul.nav li.menu-item--active-trail a {
    color: var(--clr-brand);
    font-weight: 600;
}

@media (max-width: 1199.98px) {
    .left-navigation nav {
        display: none;
    }

    #select-nav {
        display: block;
        margin-bottom: 35px;
    }
}

@media (min-width: 1200px) {
    .left-navigation nav {
        display: block;
    }

    #select-nav {
        display: none;
    }
}

.page--basic-page p,
.page--basic-page ul li,
.page--basic-page ol li,
.content ol li,
.content ul li {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: #2f3031;
    color: var(--clr-text);
    margin-bottom: 8px;
}

.page--basic-page ul li,
.page--basic-page ol li {
    margin-bottom: 16px;
}

.page--basic-page p {
    margin-bottom: 32px;
}

.page--basic-page a {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.4px;
    color: var(--clr-brand-mid);
    text-decoration: underline;
}

.page--basic-page ul {
    margin-bottom: 32px;
}

.page--basic-page img {
    max-width: 100%;
    height: auto;
}

.in-pdf {
    color: var(--clr-orange);
}

.right-rail-box {
    padding: 40px 32px;
    border-radius: 24px;
    margin-bottom: 32px;
}

.related-links-box {
    background: var(--clr-bg-blue-faintest);
}

.related-files-box {
    background: var(--clr-bg-blue-faintest);
}

.related-links-box .related-links-links {
    display: flex;
    align-items: baseline;
    font-size: 20px;
}

.related-files-box .bp-rel-file,
.related-links-box .related-links-links a {
    display: flex;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: 0.4px;
    color: var(--clr-brand-mid);
    text-decoration: none;
    margin-bottom: 10px;
}

.video-container {
    background: var(--clr-bg-blue-faintest);
}

/* .video-container .lb-video-title {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-text);
} */

.right-rail-box .bp-box-title,
.video-container .lb-video-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.18;
    letter-spacing: -0.66px;
    text-align: left;
    color: var(--clr-green);
}

.right-rail-box .bp-box-text,
.field--name-field-bp-link-desc,
.field--name-field-bp-file-desc {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-text);
    margin-bottom: 24px;
}

/* ---------- INSIGHTS ----------- */
.node--insight-title {
    margin-bottom: 16px;
}

.node--insight-date {
    margin-bottom: 32px;
}

.node--insight-hero {
    margin-bottom: 114px;
    max-height: 750px;
    overflow: hidden;
    border: 1px transparent;
    border-radius: 24px;
}

/* ---------- TOC ----------- */
/* .node--toc-breadcrumb ol.breadcrumb{
    margin: 48px 0 66px 0;
} */

.node--toc-header,
.node--learning-header {
    max-height: 520px;
    text-align: center;
    justify-content: end;
    margin-bottom: 80px;
    /* background-color: var(--clr-bg-orange); */
    border-radius: 24px;
    background-size: contain;
    /* background-image: url("/themes/custom/pepp_2025/images/bg/ic-graphic-frame.webp"); */
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.node--toc-header .toc-header-img,
.node--learning-header .learning-header-img {
    border-radius: 24px;
}

.node--toc-content {
    margin-bottom: 90px;
    font-size: 22px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: normal;
    color: var(--clr-text);
}

.node--toc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.node--toc-grid .node--toc-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid transparent;
}

.node--toc-grid .node--toc-item:hover {
    border-color: var(--clr-brand-mid);
}

.node--toc-grid .node--toc-item:nth-child(5n + 1) {
    background-color: var(--clr-bg-blue-faint);
}

.node--toc-grid .node--toc-item:nth-child(5n + 2) {
    background-color: var(--clr-bg-yellow-faint);
}

.node--toc-grid .node--toc-item:nth-child(5n + 3) {
    background-color: var(--clr-bg-green-faint);
}

.node--toc-grid .node--toc-item:nth-child(5n + 4) {
    background-color: var(--clr-bg-mint-faint);
}

.node--toc-grid .node--toc-item:nth-child(5n) {
    background-color: var(--clr-bg-orange-faint);
}

.node--toc-grid .node--toc-item a {
    display: flex;
    font-size: 28px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.17;
    letter-spacing: -0.84px;
    margin-bottom: 24px;
    color: #006099;
}

.node--toc-item-text {
    font-size: 18px;
    font-stretch: 130%;
    line-height: 1.33;
}

.node--toc-grid .node--toc-item a span {
    margin: auto 0 auto 0;
}

/* ---------- INSIGHTS ----------- */
.node--insight-landing .node--insight-title {
    margin-top: 64px;
    margin-bottom: 49px;
}

.node--insights-landing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.node--insights-landing-grid .grid-item {
    padding: 32px;
    background: var(--clr-bg-blue-faint);
    border-radius: 24px;
}

.node--insights-landing-grid .grid-item a {
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.19;
    letter-spacing: normal;
    text-align: left;
    color: var(--clr-brand);
    margin-bottom: 8px;
}

.node--insights-landing-grid .grid-item img {
    border-radius: 24px;
    margin-bottom: 32px;
}

.node--insights-landing-grid .grid-item .insight-category,
.node--insight-category,
.node--insights-featured .insight-category,
.home--insight-category {
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    text-align: left;
    color: var(--clr-green);
    margin-bottom: 8px;
}

.node--insights-landing-grid .grid-item .insight-date,
.node--insights-featured .insight-date {
  font-size: 14px;
  font-weight: 500;
  font-stretch: normal;
  font-style: normal;
  line-height: 1.71;
  letter-spacing: 0.28px;
  text-align: left;
  color: var(--clr-text-muted);
}

.node--insights-featured .insight-date {
    color: var(--clr-grey-light);
}

.node--insights-featured-wrapper {
    margin-bottom: 80px;
}

.node--insights-featured {
    padding: 64px;
    border-radius: 24px;
    background: var(--clr-brand);
    height: 100%;
}

.node--insights-featured a {
    font-size: 72px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.1;
    letter-spacing: -2.4px;
    color: var(--clr-white);
    margin-bottom: 24px;
    display: block;
}

.node--insights-featured-img {
    overflow: hidden;
}

.node--insights-featured-img img {
    border-radius: 24px;
}

.node--insights-featured .insight-date {
    margin-bottom: 32px;
}

.node--insights-featured .insight-excerpt {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-white);
    margin-bottom: 40px;
}

.node--insights-featured .insight-cta {
    font-size: 18px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: 0.36px;
    color: var(--clr-white);
}

.node--insights-featured .insight-cta svg { 
    margin-left: 10px;
}

/* ACCOUNT CHANGES */
/* .page-ac-wrapper {
    background-size: cover;
    background-image: url("/themes/custom/pepp_2025/images/bg/vector.webp");
    background-position: top right;
    background-repeat: no-repeat;
} */

.bg-arc {
    background-repeat: no-repeat;
    background-image: url("/themes/custom/mepp_2025/img/bg/arc.png");
    background-position: -5% 100%;
}

.node--account-changes h3 {
    margin-bottom: 24px;
    padding-left: 16px;
}

.node--account-changes section {
    padding: 48px 32px 0 32px;
    margin-bottom: 48px;
    border: 1px solid var(--clr-brand-mid);
    border-radius: 24px;
    background: var(--clr-white);
}

.node--account-changes .ac-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-bottom: 1px;
    margin-bottom: -2px;
    overflow: hidden;
}

.node--account-changes .ac-grid .grid-item { 
    border-bottom: 1px solid var(--clr-brand-mid);
    padding: 40px 16px 39px 16px;
}

.node--account-changes .ac-wrapper > div {
    padding-right: 40px;
}

.node--account-changes .ac-wrapper a {
    align-items: anchor-center;
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-brand);
    margin-bottom: 24px;
}

.node--account-changes .ac-wrapper a:hover {
    color: var(--clr-brand-link);
}

.node--account-changes .ac-wrapper a svg {
    transition: transform 0.25s;
}

.node--account-changes .ac-wrapper a:hover svg {
    transform: rotate(45deg);
    transition: transform 0.25s;
}

.node--account-changes .ac-wrapper span {
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-text);
}

.node--account-change {
    margin-bottom: 50px;
}

.node--account-change .inner-wrapper {
    padding: 48px;
}

.node--account-change .row > div {
    margin-bottom: 24px;
}

.node--account-change .recommended {
    margin-bottom: 48px;
    border-radius: 24px;
    background-color: var(--clr-bg-orange);
}

.node--account-change .ac-sub-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    text-align: left;
    color: var(--clr-brand);
    margin-bottom: 16px;
}

.node--account-change .ac-details-section {
    margin-bottom: 2rem;
}

.node--account-change .ac-overview {
    margin-bottom: 48px;
}

.node--account-change .ac-overview p,
.node--account-change .ac-options p,
.node--account-change .ac-details p,
.node--account-change .ac-details ol li,
.node--account-change .ac-details ul li {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-stretch: 130%;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-text);
}

.node--account-change a,
.node--account-change .ac-details a {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-stretch: 130%;
    font-style: normal;
    line-height: 1.78;
    letter-spacing: 0.36px;
    text-align: left;
    color: var(--clr-brand-link);
}

.node--account-change a .field__item,
.node--account-change .ac-details a .field__item {
    text-decoration: underline;
}

.node--account-change .ac-options .recommended {
    padding: 32px 24px;
    border-radius: 24px;
    background: var(--clr-bg-orange)
}

.node--account-change .ac-options .options {
    padding: 0 24px;
}

.node--account-change div.option-wrapper:not(:last-child) {
    margin-bottom: 64px;
}

.node--account-change .option-btn a {
    display: flex;
    font-family: 'Roboto Flex', sans-serif;
    color: var(--clr-brand);
    background-color: var(--clr-white);
    border: 1px solid var(--clr-brand);
    border-radius: 32px;
    padding: 12px 24px;
    justify-content: center;
}

.node--account-change .ac-options .icon svg:first-child {
    color: var(--clr-green);
}

.node--account-change .ac-options .icon svg:last-child {
    color: var(--clr-brand);
}

.node--account-change .ac-options .option-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas:
    "option-icon option-title"
    ".    option-detail";
    gap: 16px 16px;
    align-items: center;
}

.node--account-change .ac-options .option-grid .ac-sub-title {
    margin-bottom: 0;
}

.node--account-change .ac-options .option-grid .option-detail {
    grid-area: 2 / 2;
}

/* FUND */
.node--perf-listing .node--fund-summary {
    font-size: 24px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: -0.48px;
    color: var(--clr-text);
    margin-bottom: 64px;
}

.node--perf-listing .fundlist-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.node--perf-listing .fundlist-grid .card-body > div:not(:last-child) {
    margin-bottom: 24px;
}

.node--perf-listing .fundlist-grid .fund-title,
.node--perf-listing .fundlist-grid .fund-icon {
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.13;
    letter-spacing: -0.96px;
    text-align: left;
    color: var(--clr-brand);
}

.node--perf-listing .fundlist-grid .fund-value {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-text);
}

.node--perf-listing .fundlist-grid .fund-value-icon {
    margin-right: 16px;
}

.node--perf-listing .fundlist-grid .fund-value-icon svg {
    color: var(--clr-brand);
}

.node--perf-listing .fundlist-grid .card {
    border: 1px solid var(--clr-bg-green-faint);
    border-radius: 24px;
}

.node--perf-listing .fundlist-grid .card-body {
    padding: 32px;
}

.node--perf-listing .fundlist-grid .card:hover {
    border: 1px solid var(--clr-brand-mid);
}

.node--perf-listing .fundlist-grid .card:hover .fund-title, 
.node--perf-listing .fundlist-grid .card:hover .fund-icon {
    color: var(--clr-brand-mid);
}

.node--perf-listing .fundlist-grid .fund-icon {
    display: none;
}

.node--perf-listing .fundlist-grid .card:hover .fund-icon {
    display: block;
}

/* INDIVIDUAL */
.node--fund ol.breadcrumb {
    margin-bottom: 64px;
}

.node--fund .section-link {
    display: block;
    margin-bottom: 64px;
}

.node--fund .fund-info-btns {
    gap: 16px;
}

.node--fund .node--fund-overview {
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: normal;
    color: var(--clr-green);
    margin-bottom: 16px;
}

.node--fund .footnote {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.43;
    letter-spacing: normal;
    color: var(--clr-text-muted);
}

.node--fund .fund-info-btn span {
    display: block;
    padding: 24px 40px;
    border: 1px solid var(--clr-grey-mid);
    border-radius: 40px;
    font-size: min(18px, 3vw);
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-text);
}

.node--fund .fund-container {
    padding: 48px;
    border: 1px solid var(--clr-brand-mid);
    border-radius: 24px;
    margin-top: 32px;
}

.node--fund .fund-desc {
    font-size: min(24px, 4vw);
    margin-bottom: 80px;
}

.node--fund .fundtbl-text {
    font-size: min(18px, 3vw);
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: var(--clr-text);
    margin-bottom: 40px;
    display: block;
}

.node--fund .fund-docs p {
    margin-bottom: 40px;
}

.node--fund .fund-docs .doc-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.node--fund .fund-docs svg {
    font-size: min(20px, 3.5vw);
}

.node--fund .fund-docs a {
    font-family: 'Roboto Flex', sans-serif;
    font-size: min(20px, 3.5vw);
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.4px;
    text-align: left;
    text-decoration: underline;
    color: var(--clr-brand-mid);
}

/* MOBILE MENU */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-overlay-dark);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 998;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.side-menu {
    position: fixed;
    top: 0;
    left: -90vw;
    width: 90vw;
    height: 100%;
    background-color: var(--clr-white);
    transition: left 0.3s ease;
    z-index: 999;
    overflow-y: auto;
    overflow-x: hidden;
}

.side-menu.active {
    left: 0;
}

.mobile-logo {
    padding: 30px 24px;
    border-bottom: 1px solid var(--clr-grey-light);
}

.main-menu-mobile ul {
    flex-direction: column;
}

.main-menu-mobile ul .nav-link {
    font-size: 16px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: -0.48px;
    color: var(--clr-brand);
    padding: 16px 24px;
    border-bottom: 1px solid var(--clr-grey-light);
}

.mobile-menu-wrapper .top-bar-wrapper .mega-menu-content {
    position: fixed;
    top: 40px;
    left: 0;
    width: 90vw;
    box-sizing: border-box;
}

.mobile-menu-wrapper .header-ext {
    text-align: center;
    margin-bottom: 32px;
}

.mobile-menu-wrapper .header-ext a.button {
    width: 80%;
    justify-content: center;
}

/**
* Site Notice
*/
.update-banner {
    padding: 20px 0;
    text-align: left;
}

.update-banner--default,
.update-banner--notice {
    background: var(--clr-bg-green-notice);
}

.update-banner--warning {
    background: var(--clr-bg-yellow-warning);
}

.update-banner--alert {
    background: var(--clr-alert);
}

.update-banner__text,
.update-banner__link {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: 0.32px;
}

.update-banner--default .update-banner__text,
.update-banner--notice .update-banner__text,
.update-banner--default .update-banner__link,
.update-banner--notice .update-banner__link {
    color: var(--clr-brand);
}

.update-banner--warning .update-banner__text,
.update-banner--warning .update-banner__link {
    color: var(--clr-text-warning);
}

.update-banner--alert .update-banner__text,
.update-banner--alert .update-banner__link {
    color: var(--clr-white);
}

/* LEARNING EVENTS */
.node--learning-events section {
    margin-bottom: 32px;
}

.node--learning-content a.page-anchor:hover {
    color: #fff;
}

a.page-anchor {
    display: flex;
    justify-content: space-between;
    align-items: anchor-center;
    padding: 16px;
    background: var(--clr-bg-blue-faintest);
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.6;
    letter-spacing: 0.4px;
    color: var(--clr-brand);
    border: 1px transparent;
    border-radius: 16px;
}

.node--learning-content a.page-anchor:hover {
    color: #fff !important;
}

a.page-anchor:hover {
    background: var(--clr-brand-mid);
    color: var(--clr-white);
}

a.page-anchor svg {
    opacity: 0;
}

a.page-anchor:hover svg {
    opacity: 1;
}

.node--learning-header {
    margin-bottom: 100px;
}

.node--learning-content {
    margin-bottom: 100px;
}

.node--updates-archive .update-section {
    margin-bottom: 55px;
}

.node--updates-archive .update {
    max-width: 1100px;
    padding: 32px 110px 32px 40px;
    border: 1px solid;
    border-left: 12px solid;
    border-radius: 24px;
    margin-bottom: 32px;
}

.node--updates-archive .update time {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 14px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.71;
    letter-spacing: 0.28px;
    text-align: left;
    color: #6e7073;
    display: block;
    margin-bottom: 16px;
}

.node--updates-archive .update span {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.33;
    letter-spacing: normal;
    color: #2075d6;
    text-align: left;
    display: block;
}

.node--updates-archive .update a {
    font-family: 'Roboto Flex', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    text-align: left;
    color: #0f4f99;
    display: inline-block;
    margin-top: 16px;
    text-decoration: underline !important;
}

.node--updates-archive .update.update--notice,
.node--updates-archive .update.update--default {
    border-color: #a5e6fa;
}

.node--updates-archive .update.update--warning {
    border-color: #ddff91;
}

.node--updates-archive .update.update--alert {
    border-color: #ff9a4d;
}

/* SEARCH */
#main .views-exposed-form {
    margin-top: 50px;
}

#main .search-container {
    margin: 0;
}

.view-search-results .view-header {
    margin: 30px 0;
}

.view-search-results .views-row {
    padding: 24px;
    border: 1px solid var(--clr-brand);
    border-radius: 24px;
    margin-bottom: 20px;
}

.view-search-results .views-row .views-field-title a {
    font-size: 22px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: 3.18;
    letter-spacing: -0.44px;
    text-align: left;
    color: var(--clr-brand);;
}

@media (max-width: 1719.98px) {

}

@media (max-width: 1599.98px) {
    .main-menu .nav-link {
        font-size: 22px;
        padding: 0 15px;
    }

    .home-header {
        padding-top: 125px;
        margin-bottom: 150px;
    }
    
    .home-retirement .ad-wrapper .home-calc-bg img {
        transform-origin: bottom;
        margin-top: 25px;
        transform: translateY(125px) translateX(-40px) scale(0.9);
    }

    .home-full-ad .ad-wrapper img {
        transform: none;
        border-radius: 0 0 24px 0;
    }

    .home-full-ad .ad-wrapper .inner-section-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 1399.98px) {
    .pepp-container,
    .mepp-container {
        margin: 0 40px;
    }

    .main-menu .nav-link {
        font-size: 20px;
        padding: 0 15px;
    }

    .home-header {
        padding-top: 125px;
    }

    .home-retirement .ad-wrapper .home-calc-bg img {
        transform: translateY(100px) scale(0.8);
    }

    .node--toc-header, .node--learning-header {
        height: 300px;
    }
}

@media (max-width: 1299.98px) {
    .main-menu .nav-link {
        font-size: 18px;
        padding: 0 15px;
    }
}

@media (max-width: 1199.98px) {
    .pepp-container,
    .mepp-container {
        margin: 0 20px;
    }

    .main-menu .nav-link {
        font-size: 16px;
        padding: 0 15px;
    }

    .inner-section-wrapper {
        padding: 45px 35px;
    }

    .home-cards .card .card-text {
        margin-bottom: 2rem;
    }

    .node--home button:disabled {
        opacity: 0.5;
    }

    #scrollLeft, #scrollRight,
    #eventScrollLeft, #eventScrollRight {
        background: transparent;
        border: 0;
    }

    #scrollLeft svg, #scrollRight svg,
    #eventScrollLeft svg, #eventScrollRight svg {
        color: var(--clr-text-muted);
    }

    #scrollLeft, #eventScrollLeft {
        margin-right: 8px;
    }

    .home-retirement .ad-wrapper .home-calc-bg {
        background-position: center;
    }

    #eventCC {
        margin-bottom: 24px;
    }

    .section-link-wrapper {
        margin-bottom: 48px;
    }

    .fund-control-wrapper {
        padding-right: 0;
    }

    .home-full-ad .ad-wrapper img {
        transform: none;
        border-radius: 0 0 24px 24px;
    }

    .node--toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1099.98px) {
    .main-menu .nav-link {
        font-size: 15px;
        padding: 0 10px;
    }
}

@media (max-width: 991.98px) {
    .pepp-container,
    .mepp-container {
        margin: 0 16px;
    }
    
    .navbar-brand {
        padding: 0;
        padding-left: 14px;
    }

    .inner-section-wrapper {
        padding: 32px 25px;
    }

    .header-wrapper { 
        padding-bottom: 24px;
        border-bottom: 1px solid var(--clr-grey-light);
    }

    #header > .top-bar-wrapper {
        position: relative;
    }

    #header > .top-bar-wrapper .menu-item--expanded {
        position: static;
    }

    #header > .top-bar-wrapper .mega-menu-content {
        position: absolute;
        left: -16px;
    }
    
    .mega-menu .mega-menu-content { 
        min-width: unset;
    }

    .footer ul.nav .nav-title svg {
        color: var(--clr-brand-mid);
    }

    .footer ul.nav ul.menu {
        display: block;
    }

    .footer ul.nav > li > a {
        font-size: 18px;
    }

    .footer .accordion-body ul.nav > li > a {
        font-size: 16px;
    }

    /* .node--toc-breadcrumb ol.breadcrumb {
        margin: 40px 0;
        padding: 8px 16px;
    } */

    .node--toc-title h1 {
        font-size: 40px;
        margin-bottom: 44px;
    }

    .node--toc-header {
        height: 162px;
        margin-bottom: 64px;
    }

    .node--toc-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 32px;
    }

    .node--toc-grid .node--toc-item a {
        font-size: 32px;
    }

    .node--toc-item-text {
        font-size: 20px;
    }

    .node--toc-content {
        font-size: 32px;
        margin-bottom: 64px;
    }

    .node--insights-landing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .node--insights-featured-img {
        margin-top: 24px;
    }

    .node--insights-featured .insight-excerpt {
        margin-bottom: 48px;
    }

    .home-header {
        padding-top: 32px;
        margin-bottom: 250px;
    }

    .main-menu .nav-link {
        font-size: 18px;
        padding: 0 10px;
    }

    .home-updates .row > div:first-child,
    .home-retirement .row > div:first-child {
        margin-bottom: 24px;
    }

    .home--ac-link:last-child {
        margin-bottom: 48px;
    }

    .home-team .team-grid,
    .node--learning-team .team-grid  {
        gap: 20px;
    }

    .home-updates .featured-insight {
        margin-bottom: 48px;
    }

    .home-retirement .ad-wrapper .home-calc-bg {
        background-position: center;
    }

    .home-retirement .ad-wrapper .home-calc-bg img {
        transform: translateY(75px) translateX(-15px) scale(0.8);
    }

    .home-section-title {
        font-size: 48px;
    }

    .uv-chart-legend {
        flex-direction: column;
    }

    .node--account-changes .ac-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .node--fund .fund-info-btns {
        flex-direction: column;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 40px;
    }

    h3 {
        font-size: 24px;
        margin-bottom: 24px;
    }

    .footer-bg {
        background-size: contain;
        background-position: bottom;
    }

    .footer ul.nav .nav-title {
        padding: 9px 16px;
        border-bottom: 1px solid var(--clr-brand-mid);
        align-items: anchor-center;
    }
    
    .footer ul.nav .nav-title svg {
        transition: transform 0.3s ease;
        display: block;
    }

    .footer ul.nav .nav-title svg.active {
        transform: rotate(180deg);
    }

    .footer ul.nav ul.menu {
        display: none;
    }

    .footer ul.nav ul.menu.active {
        display: block;
    }

    .sub-footer > div > div {
        flex-direction: column;
    }

    .accordion-body .nav a {
        font-family: 'Roboto Flex', sans-serif;
        font-size: 16px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: 2;
        letter-spacing: 0.32px;
        color: var(--clr-brand);
    }

    .accordion-body .nav .nav-item {
        margin-bottom: 8px;
    }

    .accordion-body .nav .nav-item:last-child {
        margin-bottom: 32px;
    }

    .left-navigation ul.nav a {
        font-size: 16px;
    }

    .page--basic-page p, .page--basic-page ul li, .page--basic-page ol li {
        font-size: 16px;
    }

    .page--basic-page a {
        font-size: 16px;
    }

    ol.breadcrumb {
        padding: 8px 16px;
        margin-bottom: 32px;
    }

    ol.breadcrumb .breadcrumb-item ,
    ol.breadcrumb .breadcrumb-item a,
    ol.breadcrumb .breadcrumb-item span {
        font-size: 12px;
    }

    .node--insights-landing-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .node--insights-featured a {
        font-size: 40px;
    }

    .node--insights-landing-grid .grid-item a {
        font-size: 24px;
    }

    /* HOME */
    .home-retirement .ad-wrapper .home-calc-bg img {
        transform: translateY(75px) translateX(-15px) scale(0.8);
    }

    .home-title {
        font-size: 45px;
    }

    h1.home-title {
        font-size: 48px;
    }

    .home-header {
        margin-bottom: 150px;
    }

    .bg-wrapper {
        /* background-position: 0 100px; */
    }

    .node--learing-header {
        margin-bottom: 25px;
    }

    .node--account-changes .ac-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .node--account-changes .ac-wrapper a {
        font-size: 20px;
    }

}

@media (max-width: 650px) {
    .mega-menu .mega-menu-content {
        position: fixed;
        top: 40px;
        left: 0;
        width: 95vw;
        /* max-width: 95vw;
        box-sizing: border-box; */
    }
}

@media (max-width: 575.98px) {
    .navbar-brand img {
        width: 74px;
        height: 40px;
    }

    .node--toc-content {
        font-size: 24px;
    }

    .home-retirement .ad-wrapper .home-calc-bg {
        background-position: right;
    }

    .home-retirement .ad-wrapper .home-calc-bg img {
        transform: translateY(100px) translateX(-50px) scale(0.8);
    }

    h1.home-title {
        font-size: 40px;
    }

    .home-header {
        padding-top: 32px;
        margin-bottom: 75px;
    }

    .home-cards .card .card-title {
        font-size: 24px;
    }

    .insight-list .home--insight-title {
        font-size: 20px;
    }

    .node--perf-listing .fundlist-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .node--learning-header {
        margin-bottom: 25px;
    }

    #unit-value-fundcht .pill-btn {
        padding: 5px 6px;
    }
}

@media (max-width: 499.98px) {

    h1.home-title {
        font-size: 36px;
    }

    .home-header {
        margin-bottom: 25px;
    }
}

@media (max-width: 449.98px) {

    h1.home-title {
        font-size: 32px;
    }

    .home-header {
        margin-bottom: 0px;
    }
}

@media (max-width: 399.98px) {

    .bg-wrapper {
        /* background-position: 0 200px; */
    }

    .home-header {
        margin-bottom: 100px;
    }
}