@import url(../global/global.css);

.faq-section .item {
    background-color: #fff;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 1.14em;
    font-weight: 700;
    cursor: pointer;
    transition: all ease 0.3s;
}

.faq-section .item.active,
.faq-section .item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.faq-section .item.active svg path,
.faq-section .item:hover svg path {
    stroke: #fff;
}

.faq-section .item.active .arrow {
    transform: rotate(180deg);
}

.faq-section .item .icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all ease 0.3s;
}

.faq-section .item .value {
    flex-grow: 1;
}

.faq-section .swiper {
    width: calc(100% - 100px);
}

.faq-content {
    display: none;
}

.faq-content.active {
    display: block;
}