.hub-faq-section {
  display: block;
  width: 100%;
  padding: 74px 0;
}

.faq-item {
  padding: 22px 0;
  display: block;
  width: 100%;
  overflow: hidden;
}

.faq-item+.faq-item {
  border-top: rgba(255, 255, 255, 0.2) solid 1px;
}

.faq-question {
  width: 100%;
  border: none;
  outline: none;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  background: none;
  color: #fff;
  padding-right: 44px;
}

.faq-question::after {
  content: " ";
  position: absolute;
  right: 0;
  top: 50%;
  margin: -16px 0 0 0;
  width: 32px;
  height: 32px;
  font-size: 24px;
  transition: transform 0.3s ease;
  background: url(./images/add-square.svg) no-repeat center center;
}

.faq-item.active .faq-question::after {
  background: url(./images/minus-square.svg) no-repeat center center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease-in-out;
}

.faq-answer p {
  padding: 10px 0 0;
  margin: 0;
  color: #A1A1AB;
  line-height: 1.5;
  font-size: 16px;
}

.faq-item.active .faq-answer {
  max-height: 1000px;
}

.hub-faq-section .btnbox {
    display: flex;
    justify-content: center;
}

.hub-faq-section .btnbox a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 3.2rem;
    height: 48px;
    background-color: #3CB64A;
    color: #FFF;
    border: none;
    border-radius: 0;
    font-size: 16px;
    font-family: Inter;
    font-weight: 600;
    line-height: 20px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border-radius: 100px;
}

@media (max-width: 1599px) {
  .faq-item {
    padding: 18px 0;
  }

  .faq-question {
    font-size: 18px;
  }
}

@media (max-width: 1439px) {}

@media (max-width: 1350px) {}

@media (max-width: 1199px) {
  .hub-faq-section {
    padding: 48px 0;
  }
}

@media (max-width: 991px) {
  .hub-faq-section {
    padding: 48px 0;
  }

  .faq-item {
    padding: 16px 0;
  }

  .faq-question {
    font-size: 18px;
  }

  .faq-question {
    padding-right: 36px;
  }
}

@media (max-width: 767px) {
  .hub-faq-section {
    padding: 24px 0;
  }
  
  .hub-faq-section .btnbox a {font-size: 14px;} 

}