.hide-answer {
  display: none;
}

.faqs {
  padding-top: 80px;
  padding-bottom: 50px;
}

.faqs__filters {
  display: flex;
  padding: 8px;
  margin-top: 40px;
}

.faqs__filters p {
  margin-right: 62px;
  margin-bottom: 4px;
  position: relative;
  cursor: pointer;
}

.faqs__filters p::after {
  content: "";
  background-color: #e6485c;
  height: 1px;
  width: 0%;
  position: absolute;
  bottom: 0px;
  left: 0;
  transition: ease-in 0.5s;
}

.faqs__filters p:hover {
  color: #e6485c;
}

.faqs__filters p:hover::after {
  width: 100%;
}

.faqs__selected {
  color: #e6485c;
  background-color: transparent;
}

.faqs__selected::after {
  content: "";
  background-color: #e6485c;
  height: 1px;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: 0;
}

.faqs__grid {
  display: flex;
  flex-wrap: wrap;
}

.faqs__faq {
  width: calc(50% - 30px);
  margin-right: 30px;
  border-bottom: 1px solid #e2e7eb;
  padding: 17px 0px;
}

.faqs__question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

.faqs__question {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.faqs__question:hover {
  color: #e6485c;
}

.faqs__icon {
  font-weight: 500;
  font-size: 20px;
  line-height: 29px;
  margin-left: 12px;
  color: #e6485c;
}

.faqs__answer {
  margin-top: 8px;
}

@media all and (max-width: 780px) {
  .faqs__filters {
    display: flex;
    flex-wrap: wrap;
    padding: 8px;
  }

  .faqs__filters p {
    margin-right: 12px;
    margin-bottom: 12px;
    position: relative;
    cursor: pointer;
    background-color: #f5f7f9;
    border-radius: 4px;
    font-size: 14px;
    padding: 12px;
    width: auto !important;
  }

  .faqs__filters p::after {
    content: "";
    background-color: #000000;
    height: 1px;
    width: 0%;
    position: absolute;
    bottom: 8px;
    left: 8px;
    transition: ease-in 0.5s;
  }

  .faqs__filters p:hover {
    color: #000000;
  }

  .faqs__filters p:hover::after {
    width: 70%;
  }

  .faqs__selected {
    color: #000000;
    border-bottom: none;
    background-color: #bfebff !important;
  }

  .faqs__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-flow: row dense;
    margin-top: 0px;
  }

  .faqs__faq {
    width: 100%;
  }

  .faqs__question {
    font-size: 16px;
    line-height: 19px;
    width: 90%;
    font-weight: 400;
  }

  .faqs__icon {
    font-size: 16px;
  }

  .faqs__answer {
    font-size: 16px;
  }
}
