.about-bottom {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 80px 0;
  background-image: url("/assets/image/bg-pattern-mobile-2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
}
.about-bottom .content-wrapper {
  align-items: center;
  justify-content: center;
}
.about-bottom__content p {
  margin-bottom: 16px;
}
.about-bottom__content img {
  margin-bottom: 24px;
}
@media only screen and (min-width: 480px) {
  .about-bottom {
    background-size: cover;
  }
}
@media only screen and (min-width: 768px) {
  .about-bottom {
    background-image: url("/assets/image/bg-pattern-2.png");
  }
}
@media only screen and (min-width: 1024px) {
  .about-bottom {
    padding: 120px 0 200px 0;
  }
  .about-bottom__content {
    display: grid;
    grid-template-columns: [full-width-start] 10% [content-start] 1fr [content-end] 10% [full-width-end];
    max-width: 940px;
  }
  .about-bottom__content * {
    display: inline-block;
    grid-column: content;
  }
  .about-bottom__content p:has(img) {
    grid-column: full-width;
    text-align: center;
  }
}
.about-top {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0 0 150px 0;
}
.about-top .content-wrapper {
  align-items: center;
}
.about-top__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-right: 0;
  text-align: center;
}
.about-top__content p {
  color: #231F20;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .about-top__content {
    max-width: 750px;
  }
}
@media only screen and (min-width: 1024px) {
  .about-top {
    padding: 20px 0 110px 0;
  }
  .about-top__content p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 32px;
    line-height: 2rem;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
  }
}