:root {
  --slate-blue: #192238;
  --off-white: #eceff5;
  --white: #fff;
  --mid-slate-blue: #414f6f;
  --jet-black: #000;
  --ember-green: #13ce74;
  --light-ember-green: #1de987;
  --grey-blue: #d6dbe9;
  --dark-grey: #959aa7;
  --dark-grey-blue: #626e88;
  --transparent: #fff0;
  --ash-blue: #dee6ef;
}

body {
  color: var(--slate-blue);
  font-family: Poppins, sans-serif;
  font-size: 15px;
  line-height: 23px;
}

h1 {
  text-transform: none;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 3.2em;
  font-weight: 500;
  line-height: 1.2em;
}

h2 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.2em;
}

h3 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.3em;
}

h4 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.3em;
}

h5 {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.1em;
  font-weight: 600;
  line-height: 1.2em;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: .8em;
  font-weight: 500;
  line-height: 1.2em;
}

p {
  margin-top: 20px;
  margin-bottom: 20px;
}

a {
  color: inherit;
  text-decoration: underline;
}

strong {
  font-weight: 500;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1.5em;
  line-height: 1.2em;
}

figcaption {
  opacity: .71;
  text-align: left;
  margin-top: 3px;
  font-size: .8em;
  line-height: 1.1em;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  position: relative;
}

.row {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding-left: 2%;
  display: flex;
  position: relative;
}

.row.centre-h {
  justify-content: flex-start;
  align-items: center;
}

.column {
  flex: 1;
  width: 100%;
  min-width: 31.3%;
  max-width: 800px;
  margin-right: 2%;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 40px;
  position: relative;
}

.column.feature-col {
  max-width: 500px;
}

.column.f-col {
  min-width: 23%;
}

.section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.section.greys {
  background-color: var(--off-white);
}

.section.blackb {
  background-color: var(--slate-blue);
  color: var(--white);
}

.section.off-white-section {
  background-color: var(--off-white);
}

.section.darkblues {
  background-color: var(--mid-slate-blue);
  color: var(--off-white);
}

.section.short-section {
  padding-top: 20px;
}

.section.featureddark {
  background-color: var(--jet-black);
  color: var(--white);
  padding-top: 40px;
  padding-bottom: 50px;
  position: relative;
}

.section.article-row-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.section.article-row-section.greys {
  background-color: var(--off-white);
}

.button {
  background-color: var(--ember-green);
  color: var(--slate-blue);
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px;
  padding: 15px 30px;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2em;
  transition: background-color .2s;
}

.button:hover {
  background-color: var(--light-ember-green);
  color: var(--slate-blue);
}

.button.rev {
  background-color: var(--white);
  color: var(--slate-blue);
  align-self: baseline;
}

.button.rev:hover {
  background-color: var(--grey-blue);
}

.button.newsletter-button {
  padding-left: 20px;
  padding-right: 20px;
}

.button.reset-button {
  background-color: var(--white);
  color: var(--dark-grey);
  border-radius: 5px;
  margin-left: 10px;
  padding: 5px 10px;
}

.button.reset-button:hover {
  background-color: var(--grey-blue);
  color: var(--slate-blue);
}

.button.profile-button {
  background-color: var(--white);
  opacity: .8;
  color: var(--slate-blue);
  order: 1;
  align-self: baseline;
  margin-top: auto;
  padding: 10px;
  font-size: .8em;
}

.button.profile-button:hover {
  opacity: 1;
}

.button.light-button {
  background-color: var(--off-white);
  color: var(--slate-blue);
  align-self: baseline;
}

.button.light-button:hover {
  background-color: var(--grey-blue);
}

.cardrow {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-left: 2%;
  display: flex;
}

