You might want to consider adding more code for better functionality.
Based on an analysis of your website's source code, it appears that your carousel is located within a designated div class:
<div style="margin-top:-80px;">
<!-- Carousel
================================================== -->
<div id="myCarousel" class="carousel slide" data-ride="carousel">
Consider adjusting the div style. Simply changing the margin from -80 to 80 could potentially resolve the issue.
<div style="margin-top:80px;">
View image showing the updated style`
Furthermore, utilizing a container tag instead may also be beneficial in this scenario.