section.section-list {
  padding: 8rem 0;
  --section-grid-row-end-height: 1fr;
  --section-grid-column-end-width: minmax(350px, 1fr);
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto var(--section-grid-row-end-height) auto;
  -ms-grid-columns: 1fr minmax(auto, 1140px) var(--section-grid-column-end-width);
      grid-template: "title title title" auto "title title title" auto ". main aside" var(--section-grid-row-end-height) "footer footer footer" auto/1fr minmax(auto, 1140px) var(--section-grid-column-end-width);
  align-items: center;
  --figure-font-size: 7vw;
  --figure-subheading-font-size: 1.5vw;
  --figure-caption-font-size: 1vw;
}
section.section-list:nth-of-type(even) {
  background-color: #FAFAFA;
}
section.section-list--dark {
  background-color: #FAFAFA;
}
section.section-list--light {
  background-color: transparent !important;
}
section.section-list--collapse {
  min-height: 0 !important;
}
section.section-list--full-main-width .section-main {
  grid-column: 1/-1 !important;
}
section.section-list .section-main {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: main;
}
section.section-list .section-aside {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: aside;
}
section.section-list .section-title {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: title;
}
section.section-list .section-footer {
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: footer;
}
section.section-list .section-title {
  display: block;
  width: 100%;
  max-width: 1140px;
  margin: auto auto 5rem;
}
section.section-list .section-title:has(h3 > span) {
  max-width: 100%;
}
section.section-list .section-title h3 {
  text-transform: uppercase;
  letter-spacing: 1rem;
  font-weight: 100;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  width: 90%;
  margin: auto;
  text-align: center;
}
@media (min-width: 992px) {
  section.section-list .section-title h3 {
    text-wrap: nowrap;
  }
}
section.section-list .section-title h3:before, section.section-list .section-title h3:after {
  content: "";
  border-top: 1px solid currentColor;
  flex: 0 1 100px;
}
section.section-list .section-title h3:has(span) span {
  max-width: 90%;
}
section.section-list .section-main__charts {
  max-width: 850px;
  margin: auto;
}
section.section-list .section-main__graphics {
  text-align: center;
}
section.section-list .section-aside {
  padding: 1rem;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 1400px) {
  section.section-list .section-aside {
    padding-left: 3rem;
    margin-left: 0;
  }
}
section.section-list .section-footer {
  margin-top: 3rem;
  text-align: center;
}
section.section-list:has(> .section-bg) {
  overflow: hidden;
}
section.section-list:has(> .section-bg) .section-bg {
  grid-area: 1/1/-1/-1;
  position: absolute;
  inset: 0;
}
@media (min-width: 1200px) {
  section.section-list {
    min-height: calc(90vh - var(--ccp-header-height));
  }
}
@media (max-width: 1199.98px) {
  section.section-list {
        grid-template-areas: "title title title" "aside aside aside" "main main main" "footer footer footer";
    padding: 4rem 0;
  }
  section.section-list .section-main {
    padding-inline: 1rem;
  }
  section.section-list .section-aside {
    max-width: 720px;
  }
  section.section-list .section-main {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  section.section-list .section-aside {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  section.section-list .section-title {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  section.section-list .section-footer {
    -ms-grid-row: 4;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}
section.section-list#section--platform-asset-growth #platform-asset-growth-grid {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
section.section-list#section--platform-asset-growth #platform-asset-growth-grid .platform-asset-growth-row {
  --platform-asset-growth-row-fs: clamp(2.5rem, 14vw, 10rem);
  --platform-asset-growth-row-color: var(--bs-secondary);
  --platform-asset-growth-row-figure-color: #dce6ea;
  --platform-asset-growth-row-figure-color: var(--bs-primary);
  font-family: "Open Sans", sans-serif;
  font-size: var(--platform-asset-growth-row-fs);
  line-height: 0.85em;
  pointer-events: none;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto;
  -ms-grid-columns: min-content auto;
      grid-template: "text figure" auto "line line" auto/min-content auto;
}
section.section-list#section--platform-asset-growth #platform-asset-growth-grid .platform-asset-growth-row ::selection {
  background-color: transparent;
  color: inherit;
}
section.section-list#section--platform-asset-growth #platform-asset-growth-grid .platform-asset-growth-row:nth-of-type(1) {
  --platform-asset-growth-row-color: #015C97;
}
section.section-list#section--platform-asset-growth #platform-asset-growth-grid .platform-asset-growth-row:nth-of-type(2) {
  --platform-asset-growth-row-fs: clamp(2.0rem, 12vw, 8.5rem);
  --platform-asset-growth-row-color: #056b8b;
}
section.section-list#section--platform-asset-growth #platform-asset-growth-grid .platform-asset-growth-row:nth-of-type(3) {
  --platform-asset-growth-row-fs: clamp(1.5rem, 10vw, 6.5rem);
  --platform-asset-growth-row-color: #2dadbc;
}
section.section-list#section--platform-asset-growth #platform-asset-growth-grid .platform-asset-growth-row > * {
  position: relative;
}
section.section-list#section--platform-asset-growth #platform-asset-growth-grid .platform-asset-growth-row__text {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: text;
  font-weight: 900;
  text-transform: uppercase;
  width: min-content;
  text-align: left;
  color: var(--platform-asset-growth-row-color);
  font-kerning: normal;
}
section.section-list#section--platform-asset-growth #platform-asset-growth-grid .platform-asset-growth-row__figure {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: figure;
  -ms-grid-row-align: end;
  -ms-grid-column-align: end;
  place-self: end;
  color: var(--platform-asset-growth-row-figure-color);
  font-size: 75%;
  font-weight: 100;
  line-height: 1;
  padding-right: 2rem;
  bottom: -0.06em;
}
section.section-list#section--platform-asset-growth #platform-asset-growth-grid .platform-asset-growth-row__line {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: line;
  display: block;
  border-top: 2px solid var(--platform-asset-growth-row-figure-color);
  width: calc(100% - 1rem);
  inset: -0.05em 0 0 0.6rem;
}
section.section-list#section--platform-funds .section-bg {
  -ms-grid-row-align: center;
  -ms-grid-column-align: center;
  place-self: center;
}
section.section-list#section--platform-funds .section-bg img {
  animation: spin 35s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
