@media all and (max-width: 960px) {

    main .mgE {
        display: block;
        width: 30px;
        height: 30px;
        padding: 5px 15px;
        cursor: pointer;
        position: relative;
    }

    main .mgE hr {
        border: none;
        margin: 0;
        position: absolute;
        width: 30px;
        height: 3px;
        border-radius: 2px;
        background-color: #0b4887;
        transition: all .25s ease;
    }

    main .mgE hr {
        top: 18px;
    }

    main .mgE hr:first-child {
        top: 10px;
    }

    main .mgE hr:last-child {
        top: 26px;
    }

    main .mgE.show hr:first-child,
    main .mgE.show hr:last-child {
        width: 0;
        top: 15px;
        margin: 15px;
        opacity: 0;
    }

    main .mgE.show hr:nth-child(2) {
        transform: rotate(45deg);
    }

    main .mgE.show hr:nth-child(3) {
        transform: rotate(-45deg);
    }

    main aside {
        display: inline-block;
        position: absolute;
        /*top: 225px;*/
        left: -260px;
        width: 260px;
        transition: left .5s ease;
        background-color: #EEE;
    }

    main article {
        position: relative;
        left: 0px;
        transition: left .5s ease;
    }

    main.left article {
        left: 260px;
    }

    main.left aside {
        left: 0px;
    }
}

@media all and (min-width: 961px) {

    main .mgE { display: none; }
}
