.faq-section{
    display: flex;
    flex-direction:column;
}

.faq-titulo{    
    width: 90%;
    margin: 0 auto 40px;
}

.faq-section p{
  font-family: Poppins;
  font-size: 16px;
  font-weight: 400;
  line-height: 25.6px;
  text-align: left;
  text-underline-position: from-font;
  text-decoration-skip-ink: none;
  color:rgba(84, 84, 84, 1)
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.accordion__item {
    border-bottom: 1px solid #e5f3fa;
    border-radius: 10px;
    overflow: hidden;
}

.accordion__header {
padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.accordion__header::after {
    content: '';
    background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
    width: 20px;
    height: 20px;
    transition: .4s;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

/*.accordion__header.active {
    background: #e5f3fa;
}*/

.accordion__header.active::after {
    transform: rotateX(180deg);
}

.accordion__item .accordion__content {
    padding: 0 25px;
    max-height: 0;
    transition: .5s;
    overflow: hidden;
}

@media screen and (min-width: 767px){
  .faq-section h3{
    font-family: Poppins;
    font-size: 39px;
    font-weight: 700;
    line-height: 45.24px;
    text-align: left;
    text-underline-position: from-font;
    text-decoration-skip-ink: none;
    padding-top: 15px;
  }
  
  
  .faq-section{
    display: flex;
    flex-direction:row;
    justify-content: space-between;
  }

  .faq-titulo{
    width:412px;
  }

  .faq-content{
    width: 750px;
    max-height: 400px;
    overflow-y: scroll;
  }
  
  
    
    
 .faq-content::-webkit-scrollbar-track{
	/*-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);*/
	background-color: #e8e8e8;
}

.faq-content::-webkit-scrollbar{
	width: 5px;
	background-color: #F5F5F5;
}

.faq-content::-webkit-scrollbar-thumb{
  background-color: #b2b2b2;
  border: 2px solid #b2b2b2;
}
