.new-about__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px;
  align-items: center;
}
@media screen and (max-width: 991px) {
  .new-about__inner {
    grid-template-columns: 1fr;
  }
}
.new-about__img {
  max-height: 600px;
}
@media screen and (max-width: 991px) {
  .new-about__img {
    display: none;
  }
}
.new-about__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}
.new-about__content {
  max-width: 600px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 991px) {
  .new-about__content {
    max-width: 100%;
  }
}
.new-about__title {
  font-size: 26px;
  font-weight: 700;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .new-about__title {
    font-size: 20px;
  }
}
.new-about__title::after {
  content: "";
  width: 130px;
  height: 10px;
  background-color: #004684;
  position: absolute;
  bottom: -20px;
  left: 0;
}
.new-about__text > p:last-child {
  margin-bottom: 0;
}
.new-about__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  margin-top: 20px;
}
@media screen and (max-width: 479px) {
  .new-about__items {
    flex-direction: column;
    row-gap: 20px;
  }
}
.new-about__item {
  flex: 1;
  max-width: 180px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #004684;
}
@media screen and (max-width: 479px) {
  .new-about__item {
    align-items: center;
  }
}
.new-about__item-number {
  font-size: 48px;
  font-weight: 700;
}
.new-about__item-text {
  font-size: 14px;
  font-weight: 700;
}
@media screen and (max-width: 479px) {
  .new-about__item-text {
    text-align: center;
  }
}