:root {
  --black: black;
  --white: white;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

body {
  color: #333;
  background-color: #e6e6e6;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Forma, sans-serif;
  font-size: 160px;
  font-weight: 400;
  line-height: 160px;
}

h2 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Forma, sans-serif;
  font-size: 120px;
  font-weight: 400;
  line-height: 120px;
}

h3 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Forma, sans-serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 90px;
}

h4 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Forma, sans-serif;
  font-size: 70px;
  font-weight: 400;
  line-height: 70px;
}

h5 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Forma, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 60px;
}

h6 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Forma, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 40px;
}

p {
  color: #000;
  margin-bottom: 10px;
  font-family: Forma, sans-serif;
  font-size: 24px;
  line-height: 36px;
}

.sticky-title {
  z-index: 500;
  color: #000;
  background-color: #fff;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 60px;
  padding-left: 5vw;
  padding-right: 5vw;
  font-family: Forma, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 25px;
  display: flex;
  position: sticky;
  top: 80px;
}

.table-link {
  color: #000;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-family: Forma, sans-serif;
  font-size: 1.8vw;
  line-height: 2vw;
  text-decoration: none;
  display: flex;
  position: relative;
}

.title {
  color: #000;
  letter-spacing: 1px;
  justify-content: flex-start;
  align-items: center;
  font-family: Forma, sans-serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 100px;
}

.title.sticky {
  font-size: 70px;
  line-height: 70px;
  position: sticky;
  top: 50px;
}

