.parallax{
    background-image: url(../../images/banner10.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: unset;
    height: 35vh;
    min-height: 250px;
    max-height: 320px;
    width: 100%;
    margin-block: 4em;
    position: relative;
} 

.innerDivParallax{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.innerDivParallax > p{
    text-align: center;
    font-family: 'Italianno', cursive;
    color: #f6f6f6;
    padding-inline: 0.5em ;
    padding-block: 0.2em;
    font-size: 45px;
}

@media screen and (min-width:1024px) {
    .parallax{
        background-attachment: fixed;
    }
}