/*------------------------
  FAQ
------------------------*/
.faq-sect .faq-item {
  margin-top: 1.25vw;
}
.faq-sect .faq-item:nth-child(1) {
  margin-top: 0;
}
.faq-sect .faq-item .question {
  position: relative;
  height: 90px;
  height: 7.5vw;
  border-radius: 45px;
  border-radius: 3.75vw;
  background-color: rgba(255, 168, 34, 0.1);
  display: flex;
  align-items: center;
  padding: 0 60px;
  padding: 0 5vw;
  cursor: pointer;
}
.faq-sect .faq-item .question::before {
  content: "Q";
  position: absolute;
  width: 60px;
  width: 5vw;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  text-align: center;
  color: #FFA822;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.667vw;
}
.faq-sect .faq-item .question p {
  width: 100%;
  font-size: 20px;
  font-size: 1.667vw;
  font-weight: 700;
  line-height: 1.6;
  position: relative;
}
.faq-sect .faq-item .question p::before, .faq-sect .faq-item .question p::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  background-color: #28292B;
  width: 10px;
  width: 0.833vw;
  height: 3px;
  height: 0.25vw;
  border-radius: 1.5px;
  border-radius: 0.125vw;
  top: 50%;
  right: -2.5vw;
}
.faq-sect .faq-item .question p::before {
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
}
.faq-sect .faq-item .question p::after {
  transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
}
.faq-sect .faq-item .question.on p::after {
  transform: translateY(-50%) rotate(0);
  -webkit-transform: translateY(-50%) rotate(0);
}
.faq-sect .faq-item .answer {
  display: none;
  position: relative;
  padding: 25px 0 40px 60px;
  padding: 2.083vw 0 3.333vw 5vw;
}
.faq-sect .faq-item .answer::before {
  content: "A";
  position: absolute;
  width: 60px;
  width: 5vw;
  left: 0;
  top: 2.083vw;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  font-size: 20px;
  font-size: 1.667vw;
}
.faq-sect .faq-item .answer p {
  line-height: 2;
}

@media screen and (min-width: 1366px) {
  .faq-sect .faq-item {
    margin-top: 15px;
  }
  .faq-sect .faq-item .question {
    height: 90px;
    border-radius: 45px;
    padding: 0 60px;
  }
  .faq-sect .faq-item .question::before {
    width: 60px;
    font-size: 20px;
  }
  .faq-sect .faq-item .question p {
    font-size: 20px;
  }
  .faq-sect .faq-item .question p::before, .faq-sect .faq-item .question p::after {
    width: 10px;
    height: 3px;
    border-radius: 1.5px;
    right: -30px;
  }
  .faq-sect .faq-item .answer {
    padding: 25px 0 40px 60px;
  }
  .faq-sect .faq-item .answer::before {
    width: 60px;
    font-size: 20px;
    top: 27px;
  }
}
@media screen and (max-width: 768px) {
  .faq-sect .faq-item {
    margin-top: 10px;
  }
  .faq-sect .faq-item .question {
    height: auto;
    border-radius: 6px;
    padding: 10px 30px 10px 20px;
  }
  .faq-sect .faq-item .question::before {
    content: none;
  }
  .faq-sect .faq-item .question p {
    font-size: 16px;
  }
  .faq-sect .faq-item .question p::before, .faq-sect .faq-item .question p::after {
    width: 8px;
    height: 2px;
    border-radius: 1px;
    right: -15px;
    background-color: #FFA822;
  }
  .faq-sect .faq-item .answer {
    padding: 10px 15px 30px 20px;
  }
  .faq-sect .faq-item .answer::before {
    content: none;
  }
  .faq-sect .faq-item .answer p {
    font-size: 15px;
  }
}