    @font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto/Regular/Roboto-Regular.eot');
    src: url('../fonts/Roboto/Regular/Roboto-Regular.otf'), url('../fonts/Roboto/Regular/Roboto-Regular.woff') format('woff'), url('../fonts/Roboto/Regular/Roboto-Regular.ttf') format('truetype'), url('../fonts/Roboto/Regular/Roboto-Regular.svg') format('svg');
}

@font-face {
    font-family: 'Roboto-Light';
    src: url('../fonts/Roboto/Light/Roboto-Light.eot'), url('../fonts/Roboto/Light/Roboto-Light.woff') format('woff'), url('../fonts/Roboto/Light/Roboto-Light.ttf') format('truetype'), url('../fonts/Roboto/Light/Roboto-Light.svg') format('svg');
}

@font-face {
    font-family: 'Slabo';
    src: url('../fonts/Slabo/Slabo27px-Regular.eot');
    src: url('../fonts/Slabo/Slabo27px-Regular.otf'), url('../fonts/Slabo/Slabo27px-Regular.woff') format('woff'), url('../fonts/Slabo/Slabo27px-Regular.ttf') format('truetype'), url('../fonts/Slabo/Slabo27px-Regular.svg') format('svg');
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes slideInRight {
    from {
        -webkit-transform: translate3d(40%, 0, 0);
        transform: translate3d(40%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInRight {
    from {
        -webkit-transform: translate3d(40%, 0, 0);
        transform: translate3d(40%, 0, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight;
    animation-duration: 2s !important;
    -webkit-animation-duration: 2s !important;
}

.animated {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}


/*End Keyframe Animations*/

#workSection,
#skillSection,
#aboutSection,
#contactSection {
    background-color: #212425;
}


/*Navigation*/

nav {
    height: 100%;
    width: 8%;
    background: #6e9a8c;
    background: -webkit-linear-gradient(to top, #6e9a8c, #63bbd8);
    background: linear-gradient(to bottom, #6e9a8c, #63bbd8);
    position: fixed;
    z-index: 999;
}

ul {
    text-decoration: none;
}

nav li {
    width: 100%;
    height: 18.49%;
    margin-top: 2px;
    font-size: 18px;
    background-color: #282828;
}

#home2,
#work2,
#skills2,
#about2,
#contact2 {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

#home2 {
    background-image: url(../images/icons/home.svg);
    background-size: 45%;
    background-color: transparent;
    background-color: #282828;
    height: 25%;
    margin-top: 0px;
    margin-bottom: 2px;
}

#work2 {
    background-image: url(../images/icons/work.svg);
    background-size: 40%;
    margin-top: 0px;
}

#skills2 {
    background-image: url(../images/icons/skills.svg);
    background-size: 35%;
}

#about2 {
    background-image: url(../images/icons/about.svg);
    background-size: 35%;
}

#contact2 {
    background-image: url(../images/icons/contact.svg);
    background-size: 35%;
}

#home2.active,
#work2.active,
#skills2.active,
#about2.active,
#contact2.active {
    background-image: none;
    background-color: transparent;
}

#menu {
    height: 100%;
    width: 100%;
}

#menu li {
    display: flex;
    align-items: center;
    text-align: center;
}

#menu span {
    text-decoration: none;
    display: none;
    transition: all .4s ease-in-out;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    text-transform: uppercase;
}

#menu li.active span {
    display: block;
    font-size: 1.1em;
    letter-spacing: 2px;
    font-family: 'Roboto', sans-serif;
    width: 100%;
    color: #2d2d2d;
}

#home2.active:nth-of-type(1) span {
    color: #2d2d2d;
    width: 100%;
    height: auto;
    text-align: left;
}


/*End Navigation*/

#landscape {
    display: none;
    background-color: #282828;
    width: 100%;
    height: 100%;
}

#deviceR,
#device {
    width: 200px;
    height: 200px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -125px;
    margin-top: -140px;
    display: none;
}

