#section1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-left: 60px;
  padding-bottom: 30px;
  width: 100%;
}
#section1 img {
  width: 35%;
}
#section2{
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}
p {
  color: #000;
  text-align: justify;
  font-family: "Readex Pro", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 35%;
}
h2 {
  color: #000;
  font-family: "Readex Pro", sans-serif;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 800px) {
    #section1{
      flex-direction: column;
      padding-left: 0 !important;
    }
    #section1 p {
        width: 80%;
    }
    #section1 img{
        width: 80%;
    }
  }
