#faq{
  padding: 100px 0;
  background-color: #fff;
}

.faq-section-title{
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 20px;
  color: #111;
}

.faq-section-title::before{
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: #111;
  bottom: 0;
  left: calc(50% - 40px);
}

.faq-section-title::after{
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  background-color: #48dbfb;
  border: 4px solid #fff;
  left: calc(50% - 12px);
  bottom: -7px;
}

.faq-list{
  max-width: 800px;
  margin: 0 auto;
}

.faq-item{
  border-bottom: 1px solid #e1e1e1;
}

.faq-question{
  width: 100%;
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #111;
  padding: 22px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: .2s linear;
}

.faq-question:hover{
  color: #48dbfb;
}

.faq-question i{
  transition: .3s linear;
  color: #48dbfb;
}

.faq-item.active .faq-question i{
  transform: rotate(180deg);
}

.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-item.active .faq-answer{
  max-height: 200px;
}

.faq-answer p{
  padding: 0 5px 22px;
  font-size: 15px;
  line-height: 25px;
  color: #444;
}

@media screen and (max-width: 900px){
  #faq{
    padding: 60px 0;
  }

  .faq-section-title{
    font-size: 26px;
    margin-bottom: 40px;
  }

  .faq-question{
    font-size: 15px;
    padding: 18px 5px;
  }

  .faq-item.active .faq-answer{
    max-height: 260px;
  }
}