 #accordion .panel{
                border: none;
                border-radius: 0;
                margin-bottom: 5px;
                box-shadow: none;
            }
            #accordion .panel-heading{
                padding: 0;
                border: none;
                border-radius: 0;
                position: relative;
            }
            #accordion .panel-title a{
                display: block;
                padding: 12px 30px;
                margin: 0;
                background: #db241c;
                font-size: 14px;
                font-weight: bold;
                color: #ffffff;
                text-transform: uppercase;
                letter-spacing: 1px;
                position: relative;
            }
            #accordion .panel-title a:before,
            #accordion .panel-title a.collapsed:before{
                content: "";
                width: 20px;
                height: 2px;
                background: #f9e2ad;
                position: absolute;
                top: 19px;
                right: 30px;
            }
            #accordion .panel-title a:after,
            #accordion .panel-title a.collapsed:after{
                content: "";
                width: 2px;
                height: 20px;
                background: #f9e2ad;
                position: absolute;
                bottom: 9px;
                right: 39px;
                transition: all 0.3s ease 0s;
            }
            #accordion .panel-title a:after{ height: 0; }
            #accordion .panel-body{
                padding: 20px 30px;
                background: #ffffff;
                border-top: 2px solid #000;
                font-size: 15px;
                color: #000000;
                line-height: 28px;
                letter-spacing: 1px;
                box-shadow: 0 2px 4px 0 rgba(0,0,0,.36);
            }