.faq {
    margin-bottom: 45px;
}

.faq-item {
    border-radius: 0;
    padding: 0.5em 0;
    position: relative;
    margin-bottom: 10px;
    border-bottom: 2px solid #A2ADFF;
}

.faq-items {
    border-top: 2px solid #a2adff;
}

.faq-arrow {
    position: absolute;
    right: 20px;
    width: 14px;
    top: 17px;
    cursor: pointer;
    transform: rotate(0deg);
    transition: all 500ms ease;
}

.faq-answer {
    opacity: 0;
    transition: all 250ms ease-in-out;
    overflow: hidden;
    width: 100%;
}

.faq-item:not(.open) .faq-answer {
    height: 0px !important;
}


.faq-item-content {
    padding-right: 0;
}

.faq-question {
    cursor: pointer;
    width: 100%;
    padding: 10px 50px 10px 0;
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
    font-weight: 600;
    font-size: 1.2rem;
}

.faq-answer-inner {
    padding-top: 15px;
    padding-bottom: 15px;
    color: #000000;
}

.faq-answer-inner p:last-of-type {
    margin-bottom:0;
}


.faq-item.open .faq-answer {
    opacity: 1;
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    top: 20px;
}

@media screen and (max-width: 768px) {
    .faq-question {
    }

    .faq-arrow {
        top: 14px;
    }
}

@media screen and (max-width: 450px) {
    .faq-question {
    }
}