.hero3 {
    display: flex;
    justify-content: center;
    align-items: center;
    /* Replace 'url' with the path to your hero2 background image */
    background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url('img/h3.jpg') no-repeat center center fixed; 
    background-size: cover;
    /* Assuming you have a height of 100vh, you can adjust as necessary */
    height: 100vh;
    background-color: rgba(0,0,0,0.6);
}

.hero3-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 80%;  /* adjust as necessary */
    color: #fff;
}


.hero3-image img {
    max-width: 100%;
    height: auto;
}

.hero3-text {
    width: 45%; /* adjust as necessary */
    margin-top: -100px;
}

.hero3-text h1, .hero2-text h2 {
    margin-bottom: 1em;
}

.hero3-content h1 {
    font-family: 'Arial Narrow'; /* Change to desired font */
    font-size: 20px; /* Adjust size as needed */
    line-height: 1.0; /* Adjust line spacing as needed */
    font-weight: lighter;
}

.hero3-content h2 {
    margin-top: 15px;
    font-family: 'Impact'; /* Change to desired font */
    font-size: 55px; /* Adjust size as needed */
    line-height: 1.5; /* Adjust line spacing as needed */
    font-weight: lighter;
}

.hero3-content p {
    margin-top: 12px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; /* Change to desired font */
    font-size: 17px; /* Adjust size as needed */
    line-height: 1.5; /* Adjust line spacing as needed */
    font-weight: lighter;
}

/* .hero3-image {
    width: 60%; 
    border: 3px solid #fff;
    margin-left: 20px;
} */


@media(max-width: 700px){

    .hero3 {
        /* display: flex; */
        justify-content: center;
        align-items: center;
        /* Replace 'url' with the path to your hero2 background image */
        background: linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),url('img/h3.jpg') no-repeat center center fixed; 
        background-size: cover;
        /* Assuming you have a height of 100vh, you can adjust as necessary */
        height: 100vh;
        background-color: rgba(0,0,0,0.6);
    }
    
    .hero3-content {
        /* display: flex; */
        justify-content: space-between;
        align-items: center;
        width: 80%;  /* adjust as necessary */
        color: #fff;
    }

    .hero3-text {
        font-size: 5rem;
        width: 100%; /* adjust as necessary */
        margin-top: -100px;
        text-align: center;
    }

    .about-us{
        margin-bottom: 20px;
        width: auto;
        
    }

    .card2{
        width: 100%;
        margin-top: -10px;
    }

    .card2 h4 {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 1rem;
        color: #333;
    }

}