.about-banner {
  background-size: cover;
  background-position: center;
  isolation: isolate;
  aspect-ratio: 3 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-banner::before {
  content: none;
}

.about-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  justify-content: center;
  margin: 0 auto;
  gap: 24px;
}

.about-banner__title {
  margin: 0;
  font-weight: 700;
  font-size: 40px;
  line-height: 136%;
  letter-spacing: 1%;
  text-align: center;
  color: #212121;
}

.about-banner__description {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 1%;
  text-align: center;
  max-width: 436px;
  color: #212121;
}

.about-banner__actions {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.about-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 12px 20px;
  gap: 10px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 146%;
  letter-spacing: 2%;
  vertical-align: middle;

  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}

.about-banner__btn--primary {
  color: #ffffff;
  background: linear-gradient(90deg, #4f8c08 0%, #93d500 100%);
  box-shadow: 0 12px 24px rgba(79, 140, 8, 0.18);
}

.about-banner__btn--secondary {
  color: #4f8c08;
  background-color: #ffffff;
}

.about-banner__btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(79, 140, 8, 0.22);
}

.about-banner__btn--secondary:hover {
  color: #ffffff;
  background-color: #4f8c08;
}

.about-us__container {
  max-width: 1076px !important;
  margin: 0 auto;
}

.about-video__cover-btn {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.about-us {
  padding: 72px 0;
}

.about-us__header {
  margin-bottom: 32px;
  text-align: center;
}

.about-us__inner {
  margin: 0 auto;
  text-align: center;
}

.about-us__title {
  margin: 0 0 18px;
  font-weight: 700;
  font-size: 32px;
  line-height: 136%;
  letter-spacing: 1%;
  text-align: center;
  color: #212121;
}

.about-us__title-text {
  color: #212121;
}

.about-us__title-highlight {
  color: #93d500;
}

.about-us__description {
  margin: 0 auto;
  max-width: 1040px;
}

.about-us__description p {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 1%;
  text-align: center;
  color: #212121;
}

.about-us__grid {
  margin-top: 48px;
  padding: 0;
  gap: 56px;
}

.about-us .different-section__row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px;
  align-items: center;
}

.about-us .different-section__row + .different-section__row {
  margin-top: 0;
}

.about-us .different-section__media,
.about-us .different-section__content {
  min-width: 0;
}

.about-us .different-section__content {
  max-width: none;
}

.about-us .different-section__image {
  height: auto;
  max-height: 385.5px;
  aspect-ratio: 514/385.5;
}

.about-us .different-section__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.about-us .different-section__list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  line-height: 150%;
  color: #212121;
}

.about-us .different-section__tick {
  display: inline-flex;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.about-us .different-section__tick img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.about-video {
  padding: 72px 32px 56px;
}

.about-video__header {
  max-width: 820px;
  margin: 0 auto 28px;
  text-align: center;
}

.about-video__title {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.36;
  color: #212121;
}

.about-video__description {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: #212121;
}

.about-video__frame {
  position: relative;
  max-width: 1076px;
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  background: #d9d9d9;
  aspect-ratio: 16 / 9;
}

.about-video__iframe,
.about-video__cover,
.about-video__placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.about-video__iframe {
  border: 0;
}

.about-video__cover {
  object-fit: cover;
}

.about-video__cover-btn .about-video__play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.about-video__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #e7e7e7 0%, #d8d8d8 100%);
}

.about-video__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 80px;
  border-radius: 18px;
  background: #ff1400;
  box-shadow: 0 14px 32px rgba(255, 20, 0, 0.22);
}

.about-impact__inner {
  max-width: 1296px;
  margin: 0 auto;
  padding: 56px 32px 72px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-impact__header {
  text-align: center;
}

.about-impact__title {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.36;
  letter-spacing: 0.01em;
  color: #f5f5f5;
}

.about-impact__title-text {
  color: #212121;
}

.about-impact__title-highlight {
  color: #93d500;
}

.about-impact__description {
  margin: 0 auto;
  max-width: 860px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #212121;
}

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

.about-impact__card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  text-align: center;
  min-width: 0;
}

.about-impact__image {
  width: 100%;
  height: 312px;
  object-fit: cover;
  border-radius: 16px;
}

.about-impact__card-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.38;
  letter-spacing: 0.01em;
  color: #212121;
}

.about-impact__card-text {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #616161;
}

.about-values {
  background: #fafafa;
}