.card {
  background-color: var(--off-white);
  color: var(--slate-blue);
  flex-flow: column;
  flex: 1;
  align-self: stretch;
  min-width: 23%;
  max-width: 23%;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-right: 2%;
  padding-top: 20px;
  text-decoration: none;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.card:hover {
  background-color: var(--grey-blue);
  color: var(--slate-blue);
  border-bottom-color: #000;
}

.card.feature-card {
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  min-width: 64.6%;
  max-width: 64.6%;
  min-height: 250px;
  padding-top: 0;
  display: flex;
}

.card.data-card {
  flex-flow: row;
  min-width: 98%;
  max-width: 98%;
  min-height: 170px;
}

.cardtext {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 20px 40px;
  display: flex;
}

.cardtext.feature-cardtext {
  flex-flow: column;
  justify-content: center;
  align-self: center;
  align-items: flex-start;
  width: 50%;
  padding: 40px 20px;
  display: flex;
  position: relative;
}

.cardtext.explore-ct {
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 15px;
}

.cardimage {
  object-fit: cover;
  width: 100%;
  height: 130px;
  margin-top: -20px;
}

.cardimage.feature-card-image {
  width: 50%;
  height: 100%;
  margin-top: 0;
  overflow: clip;
}

.cardimage.dataimage.di2 {
  width: 25%;
  height: calc(100% + 20px);
}

.cardtitle {
  margin-top: 0;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.2em;
  position: relative;
}

.cardtitle.featured-cardtitle {
  margin-top: 0;
  font-size: 1.5em;
  font-weight: 500;
}

.brand {
  object-fit: contain;
  object-position: 50% 50%;
  width: 150px;
  margin-left: 2%;
  padding-top: 13px;
  padding-bottom: 13px;
}

.nav-link {
  color: var(--slate-blue);
  padding: 18px 20px 17px;
  font-size: 18px;
  font-weight: 500;
}

.nav-link:hover {
  background-color: var(--white);
  color: var(--dark-grey-blue);
}

.nav-link.w--open {
  background-color: var(--off-white);
}

.nav-link.searchnl {
  font-family: "Fa Solid 900", sans-serif;
}

.menu-button {
  padding: 11px 20px;
  font-size: 40px;
}

.navbar {
  z-index: 9999;
  background-color: var(--white);
  width: 100%;
  position: fixed;
  top: 0;
}

.footer {
  background-color: var(--off-white);
  color: var(--slate-blue);
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.footer-link {
  color: inherit;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 1.5em;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: var(--dark-grey-blue);
}

.footer-link.sub-fl {
  font-size: 1em;
  font-weight: 400;
  text-decoration: none;
}

.note {
  font-size: .8em;
  line-height: 1.2em;
}

.accordcontent {
  height: 0;
  overflow: hidden;
}

.accordcross {
  z-index: 1;
  background-color: var(--dark-grey);
  color: var(--white);
  text-align: center;
  cursor: pointer;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 31px;
  height: 31px;
  padding-top: 3px;
  font-family: "Fa 400", sans-serif;
  font-size: 20px;
  line-height: 25px;
  display: block;
  position: absolute;
  inset: 5px 5px auto auto;
}

.accordcross:hover {
  background-color: var(--dark-grey-blue);
}

.nav-menu {
  float: none;
  text-align: right;
  flex: 1;
  display: inline-block;
}

.navcontainer {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.fullimage {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fullimage.feature-bar-image {
  opacity: .4;
  mix-blend-mode: normal;
}

.navpush {
  height: 58px;
}

.bgvid {
  object-fit: cover;
  object-position: 50% 50%;
  width: 85%;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto auto;
}

.carddate {
  opacity: .65;
  padding-bottom: 5px;
  font-size: .8em;
  font-weight: 300;
  line-height: 1em;
  position: absolute;
  inset: auto auto 10px 20px;
}

.carddate.cd-data {
  width: 100%;
  position: relative;
  top: 10px;
  bottom: 0;
  left: 0;
}

.carddate.ysr-cd {
  left: 48px;
}

.cardtags {
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-end;
  margin-top: 10px;
  display: flex;
}

.card-tag {
  background-color: var(--white);
  color: var(--slate-blue);
  margin-top: 2px;
  margin-bottom: 2px;
  margin-right: 5px;
  padding: 5px;
  font-size: .8em;
  line-height: 1em;
  display: inline-block;
}

.homehero {
  background-image: linear-gradient(0deg, var(--white), #0000 75%);
  color: var(--slate-blue);
  padding-top: 70px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.rowtitle {
  margin-top: 0;
  margin-bottom: -10px;
  font-weight: 500;
  line-height: 1.2em;
}

.rowtitle.greyblue {
  color: var(--dark-grey-blue);
}

.logoover {
  opacity: 0;
  height: 100%;
  transition: opacity .2s;
  display: none;
  position: absolute;
  inset: 0%;
}

.logoover:hover {
  opacity: 1;
}

.explorecard {
  background-color: var(--off-white);
  color: var(--slate-blue);
  flex: 1;
  align-self: stretch;
  min-width: 18%;
  max-width: 98%;
  min-height: 130px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 2%;
  padding-top: 5px;
  text-decoration: none;
  transition: background-color .2s;
  position: relative;
}

.explorecard:hover {
  background-color: var(--grey-blue);
  color: var(--slate-blue);
}

.explorecard.white_ec {
  background-color: var(--white);
}

.explorecard.white_ec:hover {
  background-color: var(--grey-blue);
  color: var(--slate-blue);
}

.card-sub-title {
  opacity: .8;
  max-width: 700px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: .9em;
  line-height: 1.3em;
}

.continuetitle {
  color: var(--slate-blue);
  text-align: right;
  margin-right: 20px;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.2em;
  text-decoration: none;
  display: block;
  position: absolute;
  inset: auto 0% 5px auto;
}

.continuetitle:hover {
  color: var(--dark-grey-blue);
}

.section-title {
  margin-bottom: 10px;
  font-weight: 500;
}

.type-tag {
  background-color: var(--ember-green);
  color: #192238cc;
  padding: 4px 20px;
  font-size: .8em;
  font-weight: 600;
  line-height: 1em;
  position: absolute;
  inset: 0% auto auto 0%;
}

.cardicon {
  object-fit: cover;
  border-radius: 200px;
  width: 40px;
  height: 40px;
  margin-top: 0;
  margin-bottom: 10px;
  margin-right: 10px;
  position: relative;
}

.sub-title {
  margin-top: 0;
  margin-bottom: -10px;
}

.mask {
  text-align: left;
  width: 100%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0;
  padding-right: 0;
}

.slider {
  background-color: var(--transparent);
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50px;
  display: block;
  position: relative;
}

.slidesmall {
  border-radius: 20px;
  max-width: 1300px;
  height: auto;
  padding: 20px 0 0 20px;
  overflow: visible;
}

.quotetext {
  border-left: 2px none var(--slate-blue);
  background-color: var(--white);
  color: var(--slate-blue);
  margin-bottom: 0;
  padding: 20px;
  font-weight: 500;
  line-height: 1.4em;
}

.quotetext.revqt {
  background-color: var(--off-white);
}

.quoteassoc {
  margin-left: 20px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0;
  font-size: .9em;
  line-height: 1.2em;
}

.tailshape {
  background-image: linear-gradient(-45deg, var(--transparent) 50%, var(--white) 50%);
  width: 30px;
  height: 30px;
  margin-top: 0;
  margin-left: 66px;
}

.tailshape.revts {
  background-image: linear-gradient(-45deg, var(--transparent) 50%, var(--off-white) 50%);
}

.slider-quote-block {
  float: left;
  margin-left: 2%;
  margin-right: 2%;
  display: inline-block;
}

.left-arrow {
  border: 1px solid var(--dark-grey-blue);
  background-color: var(--white);
  color: var(--dark-grey-blue);
  -webkit-text-stroke-color: var(--dark-grey-blue);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  font-size: 21px;
  transition: background-color .2s;
  inset: 12px 82px auto auto;
}

.left-arrow:hover {
  background-color: var(--ash-blue);
}

.right-arrow {
  border: 1px solid var(--dark-grey-blue);
  background-color: var(--white);
  color: var(--dark-grey-blue);
  -webkit-text-stroke-color: var(--dark-grey-blue);
  border-radius: 100%;
  width: 40px;
  height: 40px;
  font-size: 21px;
  transition: background-color .2s;
  inset: 12px 37px auto auto;
}

.right-arrow:hover {
  background-color: var(--ash-blue);
}

.blue {
  color: var(--dark-grey-blue);
}

.slide-nav {
  text-align: center;
  width: 140px;
  font-size: 9px;
  line-height: 16px;
  position: absolute;
  inset: 55px 10px auto auto;
}

.logogrid {
  opacity: .7;
  filter: grayscale();
  object-position: 50% 50%;
  flex: 0 auto;
  order: 0;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 100%;
  max-width: 110px;
  height: 100%;
  max-height: 110px;
  margin-bottom: 20px;
  margin-right: 35px;
  transition: opacity .2s, transform .2s, filter .2s;
  display: flex;
  overflow: visible;
}

.logogrid:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.03);
}

.socialrow {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.rowbreak {
  opacity: .7;
  background-color: #ccc;
  height: 1px;
  margin: 20px 2%;
}

.social-link {
  color: var(--slate-blue);
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 35px;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 5px;
  font-family: "Fa Brands 400", sans-serif;
  font-size: 22px;
  text-decoration: none;
  display: flex;
}

.social-link:hover {
  color: var(--dark-grey-blue);
}

.text-field {
  border: 1px solid var(--grey-blue);
  color: var(--slate-blue);
  height: 49px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.2em;
  line-height: 1em;
}

.text-field:focus {
  border-color: var(--dark-grey-blue);
}

.form {
  align-items: stretch;
  display: flex;
}

.form-block {
  width: 100%;
  margin-top: 15px;
  margin-right: -40px;
}

.fa {
  font-family: "Fa Solid 900", sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1em;
}

.stat-data-block {
  padding-bottom: 20px;
}

.stat-data-block.in-page {
  padding-top: 20px;
}

.statblock {
  border-bottom: 1px solid #0000004d;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 10px;
  margin-left: 2%;
  padding: 10px 0;
  text-decoration: none;
  transition: border .2s;
  display: flex;
}

.statblock:hover {
  border-bottom-color: #000;
}

.statblock.dark-sb {
  border-top: 1px solid #fff6;
  border-bottom: 1px #0000004d;
}

.statblock.dark-sb:hover {
  border-top-color: #fff;
}

.dataicon {
  width: 30px;
  margin-right: 5px;
}

.statdata {
  color: var(--slate-blue);
  font-size: 2em;
  line-height: 1em;
}

.statdata.black-stat {
  color: var(--slate-blue);
}

.stat-wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5px;
  display: flex;
}

.datarow {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding-right: 2%;
  display: flex;
}

.data-title {
  font-size: .9em;
  line-height: 1.2em;
}

.author-wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-right: 40px;
  padding-left: 0;
  display: flex;
}

.author-wrapper.auth-link {
  margin-top: 10px;
  margin-bottom: 10px;
  text-decoration: none;
}

.author-wrapper.auth-link:hover {
  text-decoration: underline;
}

.quote-prof-img {
  object-fit: cover;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  margin-right: -10px;
}

.quickfirecol {
  background-color: var(--off-white);
  color: var(--slate-blue);
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: stretch;
  min-width: 23%;
  max-width: 48%;
  margin-top: 15px;
  margin-bottom: 15px;
  margin-right: 2%;
  text-decoration: none;
  display: flex;
  position: relative;
}

.quickfirelink {
  background-color: var(--transparent);
  color: var(--slate-blue);
  border-top: 1px solid #dadada;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 12px 20px 25px;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2em;
  text-decoration: none;
  transition: background-color .2s, color .2s;
  display: flex;
  position: relative;
}

.quickfirelink:hover {
  background-color: var(--grey-blue);
  color: var(--slate-blue);
}

.qf-title-block {
  background-color: var(--mid-slate-blue);
  color: var(--white);
  padding: 10px 20px 20px;
}

.breadcrumbs {
  color: inherit;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
  padding-left: 2%;
  font-size: .9em;
  display: flex;
  position: relative;
}

.crumb {
  opacity: .8;
  color: var(--slate-blue);
  margin-right: 5px;
  line-height: 1.1em;
}

.crumb:hover {
  opacity: 1;
  color: var(--dark-grey-blue);
}

.crumb-break {
  opacity: .8;
  margin-right: 5px;
  line-height: 1.1em;
}

.report-hero-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 43%;
  height: 100%;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.tag-wrapper {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  position: relative;
}

.tagbreak {
  background-color: var(--white);
  opacity: .8;
  width: 1px;
  height: auto;
  margin-left: 7px;
  margin-right: 12px;
}

.tagbreak.darktb {
  background-color: var(--slate-blue);
  color: var(--slate-blue);
  align-self: stretch;
}

.herotag {
  opacity: .8;
  margin-right: 5px;
}

.author-section {
  background-color: var(--slate-blue);
  color: var(--off-white);
  margin-bottom: -90px;
  padding-top: 10px;
  padding-bottom: 80px;
}

.contents-section {
  padding-top: 20px;
  padding-bottom: 20px;
}

.contents-section.stickycontents {
  z-index: 20;
  background-color: var(--slate-blue);
  padding-top: 0;
  padding-bottom: 0;
  position: sticky;
  top: 58px;
}

.contents-block {
  background-color: var(--off-white);
  width: 98%;
  margin-bottom: -40px;
  margin-right: 2%;
  padding: 1px 20px 25px;
  position: relative;
}

.contents-block.row-contents {
  z-index: 10;
  background-color: var(--slate-blue);
  color: var(--white);
  flex-flow: row;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.contents-block.drop-contents {
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.chapter-wrapper {
  position: relative;
}

.chapter-title-acc {
  cursor: pointer;
  border-bottom: 1px solid #00000026;
  padding: 10px 200px 10px 50px;
  font-size: 1.2em;
  font-weight: 500;
  line-height: 1.2em;
  text-decoration: none;
  transition: padding .2s, background-color .2s;
  display: block;
  position: relative;
}

.chapter-title-acc:hover {
  background-color: #0000000d;
  padding-left: 60px;
}

.chapter-title-acc.sub-chapter {
  padding-left: 60px;
  font-weight: 400;
}

.chapter-title-acc.sub-chapter:hover {
  padding-left: 70px;
}

.chapter-title-acc.explore-chapter {
  white-space: nowrap;
  word-break: keep-all;
  border-bottom-width: 3px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 1em;
  font-weight: 500;
  transition: background-color .2s;
}

.chapter-title-acc.explore-chapter:hover {
  padding-left: 15px;
  padding-right: 15px;
}

.chapter-title-acc.explore-chapter.w--current {
  border-bottom-color: var(--slate-blue);
}

.chapter-list {
  height: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.ct-number {
  text-align: left;
  cursor: pointer;
  width: 50px;
  margin-right: 60px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  font-size: 1.2em;
  font-weight: 700;
  line-height: 1.2em;
  position: absolute;
  inset: 0% auto auto 0%;
}

.green {
  color: var(--ember-green);
}

.chapter-list-item {
  color: #22262ba8;
  font-size: .9em;
  position: relative;
}

.read-now {
  opacity: 0;
  pointer-events: none;
  text-align: right;
  padding: 12px 60px 12px 10px;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.2em;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.homesidegrad {
  background-image: linear-gradient(90deg, #fff 15%, #19223800);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.ysr_number {
  color: var(--ember-green);
  flex: none;
  width: 20px;
  margin-right: 8px;
  font-size: 2em;
  font-weight: 400;
  line-height: 1em;
  display: block;
}

.report-hero {
  color: var(--slate-blue);
  padding-top: 70px;
  padding-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.report-hero.topic {
  padding-top: 30px;
}

.report-hero.inner-hero {
  margin-bottom: -50px;
}

.article-body a:hover {
  opacity: .9;
}

.sidebar {
  width: 100%;
  min-width: 23%;
  max-width: 400px;
  margin-right: 2%;
  padding: 15px 0 15px 40px;
  position: relative;
}

.sidebarblock {
  border-bottom: 1px solid var(--dark-grey-blue);
  background-color: var(--off-white);
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 6px 20px 10px;
}

.sidelink {
  border-top: 1px solid #00000026;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 10px 0;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.sidelink:hover {
  color: var(--dark-grey-blue);
}

.openlink {
  width: 17px;
  margin-top: -1px;
  margin-left: 10px;
}

.chaptertitle {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 2%;
  padding-right: 2%;
  font-weight: 700;
  display: flex;
}

.chapter-bumper-wrapper {
  border-bottom: 2px solid var(--dark-grey-blue);
  display: flex;
}

.chapter-bumper {
  background-color: var(--off-white);
  text-align: center;
  width: 50%;
  padding: 25px 60px 60px;
  font-size: 2.2em;
  font-weight: 500;
  line-height: 1.2em;
  text-decoration: none;
  transition: background-color .2s;
  position: relative;
}

.chapter-bumper:hover {
  background-color: var(--grey-blue);
}

.chapter-bumper.cb-next {
  background-color: var(--slate-blue);
  color: var(--white);
}

.chapter-bumper.cb-next:hover {
  background-color: var(--dark-grey-blue);
}

.bumper-sub {
  opacity: .45;
  font-size: .7em;
}

.tableembed {
  box-sizing: border-box;
  background-color: var(--transparent);
  filter: brightness(98%);
  max-width: 1000px;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-right: -40px;
  overflow: hidden;
}

.tableembed.sticky {
  position: sticky;
  top: 120px;
}

.tableembed.large-te {
  margin-top: 20px;
  margin-left: 2%;
  margin-right: 2%;
  position: relative;
}

.big-number {
  border-bottom: 1px solid var(--ember-green);
  color: var(--ember-green);
  margin-top: 20px;
  margin-bottom: -5px;
  padding-bottom: 5px;
  font-size: 2em;
  line-height: 1.2em;
}

.titleline {
  background-image: linear-gradient(90deg, var(--slate-blue), var(--ember-green) 50%);
  width: 33%;
  height: 6px;
  margin-top: -60px;
  margin-bottom: 60px;
  margin-left: 2%;
}

.contenthero {
  background-color: var(--off-white);
  color: var(--slate-blue);
  padding-top: 30px;
  padding-bottom: 5px;
  position: relative;
  overflow: hidden;
}

.chapter-arrow {
  opacity: 1;
  width: 37px;
  height: 100%;
  position: absolute;
  inset: 0% 20px 0% auto;
}

.menuicon {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.menubar {
  background-color: var(--slate-blue);
  width: 28px;
  height: 6px;
  margin-top: 3px;
  margin-bottom: 3px;
  position: relative;
}

.menubar.crossbar {
  margin-top: -9px;
}

.tagicon {
  width: 25px;
  height: 25px;
  margin-top: 2px;
  margin-bottom: 2px;
  margin-right: 5px;
}

.page-hero {
  background-color: var(--ash-blue);
  color: var(--slate-blue);
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.tablink {
  border-bottom: 3px solid var(--dark-grey);
  background-color: var(--transparent);
  opacity: .7;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.2em;
  display: flex;
}

.tablink:hover {
  border-bottom-color: var(--slate-blue);
}

.tablink.w--current {
  border-bottom-color: var(--slate-blue);
  background-color: var(--transparent);
  opacity: 1;
}

.tabs-menu {
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
}

.tab-num {
  background-color: var(--grey-blue);
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
  padding: 5px;
  font-size: .8em;
  line-height: 1em;
}

.searchblock {
  width: 100%;
  margin-top: 15px;
  padding-right: 1%;
}

.article-top {
  padding-top: 20px;
  padding-bottom: 20px;
}

.article-image {
  max-width: 96%;
  margin-left: 2%;
  margin-right: 2%;
}

.imagesource {
  opacity: .85;
  text-align: right;
  margin-right: 2%;
  font-size: .8em;
}

.filterrow {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 2%;
  display: flex;
  position: relative;
}

.filter-bar {
  z-index: 3;
  border-bottom: 1px solid var(--grey-blue);
  background-color: var(--off-white);
  width: 98%;
  margin-bottom: 20px;
  padding: 0 10px;
  position: relative;
}

.dropdown-toggle {
  border: 1px solid #0000;
  padding: 10px 30px 10px 15px;
  display: flex;
}

.dropdown-toggle.w--open {
  z-index: 3;
  border-style: solid solid none;
  border-width: 1px;
  border-color: var(--dark-grey-blue);
  background-color: var(--white);
}

.icon {
  margin-right: 10px;
}

.dd-link {
  opacity: .8;
  border-right: 1px solid #00000036;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-right: 10px;
  line-height: 1em;
  text-decoration: none;
  display: flex;
}

.dd-link:hover {
  opacity: 1;
}

.checkbox {
  border: 1px solid #000;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.filter-dropdown {
  margin: 5px 0;
  position: static;
}

.dropdown-list {
  z-index: 2;
}

.dropdown-list.w--open {
  border: 1px solid var(--dark-grey-blue);
  background-color: var(--white);
  flex-flow: wrap;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: -1px;
  padding: 15px 20px;
  display: flex;
  left: 0;
}

.expertsblock {
  background-color: var(--off-white);
  color: var(--slate-blue);
  padding-top: 40px;
  padding-bottom: 60px;
}

.expertcard {
  border-bottom: 1px solid #00000029;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  min-width: 23%;
  max-width: 31.3%;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 2%;
  padding-bottom: 0;
  padding-right: 20px;
  text-decoration: none;
  display: flex;
}

.expertcard:hover {
  color: var(--slate-blue);
}

.profile-image {
  object-fit: cover;
  border-radius: 500px;
  width: 120px;
  height: 120px;
  margin-top: 20px;
  margin-bottom: -10px;
  margin-right: 20px;
}

.profile-text {
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: stretch;
  max-width: 700px;
  padding-top: 5px;
  display: flex;
}

.profile-title {
  margin-bottom: 5px;
}

.profile-sub {
  margin-bottom: 10px;
  font-size: 1em;
  line-height: 1.2em;
}

.inline-icon {
  max-width: 100px;
  margin-bottom: -5px;
}

.profile-head-image {
  z-index: 3;
  object-fit: cover;
  border-radius: 500px;
  width: 200px;
  height: 200px;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 20px;
  padding-top: 0;
}

.resultsorganise {
  z-index: 2;
  border-bottom: 1px solid var(--grey-blue);
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 31.3%;
  margin-top: -20px;
  margin-bottom: 40px;
  margin-right: 2%;
  padding: 0 40px 0 25px;
  display: flex;
  position: relative;
}

.res-num {
  margin-right: 20px;
}

.radio {
  border: 1px solid #000;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

.searchtabrow {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding-left: 2%;
  padding-right: 2%;
  display: flex;
  position: relative;
}

.searchtab {
  border-bottom: 1px solid var(--white);
  padding-left: 5px;
  padding-right: 5px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
}

.searchtab:hover {
  border-bottom-color: var(--dark-grey-blue);
  color: var(--dark-grey-blue);
}

.searchtab.deadst {
  opacity: .6;
}

.searchtab.deadst:hover {
  color: var(--slate-blue);
}

.searchtab.currentst {
  border-bottom: 1px solid var(--dark-grey-blue);
}

.menu-drop {
  height: 0;
}

.menu-drop.w--open {
  background-color: var(--off-white);
  height: auto;
  max-height: calc(100vh - 57px);
  margin-top: 57px;
  padding-top: 0;
  padding-bottom: 0;
  position: fixed;
  inset: 0% 0% auto;
  overflow: auto;
}

.menucontainer {
  flex-flow: wrap;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px 10px calc(20px + 2%);
  display: flex;
}

.menu-title {
  border-bottom: 2px solid var(--grey-blue);
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-size: 1.2em;
  font-weight: 500;
  text-decoration: none;
}

.menu-title:hover {
  border-bottom-color: var(--ember-green);
  color: var(--dark-grey-blue);
}

.menucol {
  text-align: left;
  flex-flow: wrap;
  flex: 1;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: flex-start;
  max-width: 98%;
  margin-left: 0%;
  margin-right: 2%;
  display: flex;
}

.menucol.inner-mc {
  min-width: 48%;
}

.drop-menu-link {
  border-left-style: solid;
  border-left-width: 2px;
  border-left-color: var(--grey-blue);
  white-space: normal;
  word-break: break-word;
  width: 100%;
  margin-top: 0;
  margin-bottom: 0;
  padding: 3px 10px;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.2em;
}

.drop-menu-link:hover {
  border-left-color: var(--ember-green);
  color: var(--dark-grey-blue);
}

.drop-menu-text {
  max-width: 50%;
  margin-bottom: 10px;
  font-size: 1.5em;
  line-height: 1.2em;
}

.nav-background {
  z-index: 30;
  background-color: var(--slate-blue);
  opacity: .4;
  pointer-events: none;
  width: 100%;
  height: 100%;
  margin-top: 57px;
  position: fixed;
  inset: 0%;
}

.menu-inner {
  z-index: 40;
  background-color: var(--off-white);
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
}

.menu-dropdown {
  transition: all .2s;
}

.select-field {
  background-color: var(--white);
  color: var(--slate-blue);
}

.textarea {
  color: var(--slate-blue);
  min-height: 200px;
}

.form-field {
  color: var(--slate-blue);
}

.share-wrapper {
  z-index: 30;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: fixed;
  inset: auto auto 0% 0%;
  overflow: visible;
}

.share-text {
  background-color: var(--white);
  text-align: center;
  letter-spacing: 3px;
  text-indent: 3px;
  text-transform: uppercase;
  cursor: pointer;
  width: 101px;
  height: 27px;
  padding: 5px;
  font-size: .9em;
  line-height: 18px;
  position: relative;
  left: -37px;
  transform: rotate(-90deg);
}

.share-text.mobilest {
  display: none;
}

.share-options {
  background-color: var(--white);
  cursor: pointer;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  height: 101px;
  text-decoration: none;
  display: flex;
  position: relative;
  left: -74px;
  overflow: hidden;
}

.fab {
  font-family: "Fa Brands 400", sans-serif;
}

.share-link {
  white-space: nowrap;
  word-break: keep-all;
  padding-left: 10px;
  padding-right: 10px;
  text-decoration: none;
}

.share-link:hover {
  color: var(--dark-grey-blue);
}

.sticky-contents-section {
  z-index: 100;
  background-color: var(--dark-grey-blue);
  max-height: 100vh;
  padding-top: 57px;
  padding-bottom: 0;
  display: none;
  position: fixed;
  inset: 0% 0% auto;
  overflow: auto;
}

.contents-button {
  margin-right: 2%;
  padding: 8px 10px;
  text-decoration: none;
}

.contents-button:hover {
  background-color: var(--mid-slate-blue);
  color: var(--white);
}

.report-droprow {
  color: var(--white);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-left: 2%;
  display: flex;
  position: relative;
}

.report-hero-grad {
  background-image: linear-gradient(90deg, var(--white), var(--transparent));
  width: 43.1%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.quickfirelink-txt {
  padding-bottom: 10px;
}

.bold-text, .bold-text-3, .field-label {
  font-weight: 500;
}

@media screen and (min-width: 1440px) {
  body {
    font-size: 17px;
    line-height: 26px;
  }

  .container {
    max-width: 1300px;
  }

  .column {
    max-width: 900px;
  }

  .section {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .button.profile-button {
    opacity: .8;
  }

  .button.profile-button:hover {
    background-color: var(--white);
    opacity: 1;
  }

  .cardtext {
    padding-bottom: 40px;
  }

  .cardimage {
    height: 160px;
  }

  .nav-link {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .accordcross {
    padding-top: 3px;
    top: 7px;
    right: 7px;
  }

  .navcontainer {
    max-width: 1300px;
  }

  .navpush {
    height: 58px;
  }

  .carddate {
    padding-bottom: 5px;
  }

  .carddate.ysr-cd {
    left: 53px;
  }

  .explorecard {
    min-height: 140px;
  }

  .cardicon {
    width: 40px;
  }

  .tailshape {
    margin-left: 73px;
  }

  .logogrid {
    max-width: 140px;
    max-height: 140px;
    margin-right: 40px;
  }

  .text-field {
    height: 52px;
  }

  .dataicon {
    width: 34px;
  }

  .quote-prof-img {
    width: 80px;
    height: 80px;
  }

  .quickfirelink {
    padding-top: 14px;
    padding-bottom: 30px;
  }

  .contents-block {
    padding-bottom: 35px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .chapter-title-acc {
    padding-left: 55px;
    font-size: 1em;
  }

  .chapter-title-acc:hover {
    padding-left: 65px;
  }

  .chapter-title-acc.explore-chapter {
    font-size: 1em;
  }

  .chapter-title-acc.explore-chapter:hover {
    padding-left: 15px;
    padding-right: 15px;
  }

  .ct-number {
    font-size: 1em;
  }

  .ysr_number {
    width: 25px;
  }

  .sidebar {
    max-width: 450px;
    padding-left: 60px;
  }

  .chapter-bumper {
    padding-top: 25px;
    font-size: 2em;
  }

  .tableembed.large-te {
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .titleline {
    margin-top: -70px;
    margin-bottom: 70px;
  }

  .tab-num {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .article-top {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .expertcard {
    min-width: 18%;
  }

  .profile-sub {
    font-size: 1em;
    line-height: 1.2em;
  }

  .menucontainer {
    max-width: 1300px;
  }

  .drop-menu-link {
    font-size: .9em;
    line-height: 1.2em;
  }

  .share-wrapper {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .share-text {
    width: 122px;
    height: 30px;
    font-size: .8em;
    line-height: 22px;
    left: -46px;
  }

  .share-options {
    height: 122px;
    left: -93px;
  }

  .share-link {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 3em;
  }

  h2 {
    font-size: 2.3em;
  }

  h3 {
    font-size: 1.4em;
  }

  .column {
    min-width: 31.3%;
    padding-right: 20px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.short-section {
    padding-top: 1px;
  }

  .button.newsletter-button, .button.reset-button {
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .card {
    min-width: 48%;
    max-width: 48%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 2%;
  }

  .card.feature-card {
    order: -1;
    min-width: 98%;
    max-width: 98%;
  }

  .cardtext {
    padding-bottom: 35px;
  }

  .brand {
    width: 150px;
  }

  .nav-link {
    width: 100%;
    padding-left: calc(2% + 20px);
    padding-right: 15px;
    display: inline-block;
  }

  .nav-link.w--open {
    background-color: var(--dark-grey-blue);
    color: var(--white);
  }

  .nav-link.searchnl, .nav-link.lang-nl {
    width: auto;
    padding-left: 15px;
  }

  .menu-button {
    font-size: 40px;
  }

  .menu-button.w--open {
    background-color: var(--off-white);
  }

  .footer-link {
    font-size: 1.4em;
  }

  .nav-menu {
    background-color: var(--off-white);
    text-align: left;
    max-height: calc(100vh - 57px);
    padding-right: 0%;
  }

  .navcontainer {
    text-align: right;
    justify-content: flex-end;
    align-items: center;
    padding-right: 0;
  }

  .navpush {
    height: 58px;
  }

  .homehero {
    padding-top: 60px;
    padding-right: 60px;
  }

  .explorecard {
    min-width: 48%;
    max-width: 98%;
    min-height: 110px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 2%;
  }

  .logogrid {
    max-width: 75px;
  }

  .text-field {
    height: 48px;
    font-size: 1em;
  }

  .form-block {
    margin-right: -20px;
  }

  .data-title {
    font-size: .8em;
    line-height: 1.1em;
  }

  .quickfirecol {
    min-width: 48%;
    max-width: 98%;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 2%;
  }

  .report-hero-image {
    width: 48%;
  }

  .chapter-title-acc.explore-chapter {
    font-size: .9em;
  }

  .chapter-title-acc.explore-chapter:hover {
    padding-left: 15px;
    padding-right: 15px;
  }

  .report-hero {
    padding-top: 60px;
    padding-right: 30%;
  }

  .sidebar {
    max-width: 240px;
    padding-left: 20px;
  }

  .chapter-bumper {
    padding: 40px;
    font-size: 2em;
  }

  .tableembed {
    margin-right: -20px;
  }

  .tableembed.sticky {
    top: 90px;
  }

  .chapter-arrow {
    height: auto;
    margin-top: 5px;
    position: relative;
    right: auto;
  }

  .tablink {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1em;
  }

  .searchblock {
    padding-right: 2%;
  }

  .article-top {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .expertcard {
    flex-flow: row;
    flex: 0 auto;
    width: 98%;
    min-width: auto;
    max-width: none;
    margin-bottom: 0;
    padding-bottom: 10px;
  }

  .profile-image {
    width: 100px;
    height: 100px;
  }

  .resultsorganise {
    min-width: 31.3%;
    padding-right: 20px;
  }

  .menu-drop.w--open {
    border-bottom: 2px solid var(--dark-grey-blue);
    margin-top: 0;
    padding-left: 2%;
    position: relative;
  }

  .menu-drop.out-menu.w--open {
    position: fixed;
    top: 57px;
  }

  .menucontainer {
    flex-flow: row;
    padding-left: 20px;
  }

  .menu-title {
    font-weight: 500;
  }

  .drop-menu-link {
    padding-top: 4px;
    padding-bottom: 4px;
    line-height: 1em;
  }

  .drop-menu-text {
    max-width: none;
    margin-bottom: 0;
    font-size: 1.2em;
  }

  .nav-background {
    display: none;
  }

  .menu-inner {
    padding-top: 4px;
    padding-bottom: 10px;
  }

  .share-wrapper {
    justify-content: flex-start;
    align-items: flex-end;
    padding-bottom: 0;
    inset: auto auto 0% 0%;
  }

  .share-text {
    width: 99px;
    height: 22px;
    padding-top: 3px;
    font-size: .8em;
    line-height: 18px;
    bottom: 35px;
    left: -40px;
  }

  .share-options {
    left: -80px;
  }

  .contents-button {
    padding-top: 6px;
    padding-bottom: 6px;
  }

  .report-hero-grad {
    width: 48.1%;
  }
}

@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 22px;
  }

  h1 {
    font-size: 2.5em;
  }

  h2 {
    font-size: 2em;
  }

  .column {
    min-width: 98%;
    padding-right: 0;
  }

  .column.f-col {
    min-width: 48%;
  }

  .button.reset-button {
    margin-left: 5px;
  }

  .button.profile-button {
    order: 1;
    padding-left: 10px;
    padding-right: 10px;
  }

  .cardtext {
    padding-top: 15px;
  }

  .brand {
    width: 130px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .menu-button {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .accordcross {
    width: 30px;
    height: 30px;
    padding-top: 4px;
    font-size: 22px;
    line-height: 22px;
  }

  .nav-menu {
    max-height: calc(100vh - 54px);
  }

  .navpush {
    height: 52px;
  }

  .bgvid {
    width: 100%;
  }

  .rowtitle {
    padding-right: 100px;
  }

  .explorecard {
    min-height: 100px;
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .slidesmall {
    padding-left: 0;
  }

  .slider-quote-block {
    margin-left: 0%;
    margin-right: 0%;
  }

  .text-field {
    height: 47px;
  }

  .form-block {
    margin: -25px auto 0;
  }

  .stat-data-block {
    padding-bottom: 10px;
  }

  .stat-data-block.in-page {
    margin-top: 0;
  }

  .statblock {
    min-width: 110px;
  }

  .dataicon {
    width: 30px;
    margin-right: 2px;
  }

  .statdata {
    font-size: 1.7em;
  }

  .author-wrapper.auth-link {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .quote-prof-img {
    width: 60px;
    height: 60px;
  }

  .report-hero-image {
    width: 100%;
    height: 189px;
  }

  .contents-section.stickycontents {
    top: 50px;
  }

  .contents-block {
    padding: 1px 10px 15px;
  }

  .contents-block.row-contents {
    width: 100%;
    min-width: 100vw;
    margin-left: calc(-2% - 20px);
    margin-right: 0%;
    overflow: auto;
  }

  .chapter-title-acc {
    padding-right: 150px;
  }

  .chapter-title-acc.explore-chapter {
    font-size: .9em;
  }

  .chapter-title-acc.explore-chapter.w--current {
    padding-left: 10px;
    padding-right: 10px;
  }

  .chapter-list-item {
    font-size: .8em;
  }

  .read-now {
    padding-top: 16px;
    padding-bottom: 16px;
    padding-right: 40px;
    font-size: .8em;
  }

  .report-hero {
    padding-top: 160px;
    padding-right: 0%;
  }

  .sidebar {
    min-width: 98%;
    padding: 0;
  }

  .sidelink {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .openlink {
    width: 15px;
  }

  .chapter-bumper-wrapper {
    flex-flow: column-reverse;
  }

  .chapter-bumper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    font-size: 2em;
  }

  .chapter-bumper.cb-next {
    padding-bottom: 20px;
  }

  .tableembed {
    margin-top: 0;
    margin-right: 0;
  }

  .contenthero {
    padding-top: 20px;
  }

  .menubar {
    width: 25px;
    height: 5px;
    margin-top: 2px;
  }

  .menubar.crossbar {
    margin-top: -8px;
  }

  .page-hero {
    padding-top: 20px;
  }

  .searchblock {
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .filter-bar {
    padding-top: 0;
    padding-bottom: 0;
  }

  .dropdown-toggle {
    padding-left: 10px;
    padding-right: 25px;
  }

  .icon {
    margin-right: 7px;
  }

  .profile-image {
    width: 80px;
    height: 80px;
  }

  .resultsorganise {
    min-width: 98%;
    padding-left: 20px;
    padding-right: 0;
  }

  .menu-drop.out-menu.w--open {
    top: 51px;
  }

  .menucontainer {
    flex-flow: wrap;
  }

  .menucol {
    min-width: 48%;
    margin-bottom: 10px;
  }

  .drop-menu-text {
    margin-bottom: -10px;
  }

  .share-wrapper {
    justify-content: flex-start;
    align-items: flex-end;
  }

  .share-text {
    text-align: left;
    letter-spacing: 0;
    text-indent: 3px;
    width: 75px;
    line-height: 15px;
    bottom: 26px;
    left: -27px;
  }

  .share-options {
    justify-content: center;
    align-items: stretch;
    left: -57px;
  }

  .sticky-contents-section {
    padding-top: 50px;
  }

  .report-hero-grad {
    background-image: linear-gradient(0deg, var(--white), var(--transparent));
    width: 100%;
    height: 190px;
  }
}

@media screen and (max-width: 479px) {
  h3 {
    font-size: 1.3em;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .column.f-col {
    min-width: 98%;
    padding-top: 0;
    padding-bottom: 0;
  }

  .section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .button.newsletter-button, .button.reset-button {
    padding-left: 10px;
    padding-right: 10px;
  }

  .button.profile-button {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .card {
    min-width: 98%;
    max-width: 98%;
    margin-right: 0%;
  }

  .card.feature-card {
    flex-flow: column;
  }

  .cardtext {
    padding-top: 11px;
    padding-left: 13px;
    padding-right: 10px;
  }

  .cardtext.feature-cardtext {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 40px;
    padding-left: 13px;
  }

  .cardimage.feature-card-image {
    width: 100%;
    height: 200px;
  }

  .cardimage.dataimage.di2 {
    width: 30%;
  }

  .cardtitle.featured-cardtitle {
    margin-top: 0;
    font-size: 1.2em;
  }

  .brand {
    padding-top: 11px;
    padding-bottom: 11px;
  }

  .nav-link {
    padding: 14px 10px 14px calc(2% + 15px);
  }

  .nav-link.searchnl, .nav-link.lang-nl {
    padding-left: 10px;
  }

  .menu-button {
    padding: 10px;
  }

  .menu-button.w--open {
    background-color: var(--off-white);
  }

  .footer {
    padding-top: 10px;
  }

  .footer-link.sub-fl {
    display: none;
  }

  .accordcross {
    width: 27px;
    height: 27px;
    padding-top: 3px;
    font-size: 20px;
    top: 4px;
    right: 4px;
  }

  .nav-menu {
    background-color: var(--off-white);
    text-align: left;
    max-height: calc(100vh - 50px);
    overflow: auto;
  }

  .navcontainer {
    padding-left: 15px;
  }

  .navpush {
    height: 50px;
  }

  .carddate {
    left: 13px;
  }

  .carddate.ysr-cd {
    left: 38px;
  }

  .homehero {
    padding-right: 30px;
  }

  .explorecard {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .continuetitle {
    margin-right: 10px;
    position: relative;
  }

  .type-tag {
    padding: 3px 10px;
  }

  .cardicon {
    width: 30px;
    height: 30px;
  }

  .slide-nav {
    top: 60px;
  }

  .logogrid {
    max-width: 23%;
    margin-right: 10%;
  }

  .text-field {
    height: 47px;
  }

  .statblock {
    flex: 0 auto;
    width: 48%;
    min-width: auto;
  }

  .dataicon {
    width: 30px;
  }

  .datarow {
    flex-flow: wrap;
  }

  .data-title {
    margin-bottom: 5px;
  }

  .quote-prof-img {
    width: 55px;
    height: 55px;
  }

  .quickfirecol {
    min-width: 98%;
    max-width: 98%;
    margin-right: 0%;
  }

  .quickfirelink {
    padding-left: 10px;
    padding-right: 10px;
  }

  .qf-title-block {
    padding-left: 10px;
  }

  .breadcrumbs {
    margin-bottom: 0;
  }

  .contents-section.stickycontents {
    top: 49px;
  }

  .contents-block.row-contents {
    margin-left: calc(-2% - 15px);
  }

  .chapter-title-acc {
    padding: 9px 40px 8px;
    font-size: 1em;
  }

  .chapter-title-acc:hover {
    padding-left: 45px;
  }

  .chapter-title-acc.sub-chapter {
    padding-left: 40px;
    padding-right: 10px;
  }

  .chapter-title-acc.sub-chapter:hover {
    padding-left: 40px;
  }

  .ct-number {
    padding-top: 9px;
    padding-bottom: 8px;
    font-size: 1em;
  }

  .read-now {
    display: none;
  }

  .sidebarblock {
    padding-left: 10px;
    padding-right: 10px;
  }

  .chapter-bumper-wrapper {
    flex-flow: column-reverse;
  }

  .chapter-bumper {
    width: 100%;
    padding: 17px 40px 20px;
    font-size: 1em;
  }

  .chapter-bumper.cb-next {
    padding-bottom: 20px;
    font-size: 1.4em;
  }

  .bumper-sub {
    margin-bottom: -5px;
  }

  .titleline {
    margin-top: -40px;
    margin-bottom: 40px;
  }

  .chapter-arrow {
    width: 25px;
  }

  .tablink {
    padding-left: 5px;
    padding-right: 5px;
  }

  .article-top {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .filter-bar {
    padding: 0;
  }

  .dropdown-toggle {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .expertsblock {
    padding-top: 20px;
    padding-bottom: 40px;
  }

  .expertcard {
    margin-bottom: 1px;
    padding-bottom: 5px;
    padding-right: 10px;
  }

  .profile-image {
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }

  .profile-text {
    padding-top: 0;
  }

  .resultsorganise {
    padding-left: 0;
  }

  .menu-drop.w--open {
    max-height: none;
    margin-top: 0;
    position: relative;
  }

  .menu-drop.out-menu.w--open {
    top: 50px;
  }

  .menucontainer {
    flex-flow: column;
    padding-left: 15px;
    padding-right: 10px;
  }

  .drop-menu-text {
    max-width: none;
    margin-top: -10px;
    margin-bottom: -10px;
    font-size: 1em;
  }

  .menu-inner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .share-text {
    width: 71px;
    height: 20px;
    display: none;
  }

  .share-text.mobilest {
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    padding-top: 5px;
    font-size: 1.2em;
    line-height: 1.2em;
    display: flex;
    bottom: 5px;
    left: 5px;
    transform: rotate(0);
  }

  .share-options {
    bottom: 5px;
    left: 5px;
  }

  .share-link {
    padding-left: 10px;
    padding-right: 10px;
  }

  .sticky-contents-section {
    padding-top: 49px;
  }

  .contents-button {
    padding: 5px 8px;
  }
}


@font-face {
  font-family: 'Fa Brands 400';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa Solid 900';
  src: url('../fonts/fa-solid-900.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fa 400';
  src: url('../fonts/fa-regular-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}