.faq-header {
    background-image: -webkit-linear-gradient(to right, #1DA1F2, #3b5998);
	background-image: linear-gradient(to right, #1DA1F2, #3b5998);
    border-radius: 25px 25px 0 0;
}
.search-wrapper {
    max-width: 90%;
    width: 500px;
    margin: 0 auto;
}
.search-wrapper svg {
    position: absolute;
    width: 28px;
    height: 28px;
    color: #1DA1F2;
    fill: #1DA1F2;
    top: 13px;
    right: 9px;
}
.search-wrapper input {
    width: 100%;
    padding: 15px 20px;
    padding-right: 40px;
    font-size: 15px;
    border-radius: 15px;
}
.faqs {
    background: #fff;
    border-radius: 0 0 24px 24px;
    box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(148, 163, 184, 0.1) 0px 20px 25px -5px, rgba(148, 163, 184, 0.1) 0px 8px 10px -6px;
}
.faq-item {
    border-bottom: 1px solid rgb(215, 221, 239);
}
.faq-item:last-child {
    border-bottom: 0;
}
.faq-item .question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.faq-item .question p {
    font-size: 1.25rem;
    font-weight: 600;
    padding-top: 30px;
    display: inline-block;
}


.faq-item > .question:first-of-type {
    list-style: none;
}

.faq-item .question svg {
    height: 40px;
    width: 40px;
}
.faq-closed .question svg.minus {
    display: none;
}
.faq-open .question svg.plus {
    display: none;
}

div.answer {
    overflow: hidden;
}
.faq-closed > div.answer {
    max-height: 0;
}
.faq-open > div.answer {
    max-height: 380px;
}

.faq-item > div {
    transition-duration: 0.3s;
    transition-property: max-height;
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}
.faq-item > div > p {
    padding: 15px 0;
    color: rgb(72, 90, 131);
}

.question {
    cursor: pointer;
}
.faq-open .question > p {
    color: #7694c9;
}


@media (max-width: 676px) {
    .faq-item .question p {
        max-width: 80%;
        font-size: 1rem;
        text-align: justify;
    }
    .faq-item > div > p {
        text-align: justify;
    }
}