.logo-mobile {
  width: 50px;
  margin-bottom: 40px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.form-content {
  text-align: center;
  flex-direction: column;
  max-width: 600px;
  display: flex;
}

.utility-form {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.password-label {
  color: #000;
  margin-bottom: 20px;
  font-family: Forma, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 30px;
}

.form-field {
  width: 90%;
  height: 45px;
  padding-left: 15px;
  padding-right: 15px;
  font-family: Forma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

.button {
  color: #fff;
  background-color: #000;
  border-bottom: 3px solid #000;
  height: 45px;
  padding-top: 13px;
  padding-bottom: 14px;
  font-family: Forma, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 17px;
  transition: background-color .2s;
}

.button:hover {
  color: #000;
  background-color: #0000;
}

.button.nav-secondary {
  z-index: 200;
  color: #000;
  background-color: #0000;
  border-bottom-style: none;
  margin-right: 20px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.button.nav-secondary:hover {
  border-bottom-style: solid;
}

.nav {
  z-index: 2000;
  border-bottom: 3px solid #000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 80px;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.nav-logo {
  width: 50px;
  position: relative;
}

.nav-links {
  z-index: 10;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  margin-right: 2vw;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.nav-links.temp {
  margin-right: 2vw;
  padding-right: 250px;
}

.masked-headline {
  border-bottom: 3px solid #000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 10vw;
  padding-top: 15px;
  padding-bottom: 15px;
  display: flex;
  overflow: hidden;
}

.header {
  z-index: 100;
  background-color: #e6e6e6;
  width: 100%;
  margin-top: 80px;
  position: relative;
  inset: 0%;
  overflow: hidden;
}

.headline-slide {
  color: #000;
  margin-top: -10px;
  padding-left: 2vw;
  font-family: Forma, sans-serif;
  font-size: 9vw;
  line-height: 160px;
}

.header-lockup {
  z-index: 100;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.background {
  z-index: 0;
  background-color: #e6e6e6;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0%;
}

.styles {
  width: 100%;
  padding-top: 40vh;
  position: relative;
}

.header-animation {
  z-index: 0;
  justify-content: flex-end;
  align-items: flex-end;
  margin-bottom: -13vw;
  padding-top: 10vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-body {
  padding: 50px 2vw 100px;
}

.section-overview {
  z-index: 100;
  background-color: #e6e6e6;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 100px;
  padding-left: 2vw;
  position: relative;
  overflow: hidden;
}

.section-chart {
  z-index: 100;
  width: 100%;
  height: 100vh;
}

.section-chart._02 {
  z-index: 100;
  position: relative;
}

.section-chart._01 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: block;
  position: relative;
}

.section-chart._03 {
  z-index: 100;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}

.section-chart._04 {
  z-index: 100;
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100vh;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  position: relative;
}

.logo-container {
  z-index: 10;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  margin-left: 2vw;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.logo-tagline {
  color: #000;
  margin-left: 15px;
  font-family: Forma, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.nav-background {
  z-index: 0;
  background-color: #e6e6e6;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.section-map {
  z-index: 600;
  width: 100%;
  position: relative;
}

.section-feed {
  z-index: 100;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.footer {
  z-index: 100;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 70vh;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.stack {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  padding: 0;
}

.stack.pad-top {
  margin-top: 50px;
}

.stack-cell {
  padding-right: 5vw;
}

.chart-dots {
  border-bottom: 3px solid #000;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  width: 100vw;
  height: 100%;
  display: flex;
}

.chart-column {
  flex-flow: wrap-reverse;
  place-content: flex-start;
  align-items: stretch;
  width: 50%;
  height: 100%;
  display: flex;
  position: relative;
}

.chart-column.right {
  justify-content: flex-end;
  padding: 0 .5vw .5vw;
}

.chart-column.dots {
  padding: 0 .5vw .5vw;
}

.chart-dot {
  background-color: #000;
  border-radius: 100%;
  width: 3.5vw;
  height: 3.4vw;
  margin-bottom: 1vw;
  margin-left: .5vw;
  margin-right: .5vw;
}

.lockup-chart-01 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-top: 15vh;
  padding-left: 2vw;
  padding-right: 2vw;
  position: absolute;
  inset: 0% auto auto 0%;
}

.lockup-chart-01.mobile {
  display: none;
}

.headline-primary {
  width: 90%;
}

.chart-line-vertical {
  background-color: #000;
  width: 3px;
  height: 100%;
  position: relative;
  inset: 0% auto auto 0%;
}

.chart-bottom {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 80px;
  margin-top: -80px;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
  position: relative;
  inset: auto 0% 0%;
}

.chart-bottom.footer-bottom {
  border-bottom-style: none;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.chart-bottom.no-top {
  border-top-style: none;
  margin-top: 0;
}

.chart-bottom.no-top.mobilehide {
  display: none;
}

.bottom-label {
  margin-bottom: 0;
}

.bottom-label.bottom {
  margin-bottom: 25px;
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.graph-bar-container {
  border-left: 3px solid #000;
  justify-content: flex-start;
  align-items: flex-end;
  width: 33.33%;
  height: 100%;
  padding-left: 20px;
  display: flex;
  position: relative;
}

.graph-bar-container._01 {
  position: relative;
  inset: auto auto 0% 0%;
}

.bar-graph-percent {
  color: #fff;
  font-family: Forma, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
}

.bar-fill {
  background-color: #000;
  width: 100%;
  height: 50%;
  padding-top: 20px;
  padding-left: 20px;
  position: absolute;
  inset: auto 0% 0%;
  overflow: hidden;
}

.bar-fill._01 {
  height: 67%;
}

.bar-fill._02 {
  height: 65%;
}

.bar-fill._03 {
  width: 101%;
  height: 57%;
}

.chart-swipe-lockup {
  z-index: 100;
  border-top: 3px solid #000;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 96vw;
  min-height: 20vh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5vh;
  padding-bottom: 5vh;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.swipe-number {
  z-index: 200;
  color: #000;
  margin-top: 15vh;
  margin-left: 2vw;
  font-family: Forma, sans-serif;
  font-size: 34vw;
  font-weight: 700;
  line-height: 28vw;
  display: none;
  position: absolute;
  inset: 0% auto auto 0%;
}

.row-feed {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-left: 2vw;
  padding-right: 2vw;
  overflow: hidden;
}

.cell-text {
  padding-right: 5vw;
}

.cell-number {
  font-size: 6vw;
  font-weight: 500;
  line-height: 6vw;
}

.cell-number.hidden {
  display: none;
}

.cell-headline {
  font-size: 40px;
  font-weight: 400;
  line-height: 45px;
}

.cell-body {
  font-size: 22px;
  line-height: 32px;
}

.cell-image {
  object-fit: cover;
  height: 100%;
}

.title-findings {
  text-align: right;
  padding: 20px 2vw;
}

.header-subhead-text {
  margin-top: -5px;
  font-size: 5vw;
  line-height: 4.5vw;
}

.header-body-text {
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 38px;
}

.overview-headline {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 7.5vw;
  font-weight: 400;
  line-height: 6.6vw;
}

.overview-body {
  padding-right: 5vw;
  line-height: 40px;
}

.map {
  z-index: 200;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 5vh 1vw;
  display: flex;
  position: relative;
}

.map-lockup {
  z-index: 100;
  margin-bottom: 50px;
  padding-top: 100px;
  padding-left: 2vw;
  padding-right: 2vw;
  position: relative;
}

.map-container {
  z-index: 0;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
}

.map-base {
  z-index: 0;
  width: 100%;
  position: relative;
}

.map-01 {
  z-index: 100;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-02 {
  z-index: 200;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-03 {
  z-index: 300;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-04 {
  z-index: 400;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-05 {
  z-index: 500;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-06 {
  z-index: 600;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-07 {
  z-index: 700;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-08 {
  z-index: 800;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-09 {
  z-index: 900;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-10 {
  z-index: 1000;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-11 {
  z-index: 1100;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-dots {
  z-index: 1300;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.map-dot-container {
  z-index: 0;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-top: 0%;
  margin-left: 0%;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.map-dot-container:hover {
  z-index: 1;
}

.map-dot-container.canada {
  margin-top: 11%;
  margin-left: 13%;
}

.map-dot-container.us {
  margin-top: 19%;
  margin-left: 17%;
}

.map-dot-container.mexico {
  margin-top: 24%;
  margin-left: 16%;
}

.map-dot-container.brazil {
  margin-top: 34%;
  margin-left: 31%;
}

.map-dot-container.uk {
  margin-top: 13%;
  margin-left: 43%;
}

.map-dot-container.spain {
  margin-top: 18.5%;
  margin-left: 44%;
}

.map-dot-container.germany {
  margin-top: 13%;
  margin-left: 48%;
}

.map-dot-container.india {
  margin-top: 22%;
  margin-left: 67%;
}

.map-dot-container.australia {
  margin-top: 37%;
  margin-left: 82%;
}

.map-dot-container.indonesia {
  margin-top: 30%;
  margin-left: 77%;
}

.map-dot-container.japan {
  margin-top: 20%;
  margin-left: 83%;
}

.map-dot-container.france {
  margin-top: 15.5%;
  margin-left: 46%;
}

.map-12 {
  z-index: 1200;
  filter: saturate(0%);
  width: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.embed {
  position: fixed;
  inset: 0% auto auto 0%;
}

.map-dot {
  z-index: 100;
  cursor: pointer;
  background-color: #ff8900;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  position: relative;
}

.dot-row {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.dot-row.mobile {
  display: none;
}

.new-dot-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2.5vw 10px;
  display: flex;
  position: relative;
}

.new-dot {
  background-color: #000;
  border-radius: 100%;
  width: 4vw;
  height: 4vw;
  position: absolute;
}

.new-dot.empty {
  opacity: 0;
}

.new-dot.outline {
  outline-offset: -3px;
  background-color: #0000;
  outline: 3px solid #000;
}

.square-chart-container {
  border-left: 3px solid #000;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  width: 50vw;
  height: 100%;
  display: flex;
  position: relative;
  inset: 0% auto auto 0%;
}

.square-dark {
  background-color: #000;
  width: 40vw;
  height: 70vh;
  position: absolute;
  inset: auto auto 0% 0%;
}

.square-light {
  z-index: 100;
  background-color: #e6e6e6;
  width: 36vw;
  height: 64vh;
  position: absolute;
  inset: auto auto 0% 0%;
}

.light-line {
  background-color: #000;
  width: 96vw;
  height: 3px;
}

.dark-line {
  background-color: #000;
  width: 52vw;
  height: 3px;
  margin-left: -3px;
}

.square-percentage {
  color: #000;
  margin-top: -97px;
  margin-left: 52vw;
  font-family: Forma, sans-serif;
  font-size: 140px;
  font-weight: 700;
  line-height: 100px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.square-body {
  width: 35%;
  font-size: 18px;
  line-height: 26px;
}

.square-body-lockup {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 44vw;
  margin-top: 20px;
  margin-left: 52vw;
  display: flex;
}

.square-subhead {
  width: 65%;
  margin-top: 0;
  padding-right: 2vw;
  font-size: 32px;
  font-weight: 400;
  line-height: 32px;
}

.square-light-percentage {
  color: #000;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-left: 20px;
  font-family: Forma, sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 40px;
  position: absolute;
  inset: 0% auto auto 0%;
}

.bar-chart-label {
  color: #fff;
  margin-bottom: 30px;
  margin-left: 20px;
  font-family: Forma, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.chart-footer {
  border: 3px solid #000;
  width: 100%;
  height: 20vh;
  margin-bottom: 50px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.footer-lockup {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 20vh;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
  position: absolute;
  inset: 0% 0% auto;
}

.chart-fill {
  background-color: #000;
  width: 13%;
  height: 100%;
  position: relative;
}

.fill-text-1 {
  color: #fff;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 20px;
  font-family: Forma, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.fill-text-2 {
  color: #000;
  width: 100%;
  margin-bottom: 20px;
  margin-left: 100%;
  padding-left: 20px;
  font-family: Forma, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 18px;
  position: absolute;
  inset: auto auto 0% 0%;
}

.chart-percentages {
  color: #000;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  margin-bottom: 10px;
  font-family: Forma, sans-serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 80px;
  display: flex;
}

.footer-logo {
  width: 40px;
  height: 100%;
  position: relative;
  inset: 0% 0% auto auto;
}

.nav-trigger {
  width: 10px;
  height: 90vh;
  position: absolute;
  inset: 0% auto auto 0%;
}

.main-title {
  color: #000;
  width: 100%;
  padding-left: 2vw;
  font-family: Forma, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 32px;
  position: relative;
}

.location-details {
  z-index: 1000;
  text-align: left;
  background-color: #ff8900;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 33vw;
  height: 100vh;
  margin-right: -33vw;
  padding: 80px 2vw 50px;
  display: flex;
  position: fixed;
  inset: 0% 0% 0% auto;
}

.world-stat {
  color: #000;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  font-family: Forma, sans-serif;
  font-weight: 500;
  display: flex;
}

.stat-rule {
  background-color: #000;
  width: 100%;
  height: 3px;
}

.location-name {
  color: #000;
  margin-top: 5vh;
  font-family: Forma, sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 40px;
}

.stat-primary {
  font-size: 50px;
  font-weight: 600;
  line-height: 50px;
}

.stat-subhead {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 21px;
}

.dot-arrow {
  z-index: 200;
  opacity: 0;
  margin-left: 1px;
  position: absolute;
}

.dot-closer {
  z-index: 1000;
  background-color: #0000;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.percent-mover {
  color: #000;
  margin-top: -93px;
  font-family: Forma, sans-serif;
  font-size: 80px;
  font-weight: 600;
  line-height: 80px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.chart-love-headline {
  margin-top: 0;
}

.site-title {
  justify-content: flex-start;
  align-items: center;
  height: 2vw;
  margin-bottom: 1vw;
  display: flex;
}

.square {
  border: 3px solid #000;
  width: 30vw;
  height: 30vw;
  position: relative;
  right: -3px;
}

.circle {
  border: 3px solid #000;
  border-radius: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  width: 30vw;
  height: 30vw;
  margin-right: -15vw;
  position: relative;
  right: -3px;
}

.circle-mask {
  z-index: 300;
  background-color: #e6e6e6;
  border: 3px solid #000;
  border-top-right-radius: 15vw;
  border-bottom-right-radius: 15vw;
  width: 15vw;
  height: 30vw;
  margin-top: -3px;
  margin-right: -3px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.circle-fill {
  z-index: 200;
  perspective-origin: 0%;
  transform-origin: 0%;
  background-color: #83f959;
  border: 3px solid #000;
  border-top-right-radius: 15vw;
  border-bottom-right-radius: 15vw;
  width: 15vw;
  height: 30vw;
  margin-top: -3px;
  margin-right: -3px;
  position: absolute;
  inset: 0% 0% auto auto;
  transform: rotate(-33deg);
}

.square-small {
  perspective-origin: 100% 100%;
  transform-origin: 100% 100%;
  background-color: #0000;
  border: 3px solid #000;
  justify-content: flex-start;
  align-items: flex-start;
  width: 15vw;
  height: 15vw;
  margin-bottom: -3px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.circle-small {
  float: right;
  perspective-origin: 50%;
  transform-origin: 50%;
  border: 3px solid #000;
  border-radius: 100%;
  width: 9vw;
  height: 9vw;
  margin-top: 6vw;
  position: relative;
  inset: 0 0% auto auto;
  transform: rotate(0);
}

.circle-small-half {
  background-color: #0096d6;
  border: 3px solid #000;
  border-top-right-radius: 9vw;
  border-bottom-right-radius: 9vw;
  width: 4.5vw;
  height: 9vw;
  margin-top: -3px;
  margin-right: -3px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.animation {
  flex-direction: row;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.small-square-fill {
  background-color: #ffbd3b;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.global-headline {
  margin-top: 0;
  padding-right: 2vw;
}

.stroke-text {
  color: #0000;
  -webkit-text-stroke-width: 3px;
  -webkit-text-stroke-color: #000;
  padding-left: 1.5vw;
  font-family: Forma, sans-serif;
  font-size: 32vw;
  font-weight: 800;
  line-height: 25vw;
  position: relative;
}

.fill-text {
  color: #000;
  margin-left: 1.5vw;
  font-family: Forma, sans-serif;
  font-size: 32vw;
  font-weight: 800;
  line-height: 25vw;
  position: absolute;
  inset: auto auto 0% 0%;
}

.fill-box {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  height: 55vh;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.filler {
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 83%;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
  overflow: hidden;
}

.image-full {
  width: 100%;
}

.mobile-nav {
  z-index: 10;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
  padding-right: 2vw;
  display: none;
  position: absolute;
  inset: 0% 0% auto auto;
}

.hamburger {
  z-index: 0;
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 75px;
  height: 75px;
  display: flex;
  position: relative;
}

.menu-trigger-on {
  z-index: 200;
  width: 100%;
  height: 100%;
  position: relative;
}

.menu-trigger-off {
  z-index: 100;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.menu {
  grid-column-gap: 1vw;
  grid-row-gap: 1vw;
  background-color: #e6e6e6;
  border-bottom: 3px solid #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.mobile-nav-body {
  text-align: center;
  width: 85%;
  max-width: 920px;
}

.mobile-nav-body.balance {
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 30px;
}

.icon-close {
  z-index: 0;
  justify-content: center;
  align-items: center;
  width: 30px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.panel-close {
  cursor: pointer;
  width: 40px;
  margin-top: 100px;
  margin-right: 15px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.flex-feed {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 5vw;
  display: flex;
  position: relative;
}

.flex-feed.flip {
  flex-direction: row-reverse;
}

.flex-feed.hidden {
  display: none;
}

.flex-text {
  border-top: 3px solid #000;
  border-bottom: 3px solid #000;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  max-width: 48vw;
  height: 100%;
  padding-top: 5%;
  padding-bottom: 5%;
  padding-left: 2vw;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.flex-text.flip {
  width: 100%;
  inset: 0% auto auto 0%;
}

.flex-image {
  width: 49%;
  position: relative;
}

.flex-image.flip {
  width: 49%;
}

.mobile-chart, .chart-body.hide {
  display: none;
}

.charts {
  width: 100%;
  height: 600vh;
  overflow: hidden;
}

.france-footnote {
  z-index: 200;
  color: #000;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  margin-top: 20px;
  font-family: Forma, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  display: flex;
}

.logo-black {
  opacity: 0;
}

.logo-blue {
  position: absolute;
}

.chart-text {
  width: 100%;
  height: 100%;
}

.map-sliders {
  z-index: 1400;
  cursor: pointer;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.box {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.dropdown-icon {
  color: var(--white);
  font-size: 20px;
  line-height: 20px;
}

.drop {
  background-color: var(--black);
  color: var(--white);
  width: auto;
  min-height: 45px;
  font-family: Forma, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.drop.secondary {
  background-color: #2e2e2e;
  min-width: 100%;
}

.drop.secondary:hover {
  background-color: #1b1b1b;
}

.drop-toggle {
  width: 100%;
  height: 45px;
  padding-top: 0;
  padding-bottom: 0;
}

.drop-toggle.secondary.w--open {
  background-color: #0096d6;
}

.drop-list {
  color: #fff;
  background-color: #000;
  position: relative;
}

.drop-list.w--open {
  text-align: left;
  background-color: #505050;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.drop-link {
  color: #fff;
  background-image: url('../images/icon-download.svg');
  background-position: 20px;
  background-repeat: no-repeat;
  background-size: 10px;
  padding-left: 50px;
}

.drop-link.tertiary {
  background-color: #505050;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 45px;
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 30px;
  font-size: 18px;
  line-height: 45px;
  display: inline-block;
}

.drop-link.tertiary:hover {
  background-color: #444;
}

.drop-text {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 45px;
}

.drop-text.top {
  margin-right: 20px;
}

.nav-dropdown {
  justify-content: flex-end;
  align-items: flex-start;
  margin-right: 2vw;
  position: relative;
}

.nav-dropdown.mobile {
  margin-right: 0;
}

.dropdown-container {
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-start;
  height: 80px;
  padding-top: 17px;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.section-new {
  z-index: 100;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section-new.center {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.new-lockup {
  z-index: 100;
  margin-bottom: 100px;
  padding-left: 2vw;
  padding-right: 2vw;
  position: relative;
}

.new-section-columns {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-end;
  padding-left: 2vw;
  padding-right: 2vw;
  position: relative;
}

.column-half {
  width: 50%;
  margin-top: 4vw;
}

.new-charts-container {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 50%;
  padding-right: 2vw;
  display: flex;
  position: absolute;
  inset: 0% 0% auto auto;
}

.small-dots-chart {
  text-align: center;
  flex-flow: column-reverse;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 190px;
  display: flex;
}

.dot-container {
  width: 87%;
}

.row-dot {
  flex-flow: row;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 1vw;
  display: flex;
  position: relative;
}

.small-dot {
  aspect-ratio: 1;
  background-color: #000;
  border-radius: 100%;
  width: 80%;
  position: relative;
}

.small-dot.blank {
  opacity: .2;
}

.number-percent {
  color: #000;
  margin-top: 10px;
  margin-bottom: 5px;
  font-family: Forma, sans-serif;
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
}

.number-percent-name {
  font-family: Forma, sans-serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 18px;
}

.small-dot-container {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.row-counter {
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.quote-secondary {
  text-align: left;
  width: 70%;
  margin-bottom: 0;
  font-size: 2.2vw;
  line-height: 2.8vw;
}

.quote {
  color: #000;
  text-align: left;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 90%;
  margin-bottom: 20px;
  font-family: Forma, sans-serif;
  font-size: 5vw;
  font-weight: 400;
  line-height: 5vw;
}

.line-rule {
  background-color: #000;
  width: 70%;
  height: 3px;
  margin-top: 70px;
}

.text-block {
  margin-bottom: 40px;
}

.hide-block {
  flex-flow: column;
  width: 100%;
  display: none;
}

.footer-block {
  color: #000;
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 2vw;
  font-family: Forma, sans-serif;
  font-size: 4vw;
  font-weight: 500;
  line-height: 7vw;
  display: flex;
}

.text-block-2 {
  z-index: 0;
  opacity: .14;
  color: #000;
  text-align: center;
  font-family: Forma, sans-serif;
  font-size: 60vw;
  font-weight: 700;
  line-height: 50vw;
  position: absolute;
  inset: 0%;
}

.counter9 {
  z-index: 0;
  pointer-events: none;
}

.counter-up-container {
  color: #f0f0f0;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-family: Forma, sans-serif;
  font-size: 90vh;
  font-weight: 700;
  display: flex;
  position: relative;
  bottom: -10vh;
}

.full-image {
  z-index: 0;
  width: 85vh;
  position: absolute;
  inset: auto 0% 0% auto;
}

@media screen and (max-width: 991px) {
  .button.menu-button {
    color: var(--black);
    background-color: #0000;
  }

  .logo-header {
    margin-top: 0;
  }

  .masked-headline {
    height: 60px;
    margin-top: 6px;
  }

  .headline-slide {
    font-size: 60px;
  }

  .background {
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    display: flex;
  }

  .header-animation {
    height: auto;
    margin-bottom: 0;
    padding-top: 100px;
    padding-bottom: 60px;
  }

  .header-body {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .section-overview {
    padding-top: 0;
    padding-bottom: 50px;
    padding-right: 2vw;
  }

  .section-chart._02 {
    height: auto;
  }

  .section-chart._01 {
    justify-content: space-between;
    align-items: flex-start;
    height: auto;
    display: flex;
  }

  .section-chart._03 {
    flex-direction: column-reverse;
    align-items: flex-start;
    height: auto;
    display: flex;
  }

  .section-chart._04 {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    height: auto;
    display: flex;
  }

  .section-map, .section-feed {
    height: auto;
  }

  .footer {
    justify-content: space-between;
    align-items: center;
    height: auto;
  }

  .stack-cell {
    padding-right: 0;
  }

  .chart-dots {
    display: none;
    position: relative;
  }

  .chart-dots.bar {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    padding-bottom: 0;
    display: flex;
  }

  .chart-column {
    width: 100%;
  }

  .chart-column.bar {
    height: 500px;
  }

  .lockup-chart-01 {
    margin-top: 100px;
    margin-bottom: 20px;
    position: relative;
  }

  .lockup-chart-01.mobile {
    margin-top: 50px;
    margin-bottom: 50px;
    display: block;
    position: relative;
  }

  .lockup-chart-01.desktop, .chart-line-vertical {
    display: none;
  }

  .chart-bottom {
    margin-top: 0;
  }

  .chart-bottom.footer-bottom {
    padding-right: 10vw;
  }

  .chart-bottom.no-top.mobilehide {
    display: flex;
  }

  .bottom-label {
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
  }

  .bottom-label.bottom {
    margin-bottom: 0;
    padding-left: 2vw;
    padding-right: 2vw;
    position: relative;
  }

  .chart-swipe-lockup {
    height: auto;
    min-height: auto;
    padding-top: 20px;
    position: relative;
  }

  .swipe-number {
    position: relative;
  }

  .cell-number {
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
  }

  .cell-headline {
    font-size: 40px;
    line-height: 40px;
  }

  .cell-headline.balance {
    font-size: 35px;
    line-height: 35px;
  }

  .cell-body {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 27px;
  }

  .header-subhead-text {
    margin-top: -10px;
    margin-bottom: 10px;
    font-size: 36px;
    line-height: 36px;
  }

  .map-lockup {
    margin-bottom: 0;
    padding-top: 50px;
  }

  .map-dot-container {
    width: 20px;
    height: 20px;
  }

  .map-dot {
    width: 20px;
    max-width: 20px;
    height: 20px;
    max-height: 20px;
  }

  .dot-row.mobile {
    display: flex;
    position: relative;
  }

  .new-dot-container {
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  .new-dot {
    width: 8vw;
    height: 8vw;
  }

  .square-chart-container {
    height: 100vh;
  }

  .square-percentage {
    margin-top: -63px;
    font-size: 90px;
    line-height: 67px;
  }

  .square-body.balance {
    width: 100%;
  }

  .square-body-lockup {
    flex-direction: column;
    width: 100%;
  }

  .square-subhead.balance {
    width: 100%;
  }

  .chart-footer {
    height: 200px;
  }

  .footer-lockup {
    margin-top: 100px;
    margin-bottom: 100px;
    padding-left: 2vw;
    padding-right: 2vw;
    position: relative;
  }

  .location-details {
    width: 70vw;
    margin-right: -70vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .percent-mover {
    inset: 0% auto auto 0%;
  }

  .chart-love-headline.balance {
    font-size: 40px;
    line-height: 42px;
  }

  .chart-love-body.balance {
    font-size: 20px;
    line-height: 30px;
  }

  .site-title {
    margin-bottom: 3vw;
    font-size: 25px;
    line-height: 25px;
  }

  .square, .circle {
    width: 50vw;
    height: 50vw;
  }

  .circle-mask, .circle-fill {
    border-top-right-radius: 25vw;
    border-bottom-right-radius: 25vw;
    width: 25vw;
    height: 50vw;
  }

  .square-small {
    width: 35vw;
    height: 35vw;
  }

  .circle-small {
    width: 20vw;
    height: 20vw;
    margin-top: -5vw;
  }

  .circle-small-half {
    border-top-right-radius: 20vw;
    border-bottom-right-radius: 20vw;
    width: 10vw;
    height: 20vw;
  }

  .global-headline {
    font-size: 50px;
    line-height: 50px;
  }

  .global-headline.balance {
    font-size: 40px;
    line-height: 40px;
  }

  .stroke-text {
    padding: 0;
  }

  .fill-text {
    margin: 0;
    inset: auto auto 0% 0%;
  }

  .fill-box {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    height: auto;
    margin-top: 100px;
    margin-bottom: 20px;
    position: relative;
  }

  .filler {
    inset: auto auto 0% 0%;
  }

  .paragraph {
    text-align: left;
  }

  .flex-text {
    height: auto;
    margin-left: 49vw;
    position: relative;
  }

  .flex-text.flip {
    margin-left: 0;
    margin-right: 49vw;
  }

  .flex-image {
    height: 100%;
    position: absolute;
  }

  .mobile-chart {
    border-bottom: 3px solid #000;
    width: 100%;
    padding-bottom: 2vw;
    display: block;
    position: relative;
  }

  .chart-body {
    line-height: 30px;
  }

  .charts {
    height: auto;
  }

  .chart-text {
    margin-bottom: 40px;
    display: none;
    position: relative;
  }

  .box {
    min-height: 80vh;
    padding-left: 2vw;
  }

  .nav-dropdown.mobile {
    margin-right: 0;
  }

  .section-new {
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .section-new.center {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .new-lockup {
    margin-bottom: 60px;
  }

  .column-half {
    margin-top: 0;
  }

  .number-percent {
    font-size: 30px;
    line-height: 35px;
  }

  .quote-secondary {
    width: 90%;
    font-size: 4vw;
    line-height: 5vw;
  }

  .text-block {
    font-size: 8vw;
    line-height: 8vw;
  }

  .counter-up-container {
    display: none;
    position: absolute;
  }

  .full-image {
    width: 100%;
    position: relative;
  }

  .text-block-3 {
    font-size: 7vw;
    line-height: 8vw;
  }
}

@media screen and (max-width: 767px) {
  .button.nav-secondary, .nav-links {
    display: none;
  }

  .header-body {
    padding-top: 50px;
  }

  .section-overview {
    padding-left: 2vw;
    padding-right: 2vw;
  }

  .logo-tagline {
    font-size: 18px;
    line-height: 18px;
  }

  .stack-cell {
    padding-right: 0;
  }

  .chart-column.bar {
    height: 350px;
  }

  .lockup-chart-01 {
    margin-bottom: 10px;
  }

  .headline-primary {
    font-size: 40px;
    line-height: 42px;
  }

  .chart-bottom {
    margin-top: 10px;
  }

  .chart-bottom.footer-bottom {
    flex-direction: column-reverse;
    justify-content: center;
    height: auto;
    padding-top: 30px;
    padding-bottom: 10px;
    padding-right: 0;
  }

  .chart-bottom.no-top {
    margin-top: 0;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .bottom-label {
    line-height: 28px;
  }

  .bar-graph-percent {
    font-size: 30px;
    line-height: 30px;
  }

  .row-feed {
    height: auto;
  }

  .cell-text {
    padding-right: 0;
    position: relative;
  }

  .cell-number {
    position: relative;
  }

  .cell-image {
    width: 100%;
  }

  .title-findings {
    padding-bottom: 10px;
  }

  .header-subhead-text {
    margin-top: -30px;
    margin-bottom: 0;
    font-size: 38px;
    line-height: 48px;
  }

  .header-body-text {
    font-size: 22px;
    line-height: 28px;
  }

  .overview-title {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 22px;
  }

  .overview-headline {
    margin-bottom: 10px;
    font-size: 48px;
    line-height: 50px;
  }

  .overview-body {
    font-size: 22px;
    line-height: 34px;
  }

  .map {
    flex-direction: column-reverse;
    padding: 0 0;
  }

  .map-dot {
    width: 16px;
    max-width: 16px;
    height: 16px;
    max-height: 16px;
  }

  .square-dark {
    width: 30vw;
  }

  .square-light {
    width: 22vw;
  }

  .light-line {
    width: 40vw;
    display: none;
  }

  .dark-line {
    width: 40vw;
  }

  .square-percentage {
    margin-left: 45vw;
  }

  .square-body-lockup {
    width: 46vw;
    margin-top: -30px;
    margin-left: 45vw;
  }

  .square-subhead {
    width: 100%;
  }

  .square-light-percentage {
    font-size: 30px;
    line-height: 30px;
  }

  .chart-footer {
    height: 150px;
  }

  .fill-text-1 {
    margin-left: 10px;
  }

  .fill-text-2 {
    padding-left: 10px;
  }

  .footer-percent-2 {
    font-size: 60px;
    line-height: 60px;
  }

  .footer-logo {
    height: auto;
    margin-bottom: 20px;
    position: relative;
  }

  .location-details {
    justify-content: flex-start;
    width: 100vw;
    margin-right: -100vw;
    padding-bottom: 0;
    inset: 0% 0% auto auto;
  }

  .world-stat, .location-name {
    margin-bottom: 20px;
  }

  .percent-mover {
    margin-top: -73px;
    font-size: 60px;
    line-height: 60px;
  }

  .global-headline.balance {
    font-size: 32px;
    line-height: 34px;
  }

  .global-body.balance {
    font-size: 20px;
    line-height: 30px;
  }

  .paragraph {
    font-size: 22px;
    line-height: 22px;
  }

  .mobile-nav {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 0;
    display: flex;
  }

  .menu {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 120px;
  }

  .flex-feed {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .flex-feed.flip {
    flex-direction: column;
    margin-top: 50px;
  }

  .flex-text {
    border-top-style: none;
    width: 100%;
    max-width: none;
    margin-left: 0;
    padding-bottom: 8%;
    padding-left: 0;
  }

  .flex-image {
    justify-content: center;
    align-items: center;
    width: 100%;
    max-height: 400px;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .flex-image.flip {
    width: 100%;
  }

  .france-footnote {
    width: 100vw;
    position: relative;
  }

  .box {
    min-height: auto;
  }

  .nav-dropdown {
    display: none;
  }

  .nav-dropdown.mobile {
    display: block;
  }

  .nav-dropdown.footer-dropper {
    margin-top: 20px;
    display: flex;
  }

  .section-new.center {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .new-section-columns {
    flex-flow: column;
  }

  .column-half {
    text-align: center;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .new-charts-container {
    width: 100%;
    margin-top: 10px;
    position: relative;
  }

  .dot-container {
    width: 70%;
  }

  .small-dot {
    width: 50%;
  }

  .quote-secondary {
    font-size: 25px;
    line-height: 30px;
  }

  .line-rule {
    display: none;
  }

  .text-block {
    margin-bottom: 10px;
    font-size: 40px;
    line-height: 45px;
  }

  .text-block-4 {
    font-size: 45px;
    line-height: 50px;
  }
}

@media screen and (max-width: 479px) {
  .masked-headline {
    margin-top: 0;
    margin-bottom: 1px;
    padding-top: 20px;
  }

  .header-animation {
    padding-bottom: 30px;
  }

  .header-body {
    padding-top: 10px;
  }

  .section-overview {
    padding-top: 0;
  }

  .logo-tagline {
    margin-left: 10px;
  }

  .stack.pad-top {
    margin-top: 20px;
  }

  .headline-primary {
    font-size: 48px;
    line-height: 50px;
  }

  .headline-primary.balance {
    width: 100%;
  }

  .chart-bottom.footer-bottom {
    text-align: center;
    padding-top: 20px;
  }

  .chart-bottom.no-top {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .bar-graph-percent {
    font-size: 28px;
    line-height: 32px;
  }

  .bar-fill {
    padding-left: 10px;
  }

  .header-subhead-text {
    margin-top: 0;
  }

  .overview-headline {
    font-size: 44px;
    line-height: 46px;
  }

  .map-dot {
    width: 12px;
    max-width: 12px;
    height: 12px;
    max-height: 12px;
  }

  .square-chart-container {
    width: auto;
  }

  .square-dark {
    width: 25vw;
  }

  .square-light {
    width: 20vw;
  }

  .light-line {
    width: 40vw;
  }

  .dark-line {
    width: 44vw;
  }

  .square-percentage {
    margin-top: -43px;
    font-size: 60px;
    line-height: 45px;
  }

  .square-body-lockup {
    margin-top: -40px;
  }

  .square-subhead {
    width: 100%;
    padding-right: 0;
    font-size: 26px;
  }

  .square-light-percentage {
    margin-top: 10px;
    margin-left: 10px;
    font-size: 20px;
  }

  .bar-chart-label {
    margin-left: 10px;
    font-size: 14px;
    line-height: 14px;
  }

  .chart-footer {
    height: 90px;
  }

  .fill-text-1, .fill-text-2 {
    opacity: 0;
  }

  .footer-logo {
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
    inset: 0% auto auto 0%;
  }

  .stat-primary {
    font-size: 40px;
    line-height: 40px;
  }

  .stat-subhead {
    margin-top: 0;
    font-size: 18px;
    line-height: 20px;
  }

  .site-title {
    margin-bottom: 5vw;
    font-size: 20px;
    line-height: 20px;
  }

  .global-headline.balance {
    font-size: 30px;
    line-height: 30px;
  }

  .stroke-text, .fill-text {
    font-size: 47vw;
    line-height: 34vw;
  }

  .fill-box {
    margin-top: 50px;
  }

  .flex-image.flip {
    max-height: 260px;
  }

  .chart-body {
    font-size: 20px;
    line-height: 22px;
  }

  .france-footnote {
    padding-right: 7vw;
  }

  .section-new.center {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .new-lockup {
    margin-bottom: 30px;
  }

  .quote-secondary {
    width: 100%;
    font-size: 20px;
    line-height: 26px;
  }

  .quote {
    width: 100%;
  }

  .text-block {
    font-size: 30px;
    line-height: 36px;
  }

  .full-image {
    margin-bottom: 40px;
  }

  .text-block-3 {
    font-size: 11vw;
    line-height: 12vw;
  }
}

#w-node-b53ee429-813e-0930-1233-e003f69b10f6-36b45100 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-b53ee429-813e-0930-1233-e003f69b10f7-36b45100, #w-node-b53ee429-813e-0930-1233-e003f69b10f8-36b45100 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b95bca43-c109-fa63-27c5-25ba2b93d287-36b45100 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.5fr;
}

#w-node-b95bca43-c109-fa63-27c5-25ba2b93d288-36b45100, #w-node-b95bca43-c109-fa63-27c5-25ba2b93d28b-36b45100 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b4d7e80b-b326-5cb7-0b4a-9fc1d6ec5014-36b45100 {
  grid-template-rows: auto;
  grid-template-columns: .75fr 1.5fr;
}

#w-node-b4d7e80b-b326-5cb7-0b4a-9fc1d6ec5015-36b45100, #w-node-b4d7e80b-b326-5cb7-0b4a-9fc1d6ec5018-36b45100 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2671fde4-65f4-e2e6-32c4-1dbc403301d9-36b45100 {
  grid-template-rows: auto;
  grid-template-columns: 3.75fr 1.75fr;
}

#w-node-_2671fde4-65f4-e2e6-32c4-1dbc403301da-36b45100, #w-node-_2671fde4-65f4-e2e6-32c4-1dbc403301dd-36b45100 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_776eccd1-f07d-727f-a003-aec518157812-36b45100 {
  grid-template-rows: auto;
  grid-template-columns: 1.75fr .5fr;
}

@media screen and (max-width: 991px) {
  #w-node-b53ee429-813e-0930-1233-e003f69b10f6-36b45100 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-b95bca43-c109-fa63-27c5-25ba2b93d287-36b45100 {
    grid-template-rows: auto;
    grid-template-columns: 1.5fr;
  }

  #w-node-b4d7e80b-b326-5cb7-0b4a-9fc1d6ec5014-36b45100 {
    grid-template-rows: auto;
    grid-template-columns: .75fr 1.5fr;
  }

  #w-node-_776eccd1-f07d-727f-a003-aec518157812-36b45100 {
    grid-template-rows: auto;
    grid-template-columns: 1.25fr .5fr;
  }
}

@media screen and (max-width: 767px) {
  #w-node-b95bca43-c109-fa63-27c5-25ba2b93d287-36b45100, #w-node-b4d7e80b-b326-5cb7-0b4a-9fc1d6ec5014-36b45100 {
    grid-template-rows: auto;
    grid-template-columns: 1.25fr;
  }

  #w-node-_2671fde4-65f4-e2e6-32c4-1dbc403301d9-36b45100 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_776eccd1-f07d-727f-a003-aec518157812-36b45100 {
    grid-template-rows: auto;
    grid-template-columns: 1.5fr;
  }
}


@font-face {
  font-family: 'Forma';
  src: url('../fonts/FormaDJRUI.woff2') format('woff2'), url('../fonts/FormaDJRUI.woff') format('woff'), url('../fonts/FormaDJRUI.ttf') format('truetype');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}