@media screen{
    /* initially hide menu items and menu */

    .menu-dropdown {
        position: fixed;
        right: 0;
        left: 0;
        z-index: 100;
        background-color: #202224;
        margin-top: 0;
    }
    .megamenu {
        position: absolute;
        right: 0;
        left: 0;
        display: none;
        background-color: #202224;
        border-bottom: 3px solid #9EC436;
        z-index: 0;
    }
    .megamenu .container:after {
        border-top: 3px solid #9EC436;
        position: absolute;
        width: 100%;
        left: 0px;
        right: 0px;
        top: 0px;
    }
    .megamenu .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px;
    }
    .active {
        z-index: 101;
    }
    .megamenu .expanded > a {
        color: #9EC436;
        text-transform: uppercase;
        font-family: "Roboto";
        font-weight: 700;
        font-size: 18px;
        padding: 0 0 15px;
    }
    .megamenu .expanded ul a {
        font-family: "Roboto";
        color: #fff;
    }
    .megamenu ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }
    .megamenu .expanded ul a:hover {
        color: #019ebc;
    }
    .megamenu .featured {
        margin-top: 45px;
    }

    .megamenu.menu-search {
        text-align: center;
    }

    .megamenu.menu-search .search-field {
        border: none;
        background: transparent;
        font-family: "Flama Condensed Light";
        font-size: 26px;
        color: #fff;
        margin: 0;
        width: 100%;
        max-width: 964px;
        text-align: center;
        opacity: 1;
    }
    .megamenu.menu-search .search-submit {
        display: none;
    }

    #megamenu-blocker {
        height: 100%;
        width: 100%;
        position: fixed;
        display: none;
        left: 0;
        top: 0;
        z-index: 99;
    }
}

@media screen and (max-width: 479px) {
    .megamenu.menu-search .container {
        padding:20px 10px;
    }

}
@media screen and (min-width: 480px) {
    .megamenu.menu-search .search-field {
        width: 80%;
        font-size: 35px;
    }
}
