* {
  font-family: "Open Sans", sans-serif;
  font-size: 1rem;

  margin: 0;
  padding: 0;

  text-decoration: none;
  list-style: none;
}

h1,
h3,
h5 {
  font-weight: 900;
  margin: 1rem 0;
  color: #997344;
}

header p,
header li,
section p,
section li,
.bottom-text p {
  font-weight: 100;
  line-height: 200%;
}
p span,
li span {
  font-weight: 700;
  color: #13625d;
}

/* 
 * HEADER
 */
header {
  padding-top: 6rem;
}

header h1 {
  font-size: 2rem;
  text-align: center;
}
.img-section {
  position: relative;
  width: 80%;
  margin: 2rem auto;
}
.img-section svg {
  position: absolute;
  width: 400px;
  transform: translate(-50%, -50%);
  top: 45%;
  left: 50%;
  opacity: 0.2;
  z-index: -1;
}
header p {
  margin: 1rem 0;
}
header li {
  list-style: circle;
  margin: 2rem 0;
}

/*
 * SECTION 
 */

section {
  padding-top: 3rem;
  background: linear-gradient(#82b4a4, #003531);
  color: #fff;
}

.box-wrap {
  display: flex;
  justify-content: space-around;
}
.box {
  width: 40%;
}
.box p,
.box li {
  font-size: 0.8rem;
}
.box ul {
  padding: 1rem;
}
.box li {
  margin: 1rem 0;
}
.card {
  padding: 1rem;
  background-color: #13625d;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.4);
  border-radius: 20px;
}
.card img {
  width: 100%;
  border-radius: 20px;
}

table {
  width: 100%;
  margin-top: 2rem;
  background-color: #13625d;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.4);
  color: #fff;
  border-collapse: collapse;
}
th {
  font-weight: 900;
  color: #997344;
  padding: 1rem;
}
td {
  font-size: 0.8rem;
  font-weight: 100;
  padding: 1rem 0;
  text-align: center;
}
tr:nth-child(2) {
  background-color: #0d4743;
}
tr:nth-child(4) {
  background-color: #0d4743;
}
.last-p {
  font-size: 0.8rem;
  padding: 2rem 0;
  text-align: center;
}
.section-bottom {
  padding: 2rem 2rem;
  text-align: center;
}
.section-bottom h3 {
  font-size: 1.2rem;
}
.section-bottom p {
  font-size: 0.8rem;
}

/* BOTTOM-TEXT */

.bottom-text {
  padding: 2rem;
  text-align: center;
}
.bottom-text h5 {
  font-size: 1.5rem;
  text-align: center;
}
.bottom-text p {
  font-weight: 0.8rem;
  margin-bottom: 1rem;
}

/* MEDIA Q. */

@media only screen and (max-width: 700px) {
  header h1 {
    font-size: 1.5rem;
  }
  header svg {
    display: none;
  }

  .box-wrap {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .box {
    width: 90%;
  }

  .section-bottom p {
    font-size: 0.8rem;
  }

  .bottom-text p {
    font-size: 0.8rem;
  }
}