#landscape p {
    width: 320px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -160px;
    margin-top: 40px;
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    letter-spacing: 1px;
    font-size: 16px;
    color: #ebebeb;
    text-align: center;
}


/*Landing Page Content*/

#fullpage {
    font-size: 24px;
}

#landingContainer {
    width: 92%;
    height: 100%;
    float: right;
    display: flex;
    align-items: center;
    background-color: #2b3d42;
}

.textContainer {
    text-align: center;
    height: 100px;
    width: 100%;
    color: #c2c4c5;
    margin-top: -100px;
}

#typed {
    display: inline-block;
    font-size: 1.6em;
    font-family: 'Slabo', serif;
}

.typed-cursor {
    font-size: 1.6em;
    font-family: 'Slabo', serif;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}

#hello {
    font-size: 1.2em;
    font-family: 'Slabo', serif;
}

#particles-js {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: .4;
}


/*End Landing Page*/


/*Work Section*/

#workContent {
    width: 92%;
    height: 100%;
    float: right;
    display: flex;
    flex-wrap: wrap;
    align-content: stretch;
}

.workContainer {
    flex-grow: 1;
    width: 33%;
    margin: 1px;
    height: 50%;
    transform: translate(0%, 50%);
}

.workContainer:hover {
    cursor: pointer;
}

#four,
#five,
#six {
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: all .2s ease-in-out;
    background-repeat: no-repeat;
    background-size: cover;
}

#four:hover,
#five:hover,
#six:hover {
    opacity: 1;
}

#four {
    opacity: .5;
    background-image: url(../images/workImg/cubMask.jpg);
}

#five {
    opacity: .5;
    background-image: url(../images/workImg/udMask.jpg);
}

#six {
    opacity: .5;
    background-image: url(../images/workImg/mediMask.jpg);
}

.workContainer:hover p {
    color: rgba(60, 60, 60, 1);
}

.workContText {
    text-align: center;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 1px;
    color: transparent;
}

#filler {
    float: right;
    width: 92%;
    height: 81.51%;
    background-color: #212425;
    display: none;
}

#close {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 35px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

#close:hover {
    cursor: pointer;
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}


/*Close SVG Styles*/

.firstLine,
.secondLine {
    fill: #000;
    stroke: #e6e6e6;
    stroke-miterlimit: 10;
    stroke-width: 4px;
}

#mobileGallery {
    display: none;
}

#workShow {
    width: 92%;
    height: 80%;
    margin: 60px auto 0 auto;
}

#titleWork {
    float: left;
    width: 45%;
    margin: 0px 0 0 25px;
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    color: #e6e6e6;
}

#titleOf {
    font-size: 1em;
}

#aboutWork {
    color: #999;
    margin-top: 20px;
    font-size: .7em;
    letter-spacing: .8px;
    line-height: 24px;
    font-family: 'Roboto-Light', sans-serif;
    font-weight: 300;
}

#workImages {
    float: right;
    width: 50%;
    height: 100%;
    margin-right: 10px;
    transition: all .5s ease-in-out;
}

#contentImages {
    float: left;
    width: calc(70% - 5px);
    height: auto;
    margin-bottom: -3px;
    margin-left: -1px;
}

#imageCaptionOne {
    float: right;
    width: calc(30% - 1.7px);
    height: auto;
    margin-right: 3px;
}

#imageCaptionTwo {
    float: left;
    width: calc(35% - 5px);
    height: auto;
    margin-top: 3px;
}

#imageCaptionThree {
    float: left;
    margin-left: 4px;
    width: calc(35% - 5px);
    margin-top: 3px;
    height: auto;
}

#contentImages:hover,
#imageCaptionOne:hover,
#imageCaptionTwo:hover,
#imageCaptionThree:hover {
    cursor: pointer;
}

.imageSelection img {
    /*                border-radius: 15px;*/
    border-radius: 0px;
}

#workImages img {
    width: 100%;
    height: 100%;
    transition: all .2s ease-in-out;
}

