.header {
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  position: relative;
  color: white;
  text-align: left;
}

.header::before,
.header::after {
  content: "";
  width: 50vh;
  height: 50vh;
  border-radius: 50%;
  display: block;
  position: absolute;
  z-index: 2;
}

.header::before {
  left: -25vh;
  top: 25vh;
  background: #dd5102;
}

.header::after {
  width: 120vh;
  height: 120vh;
  left: -60vh;
  top: -30vh;
  border: 1px dashed white;
  opacity: 0.5;
}

.header h1 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  margin-bottom: 32px;
}

.header .container {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.header .header-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.header .header-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: linear-gradient(180deg, rgba(16, 55, 120, 0.4) 0%, rgba(16, 55, 120, 0) 66.83%),
    linear-gradient(0deg, rgba(16, 55, 120, 0.2), rgba(16, 55, 120, 0.2));
}

.header .header-video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.header-video iframe {
  transform: scale(1.14) translateY(-1%);
}

.header-close {
  width: 40px;
  height: 40px;
  color: white;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 43px;
  left: 50%;
  z-index: 2;
  opacity: 0;
  transform: translateX(-50%) translateY(-100%);
  pointer-events: none;
  cursor: pointer;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.header-close svg {
  width: 50%;
  height: 50%;
  fill: currentColor;
  transition: transform 1s cubic-bezier(0.33, 0.1, 0, 1);
}

.header-close:hover svg {
  transform: scale(0.8);
}

.header-content {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: transform 2s cubic-bezier(0.19, 1, 0.22, 1), opacity 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.header .header-title {
  max-width: 668px;
}

.header .primary-button {
  margin-top: 30px;
}

.header .scroll-button {
  width: 40px;
  height: 40px;
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 575px) {
  .header .scroll-button {
    bottom: 200px;
  }
}

.header .scroll-button svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.header .scroll-button svg path:last-child {
  animation: arrow 3s cubic-bezier(0.83, 0.11, 0.25, 0.88) infinite;
}

.header.playing .header-bg,
.header.playing .header-content {
  opacity: 0;
}

.header.playing .header-bg,
.header.playing .header-bg *,
.header.playing .header-content,
.header.playing .header-content * {
  pointer-events: none;
}

.header.playing .header-content {
  transform: translateY(40%);
}

.header.playing .header-close {
  opacity: 1;
  transform: translateX(-50%) translateY(0%);
  pointer-events: all;
}

@media (max-height: 700px) and (max-width: 780px) {
  .header-close {
    width: 30px;
    height: 30px;
    top: 50px;
  }

  .header-video iframe {
    transform: none;
  }

  .header-content {
    padding-top: 40px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    margin-bottom: 10px;
    font-size: 18px;
  }
}

.header-logo {
  position: absolute;
  left: 50px;
  bottom: 50px;
  height: 55px;
  z-index: 2;
}

.header-logo img {
  height: 55px;
}

@media (max-width: 480px) {
  .header-logo {
    left: 20px;
    bottom: 20px;
    height: 37px;
  }

  .header-logo img {
    height: 37px;
  }
}

@keyframes arrow {
  0% {
    transform: translateY(0%);
  }

  50% {
    transform: translateY(100%);
    opacity: 0;
  }

  51% {
    transform: translateY(100%);
    opacity: 0;
  }

  52% {
    transform: translateY(-100%);
    opacity: 0;
  }

  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

.video-component {
  width: 100%;
  position: relative;
}

.video-component .video-container {
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  pointer-events: all;
}

.video-component .video-container::before {
  content: "";
  display: block;
  padding-bottom: 50%;
}

.video-component .video-container.playing iframe,
.video-component .video-container.playing video {
  opacity: 1 !important;
}

.video-component .video-container.playing .video-cover,
.video-component .video-container.playing .video-button {
  pointer-events: none !important;
}

.video-component .video-container.playing .video-cover {
  opacity: 0;
}

.video-component .video-container.playing .video-button {
  transform: translateY(100%);
  opacity: 0 !important;
  pointer-events: none;
}

.video-component .video-container.loading,
.video-component .video-container.loading * {
  pointer-events: none !important;
}

.video-component .video-container.loading .video-button-square {
  transform: scale(0.7);
}

.video-component .video-container.loading .video-button-square::after {
  animation: a-button-loading 2s cubic-bezier(0.19, 1, 0.22, 1) infinite;
}

.video-component.onebyone .video-container::before {
  padding-bottom: 100%;
}

.video-component .video-caption {
  max-width: 430px;
  display: block;
  margin-top: 23px;
  font-weight: normal;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.3px;
  color: rgba(0, 0, 0, 0.7);
}

.video-component .video-cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-component .video-cover::before,
.video-component .video-cover::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.video-component .video-cover::before {
  background: #00071e;
  opacity: 0;
  z-index: 0;
}

.video-component .video-cover::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(10, 15, 29, 0) 75.75%, rgba(10, 15, 29, 0.8) 100%);
}

.video-component .video-cover:hover {
  cursor: pointer;
}

.video-component .video-button {
  cursor: pointer;
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 60px;
  left: 60px;
  z-index: 3;
  transition: transform 1s cubic-bezier(0.19, 1, 0.22, 1), opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-component .video-button-square {
  width: 100px;
  height: 100px;
  background: #ed8b00;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  transition: border-radius 1s cubic-bezier(0.43, 0.06, 0, 1), transform 1s cubic-bezier(0.43, 0.06, 0, 1),
    opacity 1s cubic-bezier(0.43, 0.06, 0, 1);
}

.video-component .video-button-square::after {
  content: "";
  width: 12px;
  height: 15px;
  background-image: url("data:image/svg+xml,%3Csvg fill='none' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 16'%3E%3Cpath d='m12.662 6.94-10-6.25A1.247 1.247 0 0 0 .75 1.75v12.5a1.25 1.25 0 0 0 1.913 1.06l10-6.25a1.251 1.251 0 0 0 0-2.12Z' fill='%23fff'/%3E%3C/svg%3E");
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

.video-component .video-button span {
  max-width: 830px;
  margin-left: 25px;
  color: white;
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  transition: transform 1s cubic-bezier(0.43, 0.06, 0, 1) 0.1s, opacity 1s cubic-bezier(0.43, 0.06, 0, 1);
}

.video-component .video-button:hover .video-button-square {
  transform: scale(0.8);
}

.video-component .video-button:hover span {
  transform: translateX(-10px);
}

.video-component video,
.video-component iframe {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1);
}

.video-component video {
  height: auto;
}

.video-component iframe {
  height: 100%;
}

.video-component.no-ratio .video-container {
  height: 100%;
}

.video-component.no-ratio .video-container::before {
  content: none;
  display: none;
}

@media (max-width: 768px) {
  .video-component .video-button {
    width: calc(100% - 28px);
    height: auto;
    justify-content: center;
    left: 18px;
    align-items: flex-start;
  }

  .video-component .video-button span {
    width: auto;
    font-size: 12px;
    font-weight: 600;
    line-height: 16px;
    margin-left: 16px;
  }

  .video-component .video-button-square {
    width: 43px;
    min-width: 43px;
    height: 43px;
  }

  .video-component .video-caption {
    font-size: 11px;
    line-height: 14px;
    margin-top: 16px;
  }
}

@keyframes a-button-loading {
  0% {
    transform: translateX(0px);
  }

  30% {
    transform: translateX(80px);
    opacity: 1;
  }

  31% {
    opacity: 0;
    transform: translateX(80px);
  }

  32% {
    opacity: 0;
    transform: translateX(-80px);
  }

  33% {
    opacity: 1;
    transform: translateX(-80px);
  }

  100% {
    transform: translateX(0px);
  }
}

.pre-footer {
  width: 100%;
  height: 90vh;
  position: relative;
  color: white;
  z-index: 1;
}

.pre-footer-bg {
  width: calc(100% - 40px * 2);
  height: 100%;
  position: absolute;
  top: 0;
  left: 40px;
  z-index: 0;
}

.pre-footer-bg::before,
.pre-footer-bg::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}

.pre-footer-bg::before {
  background: #00071e;
  opacity: 0.4;
  z-index: 0;
}

.pre-footer-bg::after {
  z-index: 1;
  background: linear-gradient(71.62deg, rgba(0, 10, 42, 0.8) 27.69%, rgba(0, 10, 42, 0) 70.6%);
}

.pre-footer .small-container {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.pre-footer h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 12px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 64px;
}

.pre-footer h5 {
  font-style: normal;
  font-weight: 600;
  font-size: 72px;
  margin: 0;
}

.pre-footer .primary-button {
  margin-top: 64px !important;
}

.pre-footer .primary-button span {
  text-transform: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  opacity: 1;
}

@media (max-width: 80em) {
  .pre-footer .small-container {
    max-width: calc(100% - 40px * 4) !important;
  }
}

@media (max-width: 890px) {
  .pre-footer {
    height: auto;
    padding: 30px 0;
  }

  .pre-footer .small-container {
    height: auto;
    min-height: 50vw;
    max-width: calc(100% - 20px * 4) !important;
  }

  .pre-footer-bg {
    width: calc(100% - 20px * 2);
    left: 20px;
  }

  .pre-footer h4 {
    font-size: 12px;
    margin-bottom: 26px;
  }

  .pre-footer h5 {
    font-size: 40px;
  }

  .pre-footer .primary-button {
    margin-top: 33px !important;
  }

  .pre-footer .primary-button .primary-button-icon-container {
    width: 30px;
    height: 30px;
    margin-right: 15px;
  }

  .pre-footer .primary-button .primary-button-icon-container svg {
    width: 6px;
  }
}

.nav-tabs {
  display: flex;
  border-bottom: 1px solid #e0e0e0;
  overflow-x: scroll;
  overflow-y: hidden;
  margin-bottom: 80px;
  -ms-overflow-style: none;
  /* IE 11 */
  scrollbar-width: none;
  /* Firefox 64 */
}

.nav-tabs::-webkit-scrollbar {
  display: none;
}

.nav-tabs-wrapper {
  position: relative;
  width: 100%;
}

.nav-tabs-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 27px;
  pointer-events: none;
  background: linear-gradient(270deg, white 10%, rgba(255, 255, 255, 0) 100%);
}

