a:hover,a:focus{
    text-decoration: none;
    outline: none;
}
#accordion1 .panel{
    border: none;
    border-radius: 3px;
    box-shadow: none;
	margin-bottom: -4px;
    /*margin-bottom: 15px;*/
}
#accordion1 .panel-heading{
    padding: 0;
    border: none;
    border-radius: 3px;
}
#accordion1 .panel-title a{
   display: block;
        padding: 10px 33px;
    background: #2d3039;
    font-size: 14px;
    color: #fefefe;
    /* border: 1px solid #ececec; */
    /* box-shadow: 0 0 10px rgba(0,0,0,.05); */
    position: relative;
    transition: all 0.5s ease 0s;
}
#accordion1 .panel-title a.collapsed{
    box-shadow: none;
    color: #ffffff;
}
#accordion1 .panel-title a:before,
#accordion1 .panel-title a.collapsed:before{
   
	content: "\f067";
    font-family: "Font Awesome 5 Free";
    width: 25px;
    height: 25px;
    line-height: 28px;
    font-size: 11px;
    font-weight: 900;
    text-align: center;
    position: absolute;
    top: 8px;
    right: 15px;
    transform: rotate(135deg);
    transition: all 0.3s ease 0s;
}
#accordion1 .panel-title a.collapsed:before{
    color: #ffffff;
    transform: rotate(0);
}
#accordion1 .panel-title a:after{
    content: "";
    width: 1px;
    height: 100%;
    background: #2d3039;
    position: absolute;
    top: 0;
    right: 55px;
	
}
#accordion1 .panel-body1{
    padding: 8px 25px 4px;
    border: none;
    font-size: 13px;
    color: #333333;
    line-height: 27px;
	background: #eee;
}