* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Navbar */
img {
  margin-top: 0px;
  padding: 2px;
  width: 80px;
  height: 80px;
}
.nav {
  overflow: hidden;
  background-color: #9ac5f4;
}
.nav h2 {
  font-size: 3rem;
  text-align: center;
  text-decoration: solid;
  font-family: "Zeyada", cursive;
  font-weight: bold;
}

header {
  width: 100vw;
  display: flex;
  justify-content: space-between;
}

.search-container {
  display: flex;
  padding: 10px;
  border-radius: 3px;
  /* margin-top: 10px; */
  font-size: 24px;
}

.search-container input {
  border-radius: 5px;
  padding: 6px;
  margin-top: 8px;
  font-size: 17px;
  border: none;
}

.search-container button {
  float: right;
  padding: 6px;
  margin-top: 8px;
  margin-right: 16px;
  background: #ddd;
  font-size: 17px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
}

.bottom-nav {
  display: flex;
}

.bottom-nav a {
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

a:hover {
  background-color: #ddd;
  color: black;
}

.bottom-nav a.active {
  background-color: #2196f3;
  color: #fff;
}

/* Body  */
.content {
  /* margin-top: 0px; */
  display: flex;
  height: 90vh;
  flex-direction: column;
}

/* Issue */
#social-issue {
  padding: 1rem 2.5rem;
  /* width: 50%; */
  background: #a7ecee;
}

.accordion {
  align-items: center;
  width: 100%;
}

/* issue section  */

.your-issue p {
  font-size: 2.5rem;
  font-family: "Zeyada", cursive;
  color: #000000;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
}
.your-issue {
  /* margin: 3px; */
  width: 100%;
  height: 50vh;
  background: #ffeebb;
  display: flex;
  flex-direction: column;
  border-top: 2px solid black;
  padding-bottom: 10px;
}
#box-area {
  /* justify-content: center;
  align-items: center; */
  width: 60%;
  margin: 10px auto;
  line-height: 1rem;
  color: #000000;
  font-size: 1.7rem;
  padding: 2rem;
  height: 10rem;
  background-color: #bcd3ff;
}

.your-issue input {
  margin: auto;
  padding: 10px;
  width: 10%;
  font-weight: bold;
  font-family: "Zeyada", cursive;
}

/* Contact  */

#contact {
  /* width: 50%; */
  /* margin: 3px; */
  padding-top: 20px;
  background-color: #ffeebb;
  color: #000000;
  font-family: "Zeyada", cursive;
  font-size: 16px;
  border-top: 2px solid #000000;
}

h1,
p {
  margin: 1em auto;
  text-align: center;
  color: black;
}
label {
  color: black;
}

form {
  width: 60vw;
  max-width: 500px;
  min-width: 300px;
  margin: 0 auto;
  padding-bottom: 2em;
}

fieldset {
  border: none;
  padding: 2rem 0;
}

label {
  display: block;
  margin: 0.5rem 0;
}

input,
textarea,
select {
  margin: 10px 0 0 0;
  width: 460px;
  min-height: 2em;
}

.form-input,
textarea {
  background-color: #ffffff;
  border: 1px solid #000000;
  color: #ffffff;
}

/* FAQ */
#faq {
  width: 100%;
  height: 60vh;
  background: #99dbf5;
  padding: 50px;
}
#faq h2 {
  font-size: 2.5rem;
  font-family: "Zeyada", cursive;
  color: #000000;
  text-align: center;
  /* margin-top: 10px; */
  /* font-weight: bold; */
}

.faq-accordion {
  background-color: #eee;
  color: #000000;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-weight: bold;
}

*/ .faq-active,
.faq-accordion:hover {
  background-color: #ccc;
}

.faq-panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  text-align: left;
}
.faq-panel p {
  text-align: left;
}
.faq-accordion:after {
  content: "\02795";
  font-size: 13px;
  color: #777;
  float: right;
  margin-left: 5px;
}

.faq-active:after {
  content: "\2796";
}

/* Footer */
