(1) How I can remove the separator line that appears on the home page? I find the CSS code which is specified.
(2) I wont remove the diamond from the medium and move the line to another position. It can ?
Thank you so much.

#gkHeaderMod h2:before {
border-top: 1px solid #fff;
content: "";
left: 0;
position: absolute;
top: 50px;
width: 100%;
}
#gkHeaderMod h2:after {
background: #fff;
content: "";
height: 9px;
left: 50%;
margin: -4px 0 0 -9px;
position: absolute;
top: 50px;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
-ms-transform: rotate(-45deg);
-o-transform: rotate(-45deg);
transform: rotate(-45deg);
width: 9px;
}
#gkHeaderMod h2:before {
display: none;
}
#gkHeaderMod h2:after {
display: none;
}