.faq {
  margin: 20px 0 20px 0;
}

.faq .faq_item {
  position: relative;
  margin: 50px 0;
}

@media screen and (min-width: 1024px) {
  .faq {
    margin: 20px 0 20px 30px;
  }

  .faq .faq_item {
    margin: 15px 0 40px 0;
  }
}

/*Title*/
.faq .faq_item .question {
  position: relative;
  line-height: normal;
  padding: 10px 45px 10px 12px;
  font-family: Avenir Next LT W01 Bold;
  font-weight: 400;
  font-size: 3.2rem;
  cursor: pointer;
}

.faq .faq_item .question.question-whiteonblue {
  color: #ffffff;
  background-color: #007eae;
}

.faq .faq_item .question.question-blueonwhite {
  color: #007eae;
  background-color: #ffffff;
}

.faq_cta {
  position: absolute;
  margin: 0 12px;
  bottom: -20px;
  text-decoration: underline;
  font-size: 20px;
  font-weight: bold;
  color: #007eae;
  cursor: pointer;
}

.faq_cta_less {
  display: none;
}

@media screen and (max-width: 1024px) {
  .faq .faq_item .question {
    font-size: 2.7rem;
    padding: 7px 5px;
    margin-left: 5.8%;
  }
}

/* Toggles */
.faq .question.active .faq_line1 {
  transform: rotate(-180deg) !important;
}

.faq .question.active .faq_line2 {
  transform: rotate(360deg) !important;
}

.faq_expand {
  position: absolute;
  top: 15px;
  width: 33px;
  left: -36px;
  cursor: pointer;
}

.faq_circle {
  width: 30px;
  height: 30px;
  border-radius: 40px;
  border: solid 2px #333;
  display: flex;
  position: relative;
  text-align: center;
  align-items: center;
  justify-content: center;
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.faq_line1 {
  width: 20px;
  height: 3px;
  background: #333;
  display: inline-block;
  position: absolute;
  top: 11px;
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

.faq_line2 {
  width: 20px;
  height: 3px;
  background: #333;
  display: inline-block;
  transform: rotate(90deg);
  transition: all 500ms cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media screen and (max-width: 1024px) {
  .faq .faq_expand {
    left: -25px;
    top: 13px;
  }

  .faq_circle {
    width: 21px;
    height: 21px;
    border: solid 1px #333;
  }

  .faq_line1 {
    top: 8px;
  }

  .faq_line1,
  .faq_line2 {
    width: 13px;
  }
}

/*  */

.faq .faq_intro {
  padding: 10px 15px 10px 12px;
}

.faq .answer {
  padding: 0px 15px 20px 12px;
  display: none;
}

.faq .answer img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 1024px) {
  .faq .faq_intro {
    padding: 10px 15px 10px 5px;
    margin-left: 5.8%;
  }

  .faq .answer {
    padding: 0px 15px 20px 5px;
    margin-left: 5.8%;
  }

  .faq .faq_cta {
    margin: 0 0 0 5.8%;
    padding-left: 5px;
  }
}