#modal {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 9999;
    width: 92%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
}

#largeImg {
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

#modClose {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 35px;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

#modClose:hover {
    cursor: pointer;
    -ms-transform: scale(1.2, 1.2);
    -webkit-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.firstLineTwo,
.secondLineTwo {
    fill: #000;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: 4px;
}

#galleryShow {
    width: 80%;
    height: 450px;
    position: relative;
    top: 50%;
    margin-top: -225px;
    left: 10%;
}

#rightContainerTwo {
    position: absolute;
    bottom: 40%;
    right: 0px;
    z-index: 999;
    width: 50px;
    height: 20%;
}

#leftContainerTwo {
    position: absolute;
    left: 0px;
    bottom: 40%;
    z-index: 999;
    width: 50px;
    height: 20%;
}

#leftContainerTwo svg,
#rightContainerTwo svg {
    transition: all .2s ease-in-out;
}

#leftContainerTwo:hover svg,
#rightContainerTwo:hover svg {
    transform: scale(1.1);
}

.nextT {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    font-size: 20px;
    color: #fefefe;
    outline: 0;
    background-color: transparent;
}

.prevT {
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    font-size: 20px;
    color: #fefefe;
    outline: 0;
    background-color: transparent;
}

.nextT:hover,
.prevT:hover {
    cursor: pointer;
}

.arrowL,
.arrowR {
    width: 50%;
    margin-top: 5px;
}

.lastImage {
    fill: none;
    stroke: #212121;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}

#rightArrowSvg,
#leftArrowSvg {
    fill: none;
    stroke: #6d988a;
    stroke-miterlimit: 10;
    stroke-width: 2px;
}


/*End Work Section*/


/*Skills Page Content*/

#skillCaptions {
    float: right;
    width: 92%;
    height: 65%;
}

#skillMap {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../images/siteImg/skillMap.svg);
}

#skillsContainer {
    width: 92%;
    height: 35%;
    float: right;
}

#skillsText {
    width: 75%;
    height: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
}

#studying,
#experience,
#proficient {
    width: 33.33%;
    font-size: 24px;
    opacity: 0;
}

#studText,
#expText,
#proText {
    width: 100%;
    text-align: center;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 100;
    font-family: 'Roboto-Light', sans-serif;
    letter-spacing: 1px;
    color: #999;
    margin-top: 20px;
}

#skillsText ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

#skillsText ul li {
    flex-grow: 1;
    text-align: center;
    font-size: .667em;
    color: #999;
    letter-spacing: 1px;
    /*                letter-spacing: .2px;*/
    line-height: 18px;
    /*    lh:16px;*/
    background-color: transparent;
    font-family: 'Roboto-Light', sans-serif;
    font-weight: 300;
}

hr {
    width: 75%;
    max-width: 200px;
    margin-top: 5px;
    border-color: #999999;
}


/*End Skills Page Content*/


/*About Section*/


/*Icon SVG Classes*/

.c48de051-ada0-4c5e-8b1a-8a1ec01025c8 {
    fill: #6c9489;
}

.\32 2d0e974-54d5-4b65-861f-573c89a53665 {
    fill: #fff;
}

.\32 cd4f561-d884-497b-b86b-28d3e8ed85f5 {
    fill: #231f20;
}

.\38 1192bf9-2a08-48d9-8c24-9bd669d3a733 {
    fill: none;
    stroke: #d1d3d4;
    stroke-miterlimit: 10;
}

.\34 7dfed15-ecb3-4234-8bed-afe7319522b9 {
    fill: #bcbec0;
}

.a733cebd-3810-40c4-b0cc-12686d478a4c {
    fill: #414042;
}


/*End Icon SVG Classes*/

#aboutContainer {
    width: 92%;
    height: 100%;
    position: relative;
    z-index: 999;
    float: right;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Roboto-Light', sans-serif;
    font-weight: 300;
    color: #999;
    font-size: 24px;
}

#aboutIcon {
    width: 17.5%;
    align-self: center;
}

