You can do so by right clicking the portion that you want to target. In your case it’s the < and >. Right click on it then inspect element. There, you can see what element controls it. To hide/remove the button, add this to your style.css
a.right.carousel-control {
display: none;
}
and
a.left.carousel-control {
display: none;
}