/* utility classes */
/* vars */
/* base font 16px */
.fcat--align-top {
  vertical-align: top;
}
.fcat--align-middle {
  vertical-align: middle;
}
.fcat--align-bottom {
  vertical-align: bottom;
}
.fcat--text-center {
  text-align: center;
}
.fcat--text-right {
  text-align: right;
}
.fcat--text-left {
  text-align: left;
}
.fcat--text-main > * {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
}
.fcat--text-bold > * {
  font-family: "Fidelity Sans Bold", Helvetica, Sans-serif;
}
.fcat--text-light > * {
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
}
.fcat--text-black {
  color: black;
}
.fcat--text-xsmall {
  font-size: 0.25em;
}
.fcat--text-small {
  font-size: 0.5em;
}
.fcat--text-medium {
  font-size: 1em;
}
.fcat--text-large {
  font-size: 1.5em;
}
.fcat--text-xlarge {
  font-size: 2em;
}
.fcat--image-fit {
  object-fit: contain;
  width: 100%;
}
.fcat--margin-xsmall {
  margin: 10px;
}
.fcat--margin-small {
  margin: 20px;
}
.fcat--margin-medium {
  margin: 40px;
}
.fcat--margin-large {
  margin: 60px;
}
.fcat--margin-top-xsmall {
  margin-top: 10px;
}
.fcat--margin-top-small {
  margin-top: 20px;
}
.fcat--margin-top-medium {
  margin-top: 40px;
}
.fcat--margin-top-large {
  margin-top: 60px;
}
.fcat--margin-top-xlarge {
  margin-top: 80px;
}
.fcat--margin-top-xxlarge {
  margin-top: 100px;
}
.fcat--margin-top-xxxlarge {
  margin-top: 120px;
}
.fcat--margin-bottom-xsmall {
  margin-bottom: 10px;
}
.fcat--margin-bottom-small {
  margin-bottom: 20px;
}
.fcat--margin-bottom-medium {
  margin-bottom: 40px;
}
.fcat--margin-bottom-large {
  margin-bottom: 60px;
}
.fcat--margin-bottom-xlarge {
  margin-bottom: 80px;
}
.fcat--margin-bottom-xxlarge {
  margin-bottom: 100px;
}
.fcat--margin-bottom-xxxlarge {
  margin-bottom: 120px;
}
.fcat--margin-left-xsmall {
  margin-left: 10px;
}
.fcat--margin-left-small {
  margin-left: 20px;
}
.fcat--margin-left-medium {
  margin-left: 40px;
}
.fcat--margin-left-large {
  margin-left: 60px;
}
.fcat--margin-left-xlarge {
  margin-left: 80px;
}
.fcat--margin-left-xxlarge {
  margin-left: 100px;
}
.fcat--margin-left-xxxlarge {
  margin-left: 120px;
}
.fcat--margin-right-xsmall {
  margin-right: 10px;
}
.fcat--margin-right-small {
  margin-right: 20px;
}
.fcat--margin-right-medium {
  margin-right: 40px;
}
.fcat--margin-right-large {
  margin-right: 60px;
}
.fcat--margin-right-xlarge {
  margin-right: 80px;
}
.fcat--margin-right-xxlarge {
  margin-right: 100px;
}
.fcat--margin-right-xxxlarge {
  margin-right: 120px;
}
.fcat--margin-none {
  margin: 0;
}
.fcat--padding-none {
  padding: 0;
}
.fcat--padding-none-top {
  padding-top: 0;
}
.fcat--padding-none-bottom {
  padding-bottom: 0;
}
.fcat--padding-none-left {
  padding-left: 0;
}
.fcat--padding-none-right {
  padding-right: 0;
}
.fcat--padding-bottom-comp-stack {
  padding-bottom: 80px;
}
.fcat--padding-bottom-xsmall {
  padding-bottom: 10px;
}
.fcat--padding-bottom-small {
  padding-bottom: 20px;
}
.fcat--padding-bottom-medium {
  padding-bottom: 40px;
}
.fcat--padding-bottom-large {
  padding-bottom: 60px;
}
.fcat--padding-bottom-xlarge {
  padding-bottom: 80px;
}
.fcat--padding-bottom-xxlarge {
  padding-bottom: 100px;
}
.fcat--padding-bottom-xxxlarge {
  padding-bottom: 120px;
}
.fcat--padding-xsmall {
  padding: 10px;
}
.fcat--padding-small {
  padding: 20px;
}
.fcat--padding-medium {
  padding: 40px;
}
.fcat--padding-large {
  padding: 60px;
}
.fcat--padding-xlarge {
  padding: 80px;
}
.fcat--padding-xxlarge {
  padding: 100px;
}
.fcat--padding-xxxlarge {
  padding: 120px;
}
.fcat--background-white {
  background-color: #FFFFFF;
}
.fcat--background-black {
  background-color: #000000;
}
.fcat--background-light-gray {
  background-color: #E5E4E1;
}
.fcat--background-transparent {
  background-color: transparent;
}
.fcat--background-primary {
  background-color: #79CCEC;
}
.fcat--background-secondary {
  background-color: #F6AD41;
}
.fcat--width-full {
  width: 100%;
}
.fcat--width-three-quarter {
  width: 75%;
}
.fcat--width-half {
  width: 50%;
}
.fcat--width-quarter {
  width: 25%;
}
.fcat--flex {
  display: flex;
}
.fcat--flex-inline {
  display: inline-flex;
}
.fcat--flex-wrap {
  flex-wrap: wrap;
}
.fcat--flex-equal-cols {
  flex: 1;
}
.fcat--flex-center {
  justify-content: center;
}
.fcat--flex-end {
  justify-content: flex-end;
}
.fcat--flex-center-vertical {
  align-items: center;
}
.fcat--flex-center-item-vertical {
  align-self: center;
}
.fcat--flex-gap-xsmall {
  gap: 10px;
}
.fcat--flex-gap-small {
  gap: 20px;
}
.fcat--flex-gap-medium {
  gap: 40px;
}
.fcat--flex-gap-large {
  gap: 60px;
}
.fcat--visibility-hidden {
  visibility: hidden;
}
.fcat--visibility-visible {
  visibility: visible;
}
.fcat--right, .fcat--left {
  max-width: 50%;
}
.fcat--right:has(.disclosures), .fcat--left:has(.disclosures) {
  margin-bottom: 0;
}
.fcat--right {
  float: right;
  margin: 0 0 30px 40px;
}
.fcat--left {
  float: left;
  margin: 0 40px 30px 0;
}
.fcat--clear {
  clear: both;
}
@media (max-width: 700px) {
  .fcat--right, .fcat--left {
    float: none;
    width: 100%;
  }
}

/* utility classes end */
body {
  max-width: 2400px;
  background-position-x: 287px;
  background-position: top;
  background-size: 70px;
  background-color: #777 !important;
}

body.full {
  max-width: none;
  background-color: #ffffff !important;
  background-image: none;
}

.QSIFeedBackLink {
  display: none !important;
}

h1 {
  font-weight: 300;
  font-family: "Fidelity Sans";
  font-size: clamp(25px, 2.1875rem + (1vw - 6.5px) * 2.5333, 54px);
  line-height: 1.2;
  color: #000000;
  letter-spacing: 2px;
}

h2 {
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  font-size: clamp(25px, 2.1875rem + (1vw - 6.5px) * 2.5333, 54px);
  line-height: 1.2;
  color: #000000;
  font-weight: 300;
}

h3 {
  font-family: "Input Sans Compressed light";
  font-size: 26px;
  letter-spacing: 0;
  line-height: 30px;
  color: #333333;
}

a {
  color: #000;
  text-decoration: underline;
}
a.reset-color {
  color: revert;
}

p {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  font-weight: 300;
}

ol {
  padding-left: 20px;
}

li {
  color: #000000;
  font-weight: 400;
  max-width: 933px;
  margin: 0 auto;
  /* padding-bottom: 35px; */
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
}

.q {
  padding: 20px 0px;
  margin: 20px 0px;
  font-size: 27px;
  color: #555;
  font-weight: 300;
  line-height: 36px;
  font-family: "Fidelity Sans";
  border-top: 1px #777 dotted;
}

.highLight {
  background-color: #FFFF00;
}

.aiText {
  color: green;
}

a:visited {
  color: #000;
  text-decoration: none;
}

#page-container {
  margin: 0 auto;
  width: 100% !important;
  max-width: 1400px !important;
  min-width: 320px;
  overflow: hidden;
  background-size: 70px;
  background-image: url("/bin-public/060_www_fidelity_com/external_fcat/images/square-dots-background.png");
  background-color: #e6e4e1;
  background-position-x: 34px;
}

#page-container:not(.page-container-full) #layout-region-main-content {
  background: linear-gradient(180deg, rgba(229, 228, 225, 0) 0%, rgba(229, 228, 225, 0) 24%, rgb(229, 228, 225) 24%, rgb(229, 228, 225) 100%);
}
#page-container:not(.page-container-full) #layout-region-main-content.fcat--background-white {
  background: #ffffff !important;
}
#page-container.page-container-full {
  background-image: none;
  max-width: none !important;
}
#page-container.page-container-full .fidgrid--content > *:not(.fcatFooter):not(.fcatfooterEx):not(.full--override), #page-container.page-container-full .fidgrid--content .pvd-tab-group__tab-panels {
  max-width: 1400px;
  margin: 0 auto;
}
#page-container.page-container-full .fidgrid--content > *:not(.fcatFooter):not(.fcatfooterEx):not(.full--override):has(~ section header), #page-container.page-container-full .fidgrid--content .pvd-tab-group__tab-panels:has(~ section header) {
  margin-bottom: 40px;
}
#page-container.page-container-full .fidgrid--content .navBottomSpace + *,
#page-container.page-container-full .fidgrid--content #nav,
#page-container.page-container-full .fidgrid--content .l1-hero,
#page-container.page-container-full .fidgrid--content .fcatfooterEx,
#page-container.page-container-full .fidgrid--content .fcatFooter,
#page-container.page-container-full .fidgrid--content figure:has(#data-connections),
#page-container.page-container-full .fidgrid--content .fcat--sankey-layered-container,
#page-container.page-container-full .fidgrid--content .full--override {
  max-width: none;
}
#page-container.page-container-full .fidgrid--content .navBottomSpace + * > *:not(#logo):not(.fcatsocialEx):not(.fcatfooterBottomEx):not(.fcat--header-full-blurred),
#page-container.page-container-full .fidgrid--content .navBottomSpace + * > * > *:not(.fcat--header-full-content-copy),
#page-container.page-container-full .fidgrid--content #nav > *:not(#logo):not(.fcatsocialEx):not(.fcatfooterBottomEx):not(.fcat--header-full-blurred),
#page-container.page-container-full .fidgrid--content #nav > * > *:not(.fcat--header-full-content-copy),
#page-container.page-container-full .fidgrid--content .l1-hero > *:not(#logo):not(.fcatsocialEx):not(.fcatfooterBottomEx):not(.fcat--header-full-blurred),
#page-container.page-container-full .fidgrid--content .l1-hero > * > *:not(.fcat--header-full-content-copy),
#page-container.page-container-full .fidgrid--content .fcatfooterEx > *:not(#logo):not(.fcatsocialEx):not(.fcatfooterBottomEx):not(.fcat--header-full-blurred),
#page-container.page-container-full .fidgrid--content .fcatfooterEx > * > *:not(.fcat--header-full-content-copy),
#page-container.page-container-full .fidgrid--content .fcatFooter > *:not(#logo):not(.fcatsocialEx):not(.fcatfooterBottomEx):not(.fcat--header-full-blurred),
#page-container.page-container-full .fidgrid--content .fcatFooter > * > *:not(.fcat--header-full-content-copy),
#page-container.page-container-full .fidgrid--content figure:has(#data-connections) > *:not(#logo):not(.fcatsocialEx):not(.fcatfooterBottomEx):not(.fcat--header-full-blurred),
#page-container.page-container-full .fidgrid--content figure:has(#data-connections) > * > *:not(.fcat--header-full-content-copy),
#page-container.page-container-full .fidgrid--content .fcat--sankey-layered-container > *:not(#logo):not(.fcatsocialEx):not(.fcatfooterBottomEx):not(.fcat--header-full-blurred),
#page-container.page-container-full .fidgrid--content .fcat--sankey-layered-container > * > *:not(.fcat--header-full-content-copy),
#page-container.page-container-full .fidgrid--content .full--override > *:not(#logo):not(.fcatsocialEx):not(.fcatfooterBottomEx):not(.fcat--header-full-blurred),
#page-container.page-container-full .fidgrid--content .full--override > * > *:not(.fcat--header-full-content-copy) {
  max-width: 2400px;
}
#page-container.page-container-full .fidgrid--content .scl-flex-card-container:not(.scl-flex-card--without-images) .scl-flex-card--33, #page-container.page-container-full .fidgrid--content .scl-flex-card-container:not(.scl-flex-card--without-images) .scl-flex-card--100 {
  border: 1px solid #d3d3d3;
}
#page-container.page-container-full .fidgrid--content .scl-flex-card-container.scl-flex-card--without-images .scl-flex-card--33, #page-container.page-container-full .fidgrid--content .scl-flex-card-container.scl-flex-card--without-images .scl-flex-card--50 {
  border-right: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
  border-top: 1px solid #d3d3d3;
}
#page-container.page-container-full .fidgrid--content > *:has(+ .fcatfooterEx):not(.scl-bannerct-container),
#page-container.page-container-full .fidgrid--content > *:has(+ .fcatFooter):not(.scl-bannerct-container) {
  margin-bottom: 40px;
}
#page-container.page-container-full #layout-region-center-well .scl-flex-card-container,
#page-container.page-container-full .content-body .scl-flex-card-container, #page-container.page-container-full:not(:has(.flai)) .scl-flex-card-container {
  background-color: #ffffff;
}
#page-container.page-container-full #layout-region-center-well .scl-flex-card-container.fcat--background-light-gray,
#page-container.page-container-full .content-body .scl-flex-card-container.fcat--background-light-gray, #page-container.page-container-full:not(:has(.flai)) .scl-flex-card-container.fcat--background-light-gray {
  background-color: #E5E4E1;
}
#page-container.page-container-full:has(.flai) #layout-region-center-well .scl-flex-card-container {
  background-color: transparent;
}

/*div#layout-region-center-well {
    background-color: #E5E4E1;
}*/
/* Circle Banner Start*/
.circle-contaner {
  width: 100%;
  height: 300px;
  /*padding-bottom: 60px;*/
}

.circle-line {
  position: absolute;
  height: 300px;
  width: 100%;
  max-width: 1400px;
}

.circle-green {
  height: 160px;
  width: 160px;
  border-radius: 50%;
  background-color: #ABB700;
  margin: 70px auto;
  opacity: 0.95;
  transform: translate(0px, 50px);
}

.circle-orange {
  height: 160px;
  width: 160px;
  border-radius: 50%;
  background-color: #E5570F;
  margin: 70px auto;
  opacity: 0.95;
  transform: translate(0px, 50px);
}

.circle-teal {
  height: 160px;
  width: 160px;
  border-radius: 50%;
  background-color: #94B7BB;
  margin: 70px auto;
  opacity: 0.95;
  transform: translate(0px, 50px);
}

.circle-green-big {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background-color: #ABB700;
  margin: 70px auto;
  opacity: 0.95;
  transform: translate(0px, 50px);
}

.circle-blue-big {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background-color: #00a6d4;
  margin: 70px auto;
  opacity: 0.95;
  transform: translate(0px, 50px);
}

.circle-teal-big {
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background-color: #94B7BB;
  margin: 70px auto;
  opacity: 0.95;
  transform: translate(0px, 50px);
}

.circle-magenta {
  height: 160px;
  width: 160px;
  border-radius: 50%;
  background-color: #FFCD00;
  margin: 70px auto;
  opacity: 0.95;
  transform: translate(0px, 50px);
}