#aboutText {
    font-size: 1.3em;
    margin-bottom: -5px;
}

#captionContainer {
    width: 50%;
    margin-left: 25px;
}

#aboutCaption {
    width: 100%;
    font-size: .8em;
    line-height: 24px;
    letter-spacing: .8px;
    margin-top: 10px;
}


/*End About Page*/


/*Contact Page Global Styles*/

#contactPage {
    width: 92%;
    height: 100%;
    float: right;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 999;
}

#formContainer {
    width: 90%;
    align-self: center;
    height: 50%;
}

#socialSelection {
    width: 175px;
    float: right;
}

#facebookLogo,
#linkedIn,
#google {
    margin-top: 5px;
    width: 40px;
    margin-left: 10px;
}

input {
    border: 0;
    outline: 0;
    padding: 0;
    -webkit-appearance: none;
    border-radius: 0;
}

form {
    width: 100%;
    height: 100%;
    float: left;
    clear: both;
}

#message {
    outline: none;
    border: none;
    width: 40%;
    clear: both;
    float: left;
    line-height: 30px;
    height: 30%;
    margin-top: 25px;
}

#userName,
#email {
    clear: both;
    float: left;
    height: 10%;
    width: 30%;
}

#email {
    margin-top: 25px;
}

#message,
#userName,
#email {
    color: #999;
    font-size: 16px;
    font-weight: 100;
    font-family: 'Roboto', sans-serif;
    padding-left: 5px;
    border-bottom: 5px solid #6e9a8c;
    transition: all .2s ease-in-out;
    background-color: rgba(0, 0, 0, 0.2);
}

#message:hover,
#userName:hover,
#email:hover,
#submission:hover {
    transition: all .2s ease-in-out;
    background-color: rgba(0, 0, 0, 0.4);
}

.fallback {
    border-bottom: 5px solid #7f1f1f !important;
}

textarea {
    resize: none;
    border-radius: 0px;
}

a {
    text-decoration: none;
}
#cubelloLink {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: .9em;
    letter-spacing: .6px;
    color: #e6e6e6;
}
#cubelloLink:hover {
    color: #ff3344;
    cursor: pointer;
}
#cubelloLink:hover, #websiteLinks:hover {
    transition: all .2s ease-in-out;
}
#websiteLinks {
    font-family: 'Roboto', sans-serif;
    font-weight: 100;
    font-size: .9em;
    letter-spacing: .6px;
    color: #e6e6e6;
}

#websiteLinks:hover {
    color: yellow;
    cursor: pointer;
}

#submission {
    width: 20%;
    float: left;
    clear: both;
    padding-left: 3.5px;
    padding-right: 3.5px;
    border-radius: 0px;
    height: 10%;
    margin-top: 25px;
    border-bottom: 5px solid transparent;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all .5s ease-in-out;
}

#submission p {
    width: 50px;
    height: 20px;
    position: relative;
    top: 50%;
    left: 50%;
    margin-top: -5px;
    margin-left: -25px;
    letter-spacing: 1px;
    text-align: center;
    color: #999;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
}

#submission:hover {
    cursor: pointer;
    border-bottom: 5px solid #6e9a8c;
    transition: all .5s ease;
}

#thanksContainer {
    width: 400px;
    height: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -200px;
    margin-top: -200px;
}

#thanksPage {
    display: none;
    width: 100%;
    height: 100%;
    float: right;
    position: absolute;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.7);
}

#thanks {
    font-family: 'Roboto', sans-serif;
    font-size: 60px;
    color: #999;
    line-height: 250px;
    font-weight: 100;
    text-align: center;
    letter-spacing: 2px;
}


/*LinkedIn*/

.st88 {
    fill: none;
    stroke: #6e9a8c;
    stroke-miterlimit: 10;
    transition: stroke 0.5s ease;
}

.st72 {
    fill: #6e9a8c;
    transition: fill 0.5s ease;
}


/*Facebook*/