.nav-tabs .btn-tab {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
  cursor: pointer;
  padding-bottom: 14px;
  position: relative;
  opacity: 0.6;
  flex-shrink: 0;
}

.nav-tabs .btn-tab+.btn-tab {
  margin-left: 25px;
}

.nav-tabs .btn-tab.active {
  color: #103778;
  opacity: 1;
}

.nav-tabs .btn-tab.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  left: 0;
  right: 0;
  height: 3px;
  background: #103778;
}

.nav-tabs .btn-tab.arab.active {
  color: #ee8b00;
}

.nav-tabs .btn-tab.arab.active::after {
  background: #ee8b00;
}

.nav-tabs .btn-tab.asia.active {
  color: #0072bb;
}

.nav-tabs .btn-tab.asia.active::after {
  background: #0072bb;
}

.nav-tabs .btn-tab.europe.active {
  color: #0f3779;
}

.nav-tabs .btn-tab.europe.active::after {
  background: #0f3779;
}

.nav-tabs .btn-tab.east-africa.active {
  color: #9562a2;
}

.nav-tabs .btn-tab.east-africa.active::after {
  background: #9562a2;
}

.nav-tabs .btn-tab.latam.active {
  color: #0693a1;
}

.nav-tabs .btn-tab.latam.active::after {
  background: #0693a1;
}

