﻿body {
}
/* Media Query for Small Screens (Mobile Devices) */
@media (max-width: 768px) {
    .mobileRes div {
        width: 100% !important; /* Full width for each child on smaller screens */
        flex-direction: column; /* Stack items vertically on small screens */
        
    }

    .mobileRes {
        width: 100%;
        padding: 10px ;
        flex-wrap: wrap;
        margin-top:20px !important;
    }

    .mobileSpan1 {
        padding: 65px !important;
        font-size:25px !important;
    }

    .mobileSpan2 {
       
        font-size:60px !important;
    }

    .mobileRes3
    {
        margin-left:0px !important;
    }

    .mobileRes span {
        font-size: 5vw; /* Adjust font size to be more responsive on mobile */
    }

    /* Ensure images are responsive */
    .mobileRes img {
        max-width: 100%;
        height: auto;
    }

    .mobileRes1
    {
        flex-wrap:wrap;
        width:100%;
    }
}

/* Media Query for Large Screens (optional for wider screens) */
@media (min-width: 1200px) {
    .mobileRes span {
        font-size: 3vw; /* Larger font on larger screens */
    }
}





