.achievments_title {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
.achievments_container {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #222222;
  padding: 35px 0px 35px 0px;
  border-radius: 20px;
  margin: 0px 80px 0px 80px; 
}
.achievments_box {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 50%;
}
.achievments_item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 82px;
  min-width: 80px;
}
.achievments_number {
  font-size: 28px;
  text-align: center;
  margin-bottom: 0px;
  font-weight: 700;
}
.achievments_text {
  font-size: 24px;
  text-align: center;
  margin-bottom: 0px;
  font-weight: 700;
}
@media only screen and (max-width: 767px) {
  .achievments_title {
    font-size: 20px;
  }
  .achievments_container {
    flex-direction: column;
    border-radius: 10px;
    margin: 0px 14px 0px 14px; 
  }
  .achievments_box {
    width: 100%;
  }
  .achievments_number {
    font-size: 18px;
  }
  .achievments_text {
    font-size: 16px;
  }
}