.nav-tabs .btn-tab.west-africa.active {
  color: #da4c19;
}

.nav-tabs .btn-tab.west-africa.active::after {
  background: #da4c19;
}

.nav-tabs .btn-tab:last-child {
  width: auto;
  padding-right: 30px;
}

@media (max-width: 890px) {
  .nav-tabs {
    margin-bottom: 24px;
  }
}

.tabs-funding {
  padding: 60px 0 0 0;
  min-height: 1000px;
}

@media (max-width: 890px) {
  .tabs-funding {
    padding: 30px 0;
    min-height: 350px;
  }
}

.tabs-funding-bottom {
  margin-top: 120px;
}

@media (max-width: 890px) {
  .tabs-funding-bottom {
    margin-top: 31px;
  }
}

.tabs-funding-bottom div:first-child {
  font-size: 16px;
  font-weight: 600;
  line-height: 12px;
  text-transform: uppercase;
}

.tabs-funding-bottom div:not(:first-child) {
  font-size: 56px;
  font-weight: 600;
  line-height: 67px;
  margin-top: 24px;
  position: relative;
  display: inline-block;
}

@media (max-width: 890px) {
  .tabs-funding-bottom div:not(:first-child) {
    font-size: 45px;
    font-weight: 600;
    line-height: 54px;
  }
}

