body{
    font-family: "Roboto", sans-serif;
}
a{
    text-decoration: none;
}
.menuitems a{
    font-weight: 500;
    font-size: 24px;

}
.card{
    border: none;
    max-width: 150px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    border:2px solid #000;
}
.card:hover{
    border:2px solid #ffc107;
}
.card img{
    max-width: 50px;
    height: auto;
    margin: auto;
}
.card h2{
    font-size: 16px;
    margin-top: 0.5rem;
}





@media(max-width:767px){
    span.mobile-menu {
        display: block;
    }
    .menuarea{
        display:none;
        
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 9;
        background-color: #fff;
    }
    .mobilecross{
        position: absolute;
        right: 5%;
        top: 5%;
    }
    .mobilecross img{
        max-width: 30px;
        height: auto;
       
    }
    span.mobile-menu {
        position: fixed;
        top: 0;
        cursor: pointer;
        z-index: 2;
        background-color: #fff;
        box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.1);
        padding: 0.25rem 1rem;
        width: 100%;
        text-align: center;
        font-weight: 700;
    }
    .mobile-menu img {
        max-width: 30px;
        height: auto;
    }
    span.mobile-menu:hover{
        transition: all 0.5s ease;
        opacity: 0.7;
    }
    .mobilemargin{
        margin-top: 50px;
    }
}
@media(min-width:768px){
    span.mobile-menu {
        display: none;
    }
    .menuarea{
        display: block;
        
    }
    .mobilecross{
        display: none;
    }
}


.banner-section{
    display: none;
}