.circle-dots {
  height: 133px;
  width: 53%;
  max-width: 650px;
  min-width: 285px;
  position: absolute;
  margin-top: 21px;
  background-image: radial-gradient(#000 3%, transparent 11%);
  background-size: 14px 16px;
}

.circle-text {
  margin: 0 auto;
  /* width: 85px; */
  padding: 67px 35px;
  font-family: "Major Mono Display", monospace;
  font-size: 60px;
  line-height: 25px;
  color: #000000;
  text-align: left;
}

.circle-text-big {
  margin: 0 auto;
  width: 135px;
  padding: 55px 32px;
  font-family: "Input Sans Compressed Bold";
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  text-align: left;
  letter-spacing: 4px;
}

/* Circle Banner End*/
/*Flex Image with Column Start*/
.scl-flexible-images-with-column {
  padding: 0 8% 60px;
}

.scl-flexible-images-with-column h2 {
  padding-bottom: 30px;
}

.scl-flexible-images-with-column--group-description p {
  padding-bottom: 30px;
  text-align: center;
  font-size: 30px;
  line-height: 40px;
  width: 1050px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  margin: 0 auto;
}

@media (max-width: 949px) {
  .scl-flexible-images-with-column {
    padding: 0 2.5% 60px;
  }
  .scl-flexible-layout-multi-column--description {
    padding-right: 0px;
  }
}
/*Flex Image with Column End*/
/*Mini-Hero Start*/
.scl-mini-hero--column {
  display: flex;
  padding: 0 8%;
}

.scl-mini-hero-50-50 {
  background-color: #E5E4E1;
  padding: 1px 0px;
  background-position: center;
  /*margin-bottom: 60px;*/
}

.scl-mini-hero-wrapper {
  margin-bottom: 60px;
}

.scl-mini-hero--columns-content {
  width: 50%;
  background-color: #E5E4E1;
  max-width: 540px;
  margin-top: 60px;
  min-width: 470px;
}

.scl-mini-hero--columns-header h2 {
  font-size: 32px;
  line-height: 48px;
  padding: 25px 0px;
}

.scl-mini-hero-horizontal-center {
  width: 50%;
  background-color: #E5E4E1;
  max-width: 540px;
  margin-top: 60px;
  left: 50%;
  position: relative;
}

.scl-mini-hero--columns-content.scl-mini-hero--column-image {
  width: 50%;
  padding: 0 0 0 10px;
  margin: 0 auto;
  display: flex;
}

.scl-mini-hero--columns-content.scl-mini-hero--column-image img {
  margin: auto;
  max-height: 450px;
  padding-top: 40px;
}

.scl-mini-hero--columns-header h3 {
  padding-bottom: 20px;
}

.scl-mini-hero--columns-header h4 {
  padding: 20px 0 30px;
  font-size: 12px;
  font-weight: 600;
  padding-left: 60px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: "Input Sans Compressed";
}

.scl-mini-hero--columns-header .blackbox {
  height: auto;
  margin-bottom: 25px;
  max-width: 450px;
  width: 90%;
}

.scl-mini-hero--column-description .byline {
  margin-left: 60px;
  padding-bottom: 20px;
}

.blackbox h2 {
  display: inline;
  padding: 10px 10px 10px 60px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-weight: 200;
  font-size: 35px;
  letter-spacing: 0;
  line-height: 60px;
  color: #fff;
  background-color: #333333;
}

.scl-mini-hero--column-description p {
  padding: 0px 10px 25px 60px;
  width: 80%;
}

.scl-mini-hero--columns-header h3 {
  margin-left: 60px;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 36px;
  line-height: 46px;
  font-weight: 100;
}

.scl-mini-hero--column-description button.fcat-btn.btn-prim-black.small {
  margin-left: 60px;
}

.scl-mini-hero--column-description h5 {
  padding: 0px 10px 20px 60px;
  font-family: "Fidelity Sans";
  font-size: 14px;
  letter-spacing: 0;
}

.scl-mini-hero--column-description button.fcat-btn.btn-prim-black.large {
  margin: 0px 60px 25px;
}

.scl-mini-hero--column-description button.fcat-btn.btn-prim-black.large.no-margin {
  margin: 0;
}

@media (max-width: 999px) {
  .scl-mini-hero-horizontal-center {
    width: 50%;
    background-color: #E5E4E1;
    max-width: 540px;
    margin-top: 60px;
    min-width: 455px;
    left: 25%;
    position: relative;
  }
}
@media (max-width: 899px) {
  .scl-mini-hero--column {
    display: block;
    padding: 0 2.5% 60px;
  }
  .scl-mini-hero--columns-content {
    width: 85%;
    padding-right: 10px;
    padding-bottom: 40px;
  }
  .scl-mini-hero-horizontal-center {
    width: fit-content;
    background-color: #E5E4E1;
    max-width: 540px;
    margin-top: 60px;
    min-width: 455px;
    left: 25%;
    position: relative;
  }
}
@media (max-width: 640px) {
  .scl-mini-hero--columns-content {
    width: 100%;
    background-color: #E5E4E1;
    max-width: 540px;
    min-width: fit-content;
    margin-top: 60px;
    position: unset;
    padding-right: 0px;
    margin-right: auto;
    margin-left: auto;
  }
}
/*Mini-Hero End*/
/*Flex Image with Column 2 (50/50) Column Start*/
/*Flex Image with Column 2 (50/50) Column End*/
/*PGHP 2 Column Card start*/
.promo-group-horizontal-promo--column.last-child .promo-group-horizontal-promo--section img {
  max-height: 400px;
}

.promo-group-horizontal-promo--column-2 {
  display: flex;
  height: fit-content;
  max-height: 450px;
}

.promo-group-horizontal-promo--column-2 .promo-group-horizontal-promo--column {
  width: 50% !important;
  max-width: 50%;
  max-height: 400px !important;
}

.promo-group-horizontal-promo--column-2 .promo-group-horizontal-promo--column last-child .promo-group-horizontal-promo--section img {
  max-width: 100%;
  max-height: 350px;
}

.promo-group-horizontal-promo--column-2 .promo-group-horizontal-promo--section {
  padding: 25px 0 15px 0;
  margin: 0 auto;
}

.promo-group-horizontal-promo--column-2 .circle-green {
  max-height: 160px;
  height: 100%;
  max-width: 160px;
  width: 100%;
  border-radius: 50%;
  background-color: #ABB700;
  margin: 70px auto;
  opacity: 0.85;
  z-index: 3;
  position: absolute;
  transform: translate(-1px, -90px);
}

@media (max-width: 899px) {
  .promo-group-horizontal-promo--column-2 .promo-group-horizontal-promo--column {
    width: 100% !important;
    max-width: 100%;
    max-height: 400px !important;
  }
  .promo-group-horizontal-promo--column-2 .promo-group-horizontal-promo--section {
    padding: 25px 0 15px 0;
    margin: 0;
  }
}
/*PGHP 2 Column Card End*/
/*PGHP 3 Column Card start*/
.promo-group-horizontal-promo {
  padding: 0 2.5% 60px;
}

.promo-group-horizontal-promo--column h3 {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-weight: 300;
}

.promo-group-horizontal-promo--section h4 {
  font-size: 12px;
  font-weight: 300;
}

.promo-group-horizontal-promo--column-3 {
  display: flex;
}

.promo-group-horizontal-promo--column {
  background-color: #fff;
  padding: 20px;
  margin: 20px;
  min-width: 27%;
}

.promo-group-horizontal-promo--column img {
  display: flex;
  margin: 0 auto;
}

.promo-group-horizontal-promo--section .circle-green {
  max-height: 160px;
  height: 100%;
  max-width: 160px;
  width: 100%;
  border-radius: 50%;
  background-color: #ABB700;
  margin: 70px auto;
  opacity: 0.85;
  z-index: 3;
  position: absolute;
  transform: translate(-1px, -110px);
}

.promo-group-horizontal-promo--section .circle-text {
  margin: 0 auto;
  width: 85px;
  padding: 30px 35px;
  letter-spacing: 4px;
  font-family: "Input Sans Compressed";
  font-weight: 700;
  font-size: 14px;
  line-height: 25px;
  color: #ffffff;
  text-align: left;
}

.promo-group-horizontal-promo--section {
  padding: 25px 0 15px 0;
}

@media (max-width: 899px) {
  .promo-group-horizontal-promo {
    padding: 0 0 60px;
    margin: 0 2.5%;
  }
}
@media (max-width: 699px) {
  .promo-group-horizontal-promo--column-3 {
    display: block;
  }
  .promo-group-horizontal-promo--column {
    padding: 20px;
    margin: 20px 0px 40px 0px;
    max-width: 100%;
  }
}
/*PGHP 3 Column Card End*/
/*1 column no images start*/
.scl-flexible-single-column {
  padding: 60px 5% 60px;
  text-align: left;
}

.scl-flexible-single-column .scl-flexible-images-with-column--description p {
  color: #ffffff;
  padding-bottom: 20px;
}

/*1 column no images End*/
/*Flex Card 3 with Images start*/
h3.scl-flex-card--desc-title {
  font-family: "Input Sans Compressed Bold";
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 3;
  text-transform: uppercase;
  color: #000000;
  text-transform: uppercase;
}

h3.scl-flex-card--desc-title a {
  text-decoration: none;
}

.cardTitle {
  font-family: "Fidelity Sans Light";
  padding: 10px 0 20px;
  font-size: 22px;
  line-height: 30px;
}

.scl-flex-card--header h2 {
  text-align: center;
  padding: 40px 0 30px;
}

.scl-flex-card--header h2:empty {
  display: none;
}

.scl-flex-card--header p {
  text-align: center;
  font-size: 18px;
  max-width: 933px;
  line-height: 27px;
  padding: 10px 30px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  margin: 0 auto;
}

.scl-flex-card--desc p {
  font-family: "Fidelity Sans", Helvetica, sans-serif;
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 32px;
  color: #000000;
}

.descript p {
  padding: 20px 0 0;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 24px;
  padding-top: 8px;
  color: #000000;
}

.scl-flex-card-container {
  padding: 0px 6% 80px;
  background-color: #E5E4E1;
  margin: -20px auto;
}

.scl-flex-card--header h3 {
  padding-left: 20px;
}

.scl-flex-card--33.scl-white-background .scl-flex-card--image-container img {
  object-fit: contain;
  width: 100%;
}

/*.scl-flex-card--image-container img {
    width: 100%;
}*/
.scl-flex-card--row {
  display: flex;
  margin: 20px;
}

.scl-flex-card--33.scl-white-background {
  max-width: 31%;
  background-color: #fff;
}

.scl-flex-card--33-spacer {
  width: 4%;
}

.scl-flex-card--desc-container {
  padding: 40px 30px;
}

.scl-flex-card-container.scl-bottom-border.scl-white-background.scl-flex-card--without-images .scl-flex-card--table .scl-flex-card--row .scl-flex-card--33.scl-white-background {
  border-bottom: 9px solid #B5BD00;
}

.scl-flex-card--33.scl-gray-background {
  width: 33%;
}

/* 50% flex card no image Start*/
.scl-flex-card-container.scl-flex-card--without-images .scl-flex-card--image-container {
  display: none !important;
}

/* 50% flex card no image End*/
/* 100% flex card with image Start*/
.scl-flex-card--100.scl-white-background {
  padding: 40px 0px 30px;
  display: flex;
  border-top: 1px solid;
  margin: 0 5%;
}

.scl-flex-card--100.scl-white-background .scl-flex-card--image-container {
  clip-path: inset(0% 25% 0% 0%);
  width: auto;
}

.scl-flex-card--100.scl-white-background .scl-flex-card--desc-container.scl-flex-card--content-margin {
  padding: 0px 0px 0px 10px;
  width: 66%;
  margin-right: 10px;
}

.scl-flex-card--desc.scl-flex-card--cl ul {
  padding-left: 10px;
}

.scl-flex-card--desc.scl-flex-card--cl ul ul {
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 24px;
  list-style-type: circle;
  margin-block-start: 0px;
  margin-block-end: 0px;
  margin-left: 21px;
}

.scl-flex-card--desc.scl-flex-card--cl ul li {
  font-family: "Fidelity Sans light", Helvetica, Sans-serif !important;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 24px;
  list-style: disc !important;
  margin: 0px 0px 0px 10px;
  padding-bottom: 10px;
}

.assetTypeTime {
  font-family: "Input Sans Compressed";
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 24px;
  text-transform: uppercase;
}

.assetByDate {
  font-family: "Input Sans Compressed";
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 24px;
  padding-top: 20px;
  text-transform: uppercase;
}

.assetTitle {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-weight: 300;
  font-size: 26px;
  letter-spacing: 0px;
  line-height: 36px;
  padding: 8px 0 10px 0px;
}

.assetTitle a {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 26px;
  letter-spacing: 0px;
  line-height: 40px;
  padding-top: 15px;
  text-decoration: none;
}

.assetTitle a:hover {
  text-decoration: underline;
}

.assetDescroption {
  padding: 20px 0;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  font-size: 16px;
  letter-spacing: 0px;
  line-height: 24px;
  padding-top: 10px;
}

.scl-flex-card--date {
  display: none;
}

.scl-flex-card--content-type {
  display: none;
}

.scl-flex-card--author {
  display: none;
}

@media (max-width: 799px) {
  .scl-flex-card--100.scl-white-background {
    padding: 40px 0px 30px;
    display: flex;
    border-top: 1px solid;
    margin: 0 auto;
    width: 65%;
  }
  .scl-flex-card--100.scl-white-background .scl-flex-card--desc-container.scl-flex-card--content-margin {
    padding: 0px 0px 0px 10px;
    width: auto;
    margin-right: 10px;
  }
  .scl-flex-card--100.scl-white-background {
    padding: 40px 30px 20px;
    display: inherit;
    border-top: 1px solid;
    margin: 0 auto;
    width: 65%;
  }
  .scl-flex-card-container {
    padding: 0px 6% 40px;
    background-color: #E5E4E1;
    margin: -20px auto;
    max-width: 530px;
  }
  .scl-flex-card--100.scl-white-background .scl-flex-card--image-container {
    clip-path: none;
    width: auto;
    margin: 0 auto;
    padding-bottom: 20px;
  }
}
/* 100% flex card with image End*/
@media (max-width: 899px) {
  .scl-flex-card--row {
    display: flex;
    margin: 20px 0px;
  }
  .scl-flex-card--33-spacer {
    width: 3%;
  }
}
@media (max-width: 799px) {
  .scl-flex-card--row {
    display: block;
    margin: 20px 0px;
  }
  .scl-flex-card--33.scl-white-background {
    width: auto !important;
    background-color: #fff;
    max-width: 450px;
    margin: 0 auto 40px;
  }
}
/*Flex Card 3 with Images End*/
/*Flex Card 3 with No Images Start*/
.scl-flex-card--desc h2 {
  font-size: 40px;
  line-height: 50px;
  padding: 20px 0px 30px;
}

.scl-flex-card-container--no-headline.scl-flex-card-container.scl-bottom-border.scl-white-background.scl-flex-card--without-images .scl-flex-card--33.scl-white-background {
  width: 33%;
  background-color: #fff;
  min-height: 380px;
  border-bottom: 9px solid #F98A3C;
}

/*Flex Card 3 with No Images End*/
/*Flex Card 2 with Images start*/
.article-info--horizontal.scl-flex-card--cl {
  display: none;
}

/*Flex Card 2 with Images End*/
/*Flex Card 2 without Images start*/
/*Flex Card 2 without Images End*/
/*Flex Card 2 without Images start - Gray*/
/*Flex Card 2 without Images End*/
/*Flex Card 2 66/33 with Images Start*/
.scl-flex-card--67-33.scl-white-background {
  width: 67%;
  background-color: #fff;
  max-height: 600px;
}

.scl-flex-card--67-33.scl-white-background .scl-flex-card--image-container img {
  max-height: 297px;
}

.scl-flex-card--67-33-spacer {
  width: 5%;
}

@media (max-width: 799px) {
  .scl-flex-card--67-33.scl-white-background {
    width: 50%;
    background-color: #fff;
    margin: 0 auto 40px;
  }
  .scl-flex-card--67-33.scl-white-background .scl-flex-card--image-container img {
    max-height: 320px;
  }
}
/*Flex Card 2 66/33 with Images End*/
/*Video cards Start*/
.videorow {
  max-width: 1400px;
  display: flex;
  padding: 60px 5% 0px;
  margin: 0 auto;
}

[class*=videocard] iframe {
  border-top: 10px solid #abb700;
}

.videocard1, .videocard2, .videocard3 {
  margin-right: 2.5%;
  width: 33%;
}

.videoplayer {
  width: 100%;
  background-color: black;
}

video {
  width: 100% !important;
  height: 100% !important;
  min-height: 220px;
}

.videogreenbar {
  width: 100%;
  background-color: #abb700;
  height: 10px;
}

.videotext {
  padding: 30px 9px 40px;
}

.videoTitle p {
  display: inline;
  padding: 10px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-family: "Input Sans Compressed light";
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 30px;
  color: #ffffff;
  background-color: #333333;
}

.fullvideocard1 {
  width: 100%;
  float: right;
  margin-top: 15px;
  padding: 0px 0 10px 20px;
}

.PodCast video {
  height: 70px !important;
  min-height: auto;
}

@media (max-width: 799px) {
  .videorow {
    max-width: 1140px;
    display: block;
    padding: 0 10% 60px;
    margin: 0 auto;
  }
  .videocard1 {
    margin-right: 0;
    padding-bottom: 40px;
    width: 100%;
  }
  .videocard2 {
    margin-right: 0;
    padding-bottom: 40px;
    width: 100%;
  }
  .videocard3 {
    margin-right: 0;
    padding-bottom: 20px;
    width: 100%;
  }
}
/*Video cards End*/
/*Responsive Youtube start*/
.responsive-youtube {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.responsive-youtube iframe {
  left: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

/*Responsive Youtube End*/
.inpage-below-strip.no-bottom-border {
  display: none;
}

.inpage-below-strip {
  display: none;
}

/*Top Nav Start*/
#nav {
  display: block;
  position: fixed;
  width: 100%;
  font-family: "Fidelity Sans";
  z-index: 999999;
  transition: all ease 0.3s;
  font-size: 16px;
  left: 0;
}

#logo {
  color: #ffffff;
  font-size: 18px;
  transition: all ease 0.3s;
  height: 54px;
  background-color: #333F48;
}

div #logo img {
  padding: 12px 40px;
  width: 127px;
}

