.who_we_are_first_banner {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
    background-image: url('./../../images/who_we_are/who_we_are_first_banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


.who_we_are_first_banner-overlay-div {
    position: absolute;
    z-index: 5;
    height: 100%;
    width: 100%;
    top: 0;
    background: #00000096;
}

.who_we_are_first_banner-overlay-child {
    width: 90%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.who_we_are_first_banner-overlay-heading {
    font-size: 57px;
    font-weight: 700;
    line-height: 72px;
    text-align: center;
}

.who_we_are_first_banner-overlay-paragraph {
    font-size: 29px;
    font-weight: 600;
    line-height: 43.5px;
    text-align: center;
}

.who_we_are_first_banner-overlay-heading,
.who_we_are_first_banner-overlay-paragraph {
    color: var(--secondary-color);
}


/* Tablet View (max-width: 768px) */
@media (max-width: 768px) {
    .who_we_are_first_banner {
        height: 60vh;
        /* Slightly smaller for tablet */
        background-position: center;
        /* Center the background image */
    }

    .who_we_are_first_banner-overlay-child {
        /* margin-left: 3%; */
        padding: 2rem;
        width: 100%;
    }

    .who_we_are_first_banner-overlay-heading {
        font-size: 40px;
        line-height: 58px;
    }

    .who_we_are_first_banner-overlay-paragraph {
        font-size: 22px;
        line-height: 33px;
    }
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
    .who_we_are_first_banner {
        height: 50vh;
        /* Smaller for mobile */
        background-position: top;
        /* Adjust background focus */
    }

    .who_we_are_first_banner-overlay-child {
        /* margin-left: 2%; */
        /* Reduce margin further */
        padding: 1rem;
        /* Smaller padding for mobile */
    }

    .who_we_are_first_banner-overlay-heading {
        font-size: 28px;
        line-height: 40px;
    }

    .who_we_are_first_banner-overlay-paragraph {
        font-size: 16px;
        line-height: 24px;
    }
}