body{
  font-family: Raleway, sans-serif;
  background: #e8e8e8;
}

.faq-hero-image {
  background-image: url("../images/home/hero-images/FAQ-hero.jpeg");
  height: 630px;
  background-position: left top;
  background-repeat: no-repeat;
  background-size: cover;
}

body.chrome div div.faq-hero-image, body.firefox div div.faq-hero-image, body.edge div div.faq-hero-image, body.opera div div.faq-hero-image{
  background-image: url("../images/home/hero-images/FAQ-hero.webp");
  background-attachment: fixed
}

body.ie div div.faq-hero-image, body.safari div div.faq-hero-image{
  background-image: url("../images/home/hero-images/FAQ-hero.jpeg");
}

.faq-hero-text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #676767;
  letter-spacing: 10px;
  font-family: 'Raleway', sans-serif;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
}

article header{
  background-color: white;
}

article div.content {
  border-color: transparent;
  overflow: hidden;
}

article.active div.content{
  border-color: #bfadd1;
}

article svg.down-arrow{
  display: block;
}

article.active svg.down-arrow{
  display: none;
}

article svg.up-arrow{
  display: none;
}

article.active svg.up-arrow{
  display: block;
}

article.active header{
  background: #bfadd1;
}

article.active span{
  color: white;
}

div.content{
  transition-duration: 0.2s;
  opacity: 0;
  transition: max-height 400ms ease-in-out, opacity 400ms ease-in-out;
  height: auto;
  max-height: 0;
}

article.active div.content{
  opacity: 1;
  max-height: 200px;
  overflow: auto;
}
