/* world help */
.world-help {
  margin: 80px 0;
}

.world-help__title {
  text-align: center;
  color: #333;
}

.world-help__tabs {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 40px;
}

.world-help__tabs button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #333;
  background-color: transparent;
  color: #333;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-property: border-color, background-color, color;
  transition-property: border-color, background-color, color;
}

.world-help__tabs button:hover {
  background-color: #333;
  color: #fff;
}

.world-help__tabs .active {
  pointer-events: none;
  border-color: #000;
  background-color: #000;
  color: #fff;
}

.world-help__cont {
  position: relative;
  margin-top: 40px;
}

.world-help__cont svg {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.world-help__cont circle,
.world-help__cont ellipse {
  stroke: #012d19;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-property: stroke-width;
  transition-property: stroke-width;
}

.world-help__cont circle:hover,
.world-help__cont ellipse:hover,
.world-help__cont circle.hover,
.world-help__cont ellipse.hover {
  stroke-width: 8px;
}

.world-help__tab {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden;
  opacity: 0;
  translate: 0 40px;
  -webkit-transition-duration: 600ms;
  transition-duration: 600ms;
  -webkit-transition-property: opacity translate;
  transition-property: opacity translate;
}

.world-help__tab.active {
  position: static;
  visibility: visible;
  opacity: 1;
  translate: 0 0;
}

.world-help__tops {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1024px;
  margin: 0 auto;
}
/* top donators */
.top-donators {
  margin-top: 40px;
  color: #333;
}

.top-donators--alt {
  margin-top: 80px;
}

.top-donators__subtitle {
  margin-top: 12px;
  font-size: 22px;
  font-style: italic;
  color: #767676;
}

.top-donators__list {
  counter-reset: counter;
  list-style: none;
  margin-top: 12px;
  padding-left: 0;
  margin-left: 0;
}

.top-donators__list:has(li:nth-child(6)) {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 24px;
  -moz-column-gap: 24px;
  column-gap: 24px;
}

.top-donators__list li {
  counter-increment: counter;
  position: relative;
  padding: 7px 0 7px 30px;
  font-size: 22px;
  line-height: 26px;
}

.top-donators__list li::before {
  content: counter(counter);
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border-radius: 50%;
  background-color: #02a95c;
  text-align: center;
  font-size: 13px;
  line-height: 20px;
  font-weight: 500;
  color: #fff;
  -webkit-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-property: -webkit-box-shadow;
  transition-property: -webkit-box-shadow;
  transition-property: box-shadow;
  transition-property: box-shadow, -webkit-box-shadow;
}

.top-donators__list--alt li::before {
  background-color: #012d19;
  -webkit-box-shadow: 0 0 0 0 #012d19;
  box-shadow: 0 0 0 0 #012d19;
}

.top-donators__list--alt li:hover::before,
.top-donators__list--alt li.hover::before {
  -webkit-box-shadow: 0 0 0 4px #012d19;
  box-shadow: 0 0 0 4px #012d19;
}

@media screen and (max-width: 991px) {
  .world-help {
    margin: 60px 0;
  }
  .world-help__tops {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top-donators--alt {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    margin-top: 40px;
  }
}

@media screen and (max-width: 767px) {
  .world-help {
    margin: 40px 0;
  }
  .world-help__tabs {
    gap: 6px;
    margin-top: 20px;
  }
  .world-help__tabs button {
    height: 32px;
    padding: 0 14px;
    font-size: 14px;
  }
  .world-help__cont {
    margin-top: 24px;
  }
  .world-help__cont svg {
    max-height: 380px;
  }
  .world-help__tops {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }
  .top-donators {
    margin-top: 24px;
  }
  .top-donators__subtitle {
    margin-top: 8px;
    font-size: 14px;
  }
  .top-donators__list {
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-top: 8px;
    margin-bottom: -4px;
  }
  .top-donators__list li {
    font-size: 14px;
    line-height: 18px;
    padding: 4px 0 4px 26px;
  }
  .top-donators__list li::before {
    width: 18px;
    height: 18px;
    margin-top: -9px;
    font-size: 12px;
    line-height: 18px;
  }
}
