.slider-img{
    height:100vh;
    object-fit:cover;
}

.carousel-item{
    position:relative;
}

.carousel-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
}

.carousel-caption{
    top:50%;
    transform:translateY(-50%);
    bottom:auto;
    z-index:2;
}

.carousel-caption h1{
    font-size:55px;
    font-weight:700;
}

.carousel-caption p{
    font-size:22px;
    margin:20px 0;
}

@media(max-width:768px){

    .slider-img{
        height:70vh;
    }

    .carousel-caption h1{
        font-size:32px;
    }

    .carousel-caption p{
        font-size:16px;
    }

}