.st0 {
    fill: none;
    stroke: #6e9a8c;
    stroke-miterlimit: 10;
    transition: stroke 0.5s ease;
}

.st1 {
    fill: #6e9a8c;
    transition: fill 0.5s ease;
}


/*Pinterest*/

.pinS {
    fill: none;
    stroke: #6e9a8c;
    stroke-miterlimit: 10;
    transition: all .5s ease;
}

#google path {
    fill: #6e9a8c;
    transition: all .5s ease;
}


/*End Social Icons*/

.showClass {
    display: block !important;
}

.hideClass {
    display: none !important;
}


/*End Contact Page Global Styles*/


/* MOBILE STYLES ////////////////////////////////////////////////////////////////////////////////////////////////*/


/*        767px*/
/*mobile below 365px*/
@media only screen and (max-width:365px) {
    #hello {
        font-size: 1.1em;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }
    #typed {
        font-size: 1.3em;
        letter-spacing: 1.1px;
    }
    .typed-cursor {
        font-size: 1.3em;
        letter-spacing: 1.1px;
    }
    #titleWork {
        float: left;
        width: 100%;
        margin: 0px;
        font-family: 'Roboto', sans-serif;
        font-size: 20px !important;
        margin-top:-30px !important;
    }
    #aboutWork {
        margin-top: 5px;
        font-size: .7em;
        line-height: 22px;
        letter-spacing:.7px;
    }
    #skillsText p {
        font-size: .9em;
    }
    #skillsText ul li {
        font-size: .65em;
    }
    #aboutText {
        font-size:1.1em !important;
    }
    #aboutCaption {
        font-size:.65em !important;
        letter-spacing:.8px;
        line-height: 22px;
    }
}

@media only screen and (max-width:850px) {
    /*Mobile Nav and Page Sizes*/
    nav {
        max-width: 80px;
        width: 16%;
    }
    .workContainer {
        flex-grow: 1;
        width: 33%;
        margin: 1px;
        margin-top: 0;
        transform: translate(0%, 0%);
        height: auto;
    }
    #landingContainer,
    #workContent,
    #skillCaptions,
    #skillsContainer,
    #aboutContainer,
    #contactPage,
    #filler,
    #modal {
        max-width: calc(100% - 80px);
        min-width: 84%;
    }
    #menu li.active span {
        font-size: .8em;
        letter-spacing: 2px;
        width: 100%;
    }
    #home2.active:nth-of-type(1) span {
        color: #2d2d2d;
        width: 100%;
        height: auto;
        margin-bottom: -20px;
    }
    #contact2.active:nth-of-type(1) span {
