* {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;

  margin: 0;
  padding: 0;

  text-decoration: none;
  list-style: none;
}

html {
  scroll-behavior: smooth;
}

.button-style {
  font-weight: 700;
  margin: 4rem 0;
  padding: 1rem 2rem;
  color: white;
  background-color: #997344;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.4);
  border: 3px solid #997344;
  border-radius: 50px;
  transition: 0.2s;
}
.button-style:hover {
  transform: scale(1.1);
  cursor: pointer;
}

/*
 * HEADER
 */
header {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vw;
}
header svg {
  position: absolute;
  width: 100%;
  bottom: -2px;
}
header img {
  position: absolute;
  top: 15%;
  width: 35vw;
  z-index: 5;
}

/*
   * SECTION
   */
section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 0;
  text-align: center;
  background: linear-gradient(#b4d9cd, #003531);
}
section h1 {
  font-size: 3rem;
  font-weight: 900;
  margin: 2rem 0;
  color: #997344;
}
section p {
  font-size: 2rem;
  font-weight: 100;
  color: white;
}

section ul {
  position: relative;
}
section ul svg {
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  opacity: 0.6;
}
section li {
  font-size: 1.2rem;
  font-weight: 100;
  position: relative;
  margin-bottom: 2rem;
  color: white;
  z-index: 10;
}

/* our mission */
.our-mission {
  font-weight: 700;
  line-height: 200%;
  margin-top: 3rem;
  width: 84%;
}

/* about us */
.about-us-wrap {
  height: 0;
  overflow: hidden;
  background-color: #fff;
  box-shadow: inset 0 5px 8px 0 rgba(0, 0, 0, 0.4);
}
.about-us-wrap p {
  font-size: 1rem;
  line-height: 200%;
  width: 80%;
  margin: 1rem auto;
  text-align: start;
  color: #000;
}

/* cards */
.section-cards {
  display: flex;
  justify-content: space-between;
  width: 80%;
}
.card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 45%;
  padding: 2rem 1rem;
  background-color: #b4d9cd;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}
.card svg {
  width: 120px;
}
.card div {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.card h5 {
  font-weight: 900;
  font-size: 2rem;
  color: #13625d;
}
.card a {
  font-weight: 100;
  margin: 1rem 0;
  padding: 0.5rem 2rem;
  color: #b4d9cd;
  border: 1px solid #13625d;
  border-radius: 50rem;
  background-color: #13625d;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.6);
}
.card a:hover {
  background-color: #997344;
  border-color: #997344;
  color: white;
}

/* 
 * FOOTER
 */

footer {
  position: relative;
  padding: 2rem;
}
.footer-svg {
  position: absolute;
  z-index: -1;
}
.svg-left {
  top: 20px;
  left: 20px;
}
.svg-right {
  bottom: 20px;
  right: 20px;
}
footer h1 {
  font-size: 3em;
  font-weight: 900;
  margin-bottom: 3rem;
  color: #997344;
  text-align: center;
}
.contact {
  display: flex;
  justify-content: center;
}
.contact ul {
  margin: 0 2rem;
}
.contact li {
  margin-bottom: 1rem;
}
.contact h5 {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.contact svg {
  width: 20px;
  margin-right: 0.5rem;
}

/* Contact form */
form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 53%;
  margin: 2rem auto;
  text-align: center;
}
form i {
  padding: 1rem 0;
  color: #13625d;
}
.input-style {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 2rem;
  border: 2px solid #13625d;
  border-radius: 10px;
}
.input-style:focus {
  background-color: #b4d9cd;
}
textarea {
  max-width: 100%;
  max-height: 30vh;
}
form .button-style {
  margin: 1rem 0 0 0;
  padding: 1rem 3rem;
}
form p {
  font-size: 1rem;
  line-height: 200%;
  margin: 1rem;
}

@media only screen and (max-width: 900px) {
  /* HEADER */

  header {
    height: 55vw;
  }
  header img {
    top: 20%;
  }

  /* SECTION */
  /* card */
  .section-cards {
    flex-direction: column;
    align-items: center;
  }
  .card {
    width: 100%;
    margin: 1rem 0;
  }
  .card h5 {
    font-size: 5vw;
  }

  /* FOOTER */

  .contact {
    flex-direction: column;
    align-items: center;
  }
  .contact ul {
    margin: 2rem 0;
    text-align: center;
  }
  .contact h5 {
    justify-content: center;
  }

  /* Contact form */
  form {
    width: 90%;
  }
  form p {
    margin: 1rem 0;
  }
}
@media only screen and (max-width: 550px) {
  header {
    height: 65vw;
  }
  header img {
    top: 35%;
  }

  /* SECTION */

  section {
    padding: 1rem 0;
  }
  section h1 {
    font-size: 2rem;
  }
  section p {
    font-size: 1rem;
  }
  section ul svg {
    width: 150px;
  }
  section li {
    font-size: 1rem;
  }

  /* card */
  .card svg {
    width: 100px;
  }

  /* FOOTER */

  .footer-svg {
    width: 65px;
  }
  .svg-left {
    top: 100px;
  }
}
