.flex {
  display: flex;
  justify-content: space-between;
  padding: 60px 0px;
  gap: 10px;
}
.flex div {
  background-color: #fff;
  width: 350px;
  height: 180px;
  padding: 40px 48px;
  border-radius: 8px;
  box-sizing: border-box;
}
.flex :first-child {
  color: #141719;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.3;
}
.flex :last-child {
  font-size: 16px;
  color: #555f62;
  font-weight: 400;
  line-height: 1.7;
}

@media only screen and (max-width: 950px) {
  .flex {
    align-items: center;
    flex-direction: column;
  }
}
