#home-carousel{
    position: relative;
    background: #5d2a2c;
}

#home-carousel .custom-buttons{
    position: absolute;
    bottom: 0;
    z-index: 9;
    background: rgba(0, 0, 0, 0.47);
    width: 100%;

}
#home-carousel .custom-buttons .custom-buttons-container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}
#home-carousel .custom-buttons #custom-prev,
#home-carousel .custom-buttons #custom-next{
    border: none;
    background: none;
    color: white;
    font-size: 18px;
}

#home-carousel .custom-buttons #image-alt-text{
    position: absolute;
    right: 0;
    color: white;
    font-size: 2rem;
    font-weight: 100;
    margin-right: 8px;
}

#home-carousel .custom-buttons .custom-dots{
    display: flex;
    gap: 10px;
    align-items: center;
}

#home-carousel .custom-buttons .custom-dots .custom-dot{
    background: none;
    color:white;
    font-size: 2.0rem;
    border: solid 1px white;
    width: 32px;
    height: 20px;
}

#home-carousel .custom-buttons .custom-dots .custom-dot.active{
    background-color: var(--primary);
}

#home-carousel .carousel-caption{
    top: 0;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    text-align: left;
    padding-top: 80px;

}

#home-carousel .carousel-caption div{
    max-width: 55%;
}

#home-carousel .carousel-caption div p{
    text-shadow: 0px 3px 8px rgb(0 0 0);
}

@media(max-width: 992px){
    #home-carousel .carousel-caption div p{
        text-shadow: none;
    }
}