.tabs-funding-footnote {
  font-size: 12px;
  font-weight: 400;
  line-height: 19px;
  text-align: center;
  margin-top: 100px;
  opacity: 0.6;
}

@media (max-width: 890px) {
  .tabs-funding-footnote {
    font-size: 12px;
    font-weight: 400;
    line-height: 19px;
    text-align: left;
    margin-top: 40px;
  }
}

.tabs-funding-container {
  display: flex;
  flex-wrap: wrap-reverse;
}

.tabs-funding-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tabs-funding-right {
  width: 50%;
}

.tabs-funding .paragraph.intro {
  text-transform: none;
  font-size: 20px;
}

@media (max-width: 890px) {
  .tabs-funding .paragraph.intro {
    font-size: 14px;
    line-height: 22px;
  }
}

.tabs-funding-total {
  margin-top: auto;
}

.main-tabs {
  padding: 0;
}

.main-tabs .content-tab {
  display: none;
  position: relative;
}

.main-tabs .content-tab-bg {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 75px;
  right: 75px;
}

@media (max-width: 890px) {
  .main-tabs .content-tab-bg {
    left: 0;
    right: 0;
  }
}

.main-tabs .content-tab-bg img {
  width: 100%;
}

.main-tabs .content-tab .small-container {
  z-index: 1;
  position: relative;
}

.main-tabs .content-tab.active {
  display: block;
}

.header::before {
  background-color: #ED8B00;
}

.footer-cards-wrapper .download-pdf {
  background-color: #eb8900;
}

.paragraph {
  margin: 0;
}

.paragraph.big {
  color: #000;
  font-size: 24px;
  line-height: 36px;
}

@media (max-width: 890px) {
  .paragraph.big {
    font-size: 16px;
    line-height: 150%;
  }
}

#map-tooltip {
  width: 80%;
  max-width: 320px;
  padding: 32px;
  box-sizing: border-box;
  background: white;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 99;
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

#map-tooltip-close {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 16px;
  right: 16px;
  cursor: pointer;
}

#map-tooltip-title {
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
  color: #da4d18;
  margin: 0;
  margin-bottom: 8px;
}

#map-tooltip-description {
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  margin: 0;
  margin-bottom: 15px;
}

#map-tooltip span {
  display: block;
  padding: 15px 0;
  border-top: 1px solid #c4c4c4;
  font-weight: 700;
  font-size: 16px;
  line-height: 150%;
}

#map-tooltip span:last-child {
  padding-bottom: 0;
}

#map-tooltip:not(.show) {
  opacity: 0;
}

#map-tooltip:not(.show),
#map-tooltip:not(.show) * {
  pointer-events: none !important;
}

.tablet {
  display: none;
}

@media (max-width: 890px) {
  .tablet {
    display: block;
  }
}

.section-funding {
  padding-bottom: 0;
}

@media (max-width: 480px) {
  .section-funding {
    padding-bottom: 0;
  }
}

.section-funding .funding-title {
  text-align: center;
}

.section-funding .title-h3 {
  margin-top: 24px;
}

.section-funding .tabs-funding {
  min-height: 900px;
}

@media (max-width: 480px) {
  .section-funding .tabs-funding {
    min-height: 420px;
  }
}

@media (max-width: 890px) {
  .section-funding .content-tab .tablet {
    margin-bottom: 28px;
  }
}

.section-funding .content-tab .tablet .title-h4 {
  font-weight: 600;
  font-size: 20px;
  line-height: 12px;
  margin: 0;
}

.section-funding .content-tab .tablet .title-h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 120%;
}

.section-funding .content-tab .tablet .title-h3:nth-child(1) {
  color: #ee8b00;
}

.section-funding .content-tab .paragraph.intro {
  font-size: 20px;
  font-weight: 600;
  line-height: 12px;
  color: #103778;
}

@media (max-width: 890px) {
  .section-funding .content-tab .paragraph.intro {
    font-size: 14px;
    line-height: 22px;
  }
}

@media (max-width: 890px) {
  .section-funding .content-tab .tabs-funding-top {
    display: none;
  }
}

@media (max-width: 890px) {
  .section-funding .content-tab .tabs-funding-bottom {
    margin-top: 44px;
  }
}

.section-funding .content-tab .tabs-funding-bottom div:last-child {
  color: #ffffff;
  padding: 8px 16px;
}

