    /*----------------------------General----------------------------*/

    * {
        font-family: 'Lato', 'Trebuchet MS', sans-serif;
        outline: 0;
        padding: 0;
        margin: 0;
        border: 0;
    }

    html {
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
        min-width: 360px;
        /* max-width: 1920px; */
        display: block;
        margin: 0 auto;
        width: 100%;
    }

    a {
        text-decoration: none;
        color: black;
        -webkit-transition: color 0.5s ease-in-out, transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
        transition: color 0.5s ease-in-out, transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    }

    /*Header*/

    header {
        background: #222;
        color: #72ba4a;
        width: 100%;
        height: 30px;
        padding: 15px;
    }

    header * {
        vertical-align: middle;
        -webkit-transition: color 1s ease-in-out, transform 1s ease-in-out, opacity 1s ease-in-out;
        transition: color 1s ease-in-out, transform 1s ease-in-out, opacity 1s ease-in-out;
    }

    header h2 {
        left: 15px;
        top: 15px;
        color: #72ba4a;
        width: 200px;
    }

    header a {
        color: #72ba4a;
    }

    header>a {
        width: 200px;
        display: block;
    }

    header a:hover,
    header a:focus {
        color: white;
    }

    header article {
        float: right;
        position: relative;
        right: 10px;
        top: -30px;
    }

    header article h3 {
        width: 210px;
        padding-top: 5px;
        position: relative;
        right: 10px;
        font-size: 20px;
        transform: translateX(0);
    }

    header section {
        border-left: solid 3px #72ba4a;
        width: 200px;
        padding-left: 25px;
        position: absolute;
        right: -230px;
        top: -5px;
        transform: translateX(0);
    }

    /*Header Animation*/

    header h2:hover,
    header h2:focus {
        color: white;
    }

    header article:hover h3,
    header article:focus h3 {
        /* right: 245px; */
        transform: translateX(-235px);
    }

    header article:hover section,
    header article:focus section {
        /* right: 10px; */
        transform: translateX(-240px);
    }

    /*Menu*/

    nav {
        position: absolute;
        z-index: 10000;
        background: #444;
        width: 100%;
        /* max-width: 1920px; */
        height: 60px;
    }

    nav * {
        list-style-type: none;
        vertical-align: top;
        -webkit-transition: color 0.25s ease-in-out, transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
        transition: color 0.25s ease-in-out, transform 0.25s ease-in-out, opacity 0.25s ease-in-out;
    }

    nav a {
        color: white;
        font-size: 22px;
    }

    nav ul#overheadmenu {
        width: 685px;
        margin: 0 auto;
    }

    nav ul#overheadmenu>li:nth-child(2),
    nav ul.intmenu>li:first-child {
        padding: 17px;
        background: #444;
    }

    nav ul#overheadmenu>li:nth-child(2) {
        padding: 16px 17px 16px 17px;
    }

    nav ul.intmenu>li:first-child {
        border-bottom: 6px solid #444;
    }

    nav #mobilemenu {
        display: none;
    }

    nav ul li {
        display: inline-block;
        margin-bottom: 30px;
        text-align: center;
    }

    nav ul li:first-child {
        background: #444;
    }

    nav ul.show li:first-child {
        background: #222;
    }

    nav ul.intmenu {
        background: #222;
        padding: 0;
        height: 60px;
        overflow: hidden;
    }

    nav ul.intmenu.show {
        height: auto;
    }

    nav ul.intmenu li {
        display: block;
        background: #222;
    }

    /*Menu animation*/

    nav a:hover,
    nav a:focus {
        color: #72ba4a;
    }

    .show {
        height: auto;
        background: #222;
    }

    /*Main Content*/

    .maincontent {
        margin-top: 65px;
        /*margin-bottom: 100px;*/
        z-index: 1;
    }

    .maincontent * {
        z-index: 1;
    }

    /*General*/

    .sectiontitle {
        text-align: center;
        margin: 60px 0 30px 0;
    }

    .line {
        vertical-align: middle;
        border-bottom: 2px solid black;
        z-index: 50;
    }

    .center {
        text-align: center;
        margin-bottom: 20px;
    }

    h2.center {
        margin-top: 80px;
    }

    .center a {
        font-weight: 900;
    }

    .center a:hover,
    .center a:focus {
        color: #bbb;
    }

    /*Footer*/

    footer {
        background: #222222;
        padding: 20px 0;
        width: 100%;
        margin-top: 10px;
    }

    footer p {
        color: white;
        text-align: center;
        padding: 0 10px 10px 10px;
    }

    footer a {
        color: white;
    }

    footer a:hover,
    footer a:focus {
        color: #ddd;
    }

    /*Contact Form*/

    #contact {
        width: 35%;
        display: block;
        margin: 7% auto 2% auto;
        border: 3px solid #444;
        padding: 1.5%;
    }

    #contact h2 {
        text-align: center;
    }

    #contact .line {
        border-bottom: 4px solid black;
        margin: 4% 0;
    }

    #contact fieldset {
        display: inline-block;
        width: 49.65%;
        vertical-align: top;
    }

    #contact fieldset#submit {
        display: block;
        width: 70%;
        margin: 0 auto;
    }

    #contact label {
        display: block;
        font-size: 17px;
    }

    #contact input,
    #contact textarea {
        background: #ddd;
        margin-bottom: 15px;
        padding: 5px;
        font-size: 15px;
        width: 90%;
    }

    #contact input:hover,
    #contact textarea:hover,
    #contact input:focus,
    #contact textarea:focus {
        background: #eee;
    }

    #submit {
        width: 100%;
    }

    input#contactsubmit {
        width: 100%;
        margin-top: 5%;
        display: block;
        font-size: 18px;
    }

    input#contactsubmit:hover,
    input#contactsubmit:focus {
        background: #444;
        color: white;
    }

    /*--------------------------Int Pages---------------------------*/

    .skiplinks p {
        display: none;
        padding: 10px;
        margin: 5px 0;
        color: white;
        background: #444;
        width: 100%;
        vertical-align: middle;
    }

    #intpage {
        display: block;
        margin-top: 70px;
        margin-left: 10px;
        margin-right: 10px;
        line-height: 22px;
    }

    #intpage #portfoliosplit {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
    }

    #portfolioheader {
        display: block;
        width: 100%;
    }

    #portfolioheader h2 {
        width: auto;
        background: #222;
        padding: 20px;
        text-align: center;
        color: white;
        margin-bottom: 10px;
    }

    #portfolioheader p {
        width: 100%;
        font-size: 18px;
        margin: 0 auto 20px auto;
        text-align: center;
    }

    #sidebar {
        min-width: 300px;
        padding: 20px;
        background: #444;
        margin-right: 10px;
        height: inherit;
    }

    #sidebar h3 {
        font-size: 24px;
        color: #72ba4a;
        margin: 20px 0 30px 0;
    }

    #sidebar h4 {
        color: #72ba4a;
        margin-top: 15px;
    }

    #sidebar h4:first-child {
        margin-top: 0px;
    }

    #sidebar p {
        color: white;
    }

    #sidebar p.mobile {
        display: none;
    }

    #sidebar a {
        color: white;
        font-weight: 900;
    }

    #sidebar a:hover,
    #sidebar a:focus {
        color: #72ba4a;
        font-weight: 900;
    }

    #sidebar .note {
        font-style: italic;
        padding-bottom: 3px;
        color: #72ba4a;
    }

    #portfoliocontent {
        width: 100%;
    }

    #portfoliocontent h3 {
        text-align: center;
        margin-bottom: 10px;
        background: #222;
        color: white;
        padding: 10px;
    }

    #portfoliocontent h4 {
        font-size: 18px;
        line-height: 22px;
    }

    #portfoliocontent p {
        margin-bottom: 15px;
    }

    #portfoliocontent hr {
        border-bottom: 1px solid black;
        margin: 02rem 0;
    }

    #portfoliocontent ul {
        margin-left: 30px;
        margin-bottom: 15px;
    }

    #portfoliocontent ul li {
        font-size: 16px;
        padding: 2px 0;
    }

    #portfoliocontent a {
        font-weight: 900;
    }

    #portfoliocontent a:hover,
    #portfoliocontent a:focus {
        color: #444;
    }

    #portfoliocontent h3 {
        margin-top: 20px;
    }

    #portfoliocontent h3:first-child {
        margin-top: 0px;
    }

    #videogallery section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    #videogallery div {
        width: 150px;
        height: 150px;
        overflow: hidden;
        vertical-align: middle;
        margin: 0 10px 10px 0;
    }

    #videogallery div img {
        width: 300px;
        height: auto;
    }

    .livegallery#videogallery div img {
        width: 150px;
    }

    article#videoplayer {
        display: block;
        width: 100%;
        height: 500px;
        margin-bottom: 10px;
    }

    article#videoplayer.writinggallery {
        height: 800px;
    }

    .livegallery article#videoplayer {
        border: 4px solid #444;
    }

    article#videoplayer iframe {
        width: inherit;
        height: inherit;
    }

    .mobilenote {
        font-style: italic;
    }

    .galleryhide {
        display: none !important;
    }

    /*--------------------------Media Queries---------------------------*/

    @media only screen and (max-width: 1675px) {

        /*--------------------------Home Page---------------------------*/
        /*Home Page Covers*/
        .portfolioprompt p {
            margin-top: 7vw;
            font-size: 14px;
        }

        /*Contact*/
        #contact {
            width: 50%;
        }

        #contact .line {
            margin: 5% 0;
        }

        #contact fieldset {
            display: block;
            width: 100%;
        }

        #contact fieldset#submit {
            width: 100%;
        }

        #contact input,
        #contact textarea {
            width: 95%;
        }

        input#contactsubmit {
            width: 100%;
        }

        /*Other Contact*/
        #othercontact section {
            height: auto;
        }

        /*Find me*/
        #findme {
            max-width: 300px;
            width: 100%;
        }

        #findme h3 {
            padding-bottom: 10px;
        }

        #findme article {
            border: 3px solid #444;
            display: block;
            height: auto;
            width: 60%;
            margin: 0 auto 30px auto;
        }

        #findme article:nth-child(2) {
            margin: 0 auto 30px auto;
        }

        /*3D Hubs*/
        #hubs a {
            padding-top: 0;
        }

        /*--------------------------Int Page---------------------------*/
    }

    /*Secondary large query */

    @media only screen and (max-width: 1200px) {

        /*--------------------------Home Page---------------------------*/
        /*Home Page Covers*/
        .portfolioprompt h3 {
            font-size: 20px;
        }

        .portfolioprompt p {
            margin-top: 3vw;
            padding: 7px;
        }
    }

    /*Main Mobile Query*/

    @media only screen and (max-width: 900px) {

        /*--------------------------General---------------------------*/
        /*Header*/
        header {
            height: 60px;
            max-width: 900px;
        }

        header h2 {
            left: 20px;
            top: 15px;
            width: 120px;
            background: #222;
            z-index: 1000;
        }

        header>a {
            width: 120px;
        }

        header article {
            right: 5px;
            top: -55px;
            width: 135px;
        }

        header article h3 {
            text-align: right;
            width: 110px;
            right: -5px;
        }

        header section {
            width: 200px;
            padding-left: 25px;
            position: absolute;
            right: -230px;
            top: 10px;
        }

        /*Header Animation*/
        header h2:hover,
        header h2:focus {
            color: white;
        }

        header article:hover h3,
        header article:focus h3 {
            /* right: 245px; */
            transform: translateX(-250px);
        }

        header article:hover section,
        header article:focus section {
            /* right: 10px; */
            transform: translateX(-240px);
        }

        /*Menu*/
        nav a {
            font-size: 24px;
        }

        nav ul#overheadmenu {
            width: 100%;
            height: 67px;
            overflow: hidden;
            cursor: pointer;
        }

        nav ul#overheadmenu>li:nth-child(2),
        nav ul.intmenu>li:first-child {
            background: #222;
        }

        nav ul.intmenu>li:first-child {
            border-bottom: none;
        }

        nav ul#overheadmenu>li:last-of-type {
            border-bottom: 4px solid #72ba4a;
        }

        nav #mobilemenu {
            display: block;
            padding-top: 10px;
            padding-bottom: 20px;
            font-size: 30px;
        }

        nav #mobilemenu a {
            font-size: 30px;
        }

        nav ul li {
            display: block;
            margin-bottom: 0px;
        }

        nav ul.intmenu {
            background: #444;
            padding: 0;
            height: 60px;
            overflow: hidden;
        }

        nav ul.intmenu.show {
            height: auto;
        }

        nav ul.intmenu li {
            display: block;
            background: #444;
            padding: 15px 0;
        }

        /*Menu animation*/
        nav ul#overheadmenu.menushow {
            height: auto;
        }

        .show {
            height: auto;
            background: #222;
        }

        .menushow {
            height: auto;
            background: #222;
        }

        /*Main Content*/
        .maincontent {
            margin-top: 82px;
            margin-bottom: 30px;
        }

        /*Contact*/
        #contact {
            width: auto !important;
            margin: 0 15px;
        }

        /*--------------------------Int Page---------------------------*/
        .skiplinks p {
            display: block;
        }

        #intpage {
            margin-top: 90px;
        }

        #intpage #portfoliosplit {
            display: block;
        }

        #sidebar * {
            -webkit-transition: color 1s ease-in-out, transform 1s ease-in-out, opacity 1s ease-in-out;
            transition: color 1s ease-in-out, transform 1s ease-in-out, opacity 1s ease-in-out;
        }

        #sidebar {
            margin-right: 0;
            height: 80px;
            margin-bottom: 10px;
            overflow: hidden;
            cursor: pointer;
        }

        #sidebar.skillshow {
            height: auto;
        }

        #sidebar h3 {
            margin: 20px 0 10px 0;
            text-align: center;
        }

        #sidebar h4 {
            font-size: 19px;
            text-align: center;
        }

        #sidebar p {
            text-align: center;
        }

        #sidebar p.mobile {
            display: block;
            font-size: 30px;
            font-weight: 900;
            color: #72ba4a;
            margin-bottom: 30px;
        }

        #portfoliocontent {
            width: 100%;
        }

        article#videoplayer {
            height: 300px;
        }
    }

    @media only screen and (max-width: 600px) {

        /*--------------------------General---------------------------*/
        /*Header Animation*/
        header article:hover h3,
        header article:focus h3 {
            /* right: -5px; */
            transform: translateX(-225px);
        }

        header article section {
            display: none;
        }
    }

    /*--------------------------Print Queries---------------------------*/

    @media print {
        * {
            background-color: white;
            color: black;
            border: 0px solid black;
        }

        p,
        h1,
        h2,
        h3,
        h4,
        ul,
        li,
        a {
            color: black;
        }

        nav {
            display: none;
        }

        .noprint {
            display: none;
            opacity: 0;
            position: absolute;
            left: -10000px;
        }
    }