.about-box .info {
  display: flex;
  gap: 2em;
  align-items: center;
  margin-bottom: 2em;
}
.about-box .text {
  flex: 1 1 auto;
}
.about-box .logo {
  flex: 0 0 12em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-box .logo img {
  width: 100%;
  height: auto;
}
.about-box .scores {
  display: flex;
  gap: 2em;
  align-items: stretch;
}
.about-box .score {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1em;
}
.about-box .score .number {
  font-size: 1.6em;
  font-weight: bold;
}
.about-box .score .note {
  font-size: 0.9em;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-box .scores {
    gap: 0.5em;
  }
}
@media only screen and (min-width: 0) and (max-width: 767px) {
  .about-box .scores {
    flex-wrap: wrap;
    gap: 0.5em;
  }
  .about-box .score {
    flex: 0 1 calc(50% - 4em);
  }
}
@media only screen and (min-width: 0) and (max-width: 400px) {
  .about-box .info {
    flex-direction: column;
    align-items: center;
  }
  .about-box .text {
    order: 2;
    text-align: center;
  }
  .about-box .logo {
    flex: 0 0 3em;
    order: 1;
  }
  .about-box .logo img {
    max-width: 10em;
  }
  .about-box .scores {
    flex-wrap: wrap;
    gap: 0.4em;
  }
  .about-box .score {
    flex: 0 0 100%;
  }
}
