<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
  width: 100%;
}

body {
  color: #575757;
  font-family: 'Typold';
  font-size: 1.8rem;
  font-weight: 400;
  overflow-x: hidden;
}

body.overlay:after {
  background-color: rgba(0, 0, 0, 0.6);
  content: '';
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 8;
}

strong {
  font-weight: 700;
}

small {
  font-size: 0.8em;
}

sub {
  font-size: 0.6em;
  text-transform: none;
}

sup {
  font-size: 0.6em;
  text-transform: none;
  vertical-align: super;
}

.container {
  height: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 50px;
  position: relative;
  width: 100%;
}

.header {
  background-color: #fff;
  left: 0;
  padding-bottom: 20px;
  padding-top: 28px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

.header--shadow {
  box-shadow: 0 0 3px 1px rgba(0, 0, 0, 0.3);
}

.header__container {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  display: flex;
  display: -webkit-flex;
  width: 100%;
}

.branding {
  color: inherit;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  margin-right: 50px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.branding:hover {
  opacity: 0.8;
}

.branding__logo {
  margin-bottom: 5px;
  max-width: 178px;
  width: 100%;
}

.branding__line {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

[lang="fr"] .branding__line {
  letter-spacing: 0;
}

.nav {
  flex: 1;
  -webkit-box-flex: 1;
  position: relative;
}

.nav ul {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  display: flex;
  display: -webkit-flex;
}

.nav__item {
  display: inline-block;
  line-height: 1.1;
  margin-right: 45px;
}

.nav__item:last-child {
  /* margin-right: 0; */
}

.nav__item a,
.nav__lang {
  color: #d50f34;
  display: block;
  font-size: 1.2vw;
  font-weight: 700;
  position: relative;
  text-decoration: none;
}

[lang="fr"] .nav__item a,
[lang="fr"] .nav__lang {
  font-size: 1vw;
}

.nav__item a:after,
.nav__lang:after {
  background-color: #d50f34;
  bottom: -7px;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  opacity: 0;
  position: absolute;
  transform: translateY(2px);
  -ms-transform: translateY(2px);
  -webkit-transform: translateY(2px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  visibility: hidden;
  width: 100%;
}

/* .nav__item--active a:after,
.nav__item a:hover:after {
  opacity: 1;
  transform: translateY(0);
  -ms-transform: translateY(0);
  visibility: visible; */
/* } */
.nav__lang {
  bottom: 0;
  font-weight: 300;
  position: absolute;
  transition: opacity 0.2s ease;
  right: 0;
}

.nav__lang:hover {
  opacity: 0.7;
}

.nav__lang:after {
  display: none;
}

.nav__target {
  border-bottom: 4px solid #d50f34;
  position: fixed;
  top: 60px;
  transform: translateX(-60px);
  -ms-transform: translateX(-60px);
  -webkit-transform: translateX(-60px);
  transition: 0.35s ease;
  z-index: -1;
}

[lang="fr"] .nav__target {
  top: 64px;
}

.main {
  margin-top: 100px;
  overflow-x: hidden;
}

.main a {
  color: #d50f34;
  transition: opacity 0.2s ease;
}

.main a:hover {
  opacity: 0.8;
}

.hero {
  align-items: flex-end;
  -webkit-align-items: flex-end;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  display: flex;
  display: -webkit-flex;
  padding-bottom: 70px;
}

.hero--1 {
  background-image: url('../img/hero1.jpg');
  height: 660px;
}

.hero__content {
  margin: 0 auto;
  max-width: 800px;
  padding: 0 30px;
  text-align: center;
}

.hero__h1 {
  position: relative;
  font-size: 6rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.hero__h1:before {
  animation: animHeroH1Left 1s ease 0s 1 normal;
  background: url('../img/arrow-right.png') center no-repeat;
  background-size: 100%;
  content: '';
  height: 66px;
  left: -80px;
  margin-top: -33px;
  position: absolute;
  top: 50%;
  width: 60px;
}

.hero__h1:after {
  animation: animHeroH1Right 1s ease 0s 1 normal;
  background: url('../img/arrow-left.png') center no-repeat;
  background-size: 100%;
  content: '';
  height: 66px;
  right: -80px;
  margin-top: -33px;
  position: absolute;
  top: 50%;
  width: 60px;
}

@keyframes animHeroH1Left {
  0% {
    left: -150px;
  }

  100% {
    left: -80px;
  }
}

@keyframes animHeroH1Right {
  0% {
    right: -150px;
  }

  100% {
    right: -80px;
  }
}

.hero__copy {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1em;
}

.hero__copy:last-child {
  margin-bottom: 0;
}

.flex {
  display: flex;
  display: -webkit-flex;
}

.flex--reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}

.flex--column {
  flex-direction: column;
  -webkit-flex-direction: column;
}

.flex--align-end {
  align-items: flex-end;
  -webkit-align-items: flex-end;
}

.word {
  color: #fff;
}

.word--green {
  background-color: #009f74;
  background: url('../img/word-arrow-green-bg.png') center repeat;
  background-size: 35px;
}

.word--purple {
  background-color: #551a44;
  background: url('../img/word-arrow-purple-bg.png') center repeat;
  background-size: 35px;
}

.word__video {
  cursor: pointer;
  flex: 2;
  -webkit-box-flex: 2;
  position: relative;
}

.word__video__group {
  position: relative;
  width: calc(100% + 126px);
}

.word__video__group--left {
  left: -126px;
}

.word__video__group&gt;img:first-child {
  width: 100%;
}

/* .word__video__play {
  align-items: center;
  background: url('../img/play-btn.png') center no-repeat;
  background-size: 84px;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 2em;
  height: 6em;
  left: 50%;
  position: absolute;
  justify-content: center;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transition: 0.2s ease;
  width: 6em;
}

.word__video__play:before,
.word__video__play:after {
  border-radius: 100%;
  content: '';
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.word__video__play:before {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 0.2rem white;
  transition: background-color .3s ease, box-shadow .3s ease, fill .3s ease, -webkit-transform .3s ease;
  transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease, fill .3s ease;
  transition: background-color .3s ease, transform .3s ease, box-shadow .3s ease, fill .3s ease, -webkit-transform .3s ease;
}

.word__video__play:after {
  animation: radiate 1.75s ease-out infinite;
}

.word__video__play:hover {
  background: url('../img/play-btn-hover.png') center no-repeat;
  background-size: 84px;
}

.word__video__play:hover:before {
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 0 0.2rem #d50f34;
  transform: scale(1.2);
  -ms-transform: scale(1.2);
}

.word__video__play:hover:after {
  display: none;
}

.word__video__play:after {
  box-shadow: inset 0 0 0 1em rgba(255, 255, 255, 0);
  opacity: 0;
  pointer-events: none;
}

@keyframes radiate {
  0% {
    opacity: 1;
    transform: scale3d(1.2, 1.2, 1);
    -ms-transform: scale3d(1.2, 1.2, 1);
  }

  80% {
    box-shadow: inset 0 0 0 0.2rem rgba(255, 255, 255, 0.8);
    opacity: 0.1;
  }

  100% {
    box-shadow: inset 0 0 0 0.2rem rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: scale3d(1.5, 1.5, 1);
    -ms-transform: scale3d(1.5, 1.5, 1);
  }
} */
.word__video__play {
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.5s ease;
  width: 100%;
  z-index: 1;
}

.word__video__play--story-hero-2 {
  width: 50%;
}

.word__video__play .triangle {
  stroke: #fff;
  stroke-dasharray: 240;
  stroke-dashoffset: 480;
  transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transition: all 0.7s ease-in-out;
}

.word__video__play:hover .triangle {
  animation: nudge 0.7s ease-in-out;
  opacity: 1;
  stroke: #d50f34;
  stroke-dashoffset: 0;
}

@keyframes nudge {
  0% {
    transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
  }

  30% {
    transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    -webkit-transform: translateX(-5px);
  }

  50% {
    transform: translateX(5px);
    -ms-transform: translateX(5px);
    -webkit-transform: translateX(5px);
  }

  70% {
    transform: translateX(-2px);
    -ms-transform: translateX(-2px);
    -webkit-transform: translateX(-2px);
  }

  100% {
    transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
  }
}

.word__video__play .circle {
  opacity: 0.3;
  stroke: #d50f34;
  stroke-dasharray: 650;
  stroke-dashoffset: 650;
  transition: all 0.5s ease-in-out;
}

.word__video__play:hover .circle {
  opacity: 1;
  stroke-dashoffset: 0;
}

.word__copy {
  display: flex;
  display: -webkit-flex;
  flex: 1;
  -webkit-box-flex: 1;
  flex-direction: column;
  -webkit-flex-direction: column;
  justify-content: center;
  -webkit-box-pack: center;
  padding: 45px;
}

.word__h1 {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 80px;
}

.word__title {
  font-size: 2rem;
  line-height: 1.2;
}

.word__title__name {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.quote {
  color: #fff;
  padding-bottom: 70px;
  padding-top: 58px;
}

.quote--green {
  background-color: #009f74;
}

.quote--purple {
  background-color: #551a44;
}

.quote__blockquote {
  font-size: 2.8rem;
  line-height: 1.375;
  padding-left: 93px;
  position: relative;
}

.quote__blockquote:before {
  background: url('../img/quote-mark.png') center no-repeat;
  background-size: 100%;
  content: '';
  height: 40px;
  left: 0;
  position: absolute;
  top: 8px;
  width: 52px;
}

[lang="fr"] .quote__blockquote:before {
  background: url('../img/quote-mark-fr.png') center no-repeat;
  background-size: 100%;
}

.timeline {
  padding-bottom: 50px;
}

.timeline__header {
  background-color: #fff;
  padding: 80px 0;
}

.timeline__h1 {
  color: #551a44;
  flex: 1;
  -webkit-box-flex: 1;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.timeline__desc {
  flex: 1;
  -webkit-box-flex: 1;
  /* margin-left: 150px; */
}

.timeline__desc p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 1em;
}

.timeline__desc p:last-child {
  margin-bottom: 0;
}

.timeline__hero {
  /* background: url('../img/hero2.jpg') center no-repeat; */
  /* background-size: cover; */
  border-bottom: 2px solid #551a44;
  /* height: 568px; */
  position: relative;
}

.timeline__hero img {
  display: block;
  width: 100%;
}

.timeline__cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom: 2px solid #551a44;
  height: 520px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.timeline__cover&gt;img {
  display: block;
  height: 100%;
}

.timeline__col {
  border-bottom: 2px solid #551a44;
  flex: 1;
  -webkit-box-flex: 1;
  padding-bottom: 10px;
  padding-top: 50px;
  position: relative;
}

.timeline__col:first-child:before,
.timeline__col:last-child:before {
  background-color: #551a44;
  display: block;
  content: '';
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 2px;
  z-index: 1;
}

.timeline__col:last-child:before {
  left: 0;
  right: auto;
}

.timeline__col--end {
  border-bottom: 0;
}

.timeline__col--end:first-child:before,
.timeline__col--end:last-child:before {
  /* height: calc(100% - 80px); */
}

.timeline__col--end:first-child:after {
  background-color: #551a44;
  /* bottom: 80px; */
  bottom: 0;
  content: '';
  height: 4px;
  left: 100%;
  margin-left: -60px;
  position: absolute;
  width: 120px;
  z-index: 1;
}

.timeline__accordion {
  background-color: #fff;
  /* cursor: pointer; */
  padding: 20px 118px 20px 80px;
  position: relative;
  width: 100%;
}

.timeline__col:first-child .timeline__accordion {
  padding-left: 60px;
  width: calc(100% - 20px);
}

.timeline__accordion--hero {
  bottom: 0;
  left: 50%;
  max-width: 572px;
  padding: 35px 48px;
  position: absolute;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transition-property: opacity !important;
  width: 100%;
}

.timeline__accordion--cover-top-right {
  padding: 35px 84px;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
}

.timeline__accordion--cover-top-left {
  left: 0;
  padding: 35px 84px;
  position: absolute;
  top: 0;
  width: 50%;
}

.timeline__accordion__content {
  color: #000;
  display: none;
  font-size: 1.6rem;
  padding-top: 32px;
  line-height: 1.3;
  /* width: calc(100% + 80px); */
}

.timeline__accordion__content p:not(:last-child) {
  margin-bottom: 20px;
}

.timeline__accordion__content img {
  margin-bottom: 20px;
  max-width: 100%;
}

.timeline__date {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 15px;
  position: relative;
  text-transform: uppercase;
}

.timeline__date:before {
  background-color: #551a44;
  content: '';
  height: 2px;
  left: -80px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  width: 60px;
}

.timeline__col:first-child .timeline__date:before {
  left: auto;
  right: -138px;
}

.timeline__date--no-tick:before {
  display: none;
}

.timeline__date--top1 {
  margin-top: 35px;
}

.timeline__date--top2 {
  margin-top: 60px;
}

.timeline__date--top3 {
  /* margin-top: -20px; */
}

.timeline__date--top4 {
  margin-top: 155px;
}

.timeline__title {
  color: #551a44;
  cursor: pointer;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  transition: opacity 0.2s ease;
}

.timeline__title:hover {
  opacity: 0.8;
}

.timeline__toggle {
  background: url('../img/timeline_plus.png') center no-repeat;
  background-size: 100%;
  bottom: 0;
  content: '';
  cursor: pointer;
  display: block;
  height: 28px;
  position: absolute;
  right: -82px;
  transition: transform 0.2s ease;
  width: 28px;
}

.timeline__toggle:hover {
  transform: scale(1.1);
  -ms-transform: scale(1.1);
}

.timeline__accordion--open .timeline__toggle {
  background: url('../img/timeline_minus.png') center no-repeat;
  background-size: 100%;
}

.timeline__hero .timeline__date {
  font-size: 1.8rem;
}

.timeline__cover .timeline__date {
  font-size: 1.8rem;
}

.timeline__hero .timeline__toggle {
  right: 0;
}

.timeline__cover .timeline__toggle {
  right: -48px;
}

.timeline__hero .timeline__title {
  font-size: 3rem;
}

.timeline__cover .timeline__title {
  font-size: 3rem;
}

.timeline__img {
  margin-top: 30px;
  width: calc(100% + 82px);
}

.full-video {
  position: relative;
}

.full-video img:first-child {
  display: block;
  width: 100%;
}

.full-video__play {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
  width: 95px;
  z-index: 1;
}

.full-video:hover .full-video__play {
  transform: translate(-50%, -50%) scale(1.2);
  -ms-transform: translate(-50%, -50%) scale(1.2);
  -webkit-transform: translate(-50%, -50%) scale(1.2);
}

.spacer {
  /* background: url('../img/word-arrow-yellow-bg.png') center repeat; */
  height: 55px;
}

.spacer--green {
  background: #009f74 url('../img/word-arrow-green-bg.png') center repeat;
  background-size: 35px;
}

.spacer--yellow {
  background: #e4dd5b url('../img/word-arrow-yellow-bg.png') center repeat;
  background-size: 35px;
}

.spacer--purple {
  background: #291a37 url('../img/word-arrow-purple-bg.png') center repeat;
  background-size: 35px;
}

.spacer--purple-dark {
  background: #291a37 url('../img/word-arrow-purple-dark-bg.png') center repeat;
  background-size: 35px;
}

.story {}

.story__header {
  background-color: #291a37;
  padding: 100px 0;
  text-align: center;
}

.story__h1 {
  color: #e4dd5b;
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.story__subhead {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 300;
  margin: 0 auto;
  max-width: 590px;
  line-height: 1.3;
  width: 100%;
}

.story__hero {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.story__hero&gt;img {
  display: block;
  width: 100%;
}

.story__hero--1 {
  background-image: url('../img/invest-hero1.jpg');
  height: 820px;
}

.story__hero--1 .story__hero__content,
.story__hero--4 .story__hero__content {
  background-color: #e4dd5b;
  bottom: 0;
  left: 0;
  padding: 45px 124px;
  padding-left: 45px;
  position: absolute;
  width: 50%;
}

.story__hero--1 .story__hero__content:before,
.story__hero--4 .story__hero__content:before {
  background-color: #e4dd5b;
  content: '';
  height: 100%;
  position: absolute;
  right: 100%;
  top: 0;
  width: 100vw;
}

.story__hero--2 {
  /* background-image: url('../img/invest-hero2.jpg');
  background-position: 25% center; */
  min-height: 450px;
}

.story__hero--2:before {
  background-image: url('../img/invest-hero2.jpg');
  background-position: 25% center;
  background-size: cover;
  content: '';
  left: 0;
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}

.story__hero--2 .story__hero__content {
  min-height: 450px;
}

.story__hero--2 .story__hero__content,
.story__hero--5 .story__hero__content {
  background-color: #e4dd5b;
  display: flex;
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  height: 100%;
  left: 50%;
  justify-content: center;
  -webkit-box-pack: center;
  padding: 70px 50px;
  padding-right: 0;
  position: relative;
  top: 0;
  width: 50%;
}

.story__hero--2 .story__hero__content:before,
.story__hero--5 .story__hero__content:before {
  background-color: #e4dd5b;
  content: '';
  height: 100%;
  left: 100%;
  position: absolute;
  top: 0;
  width: 100vw;
}

.story--purple .story__hero__content,
.story--purple .story__hero__content:before {
  background-color: #291a37;
}

.story__hero--3 {
  background-image: url('../img/invest-hero3.jpg');
  height: 330px;
}

.story__hero--4 {
  background-image: url('../img/invest-hero4.jpg');
  height: 890px;
}

.story__hero--5 {
  background-image: url('../img/invest-hero5.jpg');
}

.story__hero--6 {
  background-image: url('../img/invest-hero6.jpg');
  height: 330px;
}

/* .story__hero .container {
  max-width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
} */
.story__hero__h2 {
  color: #291a37;
  font-size: 4.8rem;
  /* font-size: 4.1rem; */
  font-weight: 700;
  margin-bottom: 20px;
  width: calc(100% + 90px);
}

.story--purple .story__hero__h2 {
  color: #e4dd5b;
}

.story__hero__h3 {
  color: #000;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

.story__hero p {
  color: #000;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
}

.story--purple p {
  color: #fff;
}

.story__hero p:last-child {
  margin-bottom: 0;
}

.story__stats {
  padding: 115px 0;
}

.story__stats__row {
  display: flex;
  display: -webkit-flex;
  width: 100%;
}

.story__stats__item {
  flex: 1;
  -webkit-box-flex: 1;
  margin-right: 56px;
  text-align: center;
}

.story__stats__item:last-child {
  margin-right: 0;
}

.story__stats__title {
  border-bottom: 4px solid #e4dd5b;
  color: #575757;
  display: block;
  font-size: 2.2rem;
  margin-bottom: 5px;
  padding-bottom: 18px;
}

.story__stats__data {
  color: #291a37;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.3;
}

[lang="fr"] .story__stats__data {
  font-size: 2.2rem;
}

.story__stats__data-small {
  display: block;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-top: 10px;
}

.story__achievements {
  padding: 65px 0;
}

.story__achievements--1 {
  background-color: #e4dd5b;
  color: #000;
}

.story__achievements--2 {
  background-color: #291a37;
  color: #fff;
}

.story__achievements__chart {
  margin-bottom: 30px;
  width: 100%;
}

.story__achievements__row {
  display: flex;
  display: -webkit-flex;
  width: 100%;
}

.story__achievements__left {
  flex: 1;
  -webkit-box-flex: 1;
  margin-right: 100px;
}

.story__achievements__left:last-child {
  margin-right: 0;
}

.story__achievements__right {
  flex: 1;
  -webkit-box-flex: 1;
}

.story__achievements__h3 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.2rem;
  margin-bottom: 30px;
  text-transform: uppercase;
}

[lang="fr"] .story__achievements__h3 {
  font-size: 1.8rem;
}

.story__achievements__h3 small {
  font-size: 0.5em;
}

.story__achievements p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
  margin-bottom: 20px;
}

.bar {
  margin-bottom: 30px;
}

.bar--kenya {
  width: 100%;
}

.bar--uganda {
  width: 56%;
}

.bar--tanzania {
  width: 25%;
}

.bar th {
  color: #000;
  font-weight: 500;
  padding-bottom: 5px;
  text-align: left;
  text-transform: uppercase;
}

.bar__bar td:not(:last-child) {
  height: 22px;
}

.bar__bar td:nth-child(1) {
  background-color: #291936;
}

.bar__bar td:last-child {
  color: #000;
  font-size: 2.2rem;
  font-weight: 500;
  padding-left: 8px;
  vertical-align: top;
}

.bar__bar td:nth-child(2) {
  background-color: #5b4f6b;
}

.bar__foot td {
  color: #000;
  font-size: 1rem;
  font-weight: 400;
  padding-top: 8px;
  position: relative;
  text-align: right;
  text-transform: uppercase;
}

.bar__foot span {
  position: absolute;
  right: 0;
}

.bar--tanzania .bar__foot span {
  right: auto;
  left: 0;
}

.bar--tanzania .bar__foot td:last-child span {
  left: 24px;
}

[lang="fr"] .bar--tanzania .bar__foot td:last-child span {
  left: 48px;
}

/* [lang="fr"] .bar__foot td {
  font-size: 0.6rem;
} */
.bar__foot--left td {
  text-align: left;
}

.bar--kenya .bar__bar td:nth-child(1) {
  width: 50.3%;
}

.bar--kenya .bar__bar td:nth-child(2) {
  width: 49.7%;
}

.bar--uganda .bar__bar td:nth-child(1) {
  width: 53%;
}

.bar--uganda .bar__bar td:nth-child(2) {
  width: 47%;
}

.bar--tanzania .bar__bar td:nth-child(1) {
  width: 75%;
}

.bar--tanzania .bar__bar td:nth-child(2) {
  width: 25%;
}

.reporting {
  padding: 75px 0 100px 0;
}

.reporting__h3 {
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 2px;
  margin-bottom: 78px;
  text-transform: uppercase;
}

.reporting__data {
  flex: 1;
  -webkit-box-flex: 1;
  margin-right: 32px;
  text-align: center;
}

.reporting__data:last-child {
  margin-right: 0;
}

.reporting__num {
  border-bottom: 4px solid #e4dd5b;
  color: #291a37;
  font-size: 13rem;
  font-weight: 900;
  letter-spacing: 1.5rem;
  margin-bottom: 28px;
  padding-bottom: 30px;
}

.reporting__desc {
  font-weight: 300;
  line-height: 1.3;
  padding: 0 20px;
}

.financial {
  background-color: #d50f34;
  color: #fff;
  text-align: center;
  padding: 95px 0;
}

.financial__header {
  margin: 0 auto;
  margin-bottom: 68px;
  max-width: 613px;
  width: 100%;
}

.financial__h1 {
  font-size: 4.8rem;
  font-weight: 700;
  margin-bottom: 35px;
}

.financial__p {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.3;
}

.financial__downloads {
  display: flex;
  display: -webkit-flex;
  padding: 0 40px;
  text-align: center;
  width: 100%;
}

.financial__downloads li {
  flex: 1;
  -webkit-box-flex: 1;
  font-size: 1.8rem;
  font-weight: 500;
}

.financial__downloads a {
  color: #fff;
  position: relative;
  text-decoration: none;
}

.financial__downloads a:after {
  background: url('../img/icon-download.png') center no-repeat;
  background-size: 100%;
  content: '';
  height: 24px;
  position: absolute;
  right: -40px;
  top: -4px;
  width: 26px;
}

.lightbox {
  background-color: #000;
  display: none;
  height: auto;
  left: 50%;
  max-height: 90%;
  max-width: 1920px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 80%;
  z-index: 9;
}

.lightbox--show {
  display: block;
}

.lightbox__close {
  background: url('../img/lightbox-close.png') center no-repeat;
  background-size: 100%;
  height: 40px;
  position: absolute;
  right: -60px;
  top: 0;
  transition: 0.2s ease;
  width: 40px;
  z-index: 9;
}

.lightbox__close:hover {
  transform: scale(1.05);
  -ms-transform: scale(1.05);
}

.lightbox__video-container {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
}

.lightbox__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.back-top {
  background-color: #fff;
  border-radius: 50%;
  bottom: 32px;
  cursor: pointer;
  height: 45px;
  opacity: 0;
  position: fixed;
  right: 32px;
  transition: 0.2s ease;
  width: 45px;
  z-index: 9;
}

.back-top--show {
  opacity: 1;
}

.back-top__img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transition: 0.2s ease;
  width: 55%;
}

.back-top:hover .back-top__img {
  margin-top: -2px;
}

.footer {
  padding: 50px 0 60px 0;
}

.footer__left {}

.footer__logo {
  margin-right: 75px;
  width: 120px;
}

.footer__site {
  color: #575757;
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer__site:hover {
  color: #d50f34;
}

.footer__right {
  flex: 1;
  -webkit-box-flex: 1;
  text-align: right;
}

.footer__canada {
  transition: opacity 0.2s ease;
  width: 102px;
}

.footer__canada:hover {
  opacity: 0.8;
}

.show-desktop {
  display: block !important;
}

.show-mobile {
  display: none !important;
}

.replacecontent {
  background: pink;
}
</pre></body></html>