.section-funding .content-tab.arab .paragraph.intro,
.section-funding .content-tab.arab .tabs-funding-bottom div:first-child,
.section-funding .content-tab.arab .tablet .title-h3 {
  color: #ee8b00;
}

.section-funding .content-tab.arab .tabs-funding-bottom div:last-child {
  background-color: #ee8b00;
}

.section-funding .content-tab.asia .paragraph.intro,
.section-funding .content-tab.asia .tabs-funding-bottom div:first-child,
.section-funding .content-tab.asia .tablet .title-h3 {
  color: #0072bb;
}

.section-funding .content-tab.asia .tabs-funding-bottom div:last-child {
  background-color: #0072bb;
}

.section-funding .content-tab.europe .paragraph.intro,
.section-funding .content-tab.europe .tabs-funding-bottom div:first-child,
.section-funding .content-tab.europe .tablet .title-h3 {
  color: #0f3779;
}

.section-funding .content-tab.europe .tabs-funding-bottom div:last-child {
  background-color: #0f3779;
}

.section-funding .content-tab.east-africa .paragraph.intro,
.section-funding .content-tab.east-africa .tabs-funding-bottom div:first-child,
.section-funding .content-tab.east-africa .tablet .title-h3 {
  color: #9562a2;
}

.section-funding .content-tab.east-africa .tabs-funding-bottom div:last-child {
  background-color: #9562a2;
}

.section-funding .content-tab.latam .paragraph.intro,
.section-funding .content-tab.latam .tabs-funding-bottom div:first-child,
.section-funding .content-tab.latam .tablet .title-h3 {
  color: #0693a1;
}

.section-funding .content-tab.latam .tabs-funding-bottom div:last-child {
  background-color: #0693a1;
}

.section-funding .content-tab.west-africa .paragraph.intro,
.section-funding .content-tab.west-africa .tabs-funding-bottom div:first-child,
.section-funding .content-tab.west-africa .tablet .title-h3 {
  color: #da4c19;
}

.section-funding .content-tab.west-africa .tabs-funding-bottom div:last-child {
  background-color: #da4c19;
}

.section-funding .main-tabs .title-h3 {
  font-size: 56px;
  font-weight: 600;
  line-height: 67px;
}

@media (max-width: 890px) {
  .section-funding .main-tabs .title-h3 {
    font-size: 22px;
    line-height: 26px;
    margin-top: 10px;
  }
}

@media (max-width: 890px) {
  .section-funding .tabs-funding-right {
    width: 100%;
  }

  .section-funding .tabs-funding-left {
    width: 100%;
  }
}

.section-funding .tabs-funding-footnote {
  text-align: left;
}

.section-requirements {
  position: relative;
  color: #ffffff;
}

.section-requirements::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: #000000;
}

.section-requirements-bg {
  z-index: 0;
  position: absolute;
  top: 0;
  right: -37.5%;
  height: 100%;
}

.section-requirements-bg img {
  height: 100%;
}

@media (max-width: 890px) {
  .section-requirements-bg {
    left: 0;
    right: 0;
  }

  .section-requirements-bg img:first-child {
    display: none;
  }

  .section-requirements-bg img {
    width: 100%;
  }
}

.section-requirements .appeal-list,
.section-requirements .subtitle {
  max-width: 808px;
}

.section-requirements .subtitle {
  margin-top: 40px;
  opacity: 0.6;
}

.section-requirements .small-container {
  position: relative;
  z-index: 1;
}

.section-requirements h3 {
  margin: 0px 0 40px 0;
}

@media (max-width: 480px) {
  .section-requirements h3 {
    text-align: left;
    margin: 40px 0 30px 0;
  }
}

.section-requirements .subtitle {
  font-weight: 400;
  font-size: 12px;
  line-height: 160%;
}

.section-map .refs {
  margin: 64px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.section-map .refs .ref {
  font-size: 14px;
  color: #333;
  margin-right: 20px;
  display: flex;
  align-items: center;
  position: relative;
  padding-left: 30px;
}

.section-map .refs .ref:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  margin-right: 7px;
}

.section-map .refs .ref.blue::before {
  background-color: #498bfa;
}

.section-map .refs .ref.orange::before {
  background-color: #ee8b00;
}

