section p:not(:last-child) {
    margin-bottom: 15px;
}


/* FAQS SECTION */

.faqs {
    background-color: var(--gray-color);
}
.faq-item {
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.03);
}
.faq-item:not(:last-child) {
    margin-bottom: 20px;
}
.faq-item-title,
.faq-item-content {
    padding: 30px;
}
.faq-item-title {
    align-items: center;
    background-color: var(--white-color);
    border-radius: var(--border-radius);
    font-size: var(--fze-big);
    justify-content: space-between;
}
.faq-item-title i {
    width: 30px;
}
.faq-item-title h4 {
    width: calc(100% - 30px - 30px);
}
.faq-item-content {
    display: none;
    opacity: 0;
    position: relative;
    transition: all var(--g-time) ease;
}
.faq-item-content.display {
    display: block;
}
.faq-item-content.show {
    opacity: 1;
}
.faq-item-content::before {
    content: "";
    background-color: var(--gray-color);
    height: 2px;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 100%;
}
.faq-item-content ul li {
    list-style: none;
    margin-left: 10px;
}
.faq-item-content ul li:not(:last-child),
.faq-item-content ul {
    margin-bottom: 15px;
}
.faq-item-content p:not(:last-child) {
    margin-bottom: 15px;
}
.faq-item[data-id="2"] ul li span {
    display: inline-block;
    margin-right: 10px;
}