section.section-list#section--platform-funds .section-main {
  grid-column: 1/-1;
  overflow: hidden;
  display: block;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
section.section-list#section--platform-funds .section-main .fund-type .fund-type-blocks {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: max-content clamp(80px, 10vh, 150px);
  -ms-grid-columns: 0.6fr 1rem 1fr;
      grid-template: "label label" max-content "rectangle rectangle" clamp(80px, 10vh, 150px)/0.6fr 1fr;
  margin-block: 6rem;
  column-gap: 1rem;
}
section.section-list#section--platform-funds .section-main .fund-type .fund-type-blocks__label {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: label;
  font-weight: 500;
  font-family: "Titillium Web";
  font-size: 1rem;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
}
@media (min-width: 768px) {
  section.section-list#section--platform-funds .section-main .fund-type .fund-type-blocks__label {
    font-size: calc(1.375rem + 1.5vw);
  }
}
@media (min-width: 768px) and (min-width: 1200px) {
  section.section-list#section--platform-funds .section-main .fund-type .fund-type-blocks__label {
    font-size: 2.5rem;
  }
}
@media (max-width: 767.98px) {
  section.section-list#section--platform-funds .section-main .fund-type .fund-type-blocks__label {
    font-size: calc(1.275rem + 0.3vw);
  }
}
@media (max-width: 767.98px) and (min-width: 1200px) {
  section.section-list#section--platform-funds .section-main .fund-type .fund-type-blocks__label {
    font-size: 1.5rem;
  }
}
section.section-list#section--platform-funds .section-main .fund-type .fund-type-blocks__label + * {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}
section.section-list#section--platform-funds .section-main .fund-type .fund-type-blocks__rectangle {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: rectangle;
  position: relative;
  z-index: 1;
  will-change: transform;
}
section.section-list#section--platform-funds .section-main .fund-type .fund-type-blocks__rectangle + * {
  z-index: 0;
}
#section-steven-quote {
  background-repeat: repeat-x;
  background-repeat: space;
  background-size: contain;
  background-position: center 0%;
}
#section-steven-quote.has-multiple-backgrounds {
  background-repeat: no-repeat;
  background-size: contain, cover;
  background-position: center, center;
}
@media (max-width: 767.98px) {
  #section-steven-quote.has-multiple-backgrounds {
    background-size: auto 80%, cover;
  }
}
#section-steven-quote blockquote {
  margin-bottom: 2rem;
}
#section-steven-quote blockquote p {
  text-wrap: balance;
  text-justify: newspaper;
}
#section-steven-quote figcaption {
  font-size: 1.25rem;
}
#section-steven-quote figcaption:before {
  content: none;
}
#section-steven-quote figcaption span.larger {
  font-size: 150%;
}
#section-steven-quote figcaption #signature-div {
  max-width: 300px;
}
@media (min-width: 1200px) {
  #section-steven-quote figcaption #signature-div {
    margin-right: -5rem;
  }
}
#section-steven-quote figcaption #signature-div svg {
  position: relative;
  margin-block: -2rem;
  max-width: 100%;
}

