.bannerImg {
    background-image: url('../../asset/Images/img1.jpg');
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
    z-index: 9;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    text-align: center;
    color: white;
    font-weight: 600;
}

.bannerImg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(119 119 119 / 67%);
    z-index: -9;
}