.accordion-section-ama{
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
    width: 100%;
    margin: 50px auto 50px auto;
    background-color: rgba(var(--ternary),0.2) !important;
}
.faq-accordion-ama {
    margin: auto;
    width: 100%;
    max-width: 880px;
    border-radius: 4px;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 15px;
    padding-right: 15px;
}
.faq-item-ama {
    width: 100%;
    border-bottom: 1px solid #71D3D1 !important;
}
.faq-desc-ama{
    font-size: 18px;
    line-height: 25.2px;
    color: rgba(var(--primary), 1);
    padding-left: 10px;
}
.faq-item-ama-title{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
    padding-right: 10px;
    cursor: pointer;
}
.faq-question-ama {
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px 10px 10px 0px;
    border-radius: 5px;
    cursor: pointer;
    margin-bottom: 0px !important;
    color: rgba(var(--primary), 1) !important;
}
.faq-title-ama{
    color:rgba(var(--primary), 1) !important;
    /* padding-left: 10px; */
}
.faq-answer-ama {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 0;
    z-index: 0;
    opacity: 0;
    padding-top: 0px;
    padding-bottom: 0px;
}
.faq-answer-ama p{
    color: rgba(var(--primary), 1) !important;
    padding: 10px;
}
.faq-answer-ama.show {
    height: auto;
    z-index: 1;
    opacity: 1;
  padding-top: 10px;
}

.faq-item-ama:first-of-type{
	  border-top: 1px solid #71D3D1 !important;
}

.faq-item-ama-title svg path{
	stroke: #71D3D1 !important;
}

@media(max-width: 767px){
    div.faq-item-ama div.faq-item-ama-title h3.faq-question-ama{
        font-size: 24px !important;
    }
}