.bs-parallax{
    margin:1rem 0;
    padding: 4rem 0;
    /* min-height:100vw;*/
    /*    min-height: -webkit-fill-available; /* parche safari*/
    clip-path: inset(0);
    -webkit-clip-path:inset(0);
    position: relative;
    display:flex;
    align-items:center;
    justify-content:center;
}
.bs-parallax__img-container{
    position:fixed;
    bottom:0;
    top:0;
    left:0;
    right:0;
     z-index:-1;
     
}
.bs-parallax__img-container__image{
    object-fit:cover;
    height:100%;
    width:100%;
    overflow:hidden;
    will-change: transform; 
}
.bs-parallax__content{
    text-align:center;
    color:white;
    padding:1rem;
}
.bs-parallax__content .btn{
    white-space:nowrap;
}
.bs-parallax__title{
    font-size:1.6rem;
    font-weight: var(--parallax-title-weight, var(--font-bold));
}

.bs-parallax__img{
    margin:1rem;
}
@media screen and (min-width:576px){
    .bs-parallax{
       /* min-height:80vh;*/
        
    }
    .bs-parallax__title{
        font-size:2.25rem;
    }
}
@media screen and (min-width:992px){
    
    .bs-parallax__title{
        font-size:4rem;
    }
}