.experience {
  height: 600px;
  /* background: #325610; */
  background: #44a08d; /* fallback for old browsers */
  background: -webkit-linear-gradient(
    to right,
    #093637,
    #44a08d
  ); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(
    to right,
    #093637,
    #44a08d
  ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
}

.experience .second_line {
  font-size: 5rem;
  margin: 40px auto;
}

.experience .note {
  border: 1px solid #fff;
  border-radius: 50px;
  padding: 20px 40px 16px;
  display: inline-block;
  margin-bottom: 30px;
}

.experience .eng_line {
  font-weight: 500;
}

@media screen and (max-width: 640px) {
    .experience {
        height: auto;
    }

    .experience .eng_line {
        font-size: 1.5rem;
        line-height: 1.5;
    }
}