/* 800 - 1160 */
@media screen and (min-width: 800px) {
    a {
        color: inherit;
        text-decoration: none;
    }

    .menu-button-target {
        cursor: pointer;
        position: fixed;
        z-index: 200;
        right: 40px;
        top: 40px;
        width: 200px;
        height: 50px;
        background-color: #f3f3f3;
        padding: 0 10px;
        border: #999 1px solid;
        transition: all 0.2s;
    }

    .menu-button-target.active {
        background-color: #fff;
        border: #fff 1px solid;
    }

    .menu-button-target.active .menu-button {
        background-color: transparent;
    }

    .menu-button-target.active .menu-button:before {
        transform: translateY(0%) rotate(45deg);
        background-color: #060;
    }

    .menu-button-target.active .menu-button:after {
        transform: translateY(0%) rotate(-45deg);
        background-color: #060;
    }

    .menu-button {
        position: relative;
        top: 50%;
        left: 0;
        display: block;
        width: 30px;
        height: 4px;
        margin-top: -2px;
        background-color: #000;
        transition: all 0.2s;
    }

    .menu-button:before, .menu-button:after {
        content: "";
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        background-color: #000;
        transition: all 0.2s;
    }

    .menu-button:before {
        transform: translateY(-250%);
    }

    .menu-button:after {
        transform: translateY(250%);
    }

    .menu-overlay {
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.75);
        display: none;
        position: fixed;
        top: 0px;
    }

    .menu-overlay.active nav ul {
        margin-top: 100px;
    }
}

/* 480 - 320 */
@media screen and (max-width: 779px) {
    a { color: inherit; text-decoration: none;}

    .menu-button-target {
        cursor: pointer;
        position: fixed;
        z-index: 200;
        right: 20px;
        top: 20px;
        height: 50px;
        background-color: #f3f3f3;
        padding: 0 10px;
        border: #999 1px solid;
        transition: all 0.2s;
    }
	        .menu-button-target.active {
	          background-color: #fff;
		      border: #fff 1px solid;
	        }
	        .menu-button-target.active .menu-button {
	          background-color: transparent;
	        }
	        .menu-button-target.active .menu-button:before {
	          transform: translateY(0%) rotate(45deg);
	          background-color: #060;
	        }
	        .menu-button-target.active .menu-button:after {
	          transform: translateY(0%) rotate(-45deg);
	          background-color: #060;
	        }
	        .menu-button {
	          position: relative;
	          top: 50%;
	          left: 0;
	          display: block;
	          width: 30px;
	          height: 4px;
	          margin-top: -2px;
	          background-color: #000;
	          transition: all 0.2s;
	        }
	        .menu-button:before,
	        .menu-button:after {
	          content: "";
	          display: block;
	          position: absolute;
	          width: 100%;
	          height: 100%;
	          left: 0;
	          background-color: #000;
	          transition: all 0.2s;
	        }
	        .menu-button:before {
	          transform: translateY(-250%);
	        }
	        .menu-button:after {
	          transform: translateY(250%);
	        }
	        .menu-overlay {
	          width: 100%;
	          height: 100%;
	          background-color: rgba(0,0,0,0.75);
	          display: none;
	          position: fixed;
	          top: 0px;
	        }
	        .menu-overlay.active nav ul {
	          margin-top: 100px;
	        }
}
