﻿.content {
  padding: 20px;
  width: 100%;
  display: flex;
  align-items: center;
  background: #fff;
}
.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: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
}
.content2 > ul > li {
  width: 100%;
  height: 200px;
  border: 1px solid #ccc;
  padding: 20px;
  box-sizing: border-box;
}
.content2 > ul > li > p {
  text-align: center;
}
.content2 > ul > li > p:nth-child(1) {
  font-size: 20px;
}
.content2 > ul > li > p:nth-child(2) {
  font-size: 16px;
  margin: 10px 0;
}
.content2 > ul > li > p:nth-child(3) {
  font-size: 13px;
}
@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 {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 100%;
    padding: 0 10px;
  }
  .content2 > ul > li {
    width: 100%;
    height: auto;
    border: 1px solid #ccc;
    padding: 20px;
  }
}
