.about_banner {
    position: relative;
    overflow: hidden;
}

.about_banner img { 
    width: 100%;
    height: auto;
}

.about_banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 21%); /* Background with reduced opacity */
    z-index: 1; /* Ensure the background is behind the image */
}

.about_banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    text-align: center;
    z-index: 2; /* Ensure the text is above the background */
}

.about_banner-content h1 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about_banner-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}
@media screen and (max-width: 787px) {
    .about_banner-content h1 {
        font-size: 1.5rem;
    }
    
    .about_banner-content p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 751px) {
    .about_banner-content h1 {
       display: none;
    }
    
    .about_banner-content p {
        display:none;
    }
}
