.faqs {
    width: 100%;
    padding: 15px 0;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,.3);
    margin-bottom: 15px;
    padding-bottom: 5px;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-title {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    color: rgb(68, 68, 68);
    font-size: 18px;
    padding-bottom: 5px;
    font-weight: bold;
}
.faq-plus {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: all ease-in-out 0.5s;
    -webkit-transform: rotate(0);
    transform: rotate(0);
}
.faq-title:hover .faq-plus {
    border-radius: 100px;
    background-color: #eee;
}
.faq-item.active .faq-plus {
    transform: rotate(-45deg);
    transition: all ease-in-out 0.5s;
}
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: .5s;
    font-family: "PT Serif";
    font-size: 14px;
    color: rgb(68, 68, 68);
}
.faq-content p {
    margin-bottom: 5px;
}
.faq-item.active .faq-content {
    transition: max-height 0.5s ease-in-out;
    overflow: auto;
    max-height: 500px;
}

.plus-link i {
    font-family: 'FontAwesome';
    font-style: normal;
}
.plus-link {
    cursor: pointer;
}
.content-link {
    display: none;
    padding: 10px 0;
}