Hiding/Deleting Slideshow Bar on Colorblock theme

I am having some issues with my slideshow on the Colorblock theme, as the pictures are set to automaticly slide every 5 seconds.
Their is no need for the arrows and pause button to show up there.
I would like to hide/delete these buttons because it is in the way of my images, specialy on mobile.

Any help?

this bar —>

@gravelsite - it can be done using css, please share your page link, I will give you the css here

@gravelsite ,

Share the store URL.

Hello, I would also like to know how to remove the search icon and the login icon beside the cart on the header!

https://192z84w2fpwco61o-61915201724.shopifypreview.com/

@gravelsite ,

summary.header__icon.header__icon--search.header__icon--summary.link.focus-inset.modal__toggle {
    display: none;
}

a.header__icon.header__icon--account.link.focus-inset.small-hide {
    display: none;
}
.slideshow__controls.slideshow__controls--top.slider-buttons.no-js-hidden {
    display: none;
}

Add this css at the bottom of Online Store->Theme->Edit code->Assets->base.scss.liquid

@gravelsite - add this css to the end of your base.css file and check

.header__search, .header__icon--account{display:none !important; visibility:hidden;}

.slideshow__controls{display:none !important; visibility:hidden;}