.about-fpe-section {
  padding-block: 80px;
}
.about-fpe-section__inner {
  max-width: 990px;
  margin: 0 auto;
  text-align: center;
}
.about-fpe-section__title {
  margin: 0 0 54px;
  color: var(--black-100, #000);
  text-align: center;
  font-family: "e-Ukraine", sans-serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.96px;
  text-transform: uppercase;
}
.about-fpe-section__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
  grid-template-columns: repeat(3, minmax(0, 1fr));
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 48px;
}
.about-fpe-section__item {
  height: 100%;
  text-align: left;
}
.about-fpe-section__cta {
  margin-top: 54px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about-fpe-section__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 250px;
  height: 54px;
  padding: 14px 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  background: var(--black-100, #000);
  color: var(--white-100, #FFF);
  font-family: "e-Ukraine", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: -0.32px;
  text-transform: uppercase;
  text-decoration: none;
  -webkit-transition: color 0.2s ease, background 0.2s ease;
  transition: color 0.2s ease, background 0.2s ease;
}
.about-fpe-section__btn:hover, .about-fpe-section__btn:focus-visible {
  color: var(--primary-green-100, #A8CFC0);
}
@media (max-width: 900px) {
  .about-fpe-section__grid {
    -ms-grid-columns: (minmax(0, 1fr))[2];
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 600px) {
  .about-fpe-section {
    padding-block: 54px;
  }
  .about-fpe-section__title {
    font-size: 32px;
    letter-spacing: -0.64px;
    max-width: 300px;
    margin: 0 auto 36px;
  }
  .about-fpe-section__grid {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 40px;
  }
  .about-fpe-section__btn {
    width: 100%;
  }
}