@-webkit-keyframes appear {
  from {
    opacity: 0;
  }
}
@keyframes appear {
  from {
    opacity: 0;
  }
}
@-webkit-keyframes slideFromTop {
  from {
    top: -200px;
  }
  to {
    top: 0px;
  }
}
@keyframes slideFromTop {
  from {
    top: -200px;
  }
  to {
    top: 0px;
  }
}
@-webkit-keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
}
@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.75);
  }
}
@media (min-width: 1500px) {
  .faq-container {
    padding: 0 215px;
  }
}
.faq-container .header {
  margin: 0 auto;
  text-align: center;
}
.faq-container .header .headline-2 {
  text-align: center;
  color: #19462C;
  margin-bottom: 15px;
}
.faq-container .faq-category {
  border: #19462C solid 1px;
  background-color: #FFFFFF;
  color: #19462C;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s;
  margin-top: 4%;
  border-radius: 15px;
}
.faq-container .category-title {
  text-transform: uppercase;
  color: #19462C;
  font-size: 22px;
  margin-top: 39px;
}
.faq-container .faq {
  background-color: #305841;
  color: #FFFFFF;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  margin-top: 7px;
  margin-bottom: 7px;
  border-radius: 15px;
  -webkit-animation: popIn 0.25s;
          animation: popIn 0.25s;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-container .faq .arrow {
  margin: 0 15px;
  font-size: 22px;
  transform: rotate(90deg);
  transition: all 0.2s;
}
.faq-container .faq .arrow-active {
  transform: rotate(-90deg);
}
.faq-container .faq-answer {
  border: #19462C solid 1px;
  background-color: #FFFFFF;
  color: #19462C;
  padding: 3px 15px;
  width: 100%;
  text-align: left;
  outline: none;
  transition: 0.4s;
  margin-bottom: 7px;
  border-radius: 15px;
  -webkit-animation: popIn 0.25s;
          animation: popIn 0.25s;
  font-size: 16px;
}
.faq-container .panel {
  margin-top: 1%;
  background-color: white;
  display: none;
  overflow: hidden;
  font-size: 16px;
}
