.place {
  min-height: 100%;
  display: flex;
}

.place__half {
  width: 50%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.place__half:nth-child(1) {
  background-image: url(../img/place-img.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: auto;
}

.place__half:nth-child(2) {
  background-color: #249c72;
  padding: 60px 0;
  min-height: 100%;
}

.place__half-item {
  color: #fff;
  margin-bottom: 55px;
}

.place__half-item--number {
  font-size: 65px;
  color: #fff;
  text-align: center;
  margin-bottom: 3px;
}

.place__half-item--text {
  font-size: 17px;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}

@media (max-width:668px) {
  .place {
    flex-direction: column-reverse;
  }

  .place__half {
    width: 100%;
  }

  .place__half:nth-child(1) {
    height: 400px;
  }

  .place__half-item--number {
    font-size: 36px;
  }

  .place__half-item--text {
    font-size: 14px;
  }

  .place__half-item {
    margin-bottom: 20px;
  }

  .place__half:nth-child(2) {
    padding: 40px 0;
  }
}