.award-comp {
  cursor: default;
  --award-grayscale: grayscale(1);
  width: 100%;
  max-width: 700px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 5cqh 1rem minmax(auto, 450px) 1rem 5cqh;
      grid-template: auto auto auto/5cqh minmax(auto, 450px) 5cqh;
      grid-template-areas: ". h ." ". p ." ". img .";
  gap: 0rem 1rem;
  container-type: inline-size;
  margin-block-start: 2rem;
  margin: 2rem;
}
.award-comp:hover {
  --award-grayscale: grayscale(0);
}
@media (max-width: 767.98px) {
  .award-comp {
    column-gap: 0.5rem;
    padding-inline: 0.25rem;
    --award-grayscale: grayscale(0);
  }
}
.award-comp img.laurel {
  width: 100%;
  max-width: 3.5rem;
  -ms-grid-column-align: center;
      justify-self: center;
  grid-row: 1/-1;
  display: block;
  margin-inline: auto;
  -ms-grid-row-align: center;
      align-self: center;
}
.award-comp .laurel--start {
  margin-inline-end: 0.125rem;
  -ms-grid-column-align: start;
      justify-self: start;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/span 1;
}
.award-comp .laurel--end {
  margin-inline-start: 0.125rem;
  -ms-grid-column-align: end;
      justify-self: end;
  grid-column: -2/span 1;
}
.award-comp picture:has(img.award-logo) {
  display: contents;
}
.award-comp img.award-logo {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
  max-width: 100cqh;
  max-height: 4rem;
  display: block;
  margin-block-start: 0.5rem;
  margin-inline: auto;
  object-fit: contain;
  object-position: center;
  grid-area: img;
  -ms-grid-row-align: center;
      align-self: center;
  filter: var(--award-grayscale);
  transition: filter 0.25s;
}
.award-comp p {
  margin-block: 0;
  line-height: 1.33;
  text-wrap: balance;
  -ms-grid-row-align: center;
      align-self: center;
}
.award-comp p.label-1 {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: h;
  text-transform: uppercase;
  font-weight: 700;
  font-size: clamp(0.75rem, 4.5cqw, 1.5rem);
  font-size: 4cqw;
}
.award-comp p.label-2 {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: p;
  font-style: italic;
  font-size: clamp(1rem, 5.5cqw, 3rem);
  font-size: 5cqw;
}
@media (min-width: 768px) {
  .award-comp p.label-1, .award-comp p.label-2 {
    grid-column: 1/-1;
  }
}

#chart--transparent-manager-selection {
  padding-top: 2rem;
  width: 100%;
  height: auto;
  margin-inline: auto;
  display: -ms-grid;
  display: grid;
  justify-content: center;
}

section.section-list#section--platform-review {
  background-color: var(--bs-light);
}
@media (max-width: 575.98px) {
  section.section-list {
    --figure-font-size: 3.5rem;
    --figure-subheading-font-size: 1.25rem;
    --figure-caption-font-size: 1rem;
  }
}
#aum-growth-layout #aum-growth-text {
  font-family: var(--ccp-heading-font-family);
}
#aum-growth-layout #aum-growth-text p > span {
  display: block;
  margin-block: 0;
  line-height: 1;
}
#aum-growth-layout #aum-growth-text p > span:first-of-type {
  font-size: var(--figure-font-size);
  font-weight: 600;
  margin-block-end: 1rem;
}
#aum-growth-layout #aum-growth-text p > span:not(:first-of-type) {
  line-height: 1.33;
  font-size: var(--figure-subheading-font-size);
  font-weight: 400;
}
#aum-growth-layout #aum-growth-text p > span:last-of-type {
  font-size: var(--figure-caption-font-size);
  text-transform: uppercase;
}
#aum-growth-layout #svg-v3 {
  margin-inline: auto;
  display: block;
  overflow: hidden;
}
@media (min-width: 992px) {
  #aum-growth-layout #svg-v3 {
    margin-inline: -2rem;
    margin-block-end: -0.5rem;
  }
}
@media (max-width: 991.98px) {
  #aum-growth-layout #svg-v3 {
    max-width: 20rem;
  }
}

