html,
body {
  margin: 0;
  padding: 0px;
  font-family: Poppins;
}
.section-container {
  margin: 0 auto;
  max-width: 1330px;
}
/*section CSS*/

h1 {
  font-size: 34px;
  text-align: center;
  font-weight: bolder;
  padding-top: 50px;
}

h3 {
  font-size: 24px;
  text-align: center;
  font-weight: bold;
}

section {
  margin: 0;
  padding-left: 10%;
  padding-right: 10%;
  padding-bottom: 100px;
}

section p {
  font-family: "Times New Roman";
  font-size: 16px;
}

section button {
  background-color: white;
  border: 1px solid #b83239;
  color: #b83239;
  width: 100%;
  text-align: center;
  margin: 0px;
  padding: 10px;
  font-weight: bold;
  font-size: 16px;
}

button:hover {
  background-color: black;
}

/*content CSS*/
.about-land {
  display: flex;
  text-align: justify;
  padding-top: 50px;
  padding-bottom: 50px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.about-land img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.about-people {
  display: flex;
  text-align: justify;
  padding-top: 50px;
  padding-bottom: 50px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
}

.about-people img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.column {
  flex: 50%;
  padding: 2%;
  justify-content: center;
}

@media (max-width: 720px) {
  .about-land {
    flex-wrap: wrap;
    flex-direction: column;
  }

  .about-people {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
