
.faq{
    list-style: none;
    margin-block: 1em;
    margin-inline: 0px;
    padding: 0%;
    display:flex;
    flex-direction: column;
    max-width: 1200px;
}
.faq-item{

    border-bottom: 2px solid black;
}
.faq-button{
    display: flex;
    background-color: white;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    border: none;
    padding-block: 1em;
    padding-right: 1em;
    padding-left: 0;
    font-weight: 600;
    cursor: pointer;
}
.faq-arrow{
    display: inline-block;
    background-color: black;
    width: 1.2em;
    height: 0.8em;
    clip-path: polygon(0% 0%, 50% 100%, 100% 0%, 80% 0%,50% 65%,20% 0%);
    transition: all 0.4s ease;
}

.faq-arrow-rotated{
    transform: rotate(180deg);
}
.faq-answer{
    display: block;
    line-height: 1.5;
    overflow: hidden;
    padding-bottom: 1em;
    transition: all 0.4s ease;
    height: auto;
}

.faq-answer.faq-noshow{
   display: hidden;
   height: 0px;
   padding-bottom: 0px;

}
@media screen and (max-width:600px) {
    .faq{
        width: 100%;
        font-size: 16px;
    }
    .faq-button{
        padding-inline: 0%;
    }
    .faq-arrow{
    width: 30px;

    }
    .faq-answer{
        width: 90%;
    }
}