Only by (preferably) making a child theme and editing the page-front-slider.php file in "davinciwoo\template-parts\page-front"
Don't ask me how to edit it ... I'd have to spend time experimenting with it to give that answer. You could make a backup of the file and start removing bits of code and experimenting yourself.
Probably bits like this ...
Code:
<div id="additional-banner-1" class="col">
<?php if( adswth_option( 'additional_banner_1_link' ) ){ ?><a class="main-banner-link" href="<?php echo esc_url( adswth_option( 'additional_banner_1_link' ) )?>" ><?php } ?>
<div class="additional-banner-img d-flex h-100 align-items-end" style="background-image: url( <?php echo adswth_option('additional_banner_1_image');?> )">
<?php if( adswth_option( 'additional_banner_1_text' ) ){ ?>
<div class="main-banner-text w-100">
<?php echo adswth_option( 'additional_banner_1_text' ); ?>
</div>
But there may be other bits, or only parts of that code, I don't know. Like I said, I'd have to experiment, but I don't have time for that myself.