@media (max-width: 890px) {
  .section-map .refs {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-map .refs .ref {
    margin: 0 0 10px 0;
  }
}

.section-map .container-map {
  position: relative;
  display: flex;
  justify-content: center;
}

.section-map .container-map path {
  stroke: white;
  stroke-width: 1px;
}

.section-map .container-map .country:not(.disabled) {
  cursor: pointer;
}

.section-map .container-map .country:not(.disabled):hover {
  opacity: 0.9;
}

.section-map .container-map .modal-map {
  left: 0;
  top: 0;
  max-width: 257px;
  position: absolute;
  font-size: 12px;
  text-align: center;
  box-shadow: 0px 0px 24px rgba(101, 101, 101, 0.15);
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
}

.section-map .container-map .modal-map-title,
.section-map .container-map .modal-map-appeal,
.section-map .container-map .modal-map-people {
  height: 27px;
  line-height: 27px;
  color: #ffffff;
  background-color: #ed8b00;
  padding: 0 20px;
}

.section-map .container-map .modal-map-people {
  background-color: #dd5102;
}

.section-map .container-map .modal-map-paragraph {
  color: #222;
  line-height: 1.4;
  padding: 16px;
}

.section-map .container-map .country-bottom-map {
  cursor: pointer;
  transition: ease-in-out 1s all;
  transform-origin: center center;
}

.section-map .container-map .country-bottom-map:hover {
  filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.5)) brightness(1.2);
}

.section-map .container-map .nav-map-mobile {
  display: none;
}

@media (max-width: 890px) {
  .section-map .container-map {
    overflow: hidden;
  }

  .section-map .container-map .nav-map-mobile {
    box-sizing: border-box;
    position: absolute;
    height: 0px;
    width: 100%;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 3;
  }

  .section-map .container-map .nav-map-mobile button {
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
  }

  .section-map .container-map svg {
    transform: scale(1.5) translate(0, 0);
  }

  .section-map .container-map .modal-map {
    left: 50%;
    top: 50%;
    width: 257px;
    z-index: 4;
  }

  .section-map .container-map .modal-map :after {
    content: "";
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.2);
    position: absolute;
    z-index: -1;
  }
}

@media (max-width: 580px) {
  .section-map .container-map svg {
    transform: scale(3) translate(0, 0);
  }
}

.appeal-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.appeal-list li+li {
  margin-top: 16px;
}

.appeal-list .list-item {
  display: flex;
}

.appeal-list .list-item-country {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  padding-right: 20px;
}

.appeal-list .list-item-country.total {
  font-weight: 700;
  font-size: 35px;
  line-height: 240%;
}

@media (max-width: 890px) {
  .appeal-list .list-item-country.total {
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    line-height: 12px;
    text-transform: uppercase;
  }
}

.appeal-list .list-item-founded {
  flex-shrink: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}

@media (max-width: 890px) {
  .appeal-list .list-item-founded {
    font-weight: 600;
    font-size: 14px;
    line-height: 120%;
  }
}

.appeal-list .list-item-founded.total-amount {
  font-weight: 700;
  font-size: 35px;
  line-height: 240%;
}

@media (max-width: 890px) {
  .appeal-list .list-item-founded.total-amount {
    width: 100%;
    font-weight: 700;
    font-size: 30px;
    line-height: 240%;
    text-align: left;
  }
}

.appeal-list.big li {
  position: relative;
}

.appeal-list.big .list-item-country {
  font-weight: 600;
  font-size: 22px;
  line-height: 240%;
}

@media (max-width: 890px) {
  .appeal-list.big .list-item-country {
    font-weight: 600;
    font-size: 14px;
    line-height: 240%;
    padding-right: 25px;
  }
}

.appeal-list.big .list-item-country.total {
  font-weight: 700;
  font-size: 35px;
  line-height: 240%;
}

@media (max-width: 890px) {
  .appeal-list.big .list-item-country.total {
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    line-height: 12px;
    text-transform: uppercase;
    margin-top: 33px;
    margin-bottom: 19px;
  }
}

.appeal-list.big .list-item-founded {
  font-weight: 500;
  font-size: 20px;
  line-height: 240%;
  color: #7593c8;
}

@media (max-width: 890px) {
  .appeal-list.big .list-item-founded {
    font-size: 16px;
    font-weight: 500;
    line-height: 27px;
    text-align: right;
  }
}

.appeal-list.big .list-item-founded.total-amount {
  font-weight: 700;
  font-size: 35px;
  line-height: 240%;
  color: #fff;
}