.external #logo img {
  padding: 0px;
  width: 127px;
}

div #logo a {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 21px;
  float: left;
  letter-spacing: 0px;
  font-weight: 300;
  padding: 12px 40px;
  color: #ffffff;
  text-decoration: none;
}

#navButtons {
  width: 100%;
  height: 40px;
  background-color: white;
}

#hero {
  height: 500px;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

#navButtons .bye {
  display: none;
}

#nav.shrink {
  height: 40px;
  transition: all ease 0.3s;
}

#nav.shrink #logo {
  display: none;
  transition: all ease 0.3s;
}

#nav #fcatLogo {
  padding: 0px 40px;
  transition: all ease 0.3s;
  width: 250px;
  position: absolute;
}

#nav.shrink #fcatLogo {
  display: block;
  transition: all ease 0.3s;
  float: left;
  padding: 0px 40px;
  width: 130px;
}

.navbuttons {
  padding-top: 30px;
  float: right;
  position: absolute;
  right: -20px;
  top: 20px;
}

.navbuttonsEx {
  padding-top: 30px;
  float: right;
  position: absolute;
  right: -45px;
  top: 20px;
}

#nav.shrink .navbuttons {
  float: right;
  position: absolute;
  right: -20px;
  top: -25px;
}

#nav.shrink .navbuttonsEx {
  float: right;
  position: absolute;
  right: -45px;
  top: -15px;
}

#nav.shrink .topnav {
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  height: 60px;
}

#nav a.icon {
  display: none;
}

.dropdown {
  float: left;
  overflow: hidden;
  padding: 5px 25px 5px 0;
}

.navbuttonsEx .dropdown a {
  padding: 20px;
  margin-right: 30px;
  text-decoration: none;
}

.dropdown .dropbtn {
  font-size: 16px;
  border: none;
  outline: none;
  color: #000000;
  padding: 14px 20px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
  min-width: 160px;
  text-align: left;
}

.dropdown-content {
  display: none;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.dropdown-content a {
  float: none;
  color: #333333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: left;
  border-bottom: 0.25px solid #d8d8d8 !important;
  border-right: 0.25px solid #d8d8d8 !important;
  border-left: 0.25px solid #d8d8d8 !important;
}

.topnav {
  position: absolute;
  width: 100%;
  background-color: #ffffff;
  height: 120px;
}

.topnav a:hover,
.dropdown:hover .dropbtn {
  background-color: #000;
  text-decoration: none;
  color: white !important;
}

#fcatLogo a:hover {
  background-color: transparent;
}

.dropdown-content a:hover {
  background-color: #ddd;
  color: black;
  border-bottom: 1px solid #333333;
  transition: all ease 0.3s;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.navBottomSpace {
  padding-top: 150px;
}

@media screen and (max-width: 1050px) {
  .topnav a:not(:first-child),
  .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: left;
    display: block;
  }
  .dropdown {
    float: left;
    overflow: hidden;
    padding: 5px 0px;
  }
}
@media screen and (max-width: 1050px) {
  .navbuttons {
    float: right;
    width: 100%;
  }
  .navbuttonsEx {
    float: right;
    width: 100%;
  }
  #nav a.icon {
    display: block;
    float: right;
    padding: 15px;
    z-index: 999998;
    color: #000;
    text-decoration: none;
    position: absolute;
    right: 0px;
    top: 20px;
  }
  #nav.shrink a.icon {
    display: block;
    float: right;
    padding: 15px;
    z-index: 999998;
    color: #000;
    text-decoration: none;
    position: absolute;
    right: 0px;
    top: 0px;
  }
  .topnav.responsive {
    position: relative;
  }
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }
  #nav .dropdown {
    float: none;
    position: relative;
    top: 40;
    background-color: #ffffff;
    border-bottom: 0.25px solid #d8d8d8 !important;
  }
  #nav .dropdown:first-child {
    border-top: 1px solid #d8d8d8;
  }
  #nav.shrink .dropdown {
    float: none;
    position: relative;
    top: -43px;
    border-bottom: 0.25px solid #d8d8d8 !important;
  }
  #nav.shrink .navbuttons {
    padding-top: 30px;
    float: right;
    position: absolute;
    right: 35px;
  }
  #nav.shrink .navbuttonsEx {
    padding-top: 30px;
    float: right;
    position: absolute;
    right: 35px;
  }
  #nav.shrink .topnav {
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    height: 60px;
  }
  .topnav.responsive .dropdown-content {
    position: relative;
  }
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
  }
  .topnav.responsive .navbuttons {
    display: block;
    padding-top: 55px;
    position: absolute;
    width: 100%;
    left: 0px;
    top: 60px;
  }
  .topnav.responsive .navbuttonsEx {
    display: block;
    padding-top: 55px;
    position: absolute;
    width: 100%;
    left: 0px;
    top: 60px;
  }
  .topnav .navbuttons {
    display: none;
  }
  .topnav .navbuttonsEx {
    display: none;
  }
  #nav.shrink .topnav.responsive .navbuttons {
    display: block;
    padding-top: 40px;
    position: absolute;
    top: 60px;
  }
  #nav.shrink .topnav.responsive .navbuttonsEx {
    display: block;
    padding-top: 40px;
    position: absolute;
    top: 60px;
  }
}
/*Top Nav End*/
/*Content Body Start*/
.content-body {
  padding: 60px 18% 60px;
  margin: 0 auto;
}

.content-body--white {
  background-color: #FFFFFF;
}

.content-body--top {
  text-align: center;
}

p.content-body--top-lede {
  display: none;
}

.content-body--top p:last-of-type {
  display: none;
}

.content-body--top p {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 23px;
  font-weight: 300;
  line-height: 39px;
  margin: 0 auto;
  padding: 20px 0 30px;
}

.content-body article section ul {
  font-size: 24px;
  line-height: 36px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  padding-bottom: 30px;
  max-width: 930px;
  width: 100%;
  margin: 0 auto;
  list-style-type: disc;
  padding-left: 25px;
}

.content-body .grey-hr {
  display: none;
}

.content-body--article section {
  padding: 0 10%;
}

.content-body article section h3 {
  font-size: 48px;
  line-height: 72px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  text-align: center;
  padding-bottom: 30px;
}

.content-body article section h4 {
  font-size: 35px;
  line-height: 42px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  padding-bottom: 30px;
}

.content-body article section p {
  font-size: 23px;
  line-height: 39px;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  padding-bottom: 30px;
  max-width: 930px;
  width: 100%;
  margin: 0 auto;
}

section ul {
  list-style: outside;
  padding-left: 18px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
}

section ul li {
  padding-bottom: 20px;
}

section ul li strong {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
}

section ol {
  padding-left: 18px;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
}

section ol li {
  padding-bottom: 20px;
}

section ol li strong {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
}

.eventSectionText {
  font-size: 23px;
  line-height: 1.5;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-weight: 300;
  padding-bottom: 30px;
  flex: 1;
}

.eventSection {
  display: flex;
  padding: 10px 0px;
  gap: 20px;
}

.eventSection:first-of-type {
  padding-top: 60px;
}

.eventSectionTitle {
  font-size: 23px;
  line-height: 1.5;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  flex: 1;
}

.eventSectionText p {
  font-size: 23px;
  line-height: 29px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
}

.eventSectionText p br {
  content: "";
  margin: 12px;
  display: block;
}

@media (max-width: 749px) {
  .content-body {
    padding: 0px 5% 60px;
    margin: 0 auto;
  }
  .content-body--article section {
    padding: 0 5%;
  }
}
/*Content Body End*/
/*random things start*/
.split-region {
  display: none;
}

/*random things End*/
/*L1 Hero Start*/
.l1-heroW {
  width: 90%;
  max-width: 1400px;
  display: flex;
  padding: 50px 5% 60px;
  min-height: 410px;
  background-position: center;
  background-position-y: 40px;
  background-size: 70px;
  background-image: url("/bin-public/060_www_fidelity_com/external_fcat/images/square-dots-background.png");
  background-color: #666;
}

.l1-column1 h1 {
  padding-bottom: 20px;
  width: 100%;
  /*max-width: 420px*/
  letter-spacing: 1px;
}

.l1-column1 h3 {
  padding-bottom: 20px;
  font-family: "Fidelity Sans Light";
  width: 100%;
  font-size: 38px;
  line-height: 57px;
}

.l1-column1 p {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-weight: 300;
}

.l1-column1 ul {
  padding-left: 20px;
  padding-top: 20px;
}

.l1-column1 ul li {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-weight: 300;
  list-style-type: disc;
}

.l1-column2 h3 {
  padding-bottom: 20px;
  font-family: "Fidelity Sans Light";
  width: 100%;
  font-size: 38px;
  line-height: 57px;
}

.l1-column2 p {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-weight: 300;
}

.l1-column2 ul {
  padding-left: 20px;
  padding-top: 20px;
}

.l1-column2 ul li {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 27px;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-weight: 300;
  list-style-type: disc;
}

.l1-hero {
  width: 90%;
  max-width: 1400px;
  display: flex;
  padding: 0 5% 60px;
  margin: 50px auto 0px;
  min-height: 410px;
  background-repeat: no-repeat;
  background-position: center, bottom;
  background-size: contain;
}

.l1-column1 {
  padding: 10px 5% 10px 0%;
  width: 40%;
  margin: 0 auto;
}

.l1-column1 img {
  width: auto;
  max-height: 470px;
}

.l1-column2 {
  /*padding: 10px 5% 10px 0%;*/
  width: 40%;
  margin: 0 auto;
}

.l1-circle-green {
  height: 200px;
  width: 200px;
  font-size: 18px;
  border-radius: 50%;
  background-color: #ABB700;
  opacity: 0.9;
  position: absolute;
  z-index: 1;
}

.l1-circle-magenta {
  height: 200px;
  width: 200px;
  font-size: 18px;
  border-radius: 50%;
  background-color: #FFCD00;
  opacity: 0.85;
  position: absolute;
  z-index: 1;
}

.l1-circle-orange {
  height: 200px;
  width: 200px;
  font-size: 18px;
  border-radius: 50%;
  background-color: #FF6212;
  opacity: 0.85;
  position: absolute;
  z-index: 1;
}

.l1-circle-green .circle-text {
  width: 140px;
  padding: 55px 40px;
  line-height: 26px;
  letter-spacing: 2.29px;
  font-family: "Input Sans Compressed Bold";
  text-align: left;
  font-size: 15px;
  color: #ffffff;
}

.l1-circle-magenta .circle-text {
  width: 140px;
  padding: 55px 40px;
  line-height: 26px;
  letter-spacing: 2.29px;
  font-family: "Input Sans Compressed Bold";
  text-align: left;
  font-size: 15px;
  color: #ffffff;
}

.l1-circle-orange .circle-text {
  width: 140px;
  padding: 55px 40px;
  line-height: 26px;
  letter-spacing: 2.29px;
  font-family: "Input Sans Compressed Bold";
  text-align: left;
  font-size: 15px;
  color: #ffffff;
}

.l1-column1 img {
  width: auto;
  max-height: 420px;
}

.l1-column2 img {
  width: auto;
  max-height: 420px;
}

.l1-hero svg {
  position: absolute;
  top: 172px;
}

.l1-lines {
  position: absolute;
  top: 30px;
  height: 280px;
  width: 100%;
  max-width: 1255px;
  display: none;
}

@media screen and (max-width: 999px) {
  .l1-hero {
    width: 90%;
    max-width: 1400px;
    display: flex;
    padding: 0 5% 60px;
    margin: 0 auto;
    min-height: 200px;
    background-image: none;
  }
  .l1-column1 {
    padding: 40px 5% 0px;
    width: 100%;
  }
  .l1-column1 h1 {
    padding-bottom: 20px;
    width: 100%;
    max-width: 470px;
  }
  .l1-column2 {
    padding: 10px 5%;
    width: 0%;
    display: none;
  }
  .l1-hero svg {
    position: absolute;
    top: 82px;
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .l1-column1 h1 {
    font-size: 42px;
  }
}
/*L1 Hero End*/
/*Home L1 page overwrite start*/
div#homescantryscale {
  background-color: #fff;
}

div#homescantryscale .whitebox h3 {
  display: inline;
  padding: 0.45rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-family: "Input Sans Compressed light";
  font-size: 26px;
  letter-spacing: 0;
  line-height: 40px;
  color: #fff;
  background-color: #44444D;
}

/*Home L1 page overwrite end*/
/*Etech L1 page overwrite start*/
div#overviewDocumentmanagement .scl-mini-hero--columns-content {
  background-color: #fff;
}

div#overviewDocumentmanagement {
  background-color: #ffffff !important;
  padding: 40px 0px;
}

/*Etech L1 page overwrite end*/
/*Patent L1 page overwrite start*/
div#overviewPatentBenefits .scl-mini-hero--columns-content {
  background-color: #fff;
}

div#overviewPatentBenefits {
  background-color: #ffffff !important;
  padding: 40px 0px;
}

/*Patent L1 page overwrite end*/
/*Rearch L1 page overwrite start*/
div#overviewFCATDigitalLibrary .scl-mini-hero--columns-content {
  background-color: #fff;
}

div#overviewFCATDigitalLibrary {
  background-color: #ffffff !important;
  padding: 40px 0px;
}

/*Rearch L1 page overwrite end*/
/* Banner CT Start*/
.scl-bannerct-container {
  background-color: #444444;
  padding: 45px 10%;
  text-align: center;
  margin-bottom: 0px;
}

.scl-bannerct-container--green {
  background-color: #B5BD02;
}

h1.scl-bannerct--msg-text-header {
  color: white;
  font-size: 36px;
  padding-bottom: 30px;
  font-family: "Fidelity Sans Light";
  font-weight: 300;
}

.scl-bannerct--msg-text-desc h3 {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 33px;
  line-height: 30px;
  font-weight: 300;
  margin: 0 auto;
  padding: 0px 0 20px;
  color: #fff;
}

