.carousel-img{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.carousel-video{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-text{
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    z-index: 2;
    color: #fff;
}

.carousel-item::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 1;
}