@media screen and (max-width: 1024px) {

html {
    margin:0;
    padding:0;
}

body {
    margin:0;
    padding:0;
    font-size: 1em;
    font-family: Arial, Verdana, Helvetica;
    min-height: 1024px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

div.header {
    position: relative;
    background-color: #141339;
    height: 85px;
    width: 100%;
    padding: 0px;
    vertical-align: middle;
    box-sizing: border-box;
    z-index: 100;
}

div.header div.header-content {
    width: 100%;    
    margin: 0 auto;
}

    div.header .search {
        float: right;
        margin-right: 20px;
    }

        div.header .search .search-text {
            position: absolute;
            background-color: #fff;
            width: 250px;
            height: 30px;
            border-radius: 15px;
            margin-top: 30px;
            padding: 5px 10px;
            box-sizing: border-box;
            overflow: hidden;
        }

        div.header .search .search-button {
            width: 48px;
            height: 56px;
            cursor: pointer;
            background-image: url(../img/search-button.jpg);
            margin-left: 260px;
            margin-top: 15px;
            box-sizing: border-box;
            padding: 5px 10px 0 10px;
            color: #444;
        }

            div.header .search .search-button:active {
                opacity: .7;
            }


div.top-menu {
    position: relative;
    z-index: 100;
    width: 100%;
    height: 40px;    
    color: #fff;
    margin: 0 auto;
    white-space: nowrap;
    text-align: center;    
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
}

    div.top-menu .mobile-menu {
        display: none;
    }

    div.top-menu ul {
        padding: 0px;
        margin: 0px;
        list-style-type: none;
        background-color: #61b522;
    }

        div.top-menu ul li {            
            display: inline-block;            
            height: 40px;
            white-space: nowrap;
            padding-top: 10px;
            box-sizing: border-box;
            font-size: 0.9em;
            padding-left: 7px;
            padding-right: 7px;
            width: auto;
        }

            div.top-menu ul li.selected {
                background-color: #b93277; 
            }

            div.top-menu ul li a {
                text-decoration: none;
                color: #fff;
            }

            div.top-menu ul li a:hover {
                color: #eee;
            }



div.footer {
    background-color: #61b522;
    width: 100%;
    height: 135px;    
}

    div.footer .footer-content {        
        width: 100%;
        height: 135px;
        margin: 0 auto;
        background-image: url(../img/footer-bi-logo.png);
        background-repeat: no-repeat;
        background-position: right 22px;        
    }

    div.footer .footer-bottom {
        background-color: #18113b;
        width: 100%;
        height: 20px;
    }

    div.footer .copyright {

        position: absolute;
        margin-top: 100px;
        display: block;
        color: #fff;
        font-size: .9em;
        padding-left: 20px;
        box-sizing: border-box;
    }
    






}