.parallax {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 500px;
    background-image: url("../images/about/demo.png");
}

.heading-about-us {
    color: white;
    text-align: center;
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    font-size: 80px;
}

.who-are-we {
    background-image: url("../images/guestlove/360_F_29133877_bfA2n7cWV53fto2BomyZ6pyRujJTBwjd.jpg");
    height: 350px;
    width: 70%;
    border-radius: 10px;

}

.align-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading-waw {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.why-us-image {
    background-image: url("../images/about/4.jpg");
    height: 200px;
    width: 50%;
    border-radius: 5px;
}

.why-us {
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

.second-img {
    background-image: url("../images/wonderland/pexels-godson-bright-962464.jpg");
    min-height: 300px;
}

/* Media Queries for Mobile Devices */
@media only screen and (max-width: 768px) {
    .heading-about-us {
        font-size: 40px;
    }

    .who-are-we {
        width: 90%;
        height: 250px;
    }

    .why-us-image {
        /* width: 90%; */
        height: 150px;
    }

    .second-img {
        min-height: 200px;
    }

    .row {
        padding: 20px;
    }

    .parallax {
        min-height: 200px;
    }
}

@media only screen and (max-width: 480px) {
    .heading-about-us {
        font-size: 30px;
    }

    .who-are-we {
        width: 100%;
        height: 200px;
    }

    /* .why-us-image {
        width: 100%;
        height: 100px;
    }
    .second-img {
        min-height: 150px;
    } */
}