div#accordion .accordion-title {
    padding: 0.6em 1.4em 0.6em 0.6em;
    background: #ffffff;
    color: #2C2C2C;
    font-size: 1.3em;
    font-weight: 600;
    position: relative;
    margin-bottom: 0.8em;
    cursor: pointer;
    border: 1px solid #349EC7;
    border-left: 0.3em solid #349EC7;
    width: calc(100% - 3em);
}

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

div#accordion .accordion-title:after {
    content: "";
    position: absolute;
    top: 0;
    right: -3em;
    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.5em;
    background: #349EC7;
    color: #fff;
}

.accordion-content {
    padding: 1.4em;
    background: #fff;
    margin-top: 0em;
    margin-bottom: 1.3em;
    border: 1px solid #349EC7;
}

.accordion-content p:last-child {
    margin: 0;
}

@media only screen and (max-width: 580px) {
	
div#accordion .accordion-title {
    font-size: 5.5vw;
}	
	
}
