/* .headermain {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background-color: #f8f8f8;
}

.headersection img {
    max-height: 50px;
}

.contactustopbtn a {
    text-decoration: none;
    color: black;
} */

/* .hamburger img {
    cursor: pointer;
    width: 30px;
} */

.drawer {
    position: fixed;
    top: 0;
    left: -80%;
    width: 80%;
    height: 100%;
    background-color: #333;
    color: white;
    transition: left 0.3s ease;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
    overflow-y: auto;
}

.drawer-header {
    padding: 15px;
    background-color: #444;
}

.drawer-header img {
    max-height: 70px;
    filter: grayscale(100%);
}

.drawer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}


.drawer-menu li a {
    text-decoration: none;
    color: white;
    display: block;
    padding: 15px;
    cursor: pointer;
    font-family: 'proximanova', sans-serif;
}

.submenu {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu li {
    background-color: #444;
}

.submenu li a {
    padding: 10px 15px;
}