@media screen and (max-width: 1030px) {
    .ham_menu span {
        position: absolute;
        width: 40px;
        top: 20px;
        right: 0;
        font-weight: bold;
    }
    .toggle_menu_mobile {
        width: 100%;
        position: absolute;
        top: 50px;
        right: 0;
        background-color: #fff;
        box-shadow: 1px -2px 14px #5d5d5d;
        z-index: 999;
    }
    .toggle_menu_mobile ul {
        list-style: none;
        text-align: left;
        padding: 5%;
    }
    .toggle_menu_mobile ul li {
        line-height: 40px;
    }
    .toggle_menu_mobile li a {
        font-size: 16px;
        font-weight: bold;
        color: #5d5d5d;
    }
    li> a:hover {
        color: #5d5d5d !important;
    }
}
@media screen and (min-width: 1031px) {
    .ham_menu, .toggle_menu_mobile {
        display: none !important;
    }
}