.about-values__inner {
  max-width: 1296px;
  margin: 0 auto;
  padding: 72px 32px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-values__header {
  text-align: center;
}

.about-values__title {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.36;
  letter-spacing: 0.01em;
  color: #212121;
}

.about-values__title-text {
  color: #212121;
}

.about-values__title-highlight {
  color: #93d500;
}

.about-values__description {
  margin: 0 auto;
  max-width: 860px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #212121;
}

.about-values__rows {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-values__row {
  display: grid;
  gap: 24px;
}

.about-values__row--top {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-values__row--bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.about-values__media {
  height: auto;
  min-height: 306px;
  border-radius: 16px;
  background: #eef7f2;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.about-values__content {
  height: auto;
  min-height: 306px;
  border-radius: 16px;
  padding: 48px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 48px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.about-values__content-main {
  min-width: 0;
}

.about-values__card-title {
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.38;
  letter-spacing: 0.01em;
  color: #212121;
}

.about-values__card-text {
  margin: 0;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #616161;
}

.about-values__stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  row-gap: 16px;
}

.about-values__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 120px;
}

.about-values__stat-value {
  font-weight: 700;
  font-size: 40px;
  line-height: 136%;
  letter-spacing: 1%;
  color: #93d500;
}

.about-values__stat-label {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #212121;
}

.about-cert {
}

.about-cert__inner {
  max-width: 1296px;
  margin: 0 auto;
  padding: 72px 32px 96px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-cert__header {
  text-align: center;
}

.about-cert__title {
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.36;
  letter-spacing: 0.01em;
  color: #212121;
}

.about-cert__title-text {
  color: #212121;
}

.about-cert__title-highlight {
  color: #93d500;
}

.about-cert__description {
  margin: 0 auto;
  max-width: 860px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.01em;
  color: #212121;
}

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

.about-cert__card {
  height: auto;
  aspect-ratio: 0.74 / 1;
  border-radius: 16px;
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.about-cert__image {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.subpage-banner__inner {
  min-height: 380px;
  padding: 56px 0;
}

.subpage-banner__description {
  max-width: 640px;
}

.subpage-content {
  padding: 72px 0 96px;
}

.subpage-content__inner {
  max-width: 920px;
  margin: 0 auto;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #262a2f;
}

.subpage-content__inner > *:first-child {
  margin-top: 0;
}

.subpage-content__inner > *:last-child {
  margin-bottom: 0;
}

.subpage-content__inner p,
.subpage-content__inner ul,
.subpage-content__inner ol,
.subpage-content__inner blockquote,
.subpage-content__inner table,
.subpage-content__inner figure {
  margin: 0 0 24px;
}

.subpage-content__inner h2,
.subpage-content__inner h3,
.subpage-content__inner h4,
.subpage-content__inner h5,
.subpage-content__inner h6 {
  margin: 40px 0 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  line-height: 1.32;
  color: #111111;
}

.subpage-content__inner h2 {
  font-size: 32px;
}

.subpage-content__inner h3 {
  font-size: 26px;
}

.subpage-content__inner a {
  color: #4f8c08;
  text-decoration: underline;
}

.subpage-content__inner strong {
  color: #111111;
}

.subpage-content__inner ul,
.subpage-content__inner ol {
  padding-left: 24px;
}

.subpage-content__inner li + li {
  margin-top: 8px;
}

.subpage-content__inner blockquote {
  border-left: 4px solid #7aac15;
  background: #f5f8ee;
  padding: 18px 20px;
  border-radius: 0 16px 16px 0;
  color: #2b3138;
}

.subpage-content__inner img,
.subpage-content__inner iframe,
.subpage-content__inner video {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
}

.subpage-content__inner table {
  width: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  .about-page.is-reveal-ready > section:not(.about-banner) {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    transition:
      opacity 0.35s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-page.is-reveal-ready .about-banner {
    overflow: hidden;
  }

  .about-page.is-reveal-ready .about-banner__breadcrumb,
  .about-page.is-reveal-ready .about-banner__title,
  .about-page.is-reveal-ready .about-banner__description,
  .about-page.is-reveal-ready .about-banner__actions {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition:
      opacity 0.35s ease,
      transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .about-page.is-reveal-ready > section:not(.about-banner).is-revealed,
  .about-page.is-reveal-ready .about-banner__breadcrumb.is-revealed,
  .about-page.is-reveal-ready .about-banner__title.is-revealed,
  .about-page.is-reveal-ready .about-banner__description.is-revealed,
  .about-page.is-reveal-ready .about-banner__actions.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .about-page.is-reveal-ready .about-banner__breadcrumb {
    transition-delay: 0.03s;
  }

  .about-page.is-reveal-ready .about-banner__title {
    transition-delay: 0.08s;
  }

  .about-page.is-reveal-ready .about-banner__description {
    transition-delay: 0.14s;
  }

  .about-page.is-reveal-ready .about-banner__actions {
    transition-delay: 0.2s;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-page.is-reveal-ready > section,
  .about-page.is-reveal-ready .about-banner__breadcrumb,
  .about-page.is-reveal-ready .about-banner__title,
  .about-page.is-reveal-ready .about-banner__description,
  .about-page.is-reveal-ready .about-banner__actions {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1268px) {
  .about-banner__inner {
    min-height: 440px;
    padding: 64px 0;
  }

  .subpage-banner__inner {
    min-height: 340px;
    padding: 48px 0;
  }

  .about-banner__title {
    font-size: 36px;
  }

  .about-video {
    padding: 64px 24px 48px;
  }

  .about-impact__inner,
  .about-values__inner,
  .about-cert__inner {
    padding-left: 24px;
    padding-right: 24px;
  }

  .about-us__grid {
    gap: 48px;
  }

  .about-us .different-section__row {
    gap: 36px;
  }
}

@media (max-width: 1024px) {
  .about-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.72) 0%,
      rgba(255, 255, 255, 0.64) 42%,
      rgba(255, 255, 255, 0.78) 100%
    );
    pointer-events: none;
    z-index: 0;
  }

  .about-banner__inner {
    min-height: 400px;
    padding: 56px 0;
  }

  .subpage-banner__inner {
    min-height: 320px;
    padding: 44px 0;
  }

  .about-banner__title,
  .about-us__title,
  .about-video__title,
  .about-impact__title,
  .about-values__title,
  .about-cert__title {
    font-size: 28px;
  }

  .about-banner__description {
    font-size: 15px;
    max-width: 560px;
  }

  .subpage-content {
    padding: 56px 0 72px;
  }

  .about-us {
    padding: 56px 0;
  }

  .about-us__grid {
    margin-top: 36px;
    gap: 40px;
  }

  .about-us .different-section__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-us .different-section__row--image-right .different-section__media,
  .about-us .different-section__row--image-right .different-section__content {
    order: initial;
  }

  .about-us .different-section__image {
    min-height: 0;
  }

  .about-us .different-section__badge {
    left: 12px;
    bottom: 12px;
    width: 110px;
    min-height: 132px;
  }

  .about-video {
    padding: 56px 24px 48px;
  }

  .about-video__header {
    margin-bottom: 24px;
  }

  .about-video__play {
    width: 96px;
    height: 68px;
  }

  .about-impact__inner {
    padding: 56px 24px;
    gap: 36px;
  }

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

  .about-impact__image {
    height: 280px;
  }

  .about-values__inner {
    padding: 56px 24px;
    gap: 36px;
  }

  .about-values__row,
  .about-values__row--bottom,
  .about-values__pair {
    grid-template-columns: 1fr;
  }

  .about-values__content,
  .about-values__media {
    min-height: 0;
  }

  .about-values__content {
    padding: 32px;
    gap: 28px;
  }

  .about-values__stats {
    gap: 24px;
  }

  .about-cert__inner {
    padding: 56px 24px 72px;
    gap: 36px;
  }

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

@media (max-width: 768px) {
  .about-banner__inner {
    min-height: 360px;
    padding: 48px 0;
  }

  .subpage-banner__inner {
    min-height: 300px;
    padding: 40px 0;
  }

  .about-banner__title,
  .about-us__title,
  .about-video__title,
  .about-impact__title,
  .about-values__title,
  .about-cert__title {
    font-size: 26px;
  }

  .about-banner__description,
  .about-us__description p,
  .about-video__description,
  .about-impact__description,
  .about-values__description,
  .about-cert__description,
  .about-impact__card-text,
  .about-values__card-text {
    font-size: 15px;
  }

  .subpage-content {
    padding: 48px 0 64px;
  }

  .subpage-content__inner h2 {
    font-size: 28px;
  }

  .subpage-content__inner h3 {
    font-size: 22px;
  }

  .about-us {
    padding: 48px 0;
  }

  .about-us__grid {
    margin-top: 32px;
    gap: 32px;
  }

  .about-us .different-section__heading {
    font-size: 22px;
  }

  .about-us .different-section__text,
  .about-us .different-section__list-item {
    font-size: 15px;
  }

  .about-video {
    padding: 48px 20px 40px;
  }

  .about-video__header {
    margin-bottom: 20px;
  }

  .about-video__play {
    width: 84px;
    height: 60px;
  }

  .about-impact__inner {
    padding: 48px 20px;
  }

  .about-impact__image {
    height: 240px;
  }

  .about-impact__card-title,
  .about-values__card-title {
    font-size: 18px;
  }

  .about-values__inner {
    padding: 48px 20px;
  }

  .about-values__content {
    padding: 28px;
    gap: 24px;
  }

  .about-values__stat-value {
    font-size: 28px;
  }

  .about-cert__inner {
    padding: 48px 20px 64px;
  }

  .about-cert__grid {
    gap: 16px;
  }
}

@media (max-width: 540px) {
  .about-banner__inner {
    min-height: 320px;
    padding: 40px 0;
  }

  .subpage-banner__inner {
    min-height: 280px;
    padding: 36px 0;
  }

  .about-banner__title,
  .about-us__title,
  .about-video__title,
  .about-impact__title,
  .about-values__title,
  .about-cert__title {
    font-size: 24px;
  }

  .about-banner__description,
  .about-us__description p,
  .about-video__description,
  .about-impact__description,
  .about-values__description,
  .about-cert__description,
  .about-impact__card-text,
  .about-values__card-text {
    font-size: 14px;
    line-height: 1.6;
  }

  .subpage-content__inner {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-banner__actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .about-banner__btn {
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
  }

  .about-us {
    padding: 40px 0;
  }

  .about-us__grid {
    margin-top: 28px;
    gap: 28px;
  }

  .about-us .different-section__heading {
    font-size: 20px;
  }

  .about-us .different-section__text,
  .about-us .different-section__list-item {
    font-size: 14px;
  }

  .about-us .different-section__badge {
    width: 92px;
    min-height: 112px;
    padding: 10px;
    gap: 12px;
  }

  .about-video {
    padding: 40px 16px 32px;
  }

  .about-video__frame {
    border-radius: 14px;
  }

  .about-video__play {
    width: 72px;
    height: 52px;
    border-radius: 14px;
  }

  .about-impact__inner {
    padding: 40px 16px 48px;
    gap: 32px;
  }

  .about-impact__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-impact__image {
    height: 220px;
  }

  .about-impact__card {
    gap: 16px;
  }

  .about-values__inner {
    padding: 40px 16px;
    gap: 32px;
  }

  .about-values__rows {
    gap: 16px;
  }

  .about-values__content {
    padding: 24px;
    gap: 20px;
  }

  .about-values__stats {
    gap: 16px;
  }

  .about-values__stat-value {
    font-size: 24px;
  }

  .about-cert__inner {
    padding: 40px 16px 56px;
    gap: 32px;
  }

  .about-cert__grid {
    grid-template-columns: 1fr;
  }

  .about-cert__card {
    aspect-ratio: 0.76 / 1;
  }
}

@media (max-width: 430px) {
  .about-banner__inner {
    min-height: 300px;
    padding: 36px 0;
  }

  .subpage-banner__inner {
    min-height: 260px;
    padding: 32px 0;
  }

  .about-banner__title,
  .about-us__title,
  .about-video__title,
  .about-impact__title,
  .about-values__title,
  .about-cert__title {
    font-size: 22px;
  }

  .about-banner__description,
  .about-us__description p,
  .about-video__description,
  .about-impact__description,
  .about-values__description,
  .about-cert__description,
  .about-impact__card-text,
  .about-values__card-text {
    font-size: 13px;
  }

  .about-video__play {
    width: 64px;
    height: 46px;
  }

  .about-impact__image {
    height: 200px;
  }

  .about-impact__card-title,
  .about-values__card-title,
  .about-us .different-section__heading {
    font-size: 18px;
  }

  .about-values__content {
    padding: 20px;
  }

  .about-values__stat-value {
    font-size: 22px;
  }

  .about-values__stat-label {
    font-size: 13px;
  }

  .subpage-content {
    padding: 40px 0 56px;
  }

  .subpage-content__inner h2 {
    font-size: 24px;
  }

  .subpage-content__inner h3 {
    font-size: 20px;
  }
}

@media (max-width: 389px) {
  .about-banner__inner {
    min-height: 280px;
    padding: 32px 0;
  }

  .about-banner__title,
  .about-us__title,
  .about-video__title,
  .about-impact__title,
  .about-values__title,
  .about-cert__title {
    font-size: 20px;
  }

  .about-values__content,
  .about-cert__card {
    padding: 16px;
  }

  .about-values__stat-value {
    font-size: 20px;
  }
}