.scl-bannerct--msg-text-desc p {
  padding-bottom: 20px;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.4px;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  color: #ffffff;
}

.scl-bannerct--msg-text-desc p a {
  color: #fff;
}

/* Banner CT End*/
/*FCAT External Footer Start*/
.fcatfooterEx {
  display: block;
  position: absolute;
  width: 100%;
  z-index: 999999;
  transition: all ease 0.3s;
  font-family: "Input Sans Compressed Medium";
  font-size: 14px;
  left: 0;
  margin-top: 20px;
}

.fcatsocialEx {
  display: flex;
  justify-content: center;
  background-color: #B5BD02;
  padding: 25px;
}

.fcatfooterBottomEx {
  background-color: #000;
  color: #fff;
  display: block;
  height: fit-content;
  align-items: center;
  padding: 0 10%;
}

.fcatfooterText p {
  color: #fff;
  font-size: 13px;
  line-height: 19px;
  letter-spacing: normal;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
}

.fcatfooterText p a {
  color: #fff;
}

.fcatfooterHeader {
  font-size: 22px;
  line-height: 33px;
  letter-spacing: normal;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  padding-bottom: 20px;
}

.fcatsocialExI {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 20px 30px;
}

.fcatsocialExI a {
  font-size: 18px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  text-decoration: none;
}

.fcatsocialExS img {
  width: 35px;
}

.fcatFidelitylogoEX {
  padding: 30px 0px;
}

@media (max-width: 879px) {
  .fcatsocialExI a:first-child {
    flex: 0 0 100%;
  }
  .fcatsocialExS {
    padding: 10px;
  }
}
/*FCAT External Footer End*/
/*FCAT Footer Start*/
.fcatFooter {
  display: block;
  position: absolute;
  width: 100%;
  z-index: 999999;
  transition: all ease 0.3s;
  font-family: "Input Sans Compressed Medium";
  font-size: 14px;
  left: 0;
}

.fcatTour {
  display: flex;
  justify-content: center;
  background-color: #B5BD02;
  padding: 45px;
}

.fcatFooterContent {
  display: flex;
}

.fcatTour p {
  padding: 10px 20px;
  align-content: center;
  margin: auto;
}

.footerBottom {
  background-color: #000;
  color: #fff;
  display: flex;
  height: 150px;
  align-items: center;
}

.footerLogo {
  width: 50%;
  margin: 0 0 0 auto;
}

.footerLogo img {
  width: 150px;
  padding-left: 30%;
  margin: auto 0px;
}

.footerInfo {
  width: 50%;
}

.footerInfo p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 1.25px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
}

.footerInfo a {
  color: #fff;
  text-decoration: none;
}

@media (max-width: 525px) {
  .fcatsocialExI img {
    vertical-align: middle;
    padding-left: 0px;
  }
}
/*FCAT Footer End*/
/*Welcome PopUp Start*/
div#popup {
  background-color: #fff;
  width: 555px;
  padding: 55px;
  position: absolute;
  z-index: 8;
  margin-left: 25%;
  top: 245px;
  border-bottom: 9px solid #B5BD00;
}

p#popup-close {
  float: right;
}

div#popup h2 {
  padding: 40px 0px;
}

/*Welcome PopUp End*/
/* Project Header Icon Top Start*/
.pjHeaderTopicon {
  display: block;
  max-width: 933px;
  margin: 0 auto;
  padding: 60px 2.5% 60px;
}

.pjTopicon img {
  margin: 0 auto;
  /* width: 100px; */
  /* max-width: 933px; */
}

.pjTopicon {
  width: 130px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 10px;
}

.pjHeaderTopicon .pjintroText {
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  font-size: 30px;
  line-height: 40px;
  padding-bottom: 0px;
  padding-top: 0px;
  font-weight: 600;
  text-align: center;
}

.pjHeaderTopicon .pjtitle {
  font-family: "Fidelity Sans Ultra Light", Helvetica, Sans-serif;
  font-size: 72px;
  line-height: 80px;
  padding: 0px 0 40px;
  text-align: center;
}

/* Project Header Icon Top End*/
/* Project Header Start*/
.eventHeaderright .eventHeadertags .eventHeadertag {
  background-color: #000;
  color: #fff !important;
}

div .eventHeadertag:empty {
  display: none;
}

.pjimg .disclosures .para {
  padding-bottom: 15px;
  font-family: "Fidelity Sans";
  font-size: 14px;
  color: #000000;
  letter-spacing: 0;
  line-height: 20px;
  border: none;
}

.pjimg .disclosures {
  border-top: none !important;
  clear: both;
  display: block;
  margin: 0;
  padding: 0 14% !important;
  font-size: 80%;
  color: #666;
  font-family: "Fidelity Sans";
}

.pjIconcon {
  width: 130px;
  min-width: 130px;
  height: auto;
  border-right: 1px solid #000;
  background-image: url("/bin-public/060_www_fidelity_com/external_fcat/images/research/dots.png");
  background-repeat: repeat-y;
}

.pjHeader#external .pjIconcon {
  background-image: url("/bin-public/060_www_fidelity_com/external_fcat/images/projects/dots2.png");
  background-repeat: repeat-y;
}

.pjCategory {
  font-family: "Input Sans Compressed Bold";
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 2px;
  padding-bottom: 10px;
  text-transform: uppercase;
}

.pjcircle {
  width: 60px;
  height: 40px;
  background: #000;
  margin: 0 auto;
  color: #fff;
  border-radius: 50px;
  padding: 30px 20px;
  font-size: 18px;
  letter-spacing: 0.5px;
  line-height: 18px;
  font-family: "Input Sans Compressed";
}

.pjHeader {
  display: flex;
  max-width: 933px;
  margin: 0 auto;
  padding: 80px 2.5% 60px;
}

.pjcircle a {
  color: #fff;
  text-decoration: none;
  font-family: "Input Sans Compressed";
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.5px;
}

.pjSection {
  padding: 0px 0px 0px 40px;
}

.pjbyLine {
  font-family: "Input Sans Compressed Bold";
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 2px;
  padding-bottom: 35px;
  text-transform: uppercase;
}

.pjtitle {
  font-family: "Fidelity Sans Ultra Light", Helvetica, Sans-serif;
  font-size: 72px;
  line-height: 80px;
  padding: 0px 0 55px;
}

.pjtitle sup {
  top: -46px;
  right: -8px;
}

.pjintroText {
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  font-size: 30px;
  line-height: 40px;
  padding-bottom: 0px;
  padding-top: 0px;
  font-weight: 600;
}

.pjintroText sup {
  top: -16px;
  right: -3px;
}

.pjIconImage {
  width: 90px;
  margin: 0 auto;
  color: #fff;
}

.pjHeadertags {
  display: flex;
  padding-top: 35px;
}

@media (max-width: 799px) {
  .pjtitle {
    font-family: "Fidelity Sans Ultra Light", Helvetica, Sans-serif;
    font-size: 60px;
    line-height: 70px;
    padding: 0px 0 50px;
    width: 100%;
  }
  .pjintroText {
    font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
    font-size: 26px;
    line-height: 36px;
    padding-bottom: 0px;
    padding-top: 0px;
    font-weight: 600;
  }
  .pjbyLine {
    font-family: "Input Sans Compressed Bold";
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 2px;
    padding-bottom: 30px;
    text-transform: uppercase;
  }
}
@media (max-width: 569px) {
  .pjCategory {
    font-family: "Input Sans Compressed Bold";
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2px;
    padding-bottom: 10px;
    text-transform: uppercase;
  }
  .pjtitle {
    font-family: "Fidelity Sans Ultra Light", Helvetica, Sans-serif;
    font-size: 52px !important;
    line-height: 60px;
    padding: 0px 0 40px;
    width: 100%;
  }
  .pjintroText {
    font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 0px;
    padding-top: 0px;
    font-weight: 600;
  }
  .pjbyLine {
    font-family: "Input Sans Compressed Bold";
    font-size: 14px;
    line-height: 20px;
    letter-spacing: 2px;
    padding-bottom: 25px;
    text-transform: uppercase;
  }
  .pjIconcon {
    width: 130px;
    min-width: 130px;
    height: auto;
    border-right: 1px solid #000;
    background-image: url("/bin-public/060_www_fidelity_com/external_fcat/images/research/dots.png");
    background-repeat: repeat-y;
    display: none;
  }
  .pjSection {
    padding: 0px 2.5% 0px 2.5%;
  }
}
/* Project Header End*/
/* L2 Project Header Start*/
.L2projectheader {
  padding: 0px 18% 80px;
  margin: 0 auto;
}

.L2projectheader .pjtitle {
  text-align: center;
  padding-bottom: 30px;
}

.L2projectheader .pjintroText {
  text-align: center;
}

.L2projectheader .pjIconImage {
  padding: 30px 0px;
}

/* L2 Project Header End*/
/*Learning Resources Header Start*/
.lrIconImage {
  width: 60px;
  height: 40px;
  margin: 0 auto;
}

.lrHeader {
  display: flex;
  width: 933px;
  margin: 0 auto;
  padding: 80px 0 60px;
}

.lrIconcon {
  width: 130px;
  min-width: 130px;
  height: auto;
  border-right: 1px solid #000;
  background-image: url("/bin-public/060_www_fidelity_com/external_fcat/images/research/dots.png");
  background-repeat: repeat-y;
}

.lrSection {
  padding-left: 40px;
}

.lrtitle {
  font-family: "Fidelity Sans Ultra Light", Helvetica, Sans-serif;
  font-size: 75px;
  line-height: 85px;
  padding: 0px 0 60px;
}

.lrintroText {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: normal;
}

/*PLearning Resources Header Start*/
/*P-Reports Header Start*/
.prhHeader {
  margin: 0 auto;
  max-width: 1140px;
  display: flex;
  padding: 30px;
  height: auto;
  min-height: 400px;
}

.prhSection {
  display: flex;
  padding-right: 30px;
  background-image: url("/bin-public/060_www_fidelity_com/external_fcat/images/research/dots.png");
  background-repeat: no-repeat;
  background-position-x: 0px;
  position: inherit;
  z-index: 2;
}

.prhTitle {
  width: 75%;
  margin: 0 auto;
  padding-right: 60px;
}

.prhtitle2 {
  display: none;
}

.prhSectionText {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-right: 1.5px solid #000;
  padding-right: 30px;
  font-size: 18px;
  line-height: 31px;
  letter-spacing: 0.47px;
  font-family: "Input Sans Compressed light";
  padding-left: 120px;
}

.prhCircle {
  border-radius: 95px;
  background-color: #178ab4;
  height: 100px;
  width: 112px;
  position: inherit;
  z-index: 1;
  transform: translateX(51px);
}

.prhCircle2 {
  border-radius: 95px;
  background-color: #009681;
  height: 100px;
  width: 112px;
  position: inherit;
  z-index: 1;
  transform: translateX(51px);
}

.prhCircle2 p {
  color: #fff;
  font-size: 45px;
  line-height: 75px;
  text-align: center;
  margin: 10px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
}

.prhCircle p {
  color: #fff;
  font-size: 45px;
  line-height: 75px;
  text-align: center;
  margin: 10px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
}

.prhtitle {
  font-family: "Fidelity Sans Ultra Light", Helvetica, Sans-serif;
  font-size: 75px;
  line-height: 90px;
  padding-bottom: 20px;
}

.prhbyLine {
  font-family: "Input Sans Compressed Bold";
  font-size: 18px;
  line-height: 45px;
  letter-spacing: 3px;
  padding-bottom: 20px;
}

.prhintroText {
  font-size: 30px;
  line-height: 43px;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-weight: 300;
  padding-bottom: 20px;
}

.prhHeaderimage {
  transform: translate(0px, -60px);
}

/*P-Reports Header end*/
/*Basic Header Start*/
.basicHeader {
  margin: 0 auto;
  height: auto;
  min-height: 400px;
  max-width: 933px;
}

.basicbyLine {
  font-family: "Input Sans Compressed Bold";
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 2px;
  padding-bottom: 0px;
}

.basictitle {
  font-family: "Fidelity Sans Ultra Light", Helvetica, Sans-serif;
  font-size: 85px;
  line-height: 90px;
  padding-bottom: 40px;
}

.basicSection {
  display: flex;
  background-image: url("/bin-public/060_www_fidelity_com/external_fcat/images/research/dots.png");
  background-repeat: repeat-y;
  padding-right: 0px;
}

.basicTitle {
  width: auto;
  margin: 0 auto 0 130px;
  padding-left: 50px;
  border-left: 1px solid;
  padding-right: 0px;
}

.basicimg {
  padding-bottom: 20px;
}

.basicintroText {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: normal;
  padding-bottom: 20px;
  padding-top: 10px;
}

/*Basic Header End*/
/*Speaker Hero Start*/
.spaekerColumn1 {
  width: 50%;
}

.spaekerColumn2 {
  width: 50%;
  margin: 100px 0 0;
}

.speakerImage {
  width: 45%;
  margin: 20px auto;
}

.speakerHeader {
  display: flex;
  min-height: 350px;
}

.speakerName h1 {
  font-family: "Fidelity Sans Ultra Light", Helvetica, Sans-serif;
  font-size: 65px;
  line-height: 46px;
  color: #fff;
  padding-bottom: 40px;
  letter-spacing: 0px;
}

.speakerArea p {
  text-transform: uppercase;
  font-family: "Input Sans Compressed Bold";
  font-size: 16px;
  line-height: 23px;
  color: #fff;
  letter-spacing: 2.29px;
}

.speakerTags {
  display: flex;
  color: #fff;
}

.speakerArea {
  padding-bottom: 20px;
}

.speakerTags p {
  background-color: #000;
  padding: 5px 15px;
  margin-right: 30px;
  border-radius: 32px;
  font-size: 11px;
  text-transform: uppercase;
  line-height: 25px;
  font-family: "Input Sans Compressed";
  letter-spacing: 1.75px;
}

/*Speaker Hero End*/
/*Author Call Out start*/
.call-out {
  padding: 30px 0;
  width: 933px;
  margin: 0 auto;
}

.call-out .description {
  border-top: 1px solid;
  padding-top: 30px;
  display: flex;
}

.call-out .description:has(> .authorText.noDivider) {
  border-top: none;
}

.call-out .description .image {
  width: 50%;
  padding-right: 30px;
}

.authorText {
  width: auto;
}

.authorText p {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 14px;
  line-height: 21px;
  padding-bottom: 20px;
}

.authorText a {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 18px;
  line-height: 21px;
  color: #116787;
}

/*Author Call Out End*/
/*research nav bar start*/
.pr2navbar .dropdown .dropdown-content {
  position: absolute;
  top: 213px;
}

.pr2navbar .dropdown {
  padding: 5px;
}

.pr2navbar .dropdown .dropbtn {
  float: left;
  font-size: 14px;
  color: white;
  text-align: center;
  padding: 10px 0px;
  text-decoration: none;
}

.pr2navbar .dropdown:hover {
  color: #000;
}

.pr2navbar .dropdown button.dropbtn {
  text-decoration: none;
  height: 37px;
  color: #fff !important;
}

.pr2navbar .dropdown .dropdown-content a {
  color: #000;
}

.pr2navbar .dropdown:hover .dropbtn {
  background-color: #fff;
  text-decoration: none;
  color: black !important;
}

.pr2navbar .dropdown .dropbtn {
  display: inherit;
}