#network-layout-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 0.9fr auto 1fr;
  -ms-grid-columns: 0.9fr auto 1fr;
      grid-template: ". . ." 0.9fr ". content ." auto ". . ." 1fr/0.9fr auto 1fr;
}
#network-layout-grid__img {
  grid-area: 1/1/-1/-1;
  background-image: linear-gradient(90deg, var(--bs-light) 0%, var(--bs-gray-200) 50%);
  overflow: hidden;
}
#network-layout-grid__img #network-svg, #network-layout-grid__img #network-svg svg {
  min-height: calc(90vh - var(--ccp-header-height, 0px));
  display: -ms-grid;
  display: grid;
  place-items: center;
}
@media (min-width: 992px) {
  #network-layout-grid__img #network-svg, #network-layout-grid__img #network-svg svg {
    margin-inline: -15vw;
  }
}
@media (max-width: 991.98px) {
  #network-layout-grid__img #network-svg, #network-layout-grid__img #network-svg svg {
    margin-inline: -100%;
  }
}

#network-layout-grid__content {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: content;
  -ms-grid-row-align: center;
      align-self: center;
  font-family: var(--ccp-heading-font-family);
}

#audited-layout-grid > #network-layout-grid__content {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
#network-layout-grid__content p > span {
  display: block;
  margin-block: 0;
  line-height: 1;
}
#network-layout-grid__content p > span:first-of-type {
  font-size: var(--figure-font-size);
  font-weight: 600;
}
#network-layout-grid__content p > span:last-of-type {
  font-size: var(--figure-subheading-font-size);
  font-weight: 400;
  text-transform: uppercase;
}

#audited-layout-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto 1fr;
  -ms-grid-columns: 1fr clamp(20rem, 30vw, 40rem) 1fr;
      grid-template: ". . ." 1fr ". content ." auto ". . ." 1fr/1fr clamp(20rem, 30vw, 40rem) 1fr;
  overflow: hidden;
  min-height: calc(90vh - var(--ccp-header-height, 0px));
}
#audited-layout-grid > * {
  position: relative;
}
#audited-layout-grid__img {
  grid-area: 1/1/-1/-1;
  display: -ms-grid;
  display: grid;
  overflow: hidden;
}
#audited-layout-grid__img picture {
  grid-area: 1/1/-1/-1;
  display: -ms-grid;
  display: grid;
}
#audited-layout-grid__img picture source {
  display: none;
}
#audited-layout-grid__img picture img {
  grid-area: 1/1/-1/-1;
  -ms-grid-row-align: center;
  -ms-grid-column-align: center;
  place-self: center;
  opacity: 1;
  max-width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 992px) {
  #audited-layout-grid__img picture img {
    max-width: 90vw;
  }
}
@media (max-width: 991.98px) {
  #audited-layout-grid__img picture img {
    max-width: 200%;
  }
}

#audited-layout-grid__content {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: content;
  -ms-grid-row-align: center;
      align-self: center;
  font-family: var(--ccp-heading-font-family);
}

#audited-layout-grid > #audited-layout-grid__content {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
}
#audited-layout-grid__content p > span {
  display: block;
  margin-block: 0;
  line-height: 1.3;
}
#audited-layout-grid__content p > span:first-of-type {
  font-size: var(--figure-font-size);
  font-weight: 600;
}
#audited-layout-grid__content p > span:last-of-type {
  font-size: var(--figure-subheading-font-size);
  font-weight: 500;
  text-transform: uppercase;
  max-width: 45rem;
  display: block;
  margin-inline: auto;
}