@media (max-width: 890px) {
  .appeal-list.big .list-item-founded.total-amount {
    width: 100%;
    font-weight: 700;
    font-size: 30px;
    line-height: 240%;
    text-align: left;
  }
}

.section-results {
  position: relative;
  overflow: hidden;
  text-align: center;
  background-color: #fff2d4;
}

.section-results::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100vw;
  top: -30vw;
  left: 21vw;
  border-radius: 50%;
  border: 1px dashed #dd5102;
}

@media (max-width: 480px) {
  .section-results::before {
    width: 150vw;
    height: 150vw;
    top: -30vw;
    left: -3vw;
  }
}

.section-results::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100vw;
  top: 30vw;
  left: -48vw;
  border-radius: 50%;
  border: 1px dashed #dd5102;
}

@media (max-width: 480px) {
  .section-results::after {
    width: 150vw;
    height: 150vw;
    top: 89vw;
    left: -48vw;
  }
}

.section-results .reduced-width {
  max-width: 586px;
  margin: auto;
  margin-top: 24px;
}

.section-results .small-container {
  position: relative;
  z-index: 1;
}

@media (max-width: 890px) {
  .section-results .small-container.desktop {
    display: none;
  }
}

.section-results .small-container.mobile {
  display: none;
}

@media (max-width: 890px) {
  .section-results .small-container.mobile {
    display: initial;
  }
}

.section-results .title-h3 {
  margin-top: 24px;
}

@media (max-width: 890px) {

  .section-results .title-h2,
  .section-results .paragraph {
    text-align: left;
    margin-left: 0;
  }
}

.section-results-circles {
  height: 662px;
  position: relative;
  margin-top: 56px;
}

@media (max-width: 890px) {
  .section-results-circles {
    height: 460px;
  }
}

@media (max-width: 480px) {
  .section-results-circles {
    height: 1050px;
  }
}

.section-results .circle {
  position: absolute;
  background-color: transparent;
  color: #222;
  text-align: center;
}

.section-results .circle::after {
  display: block;
  padding-bottom: 100%;
  width: 100%;
  height: 0;
  border-radius: 50%;
  content: "";
}

.section-results .circle__inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-results .circle__wrapper {
  display: table;
  width: 100%;
  height: 100%;
}

.section-results .circle__content {
  display: table-cell;
  padding: 1em;
  vertical-align: middle;
}

.section-results .circle__top {
  font-size: 16px;
  font-weight: 600;
  line-height: 100%;
  text-transform: uppercase;
}

.section-results .circle__middle {
  font-size: 48px;
  font-weight: 700;
  line-height: 48px;
  margin-top: 26px;
}

.section-results .circle__bottom {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  margin-top: 10px;
}

.section-results .circle__bottom-lg {
  font-weight: 600;
  font-size: 24px;
  line-height: 150%;
  margin-top: 10px;
}

.section-results .circle__caption {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  margin-top: 26px;
  max-width: 250px;
  margin: auto;
  margin-top: 26px;
}

.section-results .circle_1 {
  top: 0;
  left: -4%;
  width: 35%;
  color: #ffffff;
}

.section-results .circle_1::after {
  background-color: #ED8B00;
}

.section-results .circle_1 .circle__middle {
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
}

.section-results .circle_1 .circle__bottom {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-top: 10px;
}

.section-results .circle_2 {
  bottom: 12%;
  left: 12%;
  width: 20%;
  color: #ffffff;
}

.section-results .circle_2::after {
  background-color: #0090CA;
}

.section-results .circle_3 {
  top: 12%;
  left: 34%;
  width: 43.4%;
}

.section-results .circle_3::after {
  background-color: #ffb244;
}

.section-results .circle_3 .circle__middle {
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
}

.section-results .circle_4 {
  top: 0;
  left: 77%;
  width: 20%;
  color: #ffffff;
}

.section-results .circle_4::after {
  background-color: #103778;
}

.section-results .circle_5 {
  bottom: 0;
  right: -4%;
  width: 30%;
  color: #000000;
}

.section-results .circle_5 .circle__middle {
  margin-top: 26px;
  font-size: 80px;
  font-weight: 700;
  line-height: 80px;
}

