h3:before{display: none !important;}
h3{background: unset !important;
  padding: unset !important;
  margin-bottom: unset !important;
  border-radius: unset !important;
  text-shadow: unset !important;
  color: #D65A8A !important;
    font-size: 30px !important;
    font-weight: bold;
    font-family: "Libre Baskerville", serif;
    line-height: 1;
	margin-bottom: .5em !important;
	text-align: center;}

.sub-heading-qa{
	color: #D65A8A;
    font-size: 30px;
    font-weight: bold;
    font-family: "Libre Baskerville", serif;
    line-height: 1;
	margin-bottom: .5em;
	text-align: center;
}
.qa-wrap{
	padding: 0 3%;
	margin-bottom: 2em;
}
.qa-wrap a{
	color: #D65A8A;
}
.qa-item{
	border:solid 1px #B14653;
	margin-bottom:12px;
	background:transparent;
	overflow:hidden;
}
.qa-question{
	display:flex;
	justify-content:space-between;
	align-items:center;
	padding:15px 20px;
	cursor:pointer;
	background:#D65A8A;
	color:#fff;
	font-weight:bold;
	font-size:16px;
	transition:background .3s ease;
}
.qa-question::after{
	content:"+";
	font-size:24px;
	font-weight:normal;
	transition:transform .3s ease;
}
.qa-item.active .qa-question::after{
	content:"−";
}
.qa-answer{
	max-height:0;
	overflow:hidden;
	padding:0 20px;
	background:transparent;
	line-height:1.8;
	transition:max-height .4s ease,padding .4s ease;
}
.qa-item.active .qa-answer{
	max-height:380px;
	padding:20px;
}