#headerDummy {
  height: 0;
}

.faqTitle {
  position: absolute;
  display: block;
  margin: 16vw 0 auto;
  width: 100%;
  text-align: center;
  z-index: 1;
  font-size: 30px;
  font-weight: 400;
}

.banner {
  width: 100%;
  position: relative;
  display: block;
}

.faqContainer {
  width: 75%;
  position: relative;
  margin: 0 auto;
  display: block;
  margin-top: 50px;
  margin-bottom: 50px;
  border-top: 1px solid #d6d6d6;
  overflow: hidden;
  font-family: "OpenSans";
}

.questionBox {
  width: 100%;
  position: relative;
  float: left;
  height: fit-content;
  border-bottom: 1px solid #d6d6d6;
  padding: 20px 0;
}

.questionTitleBox {
  width: 100%;
  display: flex;
  position: relative;
  float: left;
  justify-content: space-between;
  height: 30px;
}

.questionTitle {
  text-transform: uppercase;
  position: relative;
  font-size: 14px;
}

.openDiv {
  position: relative;
  cursor: pointer;
  font-size: 17px;
  font-weight: 400;
  width: 60px;
  text-align: right;
  padding-right: 10px;
}

.questionAnswer {
  position: relative;
  overflow: hidden;
  width: 90%;
  margin-bottom: 30px;
  margin-top: 30px;
  line-height: 20px;
  float: left;
  display: none;
}

.questionAnswer.open {
  display: block;
}

@media screen and (max-width: 768px) {
  .faqTitle {
    margin: 49vw 0 auto;
  }
  .faqContainer {
    width: 90%;
  }
  .banner {
    height: 300px;
  }
  .questionTitle {
    line-height: 30px;
  }
  .openDiv {
    line-height: 30px;
  }
}
