  @media only screen and (max-width: 700px){
   .hdr img {
    width: 300px;
}
.sec-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
}

.con{
    width: 80px;
    height: 80px;
    font-size: 13px;
    font-weight: bold;
    background-color: #ffffff;
    user-select: none;
    padding: 4px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
    border-top-left-radius: 100%;
    border-bottom-right-radius: 100%;
    text-align: center;
    margin: 4px;
    margin-bottom:15px;
}
.con:hover {
    box-shadow: 0px 0px 15px rgba(33, 255, 77, 0.599);
}
.menu {
    height: 70px;
    width: 70px;
    padding: 5px;
    box-shadow: 0px 0px 15px rgb(0 0 0 / 15%);
    border-radius: 25px;
    background-color: #fff;
    text-align: center;
    
}
.menu h4{
    color: #aeaeae;
    margin-top:10px;
}

.img-menu {
    width: 60px;
    height: 60px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    background-color: #1ABC9C;
    border-radius: 50%;
    transition: all .3s;
}
.img-menu:hover {
    background-color: #aeaeae;
}
.img-menu i{   
    margin-top: 15px;
    color: #fff;
    font-size: 30px;
}

  }