.faq-question-section {
    margin-top: 1.875rem;
}

.faq-question-section h3 {
    color:#000;
}

.faq-item {
    border-top: 1px solid #D9D9D9;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.faq-row {
    display: flex;
    gap: 2.5rem;
}

.faq-accordion {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2.5rem;
	cursor:pointer;
}

.faq-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1;
    display: flex;
    justify-content: space-between;
}

.faq-title span {
    max-width: 80%;
}

.faq-text {
    margin-top: 1.875rem;
}

.faq-item.open .faq-toggle svg {
    transition: all .5s ease;
}

.faq-item.open .faq-toggle {
    transition: all .5s ease;
}

.faq-item.open .faq-toggle svg {
    transform: rotate(180deg);
}

.faq-toggle svg {
    transition: all .5s ease;
}

@media (max-width:766px) {

.faq-accordion {
    margin-top: 1.875rem;
    grid-template-columns: repeat(1, 1fr);
}
	
	.faq-item {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}
	
	.faq-title {
    font-size: 1.25rem;
}
	
	.faq-toggle svg {
    width: 1.3rem;
}
	
	
	
}

