.bandeau-contact {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 100px;
}

.bandeau-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.765);
    z-index: 1;
}

.bandeau-contact__image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.bandeau-contact__titre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 30%;  
}


@media (max-width: 700px) {
   .bandeau-contact__titre {
    font-size: 3rem;

}

}


@media (max-width: 400px) {
   .bandeau-contact__titre {
    width: 100%;

}

}