    .carousel-hero-banner .carousel-indicators {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 2;
	display: flex;
	justify-content: center;
	padding: 0;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	list-style: none;
}

    .carousel-hero-banner {
        position: relative;
        width: 100%;
        height: 600px;
        overflow: hidden;
        color: var(--text-color);
        z-index: 0;
    }

    .carousel-hero-banner .carousel-images {
        width: 100%;
        height: 100%;
    }

    .carousel-hero-banner .carousel-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 1s ease-in-out;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .carousel-hero-banner .carousel-slide.active {
        opacity: 1;
    }

    .carousel-hero-banner .carousel-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        z-index: 1;
    }

    .carousel-hero-banner .slide-content {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 2rem;
        background-color: #94151552;
        border-radius: 5px;
        width: 35rem;
    }

    .carousel-hero-banner .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        color: #fff;
    }

    .carousel-hero-banner .slide-content p {
        font-weight: 100;
        color: #fff;
        font-size: 1.2rem;
        margin-bottom: 1.5rem;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }

    .carousel-hero-banner .cta-button {
        display: inline-block;
        background-color: #f26520;
        color: #fff;
        padding: .7rem 2rem;
        text-decoration: none;
        border-radius: 5px;
        font-weight: bold;
        transition: background-color 0.3s ease;
    }

    .carousel-hero-banner .nav-button {
        cursor: pointer;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background-color: rgba(0, 0, 0, 0.5);
        color: var(--text-color);
        border: none;
        padding: .5rem .8rem;
        font-size: 2rem;
        transition: background-color 0.3s ease;
        z-index: 3;
    }

    .carousel-hero-banner .nav-button:hover {
        background-color: rgba(0, 0, 0, 0.8);
    }

    .carousel-hero-banner .prev {
        left: 20px;
    }

    .carousel-hero-banner .next {
        right: 20px;
    }

    .carousel-hero-banner .carousel-indicators {
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 3;
    }

    .carousel-hero-banner .dot {
        cursor: pointer;
        height: 15px;
        width: 15px;
        margin: 0 5px;
        background-color: rgba(255, 255, 255, 0.5);
        border-radius: 50%;
        display: inline-block;
        transition: background-color 0.3s ease;
    }

    .carousel-hero-banner .dot.active, .dot:hover {
        background-color: #fff;
    }