@media (max-width: 499px) {
    .header{
        width: 100%;
        /*padding: 55px 0;*/
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        padding: 33px 0;
        /*background: linear-gradient(rgba(0,0,0,0.35), rgba(0,0,0,0));*/
        /*background: #030000;*/
    }
    .header-content{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
    }
    .header-logo{
        width: 120px;
        height: 33px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-logo-img{
        width: 120px;
        height: 33px;
        object-fit: contain;
    }
    .header-search-btn{
        width: 33px;
        height: 33px;
        display: none;
        /*display: flex;*/
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }
    .header-search-btn-icon{
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

    .header-menu-open-btn {
        width: 33px;
        height: 33px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .header-menu-open-btn-icon {
        width: 28px;
        height: 28px;
        object-fit: contain;
    }

    .header-drawer-menu-list{
        width: calc(100% - 40px);
        background-color: #030000;
        padding: 20px;
        display: none;
        /*display: flex;*/
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: fixed;
        top: 0;
        height: calc(100% - 20px - 80px);
        left: 0;
        overflow-y: scroll;
        padding-top: 80px;
    }
    .header-drawer-menu-list-open{
        display: flex;
    }
    .header-menu-close-btn{
        width: 40px;
        height: 40px;
        background-color: #FFFFFF;
        border-radius: 20px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 20px;
        right: 20px;
        box-shadow: rgba(125,125,125,0.2) 0 3px 8px;
    }
    .header-menu-close-btn-icon{
        width: 22px;
        height: 22px;
        object-fit: contain;
    }
    .header-drawer-menu {
        width: calc(100% - 40px);
        padding: 10px 20px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        position: relative;
    }
    .header-drawer-menu-header{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    .header-drawer-menu-icon{
        width: 33px;
        height: 33px;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-content: center;
    }
    .header-drawer-menu-icon-img{
        width: 22px;
        height: 22px;
        object-fit: contain;
    }

    .header-drawer-menu-link {
        width: calc(100% - 53px);
        padding-right: 20px;
        color: #FFFFFF;
        font-size: 20px;
        font-family: "Microsoft Sans Serif", sans-serif;
        font-weight: 500;
        text-align: left;
        text-decoration: none;
        height: 33px;
        line-height: 33px;
    }

    .header-drawer-menu-wrap {
        width: 100%;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .header-drawer-sub-menu-wrap {
        width: 100%;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }

    .header-drawer-menu-wrap-open {
        display: flex;
    }

    .header-drawer-sub-menu-wrap-open {
        display: flex;
    }

    .header-drawer-sub-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding-top: 20px;
    }

    .header-drawer-sub-menu-title {
        font-size: 16px;
        font-weight: 500;
        color: #999999;
        text-align: left;
        width: 100%;
        text-indent: 20px;
    }

    .header-drawer-sub-menu-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        padding-top: 20px;
    }

    .header-drawer-sub-menu-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        margin-bottom: 10px;
    }
    .header-drawer-sub-menu-item:last-of-type{
        margin-bottom: 0;
    }

    .header-drawer-sub-menu-item-link {
        width: calc(100% - 30px);
        color: #FFFFFF;
        font-size: 15px;
        font-family: "Microsoft Sans Serif", sans-serif;
        font-weight: 500;
        text-align: left;
        text-decoration: none;
        padding: 5px 10px;
        padding-left: 20px;
    }

    .header-drawer-sub-menu-item-link:hover {
        background-color: #030000;
        border-radius: 7px;
        color: #ffffff;
    }

    .header-drawer-menu-item {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .header-drawer-menu-item-link {
        width: 100%;
        color: #eeeeee;
        font-size: 16px;
        font-family: "Microsoft Sans Serif", sans-serif;
        font-weight: 300;
        text-align: left;
        text-indent: 20px;
        text-decoration: none;
        height: 33px;
        line-height: 33px;
        padding: 20px 0;
    }
}