* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Titillium Web, sans-serif;
}

.navSection {
  padding: 10px 100px;
  background-color: #083e25;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}
.navSection img {
  width: 150px;
}
.navSection p {
  font-size: 30px !important;
  color: white;
  font-style: italic;
}
.navSection a img {
  width: 300px;
  height: 100px;
}

@media only screen and (max-width: 992px) {
  .navSection {
    padding: 10px;
    flex-direction: column;
  }

  .navSection p {
    font-size: 25px !important;
  }
}

@media screen and (max-width: 768px) {
  .navSection {
    padding: 10px;
  }

  .navSection img {
    width: 100px;
  }
  .navSection p {
    font-size: 25px !important;
  }
  .navSection a img {
    width: 200px;
    height: 100px;
  }
}

.privacy {
  padding: 2% 10%;
}
.container h1 {
  margin: 10px;
  font-size: 30px;
}
.container h3 {
  font-size: 35px;
}
.container p {
  margin: 10px;
  font-size: 20px;
}
.container ul li {
  font-size: 18px;
}

.footer {
  padding: 1% 10%;
  background-color: #424242;
}

.footer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__header span {
  color: white;
  font-size: 17px;
}
.footer__header span li {
  list-style: none;
  margin: 5px 20px;
}
.footer__header span li a {
  list-style: none;
  color: white;

  text-decoration: none;
}
.footer__list {
  display: flex;
  gap: 20px;
}
.footer__list li {
  list-style: none;
}
.footer__list li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}
.footer__disclaimer p {
  color: white;
  font-size: 15px;
  margin: 10px;
}
.footer__disclaimer p:nth-of-type(1) {
  color: yellow;
  text-transform: uppercase;
  font-weight: 600;
}

@media only screen and (max-width: 576px) {
  .footer {
    padding: 20px;
  }
  .footer__header {
    gap: 20px;
    flex-direction: column;
  }

  .container h1 {
    font-size: 25px;
  }
  .container h3 {
    font-size: 20px;
  }
}