.faq{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.faq h2{
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-transform: uppercase;
}

.faq h2 span{
    font-size: 1.7rem;
}

.faq h5{
    color: var(--primary-color);
    text-transform: capitalize;
}

.faq p{
    opacity: 0.8;
    font-weight: 300;
    font-size: 0.85rem;
}

.faq-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.accordian{
    background-color: #e6e6e6;
    border-radius: 10px;
    padding: 2rem 1rem;
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.accordian:hover{
    /* border: none; */
    box-shadow: 0px 0px 1px 0.9px rgba(0, 0, 0, 0.08);
    transform: translateY(-0.2rem);
    transition: transform 0.1s ease-in-out;
}

.question{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.answer {
    padding: 1rem 0 0 0;
    line-height: 1.7;
    display: none;
}

.accordian.active .answer {
    display: block;
}

svg {
    transition: all 0.6s ease-in;
}

.accordian.active svg {
    transform: rotate(180deg);
}

@media (min-width: 1280px) {
    .faq-content{
        width: 60%;
    }

    .faq h5{
        font-size: 1rem;
    }

    .faq p {
        font-size: 0.95rem;
    }

    .faq h2 span{
        font-size: 2rem;
    }

}

@media (min-width: 1280px) {
    .faq-content{
        width: 50%;
    }
}