.section-results .circle_5 .circle__bottom {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.section-results .circle_5::after {
  background-color: #FFD9AD;
}

@media (max-width: 890px) {
  .section-results .circle_1 {
    top: 0;
    left: 0;
    width: 37%;
    color: #ffffff;
  }

  .section-results .circle_1::after {
    background-color: #dd5102;
  }

  .section-results .circle_1 .circle__middle {
    font-size: 80px;
    font-weight: 700;
    line-height: 80px;
  }

  .section-results .circle_1 .circle__bottom {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 0;
  }

  .section-results .circle_2 {
    bottom: 0;
    left: 25%;
    width: 23%;
  }

  .section-results .circle_3 {
    top: 6%;
    left: 40%;
    width: 37%;
  }

  .section-results .circle_4 {
    bottom: 0;
    right: 0;
    width: 24%;
  }

  .section-results .circle_4::after {
    background-color: #ffd69c;
  }
}

@media (max-width: 480px) {
  .section-results .circle_1 {
    top: 0;
    left: 0;
    width: 300px;
    color: #ffffff;
  }

  .section-results .circle_1::after {
    background-color: #dd5102;
  }

  .section-results .circle_1 .circle__middle {
    font-size: 80px;
    font-weight: 700;
    line-height: 80px;
  }

  .section-results .circle_1 .circle__bottom {
    font-size: 24px;
    font-weight: 700;
    line-height: 34px;
    margin-top: 0;
  }

  .section-results .circle_2 {
    width: 250px;
    top: 586px;
    left: 0;
    bottom: auto;
    color: #ffffff;
  }

  .section-results .circle_2::after {
    background-color: #0090CA;
  }

  .section-results .circle_3 {
    top: 296px;
    right: 0;
    left: auto;
    width: 300px;
  }

  .section-results .circle_3::after {
    background-color: #ffb244;
  }

  .section-results .circle_4 {
    top: 809px;
    right: 0;
    width: 228px;
    bottom: auto;
  }

  .section-results .circle_4::after {
    background-color: #ffd69c;
  }
}

.section-results .results-slider {
  margin-top: 73px;
}

.section-results .results-slider .swiper-slide .circle-mobile {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin: auto;
}

.section-results .results-slider .swiper-slide .circle-mobile.circle-1 {
  background-color: #da4d18;
  color: #ffffff;
}

.section-results .results-slider .swiper-slide .circle-mobile.circle-2 {
  background-color: #0593a2;
  color: #ffffff;
}

.section-results .results-slider .swiper-slide .circle-mobile.circle-3 {
  background-color: #ffb244;
}

.section-results .results-slider .swiper-slide .circle-mobile.circle-4 {
  background-color: #103778;
  color: #ffffff;
}

.section-results .results-slider .swiper-slide .circle-mobile.circle-5 {
  background-color: #ffd9ad;
}

.section-results .results-slider .swiper-slide .circle-mobile>*>* {
  line-height: 120%;
  padding: 8px;
}

.section-results .results-slider .swiper-slide .circle-mobile .circle-top {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  max-width: 150px;
  margin: auto;
}

.section-results .results-slider .swiper-slide .circle-mobile .circle-middle {
  font-weight: 700;
  font-size: 50px;
}

.section-results .results-slider .swiper-slide .circle-mobile .circle-bottom {
  font-weight: 600;
  font-size: 15px;
}

.section-results .results-slider .swiper-slide .circle-mobile .circle-caption {
  font-weight: 400;
  font-size: 12px;
  max-width: 192px;
  margin: 8px auto;
}

.section-results .results-slider .swiper-slide.swiper-slide-prev,
.section-results .results-slider .swiper-slide.swiper-slide-next {
  transition: 1s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.3;
}

.section-results .results-slider .pagination {
  margin-top: 80px;
}

.section-results .results-slider .pagination .swiper-pagination-bullet {
  width: 18px;
  height: 18px;
  border: 1px solid #da4d18;
  background-color: #ffffff;
  opacity: 1;
}

.section-results .results-slider .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #da4d18;
}

.section-results .small-container.txt-left,
.section-results .small-container.txt-left h1,
.section-results .small-container.txt-left p {
  text-align: left;
}

.section-results .small-container.txt p {
  color: #333333;
}

.section-requirements .footnote ul {
  list-style: none;
  padding: 32px 0 0 0;
  margin-bottom: 0;
}

.footnote {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  opacity: .6;
  margin: 15px 0 91px 0;
}