.commitment {
  width: 100%;
  margin: 20px 0;
}

.commitment .container {
  width: 95%;
  margin: 0 auto;
}

.commitment h1 {
  width: 40%;
  margin: 0 auto;
  font-size: 24px;
  padding: 10px;
  background: rgba(0, 0, 0, .9);
  color: #fff;
  text-align: center;
  border-radius: 4px;
}

.commitment h2 {
  background: url(../img/header-back.jpg);
  background-size: cover;
  object-fit: cover;
  margin: 20px 0;
  color: #fff;
  text-align: center;
  font-size: 20px;
  padding: 5px 0;
}

.commitment img {
  width: 100%;
  height: 250px;
}

.commitment p {
  font-weight: bold;
  font-size: 13px;
  line-height: 2em;
}

.commitment p .font_size {
  font-size: 16px;
}

/* large screen */

@media (min-width: 750px) {
  /* commitment */

  .commitment .container {
    display: flex;
    justify-content: space-between;
    width: 80%;
  }

  .commitment h1 {
    display: none;
  }

  .commitment h2 {
    font-size: 25px;
    padding: 10px 0;
    margin: 35px 0;
  }

  .commitment img {
    width: 45%;
  }

  .commitment p {
    width: 52%;
    font-size: 15px;
  }

  .commitment p .font_size {
    font-size: 18px;
  }

}