.stats {
  position: relative;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  /* padding: 0 185px 70px; */
  align-items: start; /*2nd New Update*/
  padding-left: 4rem;/*2nd New Update*/
}

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #e5e7eb;
  width: 23rem; /*2nd New Update*/
  height: 35rem;/*2nd New Update*/
  padding-bottom: 10px;
}

.stat-box {
  padding: 30px 26px;
  border-right: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.stat-box:nth-child(2n) {
  border-right: none;
}

.stat-box:nth-child(3),
.stat-box:nth-child(4) {
  border-bottom: none;
}

.stat-box__number {
  font-size: 49px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-box__label {
  font-size: 18.5px;
  color: #6b7280;
}

.stats__image {
  border-radius: 0 0 220px 0;
  overflow: hidden;
  min-height: 340px;
}

.stats__image img {
  width: 100%;
  height: 37rem;
  object-fit: contain;
  display: block;
  margin-left: 7rem; /*2nd New Update*/
  margin-bottom: 2rem;
}

@media (max-width: 900px) {
  .stats {
    grid-template-columns: 1fr;
    padding: 0 30px 40px;
  }

  .stats__image {
    min-height: 260px;
    border-radius: 0 0 120px 0;
  }

  .stat-box__number {
    font-size: 30px;
  }

.stats__image img {
margin-left: 0rem;
}
.stats__image img {
  width: 100%;
  height: 14rem;
  object-fit: contain;
  display: block;
}

}
