I've been experimenting with creating a horizontal menu using HTML and CSS.
<section class="latest-albums-area section-padding-100">
<div class="container">
<div class="row">
<div class="col-12">
<div class="section-heading style-2">
<p>Discover What's New</p>
<h2>Latest Albums</h2>
</div>
</div>
</div>
<div class="row justify-content-center">
<div class="col-12 col-lg-9">
<div class="ablums-text text-center mb-70">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin gravida dignissim justo, at tristique massa blandit quis.</p>
</div>
</div>
</div>
<div class="row">
<div class="col-12">
<div class="albums-slideshow owl-carousel">
<!-- Single Album -->
<!-- Add your album content here -->
</div>
</div>
</div>
</div>
</section>
However, when I view it on the server, the animation speed seems too fast. How can I slow down the movement to prevent it from changing every 15 seconds? I've searched through the CSS and JavaScript files but couldn't locate the specific class responsible for this behavior. Should I create a new class or modify an existing one to adjust the timing?