.faqcont{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 50px 0;
  }
  
  .wrapper {
    width: 60%;
  }
  
  h1 {
    margin-bottom: 20px;
  }
  
  .containerfaq {
    background-color: #FA80AE;
    border: 3px solid black;
    border-bottom: 8px solid black;
    color: black;
    border-radius: 20px;
    margin: 10px 0;
  }
  
  .question {
    font-size: 1.5rem;
    font-weight: 600;
    padding: 20px 80px 20px 20px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .question::after {
    content: "\002B";
    font-size: 2.2rem;
    position: absolute;
    right: 20px;
    transition: 0.2s;
  }
  
  .question.active::after {
    transform: rotate(45deg);
  }
  
  .answercont {
    max-height: 0;
    overflow: hidden;
    transition: 0.3s;
  }
  
  .answer {
    padding: 0 20px 20px;
    line-height: 1.5rem;
    font-size: 22px;
  }
  
  .question.active + .answercont {
  }
  
  @media screen and (max-width: 790px){
 
    .wrapper {
    width: 98%;
  }
  }