/*        margin-bottom: -10px;*/
    }
    /*Mobile End Nav And Page Sizes*/
    /*Mobile Work Section*/
    .workContainer {
        width: 100%;
    }
    #galleryShow {
        width: 100%;
        height: 450px;
        position: relative;
        top: 50%;
        margin-top: -225px;
        left: 0px;
    }
    .workContText {
        color: rgba(60, 60, 60, 1);
    }
    #four,
    #five,
    #six {
        background-position: center;
    }
    #titleWork {
        float: left;
        width: 100%;
        margin: 0px;
        font-family: 'Roboto', sans-serif;
        font-size: 24px;
    }
    #titleOf {
        font-size: 1em;
    }
    #aboutWork {
        margin-top: 5px;
        font-size: .7em;
    }
    #workImages {
        display: none;
    }
    #mobileGallery {
        display: block;
        width: 100%;
        float: left;
        margin-top: 15px;
    }
    #mobileGallery ul {
        display: flex;
    }
    #mobileGallery ul li {
        display: flex;
        justify-content: center;
    }
    #mobileGallery img {
        width: 95%;
        height: 100%;
    }
    #rightContainerTwo,
    #leftContainerTwo {
        bottom: 5%;
    }
    /*End Mobile Work Section*/
    /*Mobile Skills Section*/
    #skillCaptions {
        display: none;
    }
    #skillsContainer {
        height: 100%;
    }
    #skillsText {
        width: 80%;
        justify-content: center;
        flex-direction: column;
    }
    #studying,
    #experience,
    #proficient {
        width: 100%;
    }
    #studText:nth-of-type(1) {
        margin-top: 0px;
    }
    #expText,
    #proText {
        margin-top: 35px;
    }
    /*End Mobile Skills Section*/
    /*Mobile About Section*/
    #aboutContainer {
        flex-direction: column;
    }
    #aboutIcon {
        width: 150px;
    }
    #aboutText {
        font-size: 1.3em;
        text-align: center;
    }
    #captionContainer {
        width: 80%;
        margin-top: 15px;
        margin-left: 0px;
    }
    /*End Mobile About Section*/
    /*Mobile Contact Section*/
    #formContainer {
        height: 60%;
    }
    #socialSelection {
        width: 175px;
        clear: both;
        float: none;
        position: relative;
        left: 50%;
        margin-left: -87.5px;
    }
    #facebookLogo,
    #linkedIn,
    #google {
        margin-top: 5px;
        width: 40px;
        margin-left: 10px;
    }
    #message {
        width: calc(100% - 2px);
        margin-left: -2.5px;
    }
    #userName,
    #email {
        width: 100%;
        margin-left: -2.5px;
    }
    #email {
        margin-top: 25px;
    }
    #submission {
        width: calc(100% - 2px);
        margin-left: -2.5px;
    }
    #thanks {
        font-size: 40px;
    }
    /*End Mobile Contact Section*/
    /*    @media only screen and (orientation: landscape) {*/
    @media only screen and (min-aspect-ratio: 13/9) {
        nav,
        #fullpage {
            display: none;
        }
        #landscape {
            display: block;
        }
    }
    /*     @media only screen and (min-aspect-ratio: 13/13) {*/
    @media only screen and (max-height:420px) {
        #socialSelection {
            display: none;
        }
    }
    /* TABLET STYLES ////////////////////////////////////////////////////////////////////////////////////////////////*/
    @media only screen and (min-width: 768px) and (max-width: 1023px) {
        /*Tablet Nav and Page Sizes*/
        nav {
            width: 16%;
            max-width: 80px;
        }
        #landingContainer,
        #workContent,
        #skillCaptions,
        #skillsContainer,
        #aboutContainer,
        #contactPage,
        #filler,
        #modal {
            max-width: calc(100% - 80px);
            min-width: 84%;
        }
        /*Tablet End Nav and Page Sizes*/
        /*Tablet Work Section*/
        .workContainer {
            width: 45%;
        }
        .workContText {
            color: rgba(60, 60, 60, 1);
        }
        #four,
        #five,
        #six {
            background-position: center;
        }
        #workImages {
            width: 47.5%;
            height: auto;
        }
        /*Tablet End Work Section*/
        /*Tablet About Section*/
        #aboutContainer {
            flex-direction: column;
        }
        #aboutIcon {
            width: 175px;
        }
        #aboutText {
            font-size: 1.3em;
            text-align: center;
        }
        #captionContainer {
            width: 65%;
            margin-top: 15px;
            margin-left: 0px;
        }
        /*End Tablet About Section*/
        /*Tablet Contact Section*/
        #socialSelection {
            width: 175px;
            float: left;
        }
        #facebookLogo,
        #linkedIn,
        #google {
            margin-top: 5px;
            width: 40px;
            margin-left: 10px;
        }
        #message {
            width: 55%;
        }
        #userName,
        #email {
            width: 45%;
        }
        #email {
            margin-top: 25px;
        }
        #submission {
            width: 25%;
        }
    }
    /*End Tablet Contact Section*/
    /* DESKTOP STYLES ////////////////////////////////////////////////////////////////////////////////////////////////*/
    @media only screen and (min-width: 1024px) and (max-width: 1279px) {}
    /*Desktop Larger than 1280*/
    @media only screen and (min-width: 1280px) {}
    /*Keyframe Animations*/