.faq-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 15px;
    padding: 70px 0;
}
.faq {
    width: 60%;
    background-color: #1E3050;
    color: white;
    border-radius: 5px;
}
.question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 20px 30px;
}
.question h2 {
    font-size: 25px;
    font-weight: 900;
}
.questions-icon {
    display: flex;
    width: 40px;
    height: 40px;
    background-color: white;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid white;
    transition: background-color .4s ease;
}
.question path {
    transition: fill .4s ease;
}
.question svg {
    transition: transform .4s ease;
    width: 35px;
}
.question.active .questions-icon {
    background-color: transparent;
}
.question.active path {
    fill: white;
}
.question.active svg {
    transform: scaleY(-1);
}
.answer {
    padding: 0px 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease, padding .4s ease;
}
.answer.active {
    padding: 20px 30px;
    padding-top: 0;
    
}
.answer-wrapper {
    font-size: 18px;
    line-height: 35px;
}
.answer-wrapper ul {
    margin-top: 15px;
    margin-bottom: 15px;
}
.answer-wrapper a {
    text-decoration: none;
    color: #1EB53A;
}
.answer-wrapper a:hover {
    text-decoration: underline;
}
.answer-wrapper h3 {
    margin: 15px 0;
    margin-bottom: 0;
}


@media (max-width: 1550px) {
    .faq {
        width: 80%;
    }
}
@media (max-width: 1300px) {
    .faq {
        width: 90%;
    }
    .question h2 {
        font-size: 20px;
        padding-right: 20px;
    }
    .questions-icon {
        width: 35px;
        height: 35px;
    }
    .question svg {
        width: 35px;
    }
}
@media (max-width: 800px)  {
    .faq {
        width: 95%;
    }
}
@media (max-width: 600px) {
    .question h2 {
        font-size: 18px;
    }
}