/*research nav bar end*/
.fcat-fade-in-text {
  animation: fadeIn 5s;
  -webkit-animation: fadeIn 5s;
  -moz-animation: fadeIn 5s;
  -o-animation: fadeIn 5s;
  -ms-animation: fadeIn 5s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-ms-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fcat--newnoteworthy--authorDate {
  text-transform: uppercase;
}

/* 50-50 Image Right Start*/
.fiftyfiftyimageRight {
  display: flex;
  background-color: #fff;
  align-items: stretch;
}
.fiftyfiftyimageRight-top-aligned {
  align-items: flex-start;
}
.fiftyfiftyimageRight-no-background {
  background-color: transparent;
}
.fiftyfiftyimageRight-small-gap {
  gap: 20px;
}
.fiftyfiftyimageRight-medium-gap {
  gap: 40px;
}
.fiftyfiftyimageRight-large-gap {
  gap: 60px;
}
.fiftyfiftyimageRight-small-margin {
  margin-bottom: 20px;
}
.fiftyfiftyimageRight-medium-margin {
  margin-bottom: 40px;
}
.fiftyfiftyimageRight-large-margin {
  margin-bottom: 60px;
}

.box-image-left,
.box-image-right {
  flex: 1;
  padding: 6%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 200px;
  min-width: 0;
}
.box-image-left-contain,
.box-image-right-contain {
  background-size: contain;
}
.box-image-left-background-top,
.box-image-right-background-top {
  background-position: top;
}
.box-image-left-padding-sm,
.box-image-right-padding-sm {
  padding: 4%;
}
.box-image-left.fcat--padding-none,
.box-image-right.fcat--padding-none {
  padding: 0;
}
.box-image-left.fcat--align-center,
.box-image-right.fcat--align-center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.box-image-left.fcat--align-center .box-image-text,
.box-image-right.fcat--align-center .box-image-text {
  padding-bottom: 0;
}
.box-image-left.fcat--align-center .box-image-text p:last-child,
.box-image-right.fcat--align-center .box-image-text p:last-child {
  padding: 0;
}

.listofLinks {
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  font-size: 14px;
  line-height: 35px;
  letter-spacing: 1px;
  padding-top: 30px;
}

.listofLinks a {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 1px;
  text-decoration: none;
}

.box-image-title {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 36px;
  line-height: 40px;
  color: #333;
  padding: 50px 0 30px;
  letter-spacing: 1px;
}

.box-image-text {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 1px;
  color: #000;
  padding-bottom: 20px;
}
.box-image-text a, .box-image-text a + span {
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  font-size: 14px;
}
.box-image-text-bold {
  font-family: "Fidelity Sans Bold", Helvetica, Sans-serif;
}
.box-image-text-citation {
  text-align: right;
}

@media (max-width: 799px) {
  .fiftyfiftyimageRight {
    flex-direction: column;
    gap: 20px;
  }
  .box-image-order-last {
    order: 1;
  }
}
@media (max-width: 1150px) {
  .fiftyfiftyimageRight .box-image-right img {
    width: auto;
  }
}
/* 50-50 Image Right End*/
.scl-flex-card--row:has(.scl-flex-card--50) {
  display: flex;
  margin: 20px 40px;
  gap: 60px;
  flex-wrap: wrap;
}
.scl-flex-card--row .scl-flex-card--50 {
  flex: 1 1 475px;
}
.scl-flex-card--row .scl-flex-card--50.scl-gray-background, .scl-flex-card--row .scl-flex-card--50.scl-white-background {
  background-color: #fff;
  border-bottom: 9px solid #B5BD00;
}
.scl-flex-card--row .scl-flex-card--50 .scl-flex-card--image-container img {
  object-fit: cover;
  width: 100%;
}
.scl-flex-card--row .scl-flex-card--50-spacer {
  display: none;
}

/*Key takeaways Start*/
.key-takeaway-wrapper {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  display: flex;
  gap: 1rem;
  flex-flow: row wrap;
  justify-content: center;
  background-image: url("/bin-public/060_www_fidelity_com/external_fcat/images/test/Pattern_tile_small.png");
  background-repeat: repeat;
  padding: 80px 4%;
  color: #ffffff;
}
.key-takeaway-wrapper h2 {
  text-align: center;
  color: inherit;
  width: 100%;
}

.key-takeaway-text p a, .key-takeaway-headline, .key-takeaway-text ul li, .key-takeaway-text .content ul li, .key-takeaway-text .content ul li a, .key-takeaway-text ol li {
  color: inherit;
}
.key-takeaway-headline {
  font-family: inherit;
}

.key-takeaway-wrapper--border-top {
  border-top: #B5BD00 8px solid;
}

.key-takeaway-wrapper#external {
  background-image: url("/bin-public/060_www_fidelity_com/external_fcat/images/projects/Pattern_tile_small.png");
}

.key-takeaway-card {
  width: 40%;
  display: flex;
  margin: 1.9rem;
}

.key-takeaway-imgBx {
  margin: 0 30px 0 0;
  width: 100%;
  max-width: 62px;
  min-width: 62px;
}

.key-takeaway-headline {
  font-size: 36px;
  letter-spacing: 0;
  line-height: 1.1111111111;
  font-weight: 300;
  margin: 0 0 0.5833333333em 0;
}

.key-takeaway-text ul {
  padding-left: 25px;
}

.key-takeaway-text ul li,
.key-takeaway-text .content ul li {
  letter-spacing: 0;
  font-weight: 300;
  list-style-type: disc;
}
.key-takeaway-text p:not(:first-of-type) {
  margin-top: 1.125em;
}

.key-takeaway-text .content ul {
  padding-left: 25px;
}

.key-takeaway-text .content img {
  background-color: #fff;
  padding: 15px;
  width: 85%;
  margin: 20px 0px;
}

/* Screen larger than 600px column */
@media (max-width: 799px) {
  .key-takeaway-card {
    display: block;
    width: 100%;
  }
}
/*Key takeaways End*/
.fcat--table {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 1.125em;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0.625em;
  border: 1px solid #C7C5C5;
}
.fcat--table-half {
  width: 50%;
}
.fcat--table-right {
  float: right;
}
.fcat--table-left {
  float: left;
}
.fcat--table-left, .fcat--table-right {
  clear: both;
}
@media only screen and (max-width: 933px) {
  .fcat--table-half {
    float: none;
    width: 100%;
  }
}
.fcat--table td, .fcat--table th {
  text-align: center;
  vertical-align: middle;
  padding: 1em;
}
.fcat--table-left-aligned td, .fcat--table-left-aligned th {
  text-align: left;
}
.fcat--table-extended-text td {
  text-align: left;
  vertical-align: top;
}
.fcat--table-extended-text td ul {
  padding-left: 10px;
}
.fcat--table-extended-text td ul li {
  padding-bottom: 0;
  word-break: break-word;
}
.fcat--table th {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  text-transform: uppercase;
}
.fcat--table-header-category th:first-child {
  text-transform: none;
  color: white;
}
.fcat--table th, .fcat--table-header-category th {
  background: #D1D630;
}
.fcat--table-header-category th:nth-of-type(1) {
  background: black;
}
.fcat--table tr:nth-child(even) {
  background: #F0EFEF;
}
.fcat--table.fcat--table-text-left > tbody > tr > td:nth-of-type(1), .fcat--table.fcat--table-text-left > tbody > tr > th:nth-of-type(1) {
  text-align: left;
}
.fcat--table section ul {
  padding-left: 0;
}

.fcat--banner-image img {
  display: block;
}

/* Buttons Start*/
/*.button {
    width: fit-content;
    min-width: 100px;
    height: 40px;
    background-color: #fff;
    border: 1px solid #444444;
}*/
button.fcat-btn.large {
  font-size: 14px;
  line-height: 30px;
  padding: 10px 15px;
  min-height: 50px;
  min-width: 150px;
  letter-spacing: 2px;
  text-transform: uppercase;
  width: auto;
}

button.fcat-btn.small {
  font-size: 14px;
  line-height: 30px;
  padding: 10px 25px;
  min-height: 35px;
  min-width: 125px;
  letter-spacing: 2px;
  font-family: "Input Sans Compressed Bold";
  text-transform: uppercase;
}

button.fcat-btn.btn-prim-black {
  border: #000 solid 1px;
  color: #000;
  background-color: transparent;
}

button.fcat-btn.btn-prim-black:hover {
  border: #000 solid 1px;
  color: #fff;
  background-color: #000;
}

button.fcat-btn.btn-prim-white {
  border: #fff solid 1px;
  color: #fff;
  background-color: transparent;
}

button.fcat-btn.btn-prim-white:hover {
  border: #fff solid 1px;
  color: #000;
  background-color: #fff;
}

button.fcat-btn.btn-sec-green {
  border-radius: 30px;
  border: #b5bd00 solid 1px;
  color: #fff;
  background-color: #b5bd00;
}

button.fcat-btn.btn-sec-black {
  border-radius: 30px;
  color: #fff;
  background-color: #000;
  border: none;
}

button.fcat-btn {
  font-family: "Input Sans Compressed";
  font-size: 14px;
  margin: 0;
  cursor: pointer;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  justify-content: center;
}

.btn-icon {
  border: #fff solid 1px;
  background-color: #fff;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  margin-left: 15px;
}

button.fcat-btn.btn-sec-black:hover {
  background-color: #b5bd00;
}

/* Buttons End*/
.fcat--button {
  font-family: "Input Sans Compressed", Helvetica, Sans-serif;
  font-size: 14px;
  padding: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid #000;
  cursor: pointer;
}
.fcat--button:hover {
  color: #fff;
  background-color: #000;
}

/*Event Header Start*/
.eventHeadercard {
  max-width: 940px;
  height: auto;
  min-height: 310px;
  background-color: #E5E4E1;
  margin: 20px auto 0px;
  bottom: 0px;
  padding: 20px 49px 20px 20px;
  display: flex;
}

.eventHeadercard {
  max-width: 940px;
  height: auto;
  min-height: 310px;
  background-color: #E5E4E1;
  margin: 20px auto 0px;
  bottom: 0px;
  padding: 20px;
  display: flex;
}

.eventHeaderleft {
  width: 25%;
}

.eventHeaderright {
  width: 75%;
}

.eventHeaderdate {
  font-family: "Fidelity Sans Bold", Helvetica, Sans-serif;
  font-size: 56px;
  line-height: 56px;
  text-align: right;
  width: 150px;
  text-transform: uppercase;
}

.eventHeadertype {
  font-family: "Input Sans Compressed Medium";
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 1px;
  text-align: left;
  padding-bottom: 5px;
  text-transform: uppercase;
}

.eventHeadertitle {
  font-family: "Fidelity Sans Ultra Light", Helvetica, Sans-serif;
  font-size: 56px;
  line-height: 56px;
  text-align: left;
  padding-bottom: 20px;
}

.eventHeadertags {
  display: flex;
  flex-flow: wrap;
  padding-bottom: 20px;
}

.eventHeadertag {
  background-color: #ddd;
  color: #000 !important;
  padding: 5px 10px;
  margin: 5px 5px 5px 0;
  border-radius: 15px;
  font-family: "Input Sans Compressed light";
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 1.75px;
  text-transform: uppercase;
}

.eventHeaderdis {
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  font-size: 24px;
  line-height: 30px;
  padding-bottom: 20px;
}

.eventHeaderd2card {
  display: flex;
  margin: 0 auto;
  max-width: 700px;
  color: #fff;
}

.eventHeaderd2 {
  width: 100%;
  background-color: #444444;
  margin-bottom: 60px;
}

.eventHeaderd2Left {
  width: 50%;
  vertical-align: middle;
  padding: 60px 0px 60px 12%;
}

.eventHeaderd2right {
  width: 50%;
  padding: 60px 0px 60px 12%;
}

.eventHeaderd2right p a {
  color: #fff;
}

.eventHeadertag a {
  color: #333;
  text-decoration: none;
}

.eventHeaderd2Left h3 {
  font-size: 36px;
  line-height: 56px;
  color: #fff;
  font-family: "Input Sans Compressed light";
}

.eventHeaderd2right h3 {
  font-size: 36px;
  line-height: 56px;
  color: #fff;
  font-family: "Input Sans Compressed light";
}

.descript p.speakerExpertise {
  font-family: "Input Sans Compressed";
  line-height: 1.5;
  padding: 0;
}

