div#accordion .accordion-title {
    padding: 1em 3em 1em 1.1em;
    background: #47abe1;
    color: #fff;
    font-size: 1.1em;
    font-family: 'Poppins';
    font-weight: 400;
    position: relative;
    margin-bottom: 0.8em;
    cursor: pointer;
    border: 0px solid #47abe1;
    border-left: 6px solid #000000;
    width: 100%;
}

div#accordion .accordion-title:before {
    /* content: ""; */
    position: absolute;
    top: 0;
    right: -3em;
    width: 2.5em;
    height: 100%;
    background: #c89242;
}

div#accordion .accordion-title:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 2.5em;
    height: 100%;
    background: url(Faq1.svg) no-repeat center;
    background-size: 46%;
    filter: invert(1);
}

div#accordion .accordion-title.open:after {
    background: url(Faq2.svg) no-repeat center;
    background-size: 46%;
}

div#accordion .accordion-title.open {
    margin-bottom: 0;
    color: #fff;
}

.accordion-content {
    padding: 1em;
    background: #47abe1;
	border-top: 1px solid #fff;
    margin-top: 0em;
    margin-bottom: 1.3em;
    border-left: 6px solid #000;
    color: #fff;
	display: none;
}

.accordion-content p:last-child {
    margin: 0;
}
.accordion-content ul li {
    background: url(/wp-content/uploads/2024/08/W-checked.png) no-repeat 0 0.4em;
    background-size: 1.5em;
}

@media only screen and (max-width: 580px){
	
div#accordion .accordion-title {
    font-size: 1.1em;
    padding: 0.91em 3em 0.91em 0.91em;
}

}