.slide {
    height: 70vh;
}

.carousel-indicators [data-bs-target] {
    background-color: transparent;
    text-indent: 0;
    width: fit-content;
    height: auto;
    margin: 0 1rem;
    opacity: 1;
    position: relative;
    height: 100%;
}

.carousel-indicators [data-bs-target]::before {
    content: "";
    position: absolute;
    top: -45%;
    left: 0;
    right: 0;
    background-color: var(--theme-color) !important;
    height: 5px;
    transition: all 0.3s;
    opacity: 0;
}

.carousel-indicators .active {
    color: var(--theme-color) !important;
}

.carousel-indicators .active::before {
    opacity: 1;
}

@media screen and (max-width:768px) {
    .carousel-indicators [data-bs-target]::before {
        top: -50%;
    }
}