@media (max-width: 749px) {
  .eventHeaderleft {
    width: 25%;
    display: none;
  }
  .eventHeaderright {
    width: auto;
  }
  .eventHeadercard {
    max-width: 940px;
    height: auto;
    min-height: 310px;
    background-color: #E5E4E1;
    margin: 0px auto;
    bottom: 0px;
    margin-bottom: 0px;
    padding: 20px 5%;
    display: flex;
  }
}
/*Event Header end*/
.fcat--flex-bubbles {
  display: flex;
  gap: 60px;
  margin: 0 60px 80px;
}
.fcat--flex-bubbles > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.fcat--flex-bubbles--container {
  display: flex;
  align-items: center;
  height: 75px;
  width: 75px;
  font-family: "Input Sans Compressed light";
  background-color: #00ccff;
  border-radius: 50%;
  padding: 20px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/*Flex Image with Column 2 (50/50) Column Start*/
.scl-flx-50-50 {
  display: flex;
}

.scl-flx-50-50 .scl-flexible-images-with-column-1 {
  padding-right: 20px;
  width: 50%;
}

.scl-flx-50-50 .scl-flexible-images-with-column-2 {
  padding-right: 20px;
  width: 50%;
}

@media screen and (max-width: 999px) {
  .scl-flx-50-50 .scl-flexible-images-with-column-1 {
    padding-right: 20px;
    width: 100%;
    padding-bottom: 30px;
  }
  .scl-flx-50-50 .scl-flexible-images-with-column-2 {
    padding-right: 20px;
    width: 100%;
  }
}
.scl-flx-50-50 .scl-flexible-images-with-column--image img {
  height: 110px;
  padding-bottom: 20px;
}

.scl-flx-50-50 .whitebox {
  height: auto;
  width: 80%;
  margin-bottom: 25px;
}

.scl-flx-50-50 .whitebox h3 {
  display: inline;
  padding: 0.45rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-family: "Input Sans Compressed light";
  font-size: 26px;
  letter-spacing: 0;
  line-height: 40px;
  color: #333333;
  background-color: #fff;
}

@media (max-width: 699px) {
  .scl-flx-50-50 {
    display: block;
  }
  .scl-flx-50-50 .scl-flexible-images-with-column-1 {
    padding-right: 0px;
    padding-bottom: 40px;
  }
}
/*Flex Image with Column 2 (50/50) Column End*/
/*Flex Image with Column 2 (33/33/33) Column Start*/
.scl-flexible-layout-3-columns {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.scl-flexible-images-with-column .scl-flexible-single-column .scl-flexible-images-with-column-1 .scl-flexible-layout-3-columns {
  padding-right: 0px;
}

.scl-flexible-layout-3-columns .scl-flexible-layout-multi-column {
  flex: 1;
}

.scl-flexible-layout-multi-column--image.scl-flexible-layout-multi-column--image-left img {
  height: 90px;
  padding-bottom: 20px;
}

.scl-flexible-layout-multi-column--image.scl-flexible-layout-multi-column--image-center img {
  height: 90px;
  padding-bottom: 20px;
}

.scl-flexible-images-with-column .scl-flexible-images-with-column--image img {
  height: 110px;
  padding-bottom: 20px;
}

.scl-flexible-layout-multi-column--image.scl-flexible-layout-multi-column--image-left {
  display: flex;
  justify-content: flex-start;
}

.scl-flexible-layout-multi-column--image.scl-flexible-layout-multi-column--image-center {
  display: flex;
  justify-content: center;
}

.scl-flexible-images-with-column .whitebox {
  height: auto;
  margin-bottom: 25px;
  margin: 0 auto;
  padding-bottom: 20px;
  text-align: center;
}

.scl-flexible-images-with-column--description p {
  width: 90%;
  margin: 0 auto;
}

.scl-flexible-images-with-column--group-headline h2 {
  font-size: 60px;
  line-height: 70px;
  text-align: center;
}

.scl-flexible-images-with-column .whitebox h3 {
  display: inline;
  padding: 0.45rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  font-family: "Input Sans Compressed light";
  font-size: 26px;
  letter-spacing: 0;
  line-height: 40px;
  color: #444444;
  font-weight: 300;
  background-color: #ffffff;
  text-transform: uppercase;
}

.scl-flexible-layout-multi-column--description .scl-flexible-layout-multi-column--description-center {
  text-align: center;
}

.byline p {
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 2px;
  font-family: "Input Sans Compressed";
  padding-bottom: 20px;
}

.byline p strong {
  font-family: "Input Sans Compressed Bold";
}

@media (max-width: 799px) {
  .scl-flexible-layout-3-columns {
    display: block;
  }
  .scl-flexible-layout-3-columns .scl-flexible-layout-multi-column {
    width: 100%;
    padding-left: 0px;
    padding-bottom: 40px;
  }
}
/*Flex Image with Column 3 (33/33/33) Column End*/
.navBottomSpace:has(+ .fcat--component) {
  display: none;
}

.fcat--component:has(.fcat--header-report-2024, .fcat--header-report-2025) {
  position: relative;
}
.fcat--component:has(.fcat--header-report-2024, .fcat--header-report-2025) #fcat--header--PR-p5-banner {
  position: absolute;
  top: 0px;
}

.fcat--header {
  margin-top: 175px;
  display: flex;
  justify-content: center;
}
.fcat--header.fcat--header-no-margin {
  margin-top: 0;
}
.fcat--header-container {
  display: flex;
  flex: 1;
  justify-content: center;
  max-width: 940px;
  min-width: 0;
  padding: 20px;
  background-color: #E5E4E1;
}
.fcat--header-left {
  flex: 0.5;
  min-width: 0;
}
.fcat--header-left-content {
  display: flex;
}
.fcat--header-left-section {
  writing-mode: tb;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-family: "Input Sans Compressed Light", Helvetica, Sans-serif;
  text-transform: uppercase;
  margin-right: 30px;
}
.fcat--header-left-date {
  font-family: "Fidelity Sans Bold", Helvetica, Sans-serif;
  margin-right: 50px;
  font-size: 56px;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}
.fcat--header-left-num {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background-color: #f15c24;
  color: #fff;
  font-size: 45px;
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
}
.fcat--header-right {
  flex: 2;
  min-width: 0;
}
.fcat--header-right-category {
  font-family: "Input Sans Compressed Medium", Helvetica, Sans-serif;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.fcat--header-right-title, .fcat--header-right-summary, .fcat--header-right-share {
  margin-bottom: 20px;
}
.fcat--header-right-title {
  font-family: "Fidelity Sans Ultra Light", Helvetica, Sans-serif;
  font-size: 56px;
  line-height: 1;
}
.fcat--header-right-summary {
  font-family: "Fidelity Sans Light", Helvetica, Sans-serif;
  font-size: 24px;
  line-height: 1.25;
}
.fcat--header-right-author {
  font-family: "Input Sans Compressed Bold", Helvetica, Sans-serif;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.fcat--header-right-share .yj-default-share-button {
  background-color: #D1D630 !important;
}
.fcat--header-right-share .yj-default-share-button .yj-yam-spittle {
  filter: brightness(0);
}
.fcat--header-right-share .yj-default-share-button .yj-share-copy {
  color: #000 !important;
}
.fcat--header-l2 {
  display: none;
  justify-content: center;
  background-color: #444444;
  margin-bottom: 60px;
  color: #fff;
}
.fcat--header-l2 h3 {
  font-size: 36px;
  line-height: 1.5;
  color: #fff;
}
.fcat--header-l2 a {
  color: #fff;
  text-decoration: underline;
}
.fcat--header-l2-event {
  margin: 60px 5%;
}
.fcat--header-banner {
  display: none;
  background-image: var(--imgLg);
  background-size: cover;
  background-repeat: no-repeat;
  height: 60vh;
  max-height: 450px;
  margin-bottom: 20px;
}
.fcat--header-banner-no-margin {
  margin-bottom: 0;
}
.fcat--header-banner:has(~ .fcat--header-article) {
  display: block;
  margin-top: 175px;
  margin-bottom: 0;
}
.fcat--header-banner ~ .fcat--header-article {
  margin-top: 0;
}
.fcat--header {
  /* shared between themes */
}
.fcat--header-event, .fcat--header-expert, .fcat--header-report-2024, .fcat--header-report-2025 {
  background-size: cover;
}
.fcat--header-top-icon .fcat--header-container, .fcat--header-expert .fcat--header-container, .fcat--header-report-2024 .fcat--header-container, .fcat--header-report-2025 .fcat--header-container, .fcat--header-short .fcat--header-container, .fcat--header-article .fcat--header-container {
  background-color: transparent;
}
.fcat--header-report .fcat--header-left, .fcat--header-article .fcat--header-left {
  display: flex;
  justify-content: center;
  background-image: url("/bin-public/060_www_fidelity_com/external_fcat/images/projects/dots2.png");
  background-repeat: no-repeat;
  background-position: 75% top;
  border-right: 1.5px solid #000;
}
.fcat--header-report .fcat--header-left-info, .fcat--header-article .fcat--header-left-info {
  flex: 0.6;
}
.fcat--header-report .fcat--header-left-content, .fcat--header-article .fcat--header-left-content {
  flex-basis: 100%;
  justify-content: right;
}
.fcat--header-report .fcat--header-right, .fcat--header-article .fcat--header-right {
  margin-left: 30px;
}
.fcat--header-report .fcat--header-right-title, .fcat--header-article .fcat--header-right-title {
  font-size: 75px;
  line-height: 1.2;
}
.fcat--header-report .fcat--header-right-summary, .fcat--header-article .fcat--header-right-summary {
  font-size: 30px;
  line-height: 1.4;
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-weight: 300;
  max-width: 85%;
}
.fcat--header {
  /* event theme */
}
.fcat--header-event {
  background-image: var(--imgLg);
}
.fcat--header-event .fcat--header-left .fcat--header-left-section,
.fcat--header-event .fcat--header-left .fcat--header-left-num,
.fcat--header-event .fcat--header-left .fcat--header-left-image {
  display: none;
}
.fcat--header-event .fcat--header-right .fcat--header-right-icon,
.fcat--header-event .fcat--header-right .fcat--header-right-author,
.fcat--header-event .fcat--header-right .fcat--header-right-social,
.fcat--header-event .fcat--header-right .fcat--header-right-share {
  display: none;
}
.fcat--header-event + .fcat--header-l2 {
  display: flex;
}
.fcat--header {
  /* priority report theme */
}
.fcat--header-report .fcat--header-left-date,
.fcat--header-report .fcat--header-left-image,
.fcat--header-report .fcat--header-right-icon,
.fcat--header-report .fcat--header-right-category,
.fcat--header-report .fcat--header-right-tags,
.fcat--header-report .fcat--header-right-button,
.fcat--header-report .fcat--header-right-social {
  display: none;
}
.fcat--header-report .fcat--header-container {
  background-color: #fff;
}
.fcat--header-report .fcat--header-left {
  flex: 0.75;
}
.fcat--header {
  /* pr-2024 theme */
}
.fcat--header-report-2024, .fcat--header-report-2025 {
  background-image: var(--imgLg);
  height: 350px;
  margin: 0;
  justify-content: left;
  align-items: center;
}
.fcat--header-report-2024 .fcat--header-container, .fcat--header-report-2025 .fcat--header-container {
  padding: 0;
}
.fcat--header-report-2024 .fcat--header-left-date, .fcat--header-report-2025 .fcat--header-left-date,
.fcat--header-report-2024 .fcat--header-left-image,
.fcat--header-report-2025 .fcat--header-left-image,
.fcat--header-report-2024 .fcat--header-right-icon,
.fcat--header-report-2025 .fcat--header-right-icon,
.fcat--header-report-2024 .fcat--header-right-category,
.fcat--header-report-2025 .fcat--header-right-category,
.fcat--header-report-2024 .fcat--header-right-tags,
.fcat--header-report-2025 .fcat--header-right-tags,
.fcat--header-report-2024 .fcat--header-right-button,
.fcat--header-report-2025 .fcat--header-right-button,
.fcat--header-report-2024 .fcat--header-right-social,
.fcat--header-report-2025 .fcat--header-right-social {
  display: none;
}
.fcat--header-report-2024 .fcat--header-left, .fcat--header-report-2025 .fcat--header-left {
  display: none;
}
.fcat--header-report-2024 .fcat--header-right, .fcat--header-report-2025 .fcat--header-right {
  margin-left: 0;
  padding: 0;
}
.fcat--header-report-2024 .fcat--header-right-share, .fcat--header-report-2025 .fcat--header-right-share {
  margin-bottom: 0;
}
.fcat--header-report-2024 .fcat--header-right-share #yj-share-button, .fcat--header-report-2025 .fcat--header-right-share #yj-share-button {
  padding: 0;
}
.fcat--header-report-2024 .fcat--header-right-title, .fcat--header-report-2025 .fcat--header-right-title {
  line-height: normal;
  background: rgba(0, 0, 0, 0.9);
  display: inline;
  padding: 0 10px 10px 0;
}
.fcat--header-report-2024 .fcat--header-right-title span, .fcat--header-report-2025 .fcat--header-right-title span {
  color: #ffffff;
  padding-left: 100px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.fcat--header-report-2024 .fcat--header-right-author, .fcat--header-report-2025 .fcat--header-right-author, .fcat--header-report-2024 .fcat--header-right-share, .fcat--header-report-2025 .fcat--header-right-share {
  margin-left: 100px;
}
.fcat--header-report-2024 .fcat--header-right-author, .fcat--header-report-2025 .fcat--header-right-author {
  color: #FFFFFF;
  margin-top: 20px;
}
.fcat--header-report-2024 .fcat--header-right .fcat--header-right-summary, .fcat--header-report-2025 .fcat--header-right .fcat--header-right-summary {
  margin-left: 100px;
  padding-left: 30px;
  border-left: 5px solid #d9d9d9;
  line-height: 1.75;
}
.fcat--header-report-2024:has(.fcat--header-right-summary), .fcat--header-report-2025:has(.fcat--header-right-summary) {
  display: block;
  height: auto;
  margin: 40px auto;
  max-width: 933px;
}
.fcat--header-report-2024:has(.fcat--header-right-summary) .fcat--header-right-summary, .fcat--header-report-2025:has(.fcat--header-right-summary) .fcat--header-right-summary {
  margin-left: 0;
}
.fcat--header {
  /* pr-short-2024 theme */
}
.fcat--header-short {
  justify-content: left;
  margin: 0;
  padding: 75px 0 75px 12%;
}
.fcat--header-short .fcat--header-left,
.fcat--header-short .fcat--header-right-icon,
.fcat--header-short .fcat--header-right-category,
.fcat--header-short .fcat--header-right-button,
.fcat--header-short .fcat--header-right-share,
.fcat--header-short .fcat--header-right-social,
.fcat--header-short .fcat--header-right-tags,
.fcat--header-short .fcat--header-right-title {
  display: none;
}
.fcat--header-short-title-container .fcat--header-right-title, .fcat--header-short .fcat--header-right-author {
  animation-fill-mode: forwards;
  animation-timing-function: ease-in;
}
.fcat--header-short-title-container {
  display: inline-block;
}
.fcat--header-short-title-container .fcat--header-right-title {
  width: 100%;
  display: block;
  overflow: hidden;
  font-family: "Fidelity Sans Bold", Helvetica, Sans-serif;
  text-transform: uppercase;
  font-size: 72px;
  line-height: 1;
  padding-bottom: 0;
  animation-duration: 1s;
  animation-delay: 0.5s, 1.5s, 0s;
  animation-iteration-count: 1, 1, 10, 1;
}
.fcat--header-short .fcat--header-right-author {
  animation-name: fadeOn;
  animation-duration: 1.5s;
  margin-bottom: 20px;
}
.fcat--header-short .fcat--header-right-summary {
  padding-left: 30px;
  border-left: 5px solid #d9d9d9;
  line-height: 1.75;
}
.fcat--header {
  /* pr25 header theme */
}
.fcat--header-report-2025.fcat--header-report-2025-intro .fcat--header-right-title span {
  color: #ffffff;
}
.fcat--header-report-2025.fcat--header-report-2025-intro .fcat--header-right-author {
  color: #ffffff;
  margin-bottom: 20px;
}
.fcat--header-report-2025.fcat--header-report-2025-multimodality .fcat--header-right-title span {
  color: #040677;
}
.fcat--header-report-2025.fcat--header-report-2025-multimodality .fcat--header-right-author {
  color: #040677;
  margin-bottom: 20px;
}
.fcat--header-report-2025.fcat--header-report-2025-CXP .fcat--header-right-title span {
  color: #010238;
}
.fcat--header-report-2025.fcat--header-report-2025-CXP .fcat--header-right-author {
  color: #010238;
  margin-bottom: 20px;
}
.fcat--header-report-2025.fcat--header-report-2025-datacenter .fcat--header-right-title span {
  color: #ffffff;
}
.fcat--header-report-2025.fcat--header-report-2025-datacenter .fcat--header-right-author {
  color: #ffffff;
  margin-bottom: 20px;
}
.fcat--header-report-2025.fcat--header-report-2025-insurance .fcat--header-right-title span {
  color: #000332;
}
.fcat--header-report-2025.fcat--header-report-2025-insurance .fcat--header-right-author {
  color: #000332;
  margin-bottom: 20px;
}
.fcat--header-report-2025.fcat--header-report-2025-parenting .fcat--header-right-title span {
  color: #410013;
}
.fcat--header-report-2025.fcat--header-report-2025-parenting .fcat--header-right-author {
  color: #410013;
  margin-bottom: 20px;
}
.fcat--header-report-2025.fcat--header-report-2025-human .fcat--header-right-title span {
  color: #010500;
}
.fcat--header-report-2025.fcat--header-report-2025-human .fcat--header-right-author {
  color: #010500;
  margin-bottom: 20px;
}
.fcat--header-report-2025.fcat--header-report-2025-pricing .fcat--header-right-title span {
  color: #ffffff;
}
.fcat--header-report-2025.fcat--header-report-2025-pricing .fcat--header-right-author {
  color: #ffffff;
  margin-bottom: 20px;
}
.fcat--header-report-2025.fcat--header-report-2025-homes .fcat--header-right-title span {
  color: #002424;
}
.fcat--header-report-2025.fcat--header-report-2025-homes .fcat--header-right-author {
  color: #002424;
  margin-bottom: 20px;
}
.fcat--header-report-2025.fcat--header-report-2025-knowledge .fcat--header-right-title span {
  color: #000000;
}
.fcat--header-report-2025.fcat--header-report-2025-knowledge .fcat--header-right-author {
  color: #000000;
  margin-bottom: 20px;
}
.fcat--header-report-2025 .fcat--header-right-title {
  background: none;
  font-family: "FidelitySlab-Regular", Helvetica, sans-serif;
  font-size: 60px;
}
.fcat--header-report-2025 .fcat--header-right-title span {
  color: #010238;
}
.fcat--header-report-2025 .fcat--header-right-author {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
  font-size: 20px;
  color: #010238;
  margin-top: 0;
}
.fcat--header-report-2025 .fcat--header-right .fcat--header-right-summary {
  border-left-color: #C7C5C5;
}
@media screen and (max-width: 650px) {
  .fcat--header-report-2025 .fcat--header-right-title {
    display: block;
  }
  .fcat--header-report-2025 .fcat--header-right-title span {
    padding-left: 20px;
  }
  .fcat--header-report-2025 .fcat--header-right-author {
    margin-left: 20px;
  }
  .fcat--header-report-2025 .fcat--header-right-share {
    margin-left: 20px;
  }
  .fcat--header-report-2025:has(.fcat--header-right-summary) {
    margin: 20px auto;
  }
  .fcat--header-report-2025:has(.fcat--header-right-summary) .fcat--header-right-summary {
    border-left: 0;
    padding: 0 3%;
    font-size: 18px;
    line-height: 1.6;
  }
}
.fcat--header {
  /* article theme */
}
.fcat--header-article .fcat--header-left-date,
.fcat--header-article .fcat--header-left-image,
.fcat--header-article .fcat--header-left-section,
.fcat--header-article .fcat--header-left-num,
.fcat--header-article .fcat--header-right-icon,
.fcat--header-article .fcat--header-right-tags,
.fcat--header-article .fcat--header-right-button,
.fcat--header-article .fcat--header-right-share {
  display: none;
}
.fcat--header-article.fcat--header-article-banner-only .fcat--header-container {
  display: none;
}
.fcat--header-article .fcat--header-container {
  max-width: 1400px;
}
.fcat--header-article .fcat--header-left {
  flex: 0.65;
}
.fcat--header-article ~ .fcat--header-banner {
  display: block;
}
.fcat--header {
  /* top-icon theme */
}
.fcat--header-top-icon {
  text-align: center;
}
.fcat--header-top-icon .fcat--header-left,
.fcat--header-top-icon .fcat--header-right-category,
.fcat--header-top-icon .fcat--header-right-button,
.fcat--header-top-icon .fcat--header-right-share,
.fcat--header-top-icon .fcat--header-right-social,
.fcat--header-top-icon .fcat--header-right-tags,
.fcat--header-top-icon .fcat--header-right-author {
  display: none;
}
.fcat--header-top-icon .fcat--header-right-title {
  font-size: 72px;
  line-height: 1;
  padding-bottom: 40px;
}
.fcat--header-top-icon .fcat--header-right-summary {
  font-size: 30px;
  line-height: 1.3;
  padding-bottom: 20px;
}
.fcat--header {
  /* expert theme */
}
.fcat--header-expert {
  background-image: var(--imgExpert);
  min-height: 350px;
}
.fcat--header-expert .fcat--header-container {
  max-width: none;
  flex-basis: 100%;
  padding: 0;
}
.fcat--header-expert .fcat--header-left-date,
.fcat--header-expert .fcat--header-left-num,
.fcat--header-expert .fcat--header-left-section,
.fcat--header-expert .fcat--header-right-category,
.fcat--header-expert .fcat--header-right-icon,
.fcat--header-expert .fcat--header-right-button,
.fcat--header-expert .fcat--header-right-share,
.fcat--header-expert .fcat--header-right-social,
.fcat--header-expert .fcat--header-right-author,
.fcat--header-expert .fcat--header-right-summary {
  display: none;
}
.fcat--header-expert .fcat--header-left {
  flex: 2;
  align-self: flex-end;
}
.fcat--header-expert .fcat--header-left-content {
  justify-content: center;
}
.fcat--header-expert .fcat--header-left-image img {
  display: block;
}
.fcat--header-expert .fcat--header-right {
  align-self: center;
}
.fcat--header-expert .fcat--header-right-title {
  display: inline;
  background-color: #fff;
  letter-spacing: 0;
  line-height: normal;
  padding: 5px 10px;
}
.fcat--header {
  /* media queries */
}
@media screen and (max-width: 760px) {
  .fcat--header-event {
    background-image: var(--imgMd), var(--imgLg);
  }
  .fcat--header-short-title-container .fcat--header-right-title {
    text-wrap: wrap;
  }
}
@media screen and (max-width: 650px) {
  .fcat--header-event .fcat--header-right-title, .fcat--header-report .fcat--header-right-title, .fcat--header-report-2024 .fcat--header-right-title, .fcat--header-report-2025 .fcat--header-right-title, .fcat--header-short .fcat--header-right-title, .fcat--header-article .fcat--header-right-title, .fcat--header-expert .fcat--header-right-title, .fcat--header-top-icon .fcat--header-right-title {
    font-size: 30px;
  }
  .fcat--header-event .fcat--header-left, .fcat--header-report .fcat--header-left, .fcat--header-article .fcat--header-left {
    display: none;
  }
  .fcat--header-event {
    background-image: var(--imgSm), var(--imgMd), var(--imgLg);
  }
  .fcat--header-expert .fcat--header-container {
    flex-direction: column;
  }
  .fcat--header-expert .fcat--header-left {
    align-self: center;
    order: 1;
  }
  .fcat--header-expert .fcat--header-right {
    align-self: normal;
    margin-top: 100px;
  }
  .fcat--header-report-2024 + #fcat--header--PR-p5-banner, .fcat--header-report-2025 + #fcat--header--PR-p5-banner {
    display: none;
  }
}
@keyframes expandProperty {
  0% {
    border-right: 2px solid rgb(0, 0, 0);
  }
  100% {
    border-right: 2px solid rgb(0, 0, 0);
    width: 100%;
  }
}
@keyframes removeBorder {
  0% {
    border-right: 2px solid rgb(0, 0, 0);
  }
  100% {
    border-right: 2px solid rgba(0, 0, 0, 0);
  }
}
@keyframes blinkBorder {
  0% {
    border-right: 2px solid rgb(0, 0, 0);
  }
  100% {
    border-right: none;
  }
}
@keyframes fadeOn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.tagCloud {
  max-width: 700px;
  margin: 0 auto;
  width: 100%;
  flex-wrap: wrap;
  padding: 40px 2.5%;
}

.tagCloud .eventHeadertags .eventHeadertag:hover {
  background-color: #ccc;
}

.tagCloud .eventHeadertags .eventHeadertag a:hover {
  color: #000;
}

.tagCloud .eventHeadertags .eventHeadertag .active {
  background-color: #B5BD02;
  color: #fff;
  padding: 5px 10px;
  margin: -10px;
  border-radius: 15px;
  font-family: "Input Sans Compressed light";
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 1.75px;
  text-transform: uppercase;
}

.tagCloud .eventHeadertags .eventHeadertag a:active {
  color: #fff;
}

.tagCloud .eventHeadertags .eventHeadertag {
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  margin: 5px;
  border-radius: 15px;
  font-family: "Input Sans Compressed light";
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 1.75px;
  text-transform: uppercase;
}

.tagCloud .eventHeadertag a {
  color: #fff;
  text-decoration: none;
  padding: 5px 0px;
}

.fcat-experts.tagCloud .eventHeadertags {
  justify-content: center;
}

.fcat--tag-cloud {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.fcat--tag-cloud-tag {
  padding: 5px 10px;
  border-radius: 15px;
  font-family: "Input Sans Compressed light";
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 1.75px;
  text-transform: uppercase;
  background-color: #ddd;
}

.fcat--header .fcat--tag-cloud {
  margin-bottom: 20px;
}
.fcat--header .fcat--tag-cloud-tag {
  background-color: #000;
  color: #fff;
}
.fcat--header-expert .fcat--tag-cloud {
  margin-top: 40px;
}
.fcat--header-expert .fcat--tag-cloud-tag:hover {
  background-color: #fff;
  color: #000;
}
.fcat--header-expert .fcat--tag-cloud-tag a {
  color: inherit;
  text-decoration: none;
}

.fcat--video {
  background-size: cover;
  background-image: var(--imgLg);
  background-position: center;
  display: flex;
  padding: 30px;
  float: right;
}
@media screen and (max-width: 940px) {
  .fcat--video {
    background-image: var(--imgMd), var(--imgLg);
    float: none;
    justify-content: center;
  }
}

.fcat--multi-col {
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
.fcat--multi-col-no-wrap {
  flex-wrap: nowrap;
}
.fcat--multi-col-padding-sm {
  padding: 0 5%;
}
.fcat--multi-col-padding-med {
  padding: 0 10%;
}
.fcat--multi-col-padding-lg {
  padding: 0 15%;
}
.fcat--multi-col-gap-sm {
  gap: 20px;
}
.fcat--multi-col-gap-med {
  gap: 40px;
}
.fcat--multi-col-gap-lg {
  gap: 60px;
}
.fcat--multi-col-center > div {
  justify-content: center;
  align-items: center;
  text-align: center;
}
.fcat--multi-col > div {
  display: flex;
  gap: inherit;
  flex: 1;
  flex-direction: column;
}
.fcat--multi-col > div.fcat--multi-col-center-all-items {
  align-items: center;
  text-align: center;
}
.fcat--multi-col > div .fcat--multi-col-center-item {
  align-self: center;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .fcat--multi-col {
    padding: 0 1%;
  }
}

.fcat--list {
  list-style-type: var(--listType);
}

/* stylelint-disable declaration-no-important */
/* stylelint-enable declaration-no-important */
/* stylelint-disable declaration-no-important */
/* stylelint-enable declaration-no-important */
/* stylelint-disable-next-line scss/no-global-function-names */
pvd-icon {
  line-height: 0;
}

.pvd-icon-root {
  display: inline-block;
  fill: currentColor;
  height: 1.25rem;
  position: relative;
  stroke: none;
  width: 1.25rem;
}
.pvd-icon-root:focus {
  outline: 1px dotted #000000;
}
.pvd-icon-root.pvd-icon--large {
  height: 1.5rem;
  width: 1.5rem;
}
.pvd-icon-root.pvd-icon--small {
  height: 1rem;
  width: 1rem;
}
.pvd-icon-root.pvd-icon--extra-small {
  height: 12px;
  width: 12px;
}

/* stylelint-disable declaration-no-important */
/* stylelint-enable declaration-no-important */
/* stylelint-disable-next-line scss/no-global-function-names */
pvd-expand-collapse {
  display: block;
}

.pvd-expand-collapse-root, .pvd-expand-collapse-root:before, .pvd-expand-collapse-root:after {
  box-sizing: border-box;
}
.pvd-expand-collapse-root *,
.pvd-expand-collapse-root *:before,
.pvd-expand-collapse-root *:after {
  box-sizing: border-box;
}
.pvd-expand-collapse-root.pvd-expand-collapse--small .pvd-expand-collapse__interactive-button {
  font-size: 0.75rem;
}
@media (min-width: 32em) {
  .pvd-expand-collapse-root.pvd-expand-collapse--small .pvd-expand-collapse__interactive-button {
    font-size: 0.875rem;
  }
}
.pvd-expand-collapse-root.pvd-expand-collapse--large .pvd-expand-collapse__interactive-button {
  font-size: 1.125rem;
}
@media (min-width: 32em) {
  .pvd-expand-collapse-root.pvd-expand-collapse--large .pvd-expand-collapse__interactive-button {
    font-size: 1.25rem;
  }
}
.pvd-expand-collapse-root.pvd-expand-collapse--large .pvd-expand-collapse__heading-wrapper {
  padding: 0 0 0 1rem;
}
.pvd-expand-collapse-root.pvd-expand-collapse--large .pvd-expand-collapse__subheading-wrapper {
  padding: 0 0 0 2.25rem;
}
.pvd-expand-collapse-root.pvd-expand-collapse--large .pvd-expand-collapse__content-wrapper {
  padding: 0 0 0 2.25rem;
}
.pvd-expand-collapse-root.pvd-expand-collapse--expanded .pvd-expand-collapse__content-wrapper {
  display: block;
  height: auto;
  overflow: auto;
}
.pvd-expand-collapse-root.pvd-expand-collapse--expanded .pvd-expand-collapse__icon {
  transform: rotate(90deg);
}
.pvd-expand-collapse-root.pvd-expand-collapse--collapsed .pvd-expand-collapse__content-wrapper {
  display: none;
  height: 0;
  overflow: hidden;
}
.pvd-expand-collapse-root.pvd-expand-collapse--collapsed .pvd-expand-collapse__icon {
  transform: rotate(0deg);
}
.pvd-expand-collapse-root.pvd-expand-collapse--expanding .pvd-expand-collapse__content-wrapper {
  display: block;
  height: 0;
  overflow: hidden;
}
.pvd-expand-collapse-root.pvd-expand-collapse--expanding .pvd-expand-collapse__icon {
  transform: rotate(90deg);
}
.pvd-expand-collapse-root.pvd-expand-collapse--collapsing .pvd-expand-collapse__content-wrapper {
  display: block;
  overflow: hidden;
}
.pvd-expand-collapse-root.pvd-expand-collapse--collapsing .pvd-expand-collapse__icon {
  transform: rotate(0deg);
}
.pvd-expand-collapse-root .pvd-expand-collapse__interactive-button {
  color: #000000;
  font-family: "Fidelity Sans", Helvetica, Arial, sans;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  font-size: 0.875rem;
}
@media (min-width: 32em) {
  .pvd-expand-collapse-root .pvd-expand-collapse__interactive-button {
    font-size: 1rem;
  }
}
.pvd-expand-collapse-root .pvd-expand-collapse__interactive-button {
  align-items: flex-start;
  background-color: transparent;
  border: 1px solid transparent;
  color: #356F95;
  cursor: pointer;
  display: flex;
  margin: 0;
  padding: 0;
  text-align: left;
  width: 100%;
}
.pvd-expand-collapse-root .pvd-expand-collapse__interactive-button:focus {
  border: 1px dotted #000000;
  outline: none;
}
.pvd-expand-collapse-root [data-tag-name=pvd-scoped-icon] {
  height: 100%;
  line-height: 0;
}
.pvd-expand-collapse-root .pvd-expand-collapse__icon {
  align-self: flex-start;
  color: #356F95;
  flex-shrink: 0;
  height: 1.375em;
  position: relative;
  transition: transform 0.25s ease-out;
}
.pvd-expand-collapse-root .pvd-expand-collapse__icon.pvd-icon-root {
  height: 1.375em;
}
@media (forced-colors: active) {
  .pvd-expand-collapse-root .pvd-expand-collapse__icon.pvd-icon-root {
    color: ButtonText;
  }
}
.pvd-expand-collapse-root .pvd-expand-collapse__heading-wrapper {
  align-self: center;
  padding: 0 0 0 0.75rem;
  position: relative;
}
.pvd-expand-collapse-root .pvd-expand-collapse__subheading-wrapper {
  margin: 0.25rem 0 0 0;
  padding: 0 0 0 1.75rem;
}
.pvd-expand-collapse-root .pvd-expand-collapse__content-wrapper {
  display: block;
  margin: 0.5rem 0 0 0;
  padding: 0 0 0 1.75rem;
}
.pvd-expand-collapse-root .pvd-expand-collapse__heading {
  color: #356F95;
  margin: 0;
}
.pvd-expand-collapse-root .pvd-expand-collapse__subheading {
  color: #000000;
  font-family: "Fidelity Sans", Helvetica, Arial, sans;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  font-size: 0.75rem;
}
@media (min-width: 32em) {
  .pvd-expand-collapse-root .pvd-expand-collapse__subheading {
    font-size: 0.875rem;
  }
}
.pvd-expand-collapse-root .pvd-expand-collapse__content {
  color: #000000;
  font-family: "Fidelity Sans", Helvetica, Arial, sans;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
}

#page-container #layout-region-main-content:has(.fcat--exp-col-faq) {
  background: transparent;
}

:nth-last-child(1 of .fcat--exp-col-faq) {
  padding-bottom: 4rem;
}

.fcat--exp-col-refs {
  padding: 0 10%;
  max-width: 933px;
  margin: 0 auto;
}
.fcat--exp-col-refs .disclosures {
  padding: 0 !important;
}
@media (max-width: 699px) {
  .fcat--exp-col-refs {
    padding: 0 2.5%;
  }
}
.fcat--exp-col-faq {
  padding: 0 6%;
  background-color: #FFFFFF;
}
.fcat--exp-col-faq pvd-expand-collapse {
  padding: 1.5rem 4rem;
}
.fcat--exp-col-faq pvd-expand-collapse.pvd-expand-collapse--icon-right button :first-child {
  order: 2;
}
.fcat--exp-col-faq pvd-expand-collapse.pvd-expand-collapse--icon-right .pvd-expand-collapse-root .pvd-expand-collapse__icon {
  color: #000000;
}
.fcat--exp-col-faq pvd-expand-collapse.pvd-expand-collapse--icon-right .pvd-expand-collapse-root.pvd-expand-collapse--collapsed .pvd-expand-collapse__icon, .fcat--exp-col-faq pvd-expand-collapse.pvd-expand-collapse--icon-right .pvd-expand-collapse-root.pvd-expand-collapse--collapsing .pvd-expand-collapse__icon {
  transform: rotate(90deg);
}
.fcat--exp-col-faq pvd-expand-collapse.pvd-expand-collapse--icon-right .pvd-expand-collapse-root.pvd-expand-collapse--expanded .pvd-expand-collapse__icon, .fcat--exp-col-faq pvd-expand-collapse.pvd-expand-collapse--icon-right .pvd-expand-collapse-root.pvd-expand-collapse--expanding .pvd-expand-collapse__icon {
  transform: rotate(-90deg);
}
.fcat--exp-col-faq pvd-expand-collapse.pvd-expand-collapse--icon-right .pvd-expand-collapse-root .pvd-expand-collapse__heading-wrapper {
  flex: 1;
  padding: 0;
}
.fcat--exp-col-faq pvd-expand-collapse.pvd-expand-collapse--icon-right .pvd-expand-collapse-root .pvd-expand-collapse__heading-wrapper .pvd-expand-collapse__heading {
  color: #000000;
}
.fcat--exp-col-faq pvd-expand-collapse.pvd-expand-collapse--icon-right .pvd-expand-collapse-root .pvd-expand-collapse__content {
  padding: 2rem 0;
}
.fcat--exp-col-faq pvd-expand-collapse.pvd-expand-collapse--icon-right .pvd-expand-collapse-root .pvd-expand-collapse__content p:not(.fcat--exp-col-head):not(:last-child) {
  margin-bottom: 2rem;
}
.fcat--exp-col-faq pvd-expand-collapse.pvd-expand-collapse--icon-right .pvd-expand-collapse-root .pvd-expand-collapse__content-wrapper {
  margin: 0;
  padding: 0 2.25rem;
}
.fcat--exp-col-faq pvd-expand-collapse[pvd-content-color=white] .pvd-expand-collapse__content-wrapper {
  background-color: #FFFFFF;
}
.fcat--exp-col-faq pvd-expand-collapse[pvd-content-color=gray] .pvd-expand-collapse__content-wrapper {
  background-color: #F2F2F2;
}
.fcat--exp-col-faq pvd-expand-collapse .fcat--exp-col-head {
  color: #000000;
  font-family: "Fidelity Sans", Helvetica, Arial, sans;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  color: #000000;
  line-height: 1.25;
  margin: 0;
  font-size: 1rem;
}
@media (min-width: 32em) {
  .fcat--exp-col-faq pvd-expand-collapse .fcat--exp-col-head {
    font-size: 1.125rem;
  }
}
.fcat--exp-col-faq pvd-expand-collapse .fcat--exp-col-head {
  font-weight: 700;
  margin: 0.75rem 0 0 0;
}
.fcat--exp-col-faq pvd-expand-collapse .fcat--exp-col-head:first-child {
  margin: 0;
}
.fcat--exp-col-faq pvd-expand-collapse .fcat--exp-col-head + p {
  margin: 0.5rem 0 0 0;
}
.fcat--exp-col-faq pvd-expand-collapse .fcat--exp-col-head + p .fcat--exp-col-inline-emph {
  color: #000000;
  font-family: "Fidelity Sans", Helvetica, Arial, sans;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  color: #000000;
  line-height: 1.25;
  margin: 0;
  font-size: 1rem;
}
@media (min-width: 32em) {
  .fcat--exp-col-faq pvd-expand-collapse .fcat--exp-col-head + p .fcat--exp-col-inline-emph {
    font-size: 1.125rem;
  }
}
.fcat--exp-col-faq pvd-expand-collapse .fcat--exp-col-head + p .fcat--exp-col-inline-emph {
  font-weight: 700;
}
.fcat--exp-col-faq hr {
  margin: 0 4em;
}

/* stylelint-disable declaration-no-important */
/* stylelint-enable declaration-no-important */
/* stylelint-disable-next-line scss/no-global-function-names */
pvd-tab {
  vertical-align: bottom;
}

.pvd-tab-root, .pvd-tab-root:before, .pvd-tab-root:after {
  box-sizing: border-box;
}
.pvd-tab-root *,
.pvd-tab-root *:before,
.pvd-tab-root *:after {
  box-sizing: border-box;
}
.pvd-tab-root {
  color: #000000;
  font-family: "Fidelity Sans", Helvetica, Arial, sans;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  display: inline-flex;
  margin-right: 1px;
  vertical-align: bottom;
}
.pvd-tab-root .pvd-tab__tab {
  border: 1px dotted transparent;
}
.pvd-tab-root .pvd-tab__tab:focus {
  border: 1px dotted #000000;
  outline: none;
}
.pvd-tab-root .pvd-tab__tab .pvd-tab__text-wrapper {
  border-bottom: 6px solid transparent;
  color: #356F95;
  cursor: pointer;
  display: inline-block;
  line-height: 1.25;
  padding: 1.25em 1em;
  text-align: left;
  white-space: normal;
}
.pvd-tab-root.pvd-tab--selected .pvd-tab__text-wrapper {
  border-bottom: 6px solid #356F95;
  color: #000000;
}
.pvd-tab-root:not(.pvd-tab--selected):hover .pvd-tab__text-wrapper {
  border-bottom: 6px solid #000000;
}
@media print {
  .pvd-tab-root:not(.pvd-tab--selected) {
    display: none;
  }
}
.pvd-tab-root.pvd-tab--wrap-label .pvd-tab__tab {
  max-width: 18.5rem;
}

@media not print {
  .pvd-tab--truncated .pvd-tab-root {
    font-size: 0;
  }
  .pvd-tab--truncated .pvd-tab-root .pvd-tab__tab {
    border: 0;
    clip: rect(1px 1px 1px 1px);
    height: 1px;
    left: -5000px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  @media (forced-colors: active) {
    .pvd-tab-root .pvd-tab__tab:focus,
    .pvd-tab-root .pvd-tab__tab:hover {
      outline: LinkText solid 2px;
      outline-offset: -4px;
    }
    .pvd-tab-root.pvd-tab--selected .pvd-tab__text-wrapper {
      outline: 6px solid Highlight;
      outline-offset: -4px;
    }
  }
}
/* stylelint-disable declaration-no-important */
/* stylelint-enable declaration-no-important */
/* stylelint-disable-next-line scss/no-global-function-names */
.pvd-tab-group-root > .pvd-tab-group__tabs {
  color: #000000;
  font-family: "Fidelity Sans", Helvetica, Arial, sans;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  font-size: 0.875rem;
}
@media (min-width: 32em) {
  .pvd-tab-group-root > .pvd-tab-group__tabs {
    font-size: 1rem;
  }
}
.pvd-tab-group-root > .pvd-tab-group__tabs {
  overflow: hidden;
  white-space: nowrap;
}
.pvd-tab-group-root > .pvd-tab-group__tabs .pvd-tab__tab {
  background-color: transparent;
}
.pvd-tab-group-root > .pvd-tab-group__tabs .pvd-tab-group__truncation-menu-wrapper {
  border-bottom: 6px solid transparent;
  display: none;
  padding: 1.25em 1em;
  position: relative;
  vertical-align: middle;
}
.pvd-tab-group-root > .pvd-tab-group__tabs .pvd-tab-group__truncation-menu-wrapper.pvd-tab-group__truncation-menu-wrapper--visible {
  display: inline-block;
}
.pvd-tab-group-root > .pvd-tab-group__tabs .pvd-tab-group__truncation-menu-wrapper:hover {
  border-bottom-color: #000000;
}
.pvd-tab-group-root > .pvd-tab-group__tabs .pvd-tab-group__truncation-menu-wrapper.pvd-tab-group__truncation-menu-wrapper--selected, .pvd-tab-group-root > .pvd-tab-group__tabs .pvd-tab-group__truncation-menu-wrapper.pvd-tab-group__truncation-menu-wrapper--selected:hover {
  border-bottom-color: #356F95;
}
@media print {
  .pvd-tab-group-root > .pvd-tab-group__tabs .pvd-tab-group__truncation-menu-wrapper,
  .pvd-tab-group-root > .pvd-tab-group__tabs .pvd-tab-group__truncation-menu-wrapper--visible {
    display: none;
  }
}
.pvd-tab-group-root > .pvd-tab-group__tabs .pvd-tab-group__truncation-menu {
  appearance: none;
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.pvd-tab-group-root > .pvd-tab-group__tabs .pvd-tab-group__truncation-menu-icon {
  color: #356F95;
  pointer-events: none;
  position: relative;
  vertical-align: middle;
}
.pvd-tab-group-root.pvd-tab-group--tabs-align-center > .pvd-tab-group__tabs {
  text-align: center;
}
.pvd-tab-group-root.pvd-tab-group--border > .pvd-tab-group__tabs {
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 1px;
}
.pvd-tab-group-root.pvd-tab-group--small > .pvd-tab-group__tabs {
  font-size: 0.75rem;
}
@media (min-width: 32em) {
  .pvd-tab-group-root.pvd-tab-group--small > .pvd-tab-group__tabs {
    font-size: 0.875rem;
  }
}
.pvd-tab-group-root.pvd-tab-group--large > .pvd-tab-group__tabs {
  font-size: 1.125rem;
}
@media (min-width: 32em) {
  .pvd-tab-group-root.pvd-tab-group--large > .pvd-tab-group__tabs {
    font-size: 1.25rem;
  }
}
.pvd-tab-group-root.pvd-tab-group--tabs-white-background > .pvd-tab-group__tabs .pvd-tab__tab {
  background-color: #FFFFFF;
}

/* stylelint-disable declaration-no-important */
/* stylelint-enable declaration-no-important */
/* stylelint-disable-next-line scss/no-global-function-names */
.pvd-tab-panel-root {
  color: #000000;
  font-family: "Fidelity Sans", Helvetica, Arial, sans;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  text-align: left;
  text-decoration: none;
  text-indent: 0;
  text-shadow: none;
  text-transform: none;
  font-size: 0.875rem;
}
@media (min-width: 32em) {
  .pvd-tab-panel-root {
    font-size: 1rem;
  }
}
.pvd-tab-panel-root {
  display: none;
  margin-top: 1rem;
}
.pvd-tab-panel-root.pvd-tab-panel--visible {
  display: block;
}
.pvd-tab-panel-root .pvd-tab-panel__panel:focus {
  outline: 1px dotted #000000;
}

.fcat--header-full {
  position: relative;
  height: 450px;
}
.fcat--header-full-bg, .fcat--header-full-blurred, .fcat--header-full-content,
.fcat--header-full video {
  position: absolute;
  width: 100%;
  transform: translateX(-50%);
  left: 50%;
}
.fcat--header-full-bg, .fcat--header-full-blurred,
.fcat--header-full video {
  height: 450px;
}
.fcat--header-full-bg::-webkit-media-controls-play-button, .fcat--header-full-bg::-webkit-media-controls-current-time-display, .fcat--header-full-bg::-webkit-media-controls-time-remaining-display, .fcat--header-full-bg::-webkit-media-controls-fullscreen-button, .fcat--header-full-bg::-webkit-media-controls-timeline, .fcat--header-full-blurred::-webkit-media-controls-play-button, .fcat--header-full-blurred::-webkit-media-controls-current-time-display, .fcat--header-full-blurred::-webkit-media-controls-time-remaining-display, .fcat--header-full-blurred::-webkit-media-controls-fullscreen-button, .fcat--header-full-blurred::-webkit-media-controls-timeline,
.fcat--header-full video::-webkit-media-controls-play-button,
.fcat--header-full video::-webkit-media-controls-current-time-display,
.fcat--header-full video::-webkit-media-controls-time-remaining-display,
.fcat--header-full video::-webkit-media-controls-fullscreen-button,
.fcat--header-full video::-webkit-media-controls-timeline {
  display: none;
}
.fcat--header-full-bg::-webkit-media-controls-panel, .fcat--header-full-blurred::-webkit-media-controls-panel,
.fcat--header-full video::-webkit-media-controls-panel {
  display: flex !important;
  opacity: 1 !important;
  background-image: linear-gradient(transparent, transparent) !important;
}
.fcat--header-full-bg, .fcat--header-full:not(:has(video)) .fcat--header-full-blurred {
  background-image: var(--bgImg);
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}
.fcat--header-full-img-left .fcat--header-full-bg,
.fcat--header-full-img-left :not(:has(video)) .fcat--header-full-blurred {
  background-position: center left;
}
.fcat--header-full-content {
  max-width: 1400px;
  z-index: 4;
  height: 100%;
  display: flex;
  align-items: center;
}
.fcat--header-full-content h1 {
  margin-bottom: 20px;
}
.fcat--header-full-content p.fcat--header-full-content-copy-biline {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-family: "Input Sans Compressed";
  margin-bottom: 10px;
}
.fcat--header-full-content-copy {
  padding: 20px;
  max-width: 600px;
  margin: 40px;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 20px;
}
.fcat--header-full-content-emph {
  font-family: "Brush Script MT", cursive;
}
.fcat--header-full-center .fcat--header-full-content {
  justify-content: center;
}
.fcat--header-full-center .fcat--header-container {
  text-align: center;
}
.fcat--header-full-center .fcat--header-right-title span {
  padding-left: 0;
}
.fcat--header-full video {
  z-index: 3;
  object-fit: cover;
  max-width: 2400px;
}
.fcat--header-full-bg {
  max-width: 2400px;
  z-index: 2;
}
.fcat--header-full-blurred {
  z-index: 1;
  filter: blur(15px);
}
@media screen and (max-width: 650px) {
  .fcat--header-full {
    height: 350px;
  }
  .fcat--header-full video {
    display: none;
  }
  .fcat--header-full-bg, .fcat--header-full-blurred {
    height: 350px;
  }
}
.fcat--header-full {
  /* ----------------------------------------------
  * Generated by Animista on 2024-6-13 13:53:27
  * Licensed under FreeBSD License.
  * See http://animista.net/license for more info. 
  * w: http://animista.net, t: @cssanimista
  * ---------------------------------------------- */
  /**
  * ----------------------------------------
  * animation scale-in-center
  * ----------------------------------------
  */
}
.fcat--header-full.scale-in-center {
  -webkit-animation: scale-in-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-in-center 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@-webkit-keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scale-in-center {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}

.fcat--feature-square {
  font-family: "Input Sans Compressed", monospace;
  flex-direction: column;
  padding: 40px;
}
.fcat--feature-square img {
  width: 100%;
  object-fit: contain;
}
.fcat--feature-square, .fcat--feature-square-unfeatured {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.fcat--feature-square-featured, .fcat--feature-square-unfeatured {
  flex: 1;
}
.fcat--feature-square-featured, .fcat--feature-square-unfeatured-item {
  border: 1px solid lightgray;
}
.fcat--feature-square-unfeatured-item {
  flex: 1 calc(50% - 10px);
}
.fcat--feature-square-copy {
  margin: 10px;
  position: relative;
}
.fcat--feature-square-copy::before {
  font-size: 10px;
  content: var(--tag);
  position: absolute;
  top: -40px;
  left: -10px;
  background: lightgray;
  padding: 0 5px;
  margin: 5px;
}
.fcat--feature-square-copy-summary {
  font-family: "Fidelity Sans", Helvetica, Sans-serif;
}
@media screen and (min-width: 800px) {
  .fcat--feature-square {
    flex-direction: row;
  }
}

/* social sharing */
.fcat--social {
  /* stylelint-disable declaration-no-important */
  /* stylelint-enable declaration-no-important */
  /* stylelint-disable-next-line scss/no-global-function-names */
}
.fcat--social pvd-icon {
  line-height: 0;
}
.fcat--social .pvd-icon-root {
  display: inline-block;
  fill: currentColor;
  height: 1.25rem;
  position: relative;
  stroke: none;
  width: 1.25rem;
}
.fcat--social .pvd-icon-root:focus {
  outline: 1px dotted #000000;
}
.fcat--social .pvd-icon-root.pvd-icon--large {
  height: 1.5rem;
  width: 1.5rem;
}
.fcat--social .pvd-icon-root.pvd-icon--small {
  height: 1rem;
  width: 1rem;
}
.fcat--social .pvd-icon-root.pvd-icon--extra-small {
  height: 12px;
  width: 12px;
}
.fcat--social {
  margin-top: 10px;
  display: flex;
  justify-content: flex-start;
}
.fcat--social-center {
  justify-content: center;
}
.fcat--social a {
  color: inherit;
}
.fcat--social a:focus {
  outline: none;
}
.fcat--social a:focus-visible pvd-icon, .fcat--social a:hover pvd-icon {
  color: #000000;
}
.fcat--social a pvd-icon {
  padding-right: 20px;
  color: #555555;
}

/* external targeted overrides */
head:has(meta[content="THE FCAT FELLOWSHIP"]) + body header button {
  display: none;
}
