.what_we_do_first_banner_main_class {
    width: 100%;
    height: 80vh;
    overflow: hidden;
    position: relative;
    background-image: url('./../../images/what_we_do/what_we_do_first_banner.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.what_we_do_first_banner_child {
    width: 100%;
    height: 100%;
    background: #00000096;
    display: flex;
    justify-content: center;
    align-items: center;
}

.what_we_do_first_banner_child_to_child {
    width: 70%;
    height: auto;
}

.child_to_child_heading {
    font-size: 57px;
    font-weight: 700;
    line-height: 72px;
    text-align: center;
}

.child_to_child_paragraph {
    font-size: 30px;
    font-weight: 600;
    line-height: 43.5px;
    text-align: center;
}

.child_to_child_paragraph .child_to_child_paragraph_span {
    font-size: 32px;
    font-weight: 600;
    line-height: 43.5px;
    text-align: center;
}

.child_to_child_heading,
.child_to_child_paragraph {
    color: var(--secondary-color);
}


/* Tablet View (max-width: 768px) */
@media (max-width: 768px) {
    .what_we_do_first_banner_main_class {
        height: 50vh;
        /* Reduce height for tablet */
    }

    .what_we_do_first_banner_child_to_child {
        width: 90%;
        /* Increase width to fit smaller screens */
    }

    .child_to_child_heading {
        font-size: 40px;
        /* Adjust font size for tablet */
        line-height: 58px;
        /* Adjust line height */
    }

    .child_to_child_paragraph {
        font-size: 22px;
        line-height: 33px;
    }

    .child_to_child_paragraph .child_to_child_paragraph_span {
        font-size: 24px;
        line-height: 33px;
    }
}

/* Mobile View (max-width: 576px) */
@media (max-width: 576px) {
    .what_we_do_first_banner_child_to_child {
        width: 95%;
    }

    .child_to_child_heading {
        font-size: 28px;
        /* Smaller font size for mobile */
        line-height: 40px;
        /* Adjust line height */
    }

    .child_to_child_paragraph {
        font-size: 16px;
        /* Smaller font size for mobile */
        line-height: 24px;
        /* Adjust line height */
    }

    .child_to_child_paragraph .child_to_child_paragraph_span {
        font-size: 20px;
        line-height: 28px;
    }
}