@media (max-width: 1199px) {

    /* smaller screen  */

    #hamburger {
        position: absolute;
        right: 20px;
        top: 25px;
        display: flex;
        background-image: url('/img/icons/hamburger.svg');
        background-size: contain;
        height: 30px;
        width: 30px;
        cursor: pointer;
        z-index: 1;
        opacity: 0.8;
    }

    #hamburger:hover {
        opacity: 1.0;
    }

    #hamburger_header {
        width: 100%;
        height: 30px;
        display: inline-block;
    }

    #hamburger_header .logo {
        height: 25px;
    }

    #hamburger_header .close {
        cursor: pointer;
    }

    #hamburger_header a {
        float: right;
    }

    #menu_area {
        position: relative;
        z-index: 2;
    }


    #menu {
        position: absolute;
        right: 10px;
        top: 10px;
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
        z-index: 2;
        width: calc(100% - 20px);

    }

    #menu.hamburger_hidden {
        display: none;
    }

    #menu .item {
        font-size: 14px;
        padding: 12px 8px;
        font-weight: 500;
        color: rgba(0, 0, 0, 0.8);
        cursor: pointer;
        transition: 0.3s all;
    }

    #menu .item:hover {
        color: rgba(0, 0, 0, 1.0);
        background-color: rgba(0, 0, 0, 0.1);
        transition: 0.3s all;
        border-radius: 4px;
    }

}


@media (min-width: 1200px) {

    /* larger screen */

    #hamburger {
        display: none;
    }

    #hamburger_header {
        display: none;
    }


    #menu {
        position: absolute;
        right: 20px;
        top: 30px;
        display: flex;
        z-index: 1;
    }

    #menu .item {
        font-size: 14px;
        padding: 8px 12px;
        margin-left: 50px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.8);
        cursor: pointer;
        transition: 0.5s all;
        border-bottom: 1px solid rgba(255, 255, 255, 0);
    }

    #menu .item:hover {
        color: rgba(255, 255, 255, 1.0);
        transition: 0.5s all;
        border-bottom: 1px solid rgba(255, 255, 255, 1.0);
    }

    #menu .item.interest {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 18px;
        border-bottom: none;
    }

    #menu .item.interest:hover {
        color: rgba(255, 255, 255, 1.0);
        background-color: rgba(255, 255, 255, 0.2);
        border-bottom: none;
    }

}