.content {
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
  margin-top: 30px;
}
.content div {
  width: 50%;
  padding: 20px;
}
.content img {
  width: 80%;
  height: 80%;
  margin-left: 50px;
}
.content p {
  text-indent: 2em;
  font-size: 20px;
  line-height: 30px;
  text-align: justify;
  margin-top: 20px;
  font-size: 16px;
}
.content2 {
  width: 100%;
  margin-top: 30px;
  background: #fff;
  padding: 20px 10%;
}
.content2 > p {
  font-size: 30px;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.content2 > ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.content2 > ul > li {
  width: 30%;
  border: 1px solid #ccc;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.content2 > ul > li > p:nth-child(1) {
  width: 100px;
  height: 100px;
}
.content2 > ul > li > p:nth-child(1) > img {
  width: 100%;
  height: 100%;
  margin: 0 auto;
}
.content2 > ul > li > p:nth-child(2) {
  font-size: 20px;
}
.content2 > ul > li > p:nth-child(3) {
  font-size: 16px;
  margin: 10px 0;
}
.content2 > ul > li > p:nth-child(4) {
  font-size: 13px;
}
.content3 {
  width: 100%;
  background: #fff;
  padding: 20px 10%;
  margin-top: 30px;
}
.content3 > p {
  font-size: 30px;
  width: 100%;
  text-align: center;
  margin-bottom: 20px;
}
.content3 > ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.content3 > ul > li {
  width: 30%;
  border: 1px solid #ccc;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.content3 > ul > li > p:nth-child(1) {
  font-size: 35px;
}
.content3 > ul > li > p:nth-child(2) {
  font-size: 20px;
  margin: 10px 0;
}
.content3 > ul > li > p:nth-child(3) {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .content {
    flex-direction: column;
  }
  .content div {
    width: 100%;
  }
  .content img {
    width: 100%;
    height: 100%;
    margin-left: 0;
  }
  .content p {
    font-size: 14px;
  }
  .content2 {
    padding: 20px;
  }
  .content2 > ul {
    flex-direction: column;
  }
  .content2 > ul > li {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
  }
  .content3 {
    padding: 20px;
  }
  .content3 > ul {
    flex-direction: column;
  }
  .content3 > ul > li {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    padding: 20px;
    margin-bottom: 20px;
  }
}
