:root {
  --color-bg: #fafafa;
  --color-text: #101828;
  --color-muted: #929292;
  --color-white: #ffffff;
  --color-border: #e5e5e5;
  --color-green: #00a261;
  --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.05);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  font-family: "Inter", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

button {
  font-family: "Inter", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.error_page{
    text-align:center;
}

.autopay-manage { max-width: 560px; margin: 60px auto; padding: 24px; border: 1px solid #e8e3de; border-radius: 16px; background: #fff; }
.autopay-manage h1 { margin: 0 0 10px; font-size: 28px; }
.autopay-manage p { margin: 0 0 16px; color: #7a756f; }
.autopay-manage .row { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.autopay-manage input { height: 52px; border: 2px solid #e8e3de; border-radius: 12px; padding: 0 14px; font-size: 18px; }
.autopay-manage button { min-height: 48px; border-radius: 86px; border: 0; background: #00a261; color: #fff; font-size: 16px; cursor: pointer; padding: 0 18px; }
.autopay-manage .msg { margin-top: 12px; font-size: 14px; }
.autopay-manage .msg.success { color: #0f8f55; }
.autopay-manage .msg.error { color: #d13a3a; }

.page {
  position: relative;
  z-index: 0;
  max-width: 1920px;
  margin: 0 auto;
  padding: 48px 124px 80px;
  isolation: isolate;
}

.autopay-manage_container{
    margin-top: 80px;
    background: radial-gradient(90% 130% at 50% 20%, #efe5d6 0%, #f7f4ef 45%, #f4f4f4 100%);
    border: 1px solid #e9e3dc;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(26, 24, 20, 0.05);
    padding: 56px 64px;
}

.bg-glow-container {
  position: absolute;
  padding-top: 250px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.glow-item {
  width: 600px;
  height: 600px;
  background: rgba(0, 234, 114, 0.56);
  border-radius: 50%;
  filter: blur(225px);
  opacity: 0.3;
  flex-shrink: 0;
}

.glow-item:nth-child(odd) {
  align-self: flex-start;
  margin-left: -300px;
}

.glow-item:nth-child(even) {
  align-self: flex-end;
  margin-right: -300px;
}

.site-header,
.stats,
.hard-time,
.qard,
.history,
.partners {
  width: 100%;
  max-width: 1678px;
  margin-left: auto;
  margin-right: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 5px;
  z-index: 120;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: box-shadow 0.2s ease, background-color 0.2s ease;
}

.site-header__logo {
  width: 200px;
  display: flex;
  flex: 0 0 auto;
}

.site-header__logo svg {
  width: 100%;
  height: 100%;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  flex: 1 1 auto;
  min-width: 0;
}

.site-header__nav-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #101828;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.34px;
  white-space: nowrap;
  position: relative;
}

.site-header__arrow {
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.map_h {
  display: none;
}

.site-header__nav-link {
  color: #101828;
  text-decoration: none;
}

.site-header__nav-item--has-menu {
  cursor: pointer;
}

.site-header__submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
}

.site-header__submenu a {
  color: #101828;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.35;
  padding: 8px 10px;
  border-radius: 10px;
}

.site-header__submenu a:hover {
  background: #f6f6f6;
}

.site-header__nav-item--has-menu:hover .site-header__submenu,
.site-header__nav-item--has-menu:focus-within .site-header__submenu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.site-header__nav-item--has-menu:hover>.site-header__arrow,
.site-header__nav-item--has-menu:focus-within>.site-header__arrow {
  transform: rotate(180deg);
}

.site-header__contact {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 0 0 auto;
}

.site-header__cta-btn {
  height: 48px;
  padding: 0 24px;
  border-radius: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.34px;
  font-weight: 400;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.site-header__cta-btn:hover {
  box-shadow: 0 4px 9.8px #e5e5e5;
  transform: translateY(-1px);
}

.site-header__cta-btn--green {
  background: #00a261;
  color: #fff;
}

.site-header__cta-btn--dark {
  background: #101828;
  border-color: #101828;
  color: #fafafa;
}

.site-header__burger {
  display: none;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.site-header__burger-icon {
  width: 28px;
  height: 28px;
}

.site-header__burger-icon--close {
  display: none;
}

.site-header__mobile-menu {
  display: none;
}

.site-header.is-scrolled {
  background: #fff;
  box-shadow: 0 0 17.69px -4px #00000040;
  padding: 10px 25px;
  border-radius: 20px;
}

/* Stats */
.stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1.44fr 1.02fr 1fr;
  gap: 24px;
}

.stats-card {
  min-height: auto;
  border-radius: 20px;
}

.stats-card--white,
.stats-card--green,
.stats-card--beige {
  padding: 40px 40px;
}

.money_bank {
  display: none;
}

.fix_image_1 {
  position: absolute;
  top: 20%;
  right: 0px;
  max-width: 42%;
  height: auto;
  object-fit: contain;
  pointer-events: none;
}

.stats-card--white {
  background: #fff;
  position: relative;
  box-shadow: var(--shadow-card);
}

.stats-card__content--narrow .stats-card__value--medium {
  color: #101828;
}

@media (max-width: 600px) {
  .fix_image_1 {
    display: none;
  }
}

.stats-card--green {
  background: var(--color-green);
  box-shadow: var(--shadow-card);
}

.stats-card--beige {
  background: #f9f6f2;
}

.stats-card__content {
  gap: 25px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stats-card__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stats-card__value {
  margin: 0;
  font-size: 24px;
  line-height: normal;
  letter-spacing: -1.05px;
}

.stats-card__value--medium {
  font-weight: 600;
  color: #101828;
}

.stats-card__value--bold {
  font-weight: 700;
  color: #fff;
}

.stats-card__value--combo {
  color: #101828;
  line-height: 1.04;
}

.stats-card__value--combo br+* {
  margin-top: 6px;
}

.stats-card__title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  display: block;
  line-height: normal;
  letter-spacing: -0.75px;
}

.stats-card__title--dark {
  color: #101828;
}

.stats-card__desc {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.34px;
  color: var(--color-muted);
}

.stats-card__desc--white {
  color: #ffffff;
}

/* Hard time section */
.hard-time {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.hard-time__title {
  width: 100%;
  margin: 0;
  text-align: center;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
  color: #101828;
}

.hard-time__title span {
  color: #00a261;
}

.hard-time__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.hard-time__column {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hard-time__column--middle,
.hard-time__column--right {
  display: grid;
  height: 100%;
  grid-template-rows: 1fr 1fr;
  align-items: stretch;
}

.hard-time__card {
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid #e5e5e5;
}

.hard-time__card--left {
  min-height: 600px;
  height: 100%;
  background: #fff;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.hard-time__left-content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.hard-time__left-image {
  position: absolute;
  left: 50%;
  bottom: 0px;
  transform: translateX(-50%);
  width: 100%;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.hard-time__card--sand,
.hard-time__card--white {
  min-height: 0;
  height: 100%;
  background: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hard-time__card--sand {
  background: #f9f6f2;
}

.hard-time__icon--first {
  width: max-content;
  height: 58px;
}

.hard-time__icon--second {
  width: max-content;
  height: 58px;
}

.hard-time__icon--third {
  width: max-content;
  height: 58px;
}

.hard-time__text-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hard-time__card-title {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  line-height: 27px;
  letter-spacing: -0.75px;
  color: #101828;
}

.hard-time__card-title span {
  color: #00a261;
}

.hard-time__card-title--center {
  text-align: center;
}

.hard-time__card-title--green {
  max-width: 455px;
  color: #fff;
  text-align: center;
}

.hard-time__card-title--green span {
  color: rgba(255, 255, 255, 0.68);
  display: block;
  margin-top: 5px;
}

.hard-time__card-text {
  margin: 0;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  color: #929292;
}

.hard-time__card-text--green {
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
}

.hard-time__btn {
  min-height: 48px;
  border-radius: 86px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.34px;
}

.hard-time__btn--green {
  background: #00a261;
  color: #fafafa;
}

.hard-time__btn--white {
  background: #fff;
  color: #00a261;
  min-width: 263px;
}

.hard-time__card--green {
  min-height: 0;
  height: 100%;
  background: #00a261;
  border-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.hard-time__green-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

/* Qard */
.qard {
  position: relative;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}


.qard__title {
  margin: 0;
  width: 100%;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
}

.qard__title-green {
  color: #00a261;
}

.qard__title-dark {
  color: #101828;
}

.qard__row {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 521px);
  gap: 24px;
  align-items: stretch;
}

.qard__main {
  min-height: 560px;
  height: 100%;
  background: #f9f6f2;
  border: 1px solid #e8e3de;
  border-radius: 24px;
  box-shadow: 0 4px 9.8px #e5e5e5;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.qard__main-inner {
  width: 100%;
  min-height: 455px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.qard__top {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.qard__lead {
  margin: 0;
  max-width: 666px;
  font-size: 20px;
  line-height: 28px;
  color: #101828;
}

.qard__lead span {
  color: #00a261;
}

.qard__features {
  max-width: 425px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.qard__feature {
  display: flex;
  align-items: center;
  gap: 24px;
}

.qard__feature img {
  width: 24px;
  height: 24px;
}

.qard__feature p {
  margin: 0;
  font-size: 17.568px;
  line-height: 26.352px;
  color: #101828;
}

.qard__btn {
  width: fit-content;
  min-height: 48px;
  border-radius: 86px;
  border: 1px solid #00a261;
  background: #00a261;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fafafa;
  text-decoration: none;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.34px;
}

.qard__main-image {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.qard__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
  height: 100%;
}

.qard__side-card {
  height: 100%;
  border-radius: 24px;
  border: 1px solid #e8e3de;
  background: rgba(249, 246, 242, 0.4);
  box-shadow: 0 4px 9.8px #e5e5e5;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mobile {
  display: none;
}

.qard__side-card h3 {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.75px;
  color: #101828;
}

.qard__side-card p {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  color: #101828;
}

.qard__side-card a {
  color: #00a261;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

/* History 4893:496 */
.history {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: flex-end;
}

.history__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.history__title {
  margin: 0;
  color: #101828;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
}

.history__title span {
  color: #00a261;
}

.history-swiper {
  width: 100%;
}

.history-swiper .swiper-slide {
  width: 497px;
  height: 275px;
}

.history-card {
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 40px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.history-card--featured {
  border: 0;
  border-radius: 24px;
  background: #f4fcf8;
  box-shadow: none;
}

.history-card__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  height: 100%;
}

.history-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
}

.history-card__date {
  height: 32px;
  border-radius: 100px;
  background: #00A261;
  padding: 0 16px;
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.272px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.history-card__name {
  margin: 0;
  color: #101828;
  font-size: 25px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.75px;
}

.history-card__text {
  margin: 0;
  color: #101828;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.34px;
}

.history-card__text--tight {
  color: #101828;
  line-height: 24px;
  letter-spacing: 0;
}

.history-card__dots {
  margin-top: auto;
  height: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.history-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 33554400px;
  background: #d4cfc9;
}

.history-card__dot--active {
  width: 32px;
  background: #00a261;
}

/* Mission 4893:592 */
.mission {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

.mission-mobile-swiper {
  display: none;
}

.mission__title {
  margin: 0;
  width: 100%;
  text-align: center;
  color: #00a261;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
}

.mission__title span {
  color: #101828;
}

.mission__rows {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mission__row {
  display: flex;
  align-items: center;
  gap: 24px;
}

.mission__pair {
  width: 826px;
  height: 276px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.mission__icon-card {
  flex: 1 1 0;
  height: 100%;
  padding: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 39px;
}

.mission__icon-card img {
  object-fit: contain;
}

.mission__icon-card h3 {
  margin: 0;
  color: #101828;
  font-size: 25px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.75px;
  text-align: center;
}

.mission__about-card {
  position: relative;
  flex: 1 1 0;
  min-height: 276px;
  padding: 40px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: #fdfbfa;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  overflow: hidden;
}

.mission__about-decor {
  position: absolute;
  width: 397.47px;
  height: 353.2px;
  left: -280px;
  top: -156px;
}

.mission__about-card h3 {
  margin: 0;
  color: #101828;
  font-size: 25px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.75px;
  text-align: center;
}

.mission__about-card h3 span {
  color: #00a651;
}

.mission__about-card p {
  margin: 0;
  color: #101828;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.34px;
  text-align: center;
}

.mission__row--bottom {
  position: relative;
  gap: 27px;
}

.mission__donate-card {
  width: 828px;
  position: relative;
  min-height: 276px;
  border-radius: 20px;
  border: 1px solid #f0f0f0;
  background: #00a261;
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.mission__donate-card h3 {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 25px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.75px;
}

.mission__donate-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 27px;
  letter-spacing: -0.34px;
}

.mission__donate-card a {
  min-height: 48px;
  padding: 0px 40px;
  border-radius: 100px;
  background: #fff;
  color: #00a261;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mission__spark {
  position: absolute;
  right: 0px;
  bottom: -35px;
}

/* Helped 4893:640 */
.helped {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.helped__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.helped__title {
  margin: 0;
  color: #101828;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
}

.helped__title span {
  color: #00a651;
}

.helped__subtitle {
  margin: 0;
  width: 901px;
  color: #101828;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
}

.helped-swiper {
  width: 100%;
}

.helped-swiper .swiper-slide {
  width: 489px;
}

.helped-card {
  position: relative;
  border: 1px solid #e8e3de;
  border-radius: 20px;
  background: #fff;
  padding: 40px;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.helped-card__image {
  width: 100%;
  height: 262px;
  object-fit: cover;
  border-radius: 20px;
}

.helped-card__image--r16 {
  border-radius: 16px;
}

.helped-card__tag {
  position: absolute;
  top: 65px;
  right: 65px;
  min-height: 28px;
  padding: 6px 12px;
  border-radius: 33554400px;
  background: rgba(0, 166, 81, 0.9);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}

.helped-card__tag--left {
  right: auto;
  left: 270px;
}

.helped-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1 1 auto;
}

.helped-card__body span {
  margin: 0;
  color: #101828;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
}

.helped-card__quote {
  border-radius: 20px;
  background: #fdfbfa;
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.helped-card__quote img {
  width: 20px;
  height: 20px;
}

.helped-card__quote p,
.helped-card__plain {
  margin: 0;
  color: #101828;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.helped-card a {
  margin-top: auto;
  color: #00a261;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.helped-card a img {
  width: 24px;
  height: 24px;
  transform: rotate(180deg) scaleY(-1);
}

.helped-card__line {
  width: 100%;
  height: 1px;
  margin-top: 4px;
}

.helped-card--line .helped-card__body {
  gap: 20px;
}

.helped-card--line a {
  justify-content: flex-start;
}

.helped-modal {
  position: fixed;
  inset: 0;
  z-index: 250;
  display: grid;
  place-items: center;
  padding: 24px;
}

.helped-modal[hidden] {
  display: none !important;
}

.helped-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 34, 0.45);
}

.helped-modal__dialog {
  position: relative;
  width: min(900px, calc(100% - 40px));
  background: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
}

.helped-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border: 1px solid #e5e5e5;
  background: #fff;
  border-radius: 50%;
  font-size: 21px;
  line-height: 1;
  cursor: pointer;
}

.helped-modal__title {
  margin: 0 0 18px;
  font-size: 18px;
  letter-spacing: -0.34px;
  color: #101828;
}

.helped-modal__quote {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.helped-modal__quote img {
  width: 22px;
  height: 18px;
  flex: 0 0 auto;
  margin-top: 8px;
}

.helped-modal__quote p {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.34px;
  color: #101828;
}

body.is-helped-modal-open {
  overflow: hidden;
}

.to-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border: 1px solid #d9d9d9;
  border-radius: 50%;
  background: #ffffff;
  color: #101828;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 180;
}

.to-top-btn.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.to-top-btn:hover {
  box-shadow: 0 4px 9.8px #e5e5e5;
}

.to-top-btn svg {
  width: 22px;
  height: 22px;
}

/* Partners */
.partners {
  position: relative;
  margin-top: 80px;
}


.partners__board {
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

.partners__logos-mask {
  width: 100%;
  height: 664px;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
  padding: 0 24px 0 124px;
}

.partners__logos-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 15px;
  height: 100%;
  align-items: stretch;
}

.partners-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.partners__logo-item {
  min-height: 0;
  height: 100%;
  border: 1px solid #f0f0f0;
  border-radius: 20px;
  background: rgba(171, 171, 171, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.partners__logo-item img {
  max-width: 88%;
  max-height: 113px;
  object-fit: contain;
}

.partners__content {
  padding: 82px 80px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.partners__title {
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
  color: #101828;
}

.partners__title span {
  color: #00a261;
}

.partners__text {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.34px;
  color: #101828;
  max-width: 529px;
}

.partners__btn {
  width: fit-content;
  height: 48px;
  border-radius: 100px;
  background: #00a261;
  color: #fff;
  text-decoration: none;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.34px;
}

/* Team */
.team {
  margin-top: 80px;
}

.team-mobile-swiper {
  display: none;
}

.partners__btn--mobile {
  display: none;
}

.team__title {
  margin: 0 0 48px;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
  color: #101828;
}

.team__title span {
  color: #00a261;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.team__person {
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 450px;
}

.team__photo {
  width: 100%;
  max-width: 262px;
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  margin: 0 auto;
  object-fit: cover;
}

.team__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.team__meta div {
  margin: 0;
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-size: 25px;
  line-height: 27px;
  letter-spacing: -0.75px;
  color: #2f2f2f;
}

.team__meta p {
  margin: 0;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  color: #101828;
}

.team__center {
  border-radius: 20px;
  background: #00a261;
  min-height: 450px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  background-image: url('com.svg');
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-size: cover;
  background-repeat: no-repeat;
}

.team__badge-bg {
  position: absolute;
  width: 564px;
  height: 564px;
  left: -122px;
  top: -43px;
  border-radius: 999px;
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.15) 0, rgba(255, 255, 255, 0) 62%);
}

.team__center-text {
  font-size: 25px;
  color: #fff;
  font-weight: 600;
  line-height: 27px;
  margin: 0px;
  letter-spacing: -0.75px;
}

.team__center-percent {
  position: relative;
  z-index: 2;
}

.team__center-percent p {
  display: block;
  color: #fff;
  font-size: 65px !important;
  font-weight: 500;
  line-height: 111px !important;
  margin: 0px;
  letter-spacing: -0.65px;
}

.team__center-percent span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.272px;
}

/* Docs */
.docs {
  margin-top: 80px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  background: #fff;
  padding: 47px 67px;
}

.docs__inner {
  max-width: 1373px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.docs__title {
  margin: 0;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 36.5px;
  letter-spacing: -1.2px;
}

.docs__title span {
  color: #101828;
}

.docs__title {
  color: #00a261;
}

.docs__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(200px, 1fr));
  gap: 26px;
}

.docs__item {
  min-height: 68px;
  border: 1px solid #d9d9d9;
  border-radius: 14px;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-decoration: none;
  color: #101828;
}

.docs__item img {
  width: 25px;
  height: 30px;
}

.docs__item span {
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  text-align: center;
}

.docs__item--active {
  background: #00a261;
  color: #fff;
}

/* Media */
.media {
  margin-top: 80px;
}

.media__slider {
  position: relative;
}

.media-swiper {
  width: 100%;
}

.media__title {
  margin: 0 0 40px;
  text-align: center;
  color: #101828;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
}

.media__title span {
  color: #00a261;
}

.media__card {
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 538px 1fr;
  gap: 26px;
  align-items: start;
}

.media-right-swiper {
  width: 100%;
  height: 100%;
}

.media-right-swiper .swiper-wrapper {
  height: 100%;
}

.media-right-swiper .swiper-slide {
  width: 100%;
}

.media-right-slide {
  box-sizing: border-box;
  width: 100% !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.media__left {
  height: 400px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.media__preview {
  position: absolute;
  top: 30px;
  width: 366px;
  height: 234px;
  object-fit: cover;
}

.media__left-meta {
  text-align: center;
}

.media__left-meta div {
  margin: 0;
  font-size: 30px;
  font-weight: 600;
  line-height: 29.7px;
  letter-spacing: -0.9px;
  color: #101828;
}

.media__left-meta p {
  margin: 15px 0 0;
  font-size: 25px;
  line-height: 23.6px;
  letter-spacing: -0.75px;
  color: rgba(26, 26, 26, 0.6);
}

.media__right {
  height: 400px;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 38px 60px 52px;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.media__date {
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  border-radius: 32px;
  background: #00A261;
  width: fit-content;
  line-height: 32px;
  padding: 0 16px;
  letter-spacing: -0.16px;
}

.media__right blockquote {
  margin: 79px 0 0;
  max-width: 100%;
  font-size: 25px;
  line-height: 32px;
  letter-spacing: -0.25px;
  color: #101828;
}

.media__right span {
  display: inline-block;
  margin-top: auto;
  color: #00a261;
  text-decoration: none;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.34px;
}

.media__nav {
  position: absolute;
  right: 58px;
  top: 30px;
  display: flex;
  gap: 20px;
  z-index: 4;
}

.media__nav-btn {
  border: 2px solid #474747;
  border-radius: 999px;
  background: transparent;
  padding: 0;
  width: 50px;
  height: 50px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.media__nav-btn svg {
  width: 24px;
  height: 24px;
  fill: none;
}

.media__nav-btn svg path {
  fill: #101828;
}

.media__nav-btn.is-disabled {
  border-color: #d9d9d9;
}

.media__nav-btn.is-disabled svg path {
  fill: #d9d9d9;
}

/* Hero */
.hero {
  position: relative;
  margin-top: 40px;
  display: grid;
  grid-template-columns: minmax(0, 808px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}


.hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero__badge {
  width: fit-content;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: #f7f3ef;
  border-radius: 40px;
  padding: 9px 24px;
  font-size: 23px;
  font-weight: 400;
  margin: 0px;
  line-height: 30px;
  letter-spacing: -0.46px;
}

.hero__title {
  margin: 0;
  font-size: clamp(46px, 5vw, 82px);
  font-weight: 600;
  line-height: 0.93;
  letter-spacing: 0.82px;
  color: #101828;
}

.hero__title span {
  color: #00a261;
}

.hero__text {
  margin: 0;
  max-width: 546px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.46px;
  color: #101828;
}

.hero__actions {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.hero__btn {
  cursor: pointer;
  min-height: 48px;
  border-radius: 86px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.34px;
}

.hero__btn--green {
  background: #00a261;
  color: #fff;
}

.hero__btn--outline {
  background: #fff;
  border: 1px solid #b0aaa4;
  color: #b0aaa4;
}

.hero__image-wrap {
  border-radius: 100px;
  overflow: hidden;
  height: 460px;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Donation */
.donation {
  margin-top: 80px;
}

.donation__head {
  max-width: 933px;
  margin: 0 auto 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.donation__head h2 {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -1.2px;
  color: #101828;
}

.donation__head h2 span {
  color: #00a261;
}

.donation__head p {
  margin: 0;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  color: #929292;
}

.donation__layout {
  display: grid;
  grid-template-columns: minmax(0, 967px) minmax(0, 678px);
  gap: 33px;
}

.donation__form,
.donation__feed {
  background: #fff;
  border-radius: 32px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.donation__form {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.donation__tabs {
  display: flex;
  gap: 24px;
  align-items: center;
}

.donation__tabs button {
  border: 0;
  background: transparent;
  font-size: 20px;
  min-height: 49px;
  border-radius: 55px;
  padding: 0 20px;
  cursor: pointer;
  color: #101828;
  transition: 0.2s;
}

.donation__tabs .is-active {
  background: #00a261;
  color: #fff;
  font-weight: 700;
}

.donation__anon {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #929292;
  font-size: 20px;
}

.donation__anon input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.donation__checkbox {
  width: 24px;
  height: 24px;
  border-radius: 8px;
  border: 1px solid #d2d2d2;
  background: #fff;
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.donation__checkbox svg {
  width: 14px;
  height: 8px;
  opacity: 0;
  transition: opacity 0.15s ease;
}

.donation__anon input:checked+.donation__checkbox {
  background: #00A261;
  border-color: #00A261;
}

.donation__anon input:checked+.donation__checkbox svg {
  opacity: 1;
}

.donation__phone-wrap {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.donation__form.is-autopay .donation__phone-wrap {
  display: flex;
}

.donation__phone-wrap[hidden] {
  display: none;
}

.donation__autopay-wrap {
  display: none;
  flex-direction: column;
  gap: 12px;
}

.donation__form.is-autopay .donation__autopay-wrap {
  display: flex;
}

.donation__autopay-wrap[hidden] {
  display: none;
}

.donation__autopay-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.donation__autopay-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e8e3de;
  border-radius: 14px;
  min-height: 46px;
  padding: 8px 10px;
  cursor: pointer;
  font-size: 14px;
  color: #101828;
  background: #fff;
}

.donation__autopay-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.donation__autopay-option.is-active {
  border-color: #00a261;
  background: #00a261;
  color: #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 162, 97, 0.20), 0 2px 4px -2px rgba(0, 162, 97, 0.20);
}

.donation__autopay-note {
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  color: #7a756f;
}

.donation__autopay-note a {
  color: #00a261;
  text-decoration: none;
}

@media (max-width: 900px) {
  .donation__autopay-options {
    grid-template-columns: 1fr;
  }
}

.donation__label {
  color: #101828;
  margin: 0px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.donation__input {
  height: 59px;
  border: 2px solid #e8e3de;
  border-radius: 12px;
  padding: 0 20px;
  font-size: 20px;
  width: 100%;
}

.donation__chips {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.donation__chips button {
  padding: 12px 12px 12px 12px;
  border-radius: 14px;
  border: 1px solid #e8e3de;
  background: #fff;
  font-size: 16px;
  color: #101828;
  cursor: pointer;
}

.donation__chips .is-active {
  background: #00a261;
  border-color: #00a261;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 6px -1px rgba(0, 162, 97, 0.20), 0 2px 4px -2px rgba(0, 162, 97, 0.20);
}

.donation__progress-head,
.donation__progress-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.donation__progress-head {
  color: #929292;
  font-size: 20px;
}

.donation__progress-values span {
  color: #7a756f;
  font-size: 16px;
  line-height: 18px;
}

.donation__progress-values p {
  color: #00a261;
  font-size: 24px !important;
  margin: 0px;
  font-weight: 700;
}

.donation__progress-bar {
  position: relative;
  height: 16px;
  border-radius: 999px;
  background: #f0eae4;
  overflow: visible;
}

.donation__progress-fill {
  width: 17%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(139deg, #00a651 0%, #34d07f 100%);
}

.donation__progress-bar span {
  position: absolute;
  left: calc(17% - 18px);
  top: -8px;
  min-width: 37px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  background: linear-gradient(139deg, #00a651 0%, #34d07f 100%);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.donation__methods {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.donation__methods button {
  border: 1px solid #d4cece;
  border-radius: 18px;
  background: #fff;
  min-height: 80px;
  cursor: pointer;
}

.donation__methods .is-active {
  border-color: #00a261;
}

.donation__methods img {
  margin: 0 auto;
  max-height: 48px;
  object-fit: contain;
}

.donation__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.donation__bottom p {
  margin: 0;
  font-size: 16px;
  color: #b0aaa4;
}

.donation__bottom p a {
  color: #00A261;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
  line-height: 21.6px;
}

.donation__bottom div.help_now {
  min-height: 48px;
  border-radius: 86px;
  background: #00a261;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  min-width: 225px;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
  line-height: 27px;
}

.donation__feed {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.donation__feed-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.donation__feed-head div {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: #101828;
}

.donation__feed-head span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  color: #00a261;
}

.donation__feed-head span.around {
  border-radius: 33554400px;
  background: #00A261;
  width: 10px;
  height: 10px;
  display: block;
}

.donation__feed ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #f0eae4;
}

.donation__feed li {
  min-height: 57px;
  border-bottom: 1px solid #f0eae4;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.donation__feed p {
  color: #101828;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.donation__feed p::before {
  content: "+";
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background: #F0FAF5;
  color: #00a261;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
}

.donation__feed small {
  color: #7a756f;
  font-size: 16px;
}

.donation__privacy {
  margin: 0;
  color: #b0aaa4;
  font-size: 16px;
}

.donation__all {
  color: #00a261;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.hero__btn,
.hard-time__btn,
.qard__btn,
.partners__btn,
.donation__bottom div.help_now,
.donation__tabs button,
.donation__chips button,
.donation__methods button,
.mission__donate-card a,
.docs__item,
.faq__cta a.btns {
  transition: box-shadow 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

.hero__btn:hover,
.hard-time__btn:hover,
.qard__btn:hover,
.partners__btn:hover,
.donation__bottom div.help_now:hover,
.donation__tabs button:hover,
.donation__chips button:hover,
.donation__methods button:hover,
.mission__donate-card a:hover,
.docs__item:hover,
.faq__cta a.btns:hover {
  box-shadow: 0 4px 9.8px #e5e5e5;
  transform: translateY(-1px);
}

/* Map */
.map {
  margin-top: 80px;
  background: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 20px;
  padding: 60px 40px;
}

.map__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 634px;
  gap: 24px;
  align-items: stretch;
}

.map__preview,
.map__photo-slide img {
  border-radius: 20px;
}

.map__preview {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.map__preview--iframe {
  display: block;
  border: 0;
}

.map__info {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.map__headline {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
}

.map__headline div.h_3 {
  margin: 0;
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  letter-spacing: -0.75px;
}

.map__headline div.h_3 span {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.34px;
  color: #a0a0a0;
}

.map__select-wrap {
  width: 100%;
  max-width: 320px;
}

.map__select {
  width: 100%;
  min-height: 58px;
  font-weight: 600;
  border: 1px solid #c2c2c2;
  border-radius: 16px;
  background-color: #fff;
  color: #101828;
  padding: 0 56px 0 22px;
  font-size: 25px;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
  background-image: url("down.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 24px 24px;
}

.map__address {
  display: flex;
  align-items: center;
  gap: 24px;
}

.map__address img {
  width: 50px;
  height: 50px;
}

.map__address p {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.34px;
  color: #101828;
  line-height: 27px;
}

.map__info a {
  color: #00a261;
  text-decoration: none;
  font-size: 16px;
  display: block;
  width: fit-content;
}

.map__photo {
  border-radius: 20px;
  overflow: hidden;
  height: auto;
  min-height: 0;
  position: relative;
  align-self: stretch;
}

.map-photo-swiper {
  width: 100%;
  height: 100%;
}

.map__photo-slide {
  width: 100%;
  min-height: auto;
  height: 100%;
}

.map__photo-slide img {
  width: 100%;
  height: 670px;
  object-fit: cover;
}

.map__pagination {
  position: absolute;
  left: 50% !important;
  width: auto !important;
  bottom: 26px !important;
  transform: translateX(-50%) !important;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.map-photo-swiper>.swiper-pagination-bullets.map__pagination,
.map-photo-swiper>.swiper-pagination-horizontal.map__pagination {
  left: 50% !important;
  width: auto !important;
  transform: translateX(-50%) !important;
  bottom: 26px !important;
}

/* Footer 4959:4556 */
.site-footer {
  margin-top: 48px;
  width: 100%;
  max-width: 1678px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  background: #282828;
  padding: 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.site-footer__menu div.site-footer__col:last-child a{
  text-decoration: underline;
}

.site-footer__logo-row{
  display: flex;
}

.site-footer__logo {
  width: 200px;
  height: auto;
}

.site-footer__menu {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr));
  gap: 40px;
}

.site-footer__col div {
  margin: 0 0 24px;
  color: #ddd;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: -0.23px;
}

.site-footer__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.site-footer__col li {
  margin: 0;
}

.site-footer__col a {
  color: #6e6e6e;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.46px;
}

.site-footer__contacts {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1.6fr 1.6fr;
  gap: 40px;
  align-items: start;
}

.site-footer__contact-item h4 {
  margin: 0 0 24px;
  color: #ddd;
  font-size: 23px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.23px;
}

.site-footer__contact-item a,
.site-footer__contact-item p {
  margin: 0;
  color: #ddd;
  text-decoration: none;
  font-size: 23px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.46px;
  display: block;
}

.site-footer__contact-item p {
  color: #6e6e6e;
  line-height: 27px;
  margin-top: 8px;
}

.site-footer__contact-item--address p {
  color: #6e6e6e;
  line-height: 27px;
  margin-top: 0;
  max-width: 294px;
}

.site-footer__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 48px;
}

.site-footer__banking {
  width: 100%;
  min-height: 72px;
  border-radius: 8px;
  background: #fff;
  color: #282828;
  text-decoration: none;
  font-size: 28px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px 20px;
}

.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 25px;
}

.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-footer__line {
  width: 100%;
  border-top: 1px solid #4f4f4f;
}

.site-footer__bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.site-footer__copy {
  margin: 0;
  color: #ddd;
  font-size: 30px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.3px;
  white-space: nowrap;
}

.site-footer__legal {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 420px;
}

.site-footer__legal a {
  color: #6e6e6e;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.46px;
}

.site-footer__cookie {
  margin: 0;
  color: #fff;
  font-size: 23px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -0.46px;
  white-space: nowrap;
}

.map__pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  margin: 0 !important;
  background: #d9d9d9;
  opacity: 1;
}

.map__pagination .swiper-pagination-bullet-active {
  background: #00a261;
}

/* FAQ */
.faq {
  position: relative;
  margin-top: 80px;
}


.faq__title {
  margin: 0 0 60px;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  line-height: 36.5px;
  letter-spacing: -1.2px;
  color: #101828;
}

.faq__title span {
  color: #00a261;
}

.faq__list {
  background: #fff;
  border-radius: 20px;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  overflow-anchor: none;
}

.faq__item {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 20px;
  padding: 20px 40px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.faq__item button {
  border: 0;
  background: transparent;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 0;
  cursor: pointer;
}

.faq__item button>span:first-child {
  font-size: 24px;
  line-height: 30px;
  letter-spacing: -0.75px;
  color: #101828;
}

.faq__icon {
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 1px solid #e0e0e0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.faq__icon::before {
  content: "";
  width: 20px;
  height: 20px;
  background-size: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("right.svg");
  transform: rotate(0deg);
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.25s ease, background-color 0.2s ease;
}

.faq__item p {
  margin: 0;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  transform: translateY(-4px);
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease, transform 0.3s ease;
  color: #9f9f9f;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  will-change: max-height;
}

.faq__item--open {
  border-color: #f0f0f0;
  box-shadow: inset 0 0 0 1px #f0f0f0;
  background: #fff;
}

.faq__item--open p {
  opacity: 1;
  transform: translateY(0);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: -0.272px;
}

.faq__item--open .faq__icon {
  border-color: #00a261;
  background: #00a261;
}

.faq__item--open .faq__icon::before {
  transform: rotate(90deg);
}

.faq__cta {
  margin-top: 26px;
  background: #00a261;
  border-radius: 20px;
  padding: 40px 80px;
  min-height: 496px;
  position: relative;
  overflow: hidden;
}

.faq__cta-content {
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 34px;
  margin-top: 35px;
  position: relative;
  z-index: 2;
}

.faq__cta div.h_3 {
  margin: 0;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: -1.05px;
}

.faq__cta p {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  max-width: 403px;
}

.faq__cta-social {
  display: flex;
  gap: 14px;
}

.faq__cta-social img {
  width: 40px;
  height: 40px;
}

.faq__cta a.btns {
  width: 385px;
  min-height: 48px;
  border-radius: 100px;
  background: #fff;
  color: #101828;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
}

.faq__cta-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 790px;
  height: 527px;
  object-fit: cover;
}

@media (min-width: 901px) {
  .page:not(.payment-page) {
    font-size: 16px;
    line-height: 24px;
  }

  .page:not(.payment-page) :where(p, li, small, label, input, textarea, select, blockquote):not(.no-global-typo) {
    font-size: 16px;
    line-height: 24px;
  }

  .page:not(.payment-page) :where(.hard-time__title,
    .qard__title,
    .history__title,
    .mission__title,
    .helped__title,
    .partners__title,
    .team__title,
    .docs__title,
    .media__title,
    .faq__title,
    .donation__head h2):not(.no-global-typo) {
    font-size: 32px;
    line-height: 38px;
    letter-spacing: -1.2px;
  }

  .page:not(.payment-page) :where(.stats-card__value,
    .stats-card__title,
    .hard-time__card-title,
    .qard__side-card h3,
    .history-card__name,
    .mission__icon-card h3,
    .mission__about-card h3,
    .mission__donate-card h3,
    .team__meta div,
    .media__left-meta div,
    .faq__item button > span:first-child):not(.no-global-typo) {
    font-size: 20px;
    line-height: 30px;
  }

  .page:not(.payment-page) :where(.helped-card__body span,
    .docs__item span,
    .team__center-text,
    .map__headline div.h_3):not(.no-global-typo) {
    font-size: 16px;
    line-height: 24px;
  }
}

/* Adaptive */
@media (max-width: 1700px) {
  .page {
    max-width: 100%;
    padding: 32px 24px 56px;
  }
}

@media (max-width: 1360px) {
  .site-header {
    flex-wrap: wrap;
  }

  .site-header__nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .site-header__submenu {
    position: fixed;
    left: 24px;
    right: 24px;
    top: 94px;
    min-width: 0;
  }

  .mission__spark {
    display: none;
  }

  .helped__subtitle {
    width: 100%;
    max-width: 901px;
  }

  .request-help__inner {
    grid-template-columns: 1fr;
  }

  .request-help__visual {
    min-height: 360px;
  }

  .hard-time__card--sand,
  .hard-time__card--white,
  .hard-time__card--green {
    min-height: 0;
    height: 100%;
  }

  .qard__main-image {
    max-width: 350px;
  }

  .history {
    align-items: stretch;
  }

  .history__head {
    width: 100%;
    justify-content: center;
  }

  .partners__content {
    padding: 0 40px 48px;
  }

  .docs__list {
    grid-template-columns: 1fr 1fr;
  }

  .media__right blockquote {
    margin-top: 32px;
  }

  .media__right span {
    margin-top: 40px;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero__image-wrap {
    height: auto;
  }

  .map__layout {
    grid-template-columns: minmax(0, 1fr) 470px;
  }

  .map__photo {
    min-height: 420px;
  }

  .site-footer {
    padding: 48px 40px;
  }

  .site-footer__menu {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__contacts {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__meta {
    align-items: flex-start;
  }

  .site-footer__bottom {
    flex-wrap: wrap;
  }
}

@media (max-width: 900px) {
  .page {
    padding-top: 0;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 190;
    min-height: 66px;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
    border-left: 1px solid #e5e5e5;
    border-right: 1px solid #e5e5e5;
    padding: 21px 16px;
    border-radius: 0px;
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
  }

  .site-header__logo {
    width: 115px;
    height: 24px;
  }

  .site-header__nav,
  .site-header__contact {
    display: none;
  }

  .site-header__burger {
    display: inline-flex;
  }

  .site-header.is-mobile-menu-open .site-header__burger-icon--menu {
    display: none;
  }

  .site-header.is-mobile-menu-open .site-header__burger-icon--close {
    display: block;
  }

  .site-header__mobile-menu {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: rgba(250, 250, 250, 0.98);
    transform: translateY(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-header.is-mobile-menu-open .site-header__mobile-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__mobile-menu-inner {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 16px;
    overflow-y: auto;
    max-height: calc(100vh - 66px);
    height: calc(100vh - 66px);
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .site-header__mobile-group {
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    background: #fff;
    padding: 0 16px;
  }

  .site-header__mobile-group summary {
    list-style: none;
    cursor: pointer;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #101828;
    font-size: 16px;
    line-height: 1.3;
    letter-spacing: -0.272px;
  }

  .site-header__mobile-group summary::-webkit-details-marker {
    display: none;
  }

  .site-header__mobile-group summary::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid #101828;
    border-bottom: 2px solid #101828;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
    margin-top: -2px;
  }

  .site-header__mobile-group[open] summary::after {
    transform: rotate(-135deg);
    margin-top: 4px;
  }

  .site-header__mobile-links {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .site-header__mobile-links a {
    min-height: 52px;
    border-bottom: 1px solid #e5e5e5;
    padding: 0px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    color: #101828;
    text-decoration: none;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.272px;
  }

  .site-header__mobile-actions {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .site-header__mobile-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 48px;
    border-radius: 86px;
  }

  body.is-mobile-menu-open {
    overflow: hidden;
  }

  .site-header__phone,
  .site-header__nav-item,
  .stats-card__desc,
  .hard-time__card-text,
  .qard__lead,
  .qard__side-card p,
  .partners__text {
    font-size: 16px;
    line-height: 24px;
  }

  .site-header__nav-item {
    flex: 0 0 auto;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .mission {
    padding: 28px;
  }

  .mission__title {
    font-size: 30px;
  }

  .mission__title,
  .helped__title {
    font-size: 30px;
  }

  .mission__icon-card,
  .mission__about-card,
  .mission__donate-card {
    padding: 28px;
  }

  .mission__icon-card h3,
  .mission__about-card h3,
  .mission__donate-card h3 {
    font-size: 22px;
    line-height: 1.25;
  }

  .mission__about-card p,
  .mission__donate-card p,
  .helped__subtitle,
  .helped-card__quote p,
  .helped-card__plain {
    font-size: 16px;
    line-height: 24px;
  }

  .helped-card {
    padding: 28px;
    height: auto;
    min-height: 560px;
  }

  .helped-swiper .swiper-slide {
    width: 420px;
  }

  .request-help__title {
    font-size: 32px;
  }

  .request-help__text,
  .request-help__list {
    font-size: 18px;
    line-height: 1.45;
  }

  .stats-card--white,
  .stats-card--green,
  .stats-card--beige {
    padding: 28px;
  }

  .hard-time__grid {
    grid-template-columns: 1fr;
  }

  .hard-time__column--middle,
  .hard-time__column--right {
    display: flex;
    grid-template-rows: none;
  }

  .hard-time__card--left,
  .hard-time__card--sand,
  .hard-time__card--white,
  .hard-time__card--green {
    min-height: 0;
    padding: 28px;
  }

  .hard-time__left-image {
    position: absolute;
    width: 100%;
    height: auto;
    max-width: 100%;
    transform: none;
    left: 0px;
    margin-top: 12px;
  }

  .qard__main,
  .qard__side-card {
    padding: 28px;
  }

  .history__title {
    font-size: 30px;
  }

  .history-swiper .swiper-slide {
    width: 420px;
    height: auto;
  }

  .history-card {
    padding: 28px;
    min-height: 305px;
  }

  .history-card__top {
    flex-wrap: wrap;
  }

  .history-card__name {
    font-size: 22px;
    line-height: 1.25;
  }

  .history-card__text,
  .history-card__text--tight {
    font-size: 16px;
    line-height: 24px;
  }

  .qard__features {
    max-width: 100%;
  }

  .qard__feature p {
    white-space: normal;
  }

  .partners__logos-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners__content {
    padding: 0 28px 28px;
  }

  .team__grid {
    grid-template-columns: 1fr;
  }

  .team__person,
  .team__center {
    min-height: 0;
    padding: 28px;
  }

  .docs {
    padding: 28px;
  }

  .docs__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .media__card {
    padding: 28px;
  }

  .media__left,
  .media__right {
    padding: 28px;
  }

  .site-footer {
    padding: 32px 28px;
    gap: 36px;
  }

  .site-footer__menu {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__contacts {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__col div,
  .site-footer__contact-item h4,
  .site-footer__col a,
  .site-footer__contact-item a,
  .site-footer__contact-item p,
  .site-footer__legal a,
  .site-footer__cookie {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: normal;
  }

  .site-footer__copy {
    font-size: 16px;
    line-height: 24px;
  }

  .site-footer__banking {
    min-height: 56px;
    font-size: 20px;
    line-height: 1.2;
  }

  .media__preview {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 24px;
  }

  .media__date {
    min-height: 44px;
    padding: 0 16px;
    font-size: 22px;
    letter-spacing: -0.66px;
  }

  .media__nav {
    position: static;
    margin-top: 24px;
    justify-content: flex-end;
  }

  .hero__badge,
  .hero__text,
  .hero__btn,
  .donation__head p,
  .donation__head h2,
  .map__headline div.h_3,
  .map__headline div.h_3 span,
  .faq__title {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: normal;
  }

  .donation__chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .donation__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .map__headline {
    flex-direction: column;
  }

  .faq__item button>span:first-child {
    font-size: 24px;
  }

  .faq__cta a.btns {
    width: 97%;
  }
}

@media (max-width: 600px) {
  .page {
    padding: 0 16px 40px;
  }

  .site-header__contact {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    margin-top: 31px;
    gap: 24px;
  }

  .hero__content {
    gap: 24px;
  }

  .hero__badge {
    width: 100%;
    padding: 9px 16px;
    font-size: 14px;
    line-height: 30px;
    letter-spacing: -0.28px;
    text-align: center;
  }

  .hero__title {
    font-size: 30px;
    line-height: 28px;
    letter-spacing: 0.3px;
    text-align: center;
  }

  .hero__image-wrap {
    height: 183px;
    border-radius: 30px;
  }

  .hero__text {
    max-width: none;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: -0.272px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 16px;
  }

  .hero__btn {
    width: 100%;
    min-height: 48px;
    font-size: 16px;
    line-height: 27px;
  }

  .stats,
  .donation,
  .hard-time,
  .qard,
  .history,
  .mission,
  .helped,
  .partners,
  .team,
  .docs,
  .media,
  .map,
  .faq,
  .site-footer {
    margin-top: 60px;
  }

  .stats {
    gap: 16px;
  }

  .stats-card {
    border-radius: 20px;
    min-height: auto;
  }

  .stats-card--white {
    min-height: auto;
  }

  .stats-card--white,
  .stats-card--green,
  .stats-card--beige {
    padding: 24px;
  }

  .stats-card__content {
    min-height: auto;
    gap: 16px;
    height: 100%;
    justify-content: space-between;
  }

  .stats-card__value {
    font-size: 24px;
    line-height: normal;
    letter-spacing: -0.9px;
  }

  .stats-card__title {
    font-size: 18px;
    line-height: 27px;
    letter-spacing: -0.54px;
  }

  .stats-card__desc {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.272px;
  }

  .donation {
    margin-top: 60px;
  }

  .donation__head {
    margin-bottom: 24px;
    gap: 8px;
  }

  .donation__head h2 {
    font-size: 25px;
    line-height: 28px;
    letter-spacing: -0.75px;
  }

  .donation__head p {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.272px;
  }

  .donation__layout {
    gap: 24px;
    grid-template-columns: 1fr;
  }

  .donation__form .mobile {
    width: 80%;
    display: block;
  }

  .hard-time__title,
  .qard__title,
  .partners__title {
    font-size: 25px;
    line-height: normal;
    letter-spacing: -0.75px;
  }

  .donation__tabs {
    gap: 12px;
  }

  .donation__tabs button {
    min-height: 53px;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
    flex: 1 1 0;
  }

  .donation__anon {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.272px;
    justify-content: center;
    gap: 12px;
  }

  .donation__checkbox {
    width: 24px;
    height: 24px;
    border-radius: 4px;
  }

  .donation__label {
    color: #101828;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
  }

  .donation__input {
    min-height: auto;
    border-radius: 12px;
    height: auto;
    padding: 10px 20px;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }

  .donation__chips button {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 10px 10px 10px 10px;
    text-align: center;
  }

  .donation__progress-head,
  .donation__progress-values {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.272px;
  }

  .donation__bottom p {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 21.6px;
  }

  .donation__bottom div.help_now {
    min-height: 48px;
    width: 100%;
    border-radius: 16px;
    justify-content: center;
  }

  .donation__feed-head div {
    color: #101828;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.75px;
  }

  .donation__feed-head {
    flex-direction: column;
    gap: 24px;
  }

  .donation__feed p {
    font-size: 40px;
    line-height: 1;
    letter-spacing: -1.2px;
  }

  .donation__feed-head span {
    width: 100%;
  }

  .donation__feed p::before {
    width: 48px;
    height: 48px;
    font-size: 42px;
    line-height: 1;
  }

  .donation__feed li {
    padding: 0px;
    gap: 12px;
  }

  .site-header.is-scrolled {
    padding: 21px 16px;
    border-radius: 0px;
  }

  .hard-time {
    gap: 24px;
  }

  .hard-time__grid {
    gap: 16px;
  }

  .hard-time__column--middle,
  .hard-time__column--right {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .hard-time__title {
    font-size: 20px;
    line-height: normal;
    letter-spacing: -0.75px;
  }

  .hard-time__card {
    border-radius: 20px;
  }

  .hard-time__card--left,
  .hard-time__card--sand,
  .hard-time__card--white,
  .hard-time__card--green {
    padding: 40px 24px;
  }

  .hard-time__card--left {
    min-height: 397px;
  }

  .hard-time__left-content {
    gap: 24px;
  }

  .hard-time__card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: -0.54px;
  }

  .hard-time__card-text {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.272px;
  }

  .hard-time__btn {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    min-height: 48px;
    letter-spacing: -0.272px;
  }

  .qard {
    gap: 24px;
  }

  .donation__progress-values p {
    font-size: 16px !important;
    font-style: normal;
    font-weight: 700;
    line-height: 18px;
  }

  .qard__title {
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.75px;
  }

  .qard__row {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  
  .qard__side {
    grid-template-rows: auto;
    height: auto;
  }

  .qard__main,
  .qard__side-card {
    border-radius: 24px;
    padding: 40px 24px;
  }

  .qard__main {
    min-height: 0;
  }

  .qard__top {
    gap: 24px;
  }

  .qard__lead,
  .qard__feature p,
  .qard__side-card p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .qard__main-inner {
    min-height: auto;
  }

  .qard__features {
    gap: 16px;
    margin-bottom: 24px;
  }

  .qard__side-card h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: -0.54px;
  }

  .qard__side-card a {
    font-size: 16px;
    line-height: 24px;
  }

  .qard__main-image {
    display: none;
  }

  .history {
    gap: 24px;
  }

  .history__title {
    font-size: 25px;
    line-height: 28px;
    letter-spacing: -0.75px;
  }

  .history-swiper .swiper-slide {
    width: 288px;
    height: auto;
  }

  .history-card {
    border-radius: 16px;
    padding: 24px;
    min-height: 268px;
  }

  .history-card__inner {
    gap: 24px;
  }

  .history-card__top {
    gap: 8px;
    flex-direction: column;
    align-items: flex-start;
  }

  .history-card__date {
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    max-height: 32px;
    height: 32px;
    letter-spacing: -0.204px;
  }

  .history-card__name {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: -0.54px;
  }

  .history-card__text,
  .history-card__text--tight {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }

  .mission {
    gap: 24px;
  }

  .mission__title {
    font-size: 25px;
    line-height: 28px;
    letter-spacing: -0.75px;
  }

  .mission__rows,
  .mission__row,
  .mission__pair {
    gap: 16px;
  }

  .mission__pair {
    width: 100%;
    height: auto;
    flex-direction: column;
  }

  .mission__icon-card,
  .mission__about-card,
  .mission__donate-card {
    width: 100%;
    min-height: 0;
    border-radius: 16px;
    padding: 24px 16px;
  }

  .mission__icon-card h3,
  .mission__about-card h3,
  .mission__donate-card h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: -0.54px;
  }

  .mission__about-card p,
  .mission__donate-card p {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.272px;
  }

  .mission__donate-card a {
    width: 100%;
    min-height: 48px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 24px;
  }

  .helped {
    gap: 24px;
  }

  .helped__head {
    gap: 24px;
  }

  .helped__title {
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.75px;
  }

  .helped__subtitle {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .helped-swiper .swiper-slide {
    width: 288px;
  }

  .helped-card {
    border-radius: 12px;
    padding: 16px;
    min-height: 0;
  }

  .helped-card__image {
    border-radius: 12px;
  }

  .helped-card {
    gap: 20px;
  }

  .helped-card__body span {
    font-size: 18px;
    font-style: normal;
    text-align: center;
    font-weight: 700;
    line-height: normal;
  }

  .helped-card__body {
    gap: 16px;
  }

  .helped-card__quote {
    flex-direction: column;
  }

  .helped-card__quote p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
  }

  .helped-card a {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
  }

  .mission__title {
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.75px;
  }

  .helped-card__tag {
    right: 25px;
    top: 25px;
  }

  .helped-card a img {
    width: 16px;
    height: 16px;
  }

  .helped-card__body span,
  .helped-card__quote p,
  .helped-card__plain,
  .helped-card a {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.272px;
  }

  .partners {
    margin-top: 60px;
  }

  .partners__logos-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .partners__btn,
  .qard__btn {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    letter-spacing: -0.272px;
    min-height: 48px;
  }

  .partners__board {
    border-radius: 16px;
    gap: 16px;
  }

  .partners__logos-mask {
    height: 340px;
    padding: 0 8px 0 0;
    border-radius: 16px 16px 0 0;
  }

  .partners__logo-item {
    border-radius: 12px;
  }

  .partners__content {
    padding: 0 16px 24px;
    gap: 24px;
  }

  .partners__text {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.272px;
  }

  .partners__btn {
    min-height: 48px;
    border-radius: 86px;
    font-size: 16px;
    line-height: 24px;
  }

  .team {
    gap: 24px;
  }

  .team__title {
    margin-bottom: 24px;
    font-size: 25px;
    line-height: 28px;
    letter-spacing: -0.75px;
  }

  .team__person,
  .team__center {
    border-radius: 20px;
    padding: 40px 24px;
    gap: 40px;
  }

  .team__meta div {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: -0.54px;
  }

  .team__meta p,
  .team__center-text,
  .team__center-percent span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.272px;
  }

  .team__photo {
    max-width: 240px;
  }

  .docs {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .docs__inner {
    gap: 16px;
  }

  .docs__title {

    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.272px;
  }

  .docs__item {
    justify-content: flex-start;
    border-radius: 16px;
    padding: 15px 25px 15px 40px;
    min-height: 54px;
    height: 54px;
  }

  .docs__item span {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    text-align: left;
    line-height: 20px;
    letter-spacing: -0.272px;
  }

  .docs__item img {
    width: 19px;
    height: 22px;
  }

  .media__title {
    font-size: 25px;
    line-height: 28px;
    letter-spacing: -0.75px;
    margin-bottom: 24px;
  }

  .media__card {
    padding: 20px 24px;
    border-radius: 16px;
    gap: 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    background: #FFF;
    grid-template-columns: 1fr;
  }

  .media__left,
  .media__right {
    border-radius: 0px;
    padding: 0px;
    border: none;
    height: auto;
  }

  .media__left-meta div {
    font-size: 20px;
    line-height: 27px;
    font-weight: 700;
    letter-spacing: -0.6px;
    line-height: 29.7px;
  }

  .media__left-meta p,
  .media__right blockquote,
  .media__right span {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.272px;
  }

  .media__right span {
    margin-top: 10px;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.238px;
  }

  .media__right blockquote {
    margin-top: 24px;
  }

  .media__date {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: -0.16px;
    padding: 0 16px 0 16px;
    min-height: 32px;
    margin: 0 auto;
  }

  .media__nav {
    top: 22px;
    right: 16px;
    gap: 10px;
    margin-top: 24px;
    justify-content: center;
  }

  .media__nav-btn {
    width: 24px;
    height: 24px;
    border: 1px solid #474747;
  }

  .media__nav-btn svg {
    width: 10px;
    height: 10px;
  }

  .map__layout {
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .map__left,
  .map__photo {
    border-radius: 16px;
  }

  .map__address {
    flex-direction: column;
    gap: 10px;
  }

  .map__preview {
    border-radius: 16px;
    min-height: 172px;
    height: 172px;
  }

  .map__info {
    gap: 16px;
    margin-top: 16px;
  }

  .map__headline div.h_3 {
    font-size: 16px;
    line-height: normal;
    letter-spacing: -0.272px;
    text-align: center;
  }

  .map__headline div.h_3 span {
    font-size: 16px;
    line-height: normal;
    letter-spacing: -0.272px;
  }

  .map__info a {
    display: none;
  }

  .map__headline button {
    width: 100%;
    min-height: 54px;
    border-radius: 16px;
    justify-content: space-between;
    padding: 0 16px 0 22px;
  }

  .map__address p,
  .map__info a {
    font-size: 16px;
    line-height: normal;
    letter-spacing: -0.272px;
    text-align: center;
    color: #101828;
  }

  .hero__content .mobile {
    display: block;
  }

  .mission__icon-card {
    padding: 40px 24px;
    flex: none;
  }

  .map__address img {
    width: 27px;
    height: 27px;
  }

  .map__photo {
    height: auto;
    min-height: 240px;
    padding: 16px;
  }

  .hero__image-wrap {
    display: none;
  }

  .stats-card__content .mobile {
    width: 50%;
    display: block;
  }

  .map__photo-slide img {
    border-radius: 16px;
  }

  .map__pagination {
    bottom: 24px !important;
  }

  .donation__form,
  .donation__feed {
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }

  .money_bank {
    display: block;
    margin: 0 auto;
  }

  .donation__form {
    padding: 24px;
    border-radius: 32px;
    gap: 24px;
  }

  .donation__feed {
    background: none;
    box-shadow: none;
    padding: 0px;
  }

  .faq__title {
    margin-bottom: 24px;
    font-size: 25px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.75px;
  }

  .faq__list {
    padding: 0;
    background: transparent;
    gap: 10px;
  }

  .faq__item {
    border-radius: 16px;
    padding: 20px;
    background: #fff;
  }

  .faq__item button {
    align-items: flex-start;
    gap: 12px;
  }

  .faq__item button>span:first-child {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: -0.272px;
  }

  .faq__icon {
    width: 32px;
    height: 32px;
  }

  .faq__icon::before {
    width: 8px;
    height: 14px;
  }

  .faq__item p {
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.272px;
  }

  .faq__item--open p {
    margin-top: 24px;
  }

  .faq__cta {
    margin-top: 60px;
    border-radius: 16px;
    min-height: 0;
    padding: 32px;
  }

  .map {
    padding: 24px 16px;
    margin-top: 24px;
    border-radius: unset;
    border: none;
  }

  .faq__cta-content {
    max-width: none;
    gap: 16px;
    align-items: center;
    text-align: center;
    margin-top: 0px;
  }

  .faq__cta div.h_3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    letter-spacing: -0.34px;
  }

  .faq__cta p {
    max-width: 242px;
    font-size: 16px;
    line-height: 1.35;
    letter-spacing: -0.272px;
  }

  .faq__cta a.btns {
    color: var(--Color1, #101828);
    font-size: 16px;
    font-weight: 500;
    min-height: 48px;
    line-height: normal;
    letter-spacing: -0.272px;
    border-radius: 30px;
  }

  .faq__cta-image {
    position: static;
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 20px;
  }

  .site-footer {
    border-radius: 16px;
    padding: 24px 16px;
    gap: 24px;
  }

  .site-footer__logo {
    width: 115px;
    height: auto;
  }

  .site-footer__menu {
    gap: 20px;
  }

  .site-footer__col div {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.3px;
  }

  .site-footer__col a,
  .site-footer__contact-item a,
  .site-footer__contact-item p,
  .site-footer__legal a,
  .site-footer__cookie {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.272px;
  }

  .site-footer__contacts {
    gap: 20px;
  }

  .site-footer__banking {
    min-height: 54px;
    border-radius: 16px;
    font-size: 16px;
    line-height: 22px;
    padding: 0 16px;
  }

  .site-footer__socials a {
    width: 40px;
    height: 40px;
  }

  .site-footer__bottom {
    gap: 12px;
  }

  .site-footer__copy {
    font-size: 16px;
    line-height: 24px;
  }

  .donation__tabs {
    gap: 0;
    min-height: 54px;
    border-radius: 999px;
    background: #efefef;
    padding: 2px;
  }

  .donation__tabs button {
    min-height: 50px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: -0.272px;
  }

  .donation__tabs .is-active {
    font-weight: 700;
  }

  .donation__methods {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .donation__methods button {
    min-height: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .donation__methods img {
    min-height: 25px;
    height: 25px;
  }

  .donation__feed p {
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.272px;
  }

  .donation__feed p::before {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .donation__feed small {
    font-size: 16px;
    line-height: 22px;
  }

  .mission-mobile-swiper {
    display: block;
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 0 16px;
  }

  .mission-mobile-swiper .swiper-wrapper {
    align-items: stretch;
  }

  .mission-mobile-swiper .swiper-slide {
    width: 100% !important;
    height: auto;
  }

  .mission-mobile-swiper .mission__icon-card {
    min-height: 276px;
  }

  .map_h {
    display: block;
    margin-top: 60px;
    color: #101828;
    text-align: center;
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: -0.75px;
  }

  .map_h span {
    color: #00A261;
  }

  .helped-swiper .swiper-slide {
    width: 100%;
  }

  .mission__pair {
    display: none;
  }

  .mission {
    padding: 0px;
  }

  .mission__donate-card {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .mission__donate-card h3 {
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.54px;
  }

  .mission__donate-card a {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: -0.272px;
    border-radius: 86px;
  }

  .history__title {
    font-size: 25px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: -0.75px;
  }

  .mission__spark {
    display: flex;

    z-index: 0;
    position: absolute;
    top: 10%;
    left: 30%;
  }

  .mission__donate-card p {
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.272px;
  }

  .partners__board {
    display: flex;
    flex-direction: column;
    padding: 24px 16px;
  }

  .partners__content {
    order: 1;
    text-align: center;
    align-items: center;
    padding: 0;
    gap: 24px;
  }

  .partners__logos-mask {
    order: 2;
    width: 100%;
    height: 340px;
    overflow: hidden;
    border-radius: 16px;
    padding: 0;
    margin-top: 12px;
    touch-action: pan-y;
  }

  .partners-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
  }

  .mission__row--top {
    display: none;
  }

  .partners__content .partners__btn {
    display: none;
  }

  .partners__btn--mobile {
    display: inline-flex;
    order: 3;
    width: 100%;
  }

  .team-mobile-swiper {
    display: block;
    width: 100%;
  }

  .team-mobile-swiper .swiper-slide {
    width: 100%;
    height: auto;
  }

  .map__select-wrap {
    max-width: none;
  }

  .team__grid .team__person {
    display: none;
  }

  .hard-time__left-image {
    display: none;
  }

  .hard-time__left-image.mobile {
    display: block;
    bottom: -20px;
  }

  .team__mobile {
    margin-top: 24px;
  }

  .team__mobile .team__center {
    min-height: 435px;
    padding: 40px 20px;
  }

  .team__mobile .team__center-text {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.48px;
  }

  .team__center-percent p {
    text-align: center;
    font-size: 65px;
    font-style: normal;
    font-weight: 500;
    line-height: 111.042px;
    letter-spacing: -0.65px;
  }

  .team__mobile .team__center-percent span {
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: -0.272px;
  }

  .map__select {
    color: var(--Color1, #101828);

    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: -0.272px;
    background-position: right 16px center;
  }

  .map__photo {
    display: none;
  }

  .bg-glow-container {
    display: none;
  }
}

/* Payment Status Page */
.payment-page {
  display: block;
}

.payment-status {
  max-width: 1800px;
  margin: 32px auto 80px;
}

.payment-status__card {
  min-height: 520px;
  background: radial-gradient(90% 130% at 50% 20%, #efe5d6 0%, #f7f4ef 45%, #f4f4f4 100%);
  border: 1px solid #e9e3dc;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(26, 24, 20, 0.05);
  padding: 56px 64px;
}

.payment-status__loader {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
}

.payment-status__loader[hidden],
.payment-status__result[hidden] {
  display: none !important;
}

.payment-status__spinner {
  width: 136px;
  height: 136px;
  border-radius: 50%;
  border: 12px solid #d8d8d8;
  border-top-color: #00a261;
  animation: paymentSpin 1s linear infinite;
}

.default_content{
    margin-top: 80px;
    background: #fff;
    border: 1px solid #d9d9d9;
    border-radius: 20px;
    padding: 60px 40px;
}

.default_content h1{
    font-size:32px;
    line-height: 30px;
    margin: 0px;
}

@media (max-width: 600px) {
    .default_content{
        margin-top: 60px;
        padding: 20px 24px;
    }

    .default_content h1{
        font-size: 25px;
        line-height: 28px;
        letter-spacing: -0.75px;
    }
}

.payment-status__loader-text {
  margin: 0;
  font-size: 32px;
  line-height: 30px;
  color: #181c27;
  text-align: center;
  max-width: 950px;
}

@keyframes paymentSpin {
  to {
    transform: rotate(360deg);
  }
}

.payment-status__result {
  display: block;
}

.payment-status__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 26px;
  min-height: 56px;
  border-radius: 999px;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  font-weight: 600;
  margin-bottom: 34px;
}

.payment-status__badge.is-success {
  background: #d7f2e2;
  color: #019a58;
}

.payment-status__badge.is-pending,
.payment-status__badge.is-pending-hard {
  background: #fff0d8;
  color: #bc7d07;
}

.payment-status__badge.is-error {
  background: #ffe8e8;
  color: #d13535;
}

.payment-status__title {
  margin: 0;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  color: #191d23;
}

.payment-status__subtitle {
  margin: 26px 0 40px;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  color: #3d3f44;
}

.payment-status__rows {
  border-top: 1px solid #dfdfdf;
}

.payment-status__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid #dfdfdf;
}

.payment-status__row span {
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  color: #666e79;
}

.payment-status__row b {
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  color: #1a1f26;
  font-weight: 700;
  text-align: right;
  word-break: break-word;
}

.payment-status__actions {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.payment-status__btn {
  min-width: 280px;
  min-height: 80px;
  border-radius: 16px;
  border: 1px solid #cfd5d9;
  background: #fff;
  color: #131820;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.payment-status__btn--primary {
  background: #08ab66;
  border-color: #08ab66;
  color: #fff;
}

.payment-status__help {
  margin-top: 44px;
  border-radius: 24px;
  border: 1px solid #efe6d8;
  background: radial-gradient(120% 180% at 50% 40%, #f8f3eb 0%, #efe5d4 55%, #f5f2eb 100%);
  padding: 34px;
}

.payment-status__help h2 {
  margin: 0 0 14px;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  font-weight: 500;
}

.payment-status__help p {
  margin: 0;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  color: #2d3035;
}

.payment-status__telegram {
  margin-top: 26px;
  width: 360px;
  min-height: 96px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: -0.34px;
  font-weight: 700;
  background: linear-gradient(90deg, #7fd7d0 0%, #24bf2f 100%);
}

@media (max-width: 1200px) {
  .payment-status {
    padding: 0 20px;
  }

  .payment-status__card {
    padding: 36px 24px;
    min-height: 420px;
  }

  .payment-status__loader-text {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__title {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__subtitle {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
    margin-top: 18px;
  }

  .payment-status__row span {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__row b {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__btn {
    min-width: 220px;
    min-height: 60px;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__help h2 {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__help p {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__telegram {
    width: 240px;
    min-height: 70px;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }
}

@media (max-width: 700px) {
  .payment-status {
    margin-top: 16px;
    padding: 0 12px;
  }

  .payment-status__card {
    border-radius: 18px;
    padding: 24px 16px;
  }

  .payment-status__spinner {
    width: 88px;
    height: 88px;
    border-width: 8px;
  }

  .payment-status__loader-text {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__badge {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
    min-height: 38px;
    padding: 6px 16px;
  }

  .payment-status__title {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__subtitle {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .payment-status__row span {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__row b {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
    text-align: left;
  }

  .payment-status__btn {
    width: 100%;
    min-width: 0;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
    min-height: 52px;
  }

  .payment-status__help h2 {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__help p {
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
  }

  .payment-status__telegram {
    width: 100%;
    font-size: 20px;
    line-height: 27px;
    letter-spacing: -0.34px;
    min-height: 58px;
  }

  .helped-modal {
    padding: 12px;
  }

  .helped-modal__dialog {
    width: 100%;
    border-radius: 16px;
    padding: 20px 16px 18px;
  }

  .helped-modal__title {
    font-size: 18px;
    line-height: 27px;
    margin-bottom: 12px;
  }

  .helped-modal__quote p {
    font-size: 16px;
    line-height: 24px;
  }
}
