.jumbotron {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100vw;
  height: 30vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.jumbotron::after {
  content: "";
  background-color: rgba(0, 66, 28, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 30vw;
}

.jumbotron .title-font-size {
  position: relative;
  color: white;
  font-size: 3rem;
  z-index: 50;
  font-weight: 600;
  text-shadow: 0 0 6px black;
}

.max-w-1400 {
  width: 100vw;
  max-width: 1400px;
}

.faq-container {
  padding: 1.5em;
  margin-top: 0.5vh;
}

.faq-accordion {
  background-color: rgba(39, 211, 91, 0.65);
  color: white;
  cursor: pointer;
  padding: 1.5vw;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  /* transition: 0.4s; */
  font-size: 21px;
}

.faq-accordion:focus {
  outline: none;
}

.faq-accordion::after {
  content: "\25B2";
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  color: rgba(255, 255, 255, 0.8);
  float: right;
  border: none;
}

.active:after {
  content: "\25BC";
}

.active,
.faq-accordion:hover {
  background-color: #197449;
}

.faq-panel p {
  margin: 0;
  padding: 1.5vw;
  background-color: rgba(39, 211, 91, 0.4);
  color: green;
  overflow: hidden;
  font-size: 18px;
  line-height: 1.8;
}
/*# sourceMappingURL=faq.css.map */