@import url("https://fonts.googleapis.com/css?family=Fredericka+the+Great");
@import url("https://fonts.googleapis.com/css?family=Paprika");
/* LESS Document */
.float-none {
  float: none;
}
.float-left {
  float: left;
}
.float-right {
  float: right;
}
.align-center {
  text-align: center;
}
.align-left {
  text-align: left;
}
.align-right {
  text-align: right;
}
img {
  max-width: 100%;
  height: auto;
  width: auto;
  margin: 5px;
}
@media screen and (min-width: 1280px) {
  .hide-big {
    display: none;
  }
  .hide-big-inline {
    display: none;
  }
  .hide-small {
    display: block;
  }
  .hide-small-inline {
    display: inline-block;
  }
  .layout-one {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .layout-one .c1 {
    width: 60%;
    background: #CCCCCC;
    min-height: 100px;
  }
  .layout-one .c2 {
    width: 40%;
    background: #333333;
    min-height: 100px;
  }
  .layout-one .c3 {
    width: 33.33%;
    background: #99cc00;
    min-height: 100px;
  }
  .layout-one .c4 {
    width: 33.33%;
    background: #99ffcc;
    min-height: 100px;
  }
  .layout-one .c5 {
    width: 33.33%;
    background: #ffff99;
    min-height: 100px;
  }
  .layout-two {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .layout-two .c1 {
    width: 20%;
    background: #99cc00;
    min-height: 100px;
    -webkit-order: 1;
    order: 1;
  }
  .layout-two .c2 {
    width: 60%;
    background: #ffff99;
    min-height: 100px;
    -webkit-order: 2;
    order: 2;
  }
  .layout-two .c3 {
    width: 20%;
    background: #99ffcc;
    min-height: 100px;
    -webkit-order: 3    ;
    order: 3;
  }
  .layout-three {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .layout-three .c1 {
    width: 25%;
    background: #99ffcc;
    min-height: 100px;
  }
  .layout-three .c4 {
    width: 75%;
    min-height: 100px;
  }
  .layout-three .c3 {
    width: 100%;
    background: #ffff99;
    min-height: 100px;
  }
  .layout-three .c2 {
    width: 100%;
    background: #99cc00;
    min-height: 100px;
  }
  .rounded-small {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .rounded-big {
    border-radius: 25px;
    -moz-border-radius: 25px;
    padding: 25px;
  }
  .squared {
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  .shadowed {
    -moz-box-shadow: 10px 10px 5px #333333;
    -webkit-box-shadow: 10px 10px 5px #333333;
    box-shadow: 10px 10px 5px #333333;
  }
  .buttoned {
    margin: 0 5px ;
    border: solid 2px #ffffff !important;
    display: inline-block;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .bordered-light {
    border: 1px solid #ffffff;
  }
  .bordered-dark {
    border: 1px solid #000000;
  }
  .bordered-text {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000000;
  }
  .semi-transparent {
    background: rgba(255, 255, 255, 0.5);
  }
  .semi-transparent-75 {
    background: rgba(255, 255, 255, 0.75);
  }
  .semi-transparent-dark {
    background: rgba(0, 0, 0, 0.5);
  }
  .semi-transparent-dark-75 {
    background: rgba(0, 0, 0, 0.75);
  }
  a {
    text-decoration: none;
  }
  a[ng-click] {
    cursor: pointer;
  }
  .text-fancy {
    font-family: Fredericka the Great;
  }
  .text-dark {
    color: #f2c513 !important;
  }
  .text-light {
    color: #ffffff;
  }
  .largefirst::first-letter {
    font-size: 200%;
    font-weight: bold;
    width: 0.7em;
    line-height: 100%;
    background-color: #f2c513;
    padding: 2px;
    padding-bottom: 0;
    border: solid 1px #000000;
    float: left;
    margin: 2px;
  }
  .bannertext {
    font-size: 96px;
    font-family: Fredericka the Great;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000000;
  }
  .img_link {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #f2c513 !important;
  }
  #img_caption {
    text-align: center;
    font-size: 24px;
    color: #000000;
  }
  .information {
    font-size: 16px;
  }
  .fullwidth {
    width: 100%;
    min-width: 1153px;
    max-width: 1600px;
    position: relative;
  }
  .halfwidth {
    width: 50%;
    max-width: 50%;
    position: relative;
  }
  .thirdwidth {
    width: 33%;
    max-width: 33%;
    position: relative;
  }
  .quarterwidth {
    width: 25%;
    max-width: 25%;
    position: relative;
  }
  body {
    background: #ffffff;
    background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 0;
    color: #f2c513;
    height: auto;
    margin: 0px auto;
    width: 100%;
  }
  #main-body {
    margin: 0px auto;
  }
  #main-content {
    background-color: #ffffff;
    margin: 0px;
    position: relative;
    clear: both;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 22px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
    position: absolute;
    text-align: center;
  }
  .floatingDiv {
    width: 55px;
    height: 25px;
    margin: 5px 5px 0 0;
    position: relative;
  }
  #content {
    margin: 50px;
    padding: 20px;
    color: #000000;
    font-size: 22px;
    width: 90%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  #header {
    background-color: #ffffff;
    margin: 0px;
    display: block;
    position: relative;
    clear: both;
    height: 50px;
    max-height: 50px;
    min-height: 50px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  #logo {
    position: relative;
    height: 100%;
    width: 20%;
    display: inline-block;
    background-image: url("../images/newlogo_transparent.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  #logo img {
    width: 100%;
    height: 100%;
  }
  #tagline {
    font-family: Fredericka the Great;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    color: #f2c513;
    padding: 0px;
    height: auto;
    min-height: 215px;
    display: none;
    position: relative;
    width: 60%;
    max-width: 60%;
    padding-top: 10px;
    float: right;
  }
  #tagline p {
    display: inline-block;
    vertical-align: middle;
  }
  #tagline p #tagline_1 {
    padding-left: 0px;
    display: block;
  }
  #tagline p #tagline_2 {
    padding-left: 10px;
    display: block;
  }
  #tagline p #tagline_3 {
    padding-left: 20px;
    display: block;
  }
  #tagline p #tagline_4 {
    padding-left: 30px;
    display: block;
  }
  #footer {
    height: auto;
    background-color: #000000;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    position: relative;
    bottom: 0px;
    width: 100%;
    color: #ffffff;
    margin-top: calc(10vh);
    z-index: 3;
  }
  #footer a {
    color: #ffffff;
    padding: 0 3px;
    text-decoration: none;
  }
  #footer #footercontent {
    margin: 0 auto;
    max-width: 95%;
  }
  #footer .footercolumn {
    display: inline-block;
    margin: 5px;
    vertical-align: top;
  }
  #footer .footercolumn.links {
    margin-left: 0px;
    margin-right: 0px;
  }
  #footer .footercolumn.links a {
    display: inline;
    margin: 0px !important;
    padding: 0px 0px !important;
  }
  #footer .footercolumn.links a::after {
    content: "     -     ";
  }
  #footer .footercolumn.links a.last::after {
    content: "";
  }
  #footer .footercolumn.links a:hover {
    color: #ffffff;
  }
  #footer .footercolumn.address {
    display: block;
  }
  #footer .footercolumn.address a:hover {
    color: #ffffff;
  }
  #footer .footercolumn.copyright {
    display: block;
  }
  #footer .footercolumn.copyright a:hover {
    color: #ffffff;
  }
  #footer .footercolumn.copyright p {
    display: inline-block;
  }
  #footer .footercolumn.copyright p::before {
    content: " - ";
  }
  #footer .footercolumn #footer_phone {
    display: block;
  }
  .masonry {
    column-count: 4;
    -webkit-column-count: 4;
    column-gap: 0;
    -webkit-column-gap: 0;
  }
  .testimonial {
    border: 1px solid #000000;
    background-color: #ffffff;
    display: inline-block;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin: 10px;
    padding: 10px;
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
    vertical-align: top;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    padding: 5px;
  }
  .testimonial .testimonial-content {
    text-align: left;
  }
  .testimonial .testimonial-contributor {
    width: 100%;
    font-size: 12px;
    font-weight: bold;
    font-style: normal;
    position: relative;
    display: block;
    text-align: right;
  }
  .cta-container {
    overflow: hidden;
    height: 90vh;
    width: 100vw;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0;
    top: 0;
    left: 0;
  }
  .cta-container .cta {
    height: 100%;
    min-height: 500px;
  }
  .cta-container .cta .cta-inner-shell {
    height: 100%;
    width: 100%;
    display: table-cell;
    vertical-align: middle;
  }
  .cta-container .cta .cta-inner-shell a {
    height: 100px;
    width: 250px;
    background-color: #000000;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border: solid 1px #ffffff;
    padding: 20px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    margin: auto;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-box-shadow: 0px 0px 20px #000000;
    -webkit-box-shadow: 0px 0px 20px #000000;
    box-shadow: 0px 0px 20px #000000;
  }
  .cta-container .cta .cta-inner-shell a:hover {
    border: solid 1px #0080ff;
    color: #0080ff;
  }
  .project-cta {
    -webkit-order: 1;
    order: 1;
    float: left;
    width: 40%;
    background: black url("../images/computer-1209641_960_720.jpg") center top repeat;
    background-size: cover;
    shape-outside: polygon(0 0, 100% 0, 60% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
    color: #ffffff;
    z-index: 2;
    position: absolute;
  }
  .project-cta .cta-outer-shell {
    display: table;
    width: 100%;
    text-align: center;
    height: 100%;
    margin: 0 0 0 -10%;
  }
  .resume-cta {
    -webkit-order: 2;
    order: 2;
    background: black url("../images/resume-bg.png") center top no-repeat;
    background-size: cover;
    z-index: 1;
    width: 100%;
  }
  .resume-cta .cta-outer-shell {
    display: table;
    width: 20%;
    text-align: center;
    height: 100%;
    margin: 0 auto;
  }
  .style-cta {
    -webkit-order: 3;
    order: 3;
    float: right;
    width: 40%;
    background: black url("../images/styleFP.png") center top no-repeat;
    background-size: cover;
    shape-outside: polygon(0 0, 100% 0, 100% 100%, 40% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 40% 100%);
    z-index: 2;
    position: absolute;
    right: 0px;
  }
  .style-cta .cta-outer-shell {
    display: table;
    width: 100%;
    text-align: center;
    height: 100%;
    margin: 0 0 0 0;
    padding-left: 100px;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  .back-to-top {
    position: fixed;
    bottom: 2em;
    right: 0px;
    text-decoration: none;
    color: #f2c513 !important;
    font-size: 12px;
    padding: 1em;
    display: none;
    z-index: 100;
    background-color: rgba(0, 0, 0, 0.5);
    text-decoration: none !important;
  }
  .back-to-top:hover {
    background-color: rgba(0, 0, 0, 0.8);
  }
  .overlay {
    position: absolute;
    z-index: 500;
    display: none !important;
  }
  .site-blurb {
    vertical-align: top;
    display: inline-block;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    height: auto;
    margin: 10px;
    padding: 5px;
    border: solid 1px #000000;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .site-blurb img {
    width: 95%;
  }
  .site-display {
    width: 100%;
    text-align: left;
    padding: 20px;
  }
  .site-image {
    width: 25%;
    float: right;
  }
  .default-only {
    display: block;
  }
  .imgcontainer {
    position: relative;
    text-align: center;
    padding-top: 50px;
  }
  .homepage {
    height: 80%;
    position: relative;
    text-align: center;
    padding-top: 50px;
  }
  .imgblock {
    width: 300px;
    max-width: 300px;
    height: auto;
    margin: 5px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    padding: 0px;
    vertical-align: top;
  }
  .imgblock img {
    width: 290px;
    display: block;
  }
  .imgblock .caption {
    font-size: 12px;
    padding: 5px;
  }
  .gallerypage {
    background-image: none;
    background-color: #ffffff;
    margin-bottom: calc(-10vh);
  }
  #galleryname {
    width: 100%;
    text-align: center;
    margin-top: 2px;
    background-color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    position: fixed;
    z-index: 29;
    border: solid 2px;
    border-left: none;
    border-right: none;
  }
  .artist-page {
    height: auto;
    position: relative;
  }
  .artist-page img {
    width: 250px;
    display: block;
    border: solid 2px #f2c513;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .artist-page .smaller_img {
    width: 175px;
  }
  .fullycentered {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
  }
  #grad1 {
    height: 150px;
    background-image: linear-gradient(to top, transparent, #000000);
    z-index: 25;
    position: fixed;
    width: 100%;
  }
  .resume-page {
    background-image: url("../images/resume-page-banner.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .resume-page #content {
    padding-left: 35vh;
    padding-right: 15vh;
  }
  .resume-page p,
  .resume-page h3 {
    display: block;
    width: 100%;
    text-align: left;
  }
  .resume-page .position-title,
  .resume-page .position-company,
  .resume-page .position-time {
    display: block;
    width: 100%;
  }
  .resume-page .position-time {
    font-style: italic;
  }
  .about-page {
    background-image: url("../images/akron-skyline.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .about-page #content {
    padding-left: 35vh;
    padding-right: 15vh;
  }
  .resources-page {
    background-image: url("../images/water-striking.png");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .resources-page #content {
    padding-left: 35vh;
    padding-right: 15vh;
  }
  .projects-page {
    background-image: url("../images/source-code-bg.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .projects-page #content {
    padding-left: 35vh;
    padding-right: 15vh;
  }
  .style-page {
    background-image: url("../images/style-page-banner.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .style-page #content {
    padding-left: 35vh;
    padding-right: 15vh;
  }
  .testimonials-page {
    background-image: url("../images/testimonials-1.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .testimonials-page #content {
    padding-left: 35vh;
    padding-right: 15vh;
  }
  .contact-page {
    background-image: url("../images/mailboxes.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .contact-page #content {
    padding-left: 35vh;
    padding-right: 15vh;
  }
  #contactform {
    width: 80vh;
    margin-left: 100px;
  }
  #contactform input {
    margin: 5px 0;
  }
  #navblock {
    width: 100%;
    display: inline-block;
  }
  ul.nav {
    font-family: Arial;
    font-size: 13px;
    font-weight: bold;
    margin: auto;
    box-sizing: content-box;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    display: table;
    z-index: 30;
    background-color: #000000;
    top: 0px;
    position: fixed;
    float: right;
  }
  ul.nav.disappear {
    background-color: transparent !important;
    border-color: transparent !important;
  }
  ul.nav > li {
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 48px;
    width: 110px;
    display: table-cell;
    position: relative;
    text-align: center;
  }
  ul.nav > li.hide_mobile {
    display: table-cell;
  }
  ul.nav > li.show_mobile {
    display: none;
  }
  ul.nav > li.chosen {
    background-color: #ffffff;
    color: #f2c513;
  }
  ul.nav > li.chosen a {
    background-color: #ffffff;
    color: #f2c513;
  }
  ul.nav > li.short {
    width: 162px;
    font-size: 12px;
  }
  ul.nav > li.short.chosen {
    background-color: #ffffff;
    color: #f2c513;
  }
  ul.nav > li.short.chosen a {
    background-color: #ffffff;
    color: #f2c513;
  }
  ul.nav > li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid transparent;
  }
  ul.nav > li a:hover {
    color: #f2c513;
  }
  ul.nav > li ul.dropdown {
    width: 60%;
    min-width: 250px;
    background-color: #000000;
    display: none;
    position: absolute;
    z-index: 999;
    left: 20%;
    text-align: center;
    padding: 0px;
  }
  ul.nav > li ul.dropdown a {
    background-color: #000000;
    color: #ffffff;
    padding: 0px 5px;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  ul.nav > li ul.dropdown a:hover {
    color: #f2c513;
    background: #000000;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  ul.nav > li ul.dropdown li {
    background-color: #000000;
    margin-left: 0px;
    display: block;
    padding-left: 0px;
    padding-right: 0px;
    line-height: 25px;
    border: solid 1px #000000;
  }
  ul.nav > li ul.dropdown li:last-child {
    border-bottom: solid 1px #000000;
  }
  ul.nav > li ul.dropdown-wide {
    width: 250px;
    min-width: 250px;
    background-color: #ffffff;
    display: none;
    position: absolute;
    z-index: 999;
    left: 0;
    text-align: left;
    padding: 0px;
    border: solid 1px #000000;
  }
  ul.nav > li ul.dropdown-wide a {
    width: 240px;
    min-width: 240px;
    background-color: #ffffff;
    color: #f2c513;
    padding: 0px 5px;
  }
  ul.nav > li ul.dropdown-wide a:hover {
    color: #ffffff;
    background: #000000;
  }
  ul.nav > li ul.dropdown-wide li {
    background-color: #ffffff;
    margin-left: 0px;
    display: block;
    text-align: left;
    padding-left: 0px;
    line-height: 25px;
    border-bottom: solid 1px #000000;
  }
  ul.nav > li ul.dropdown-wide li:last-child {
    border-bottom: 0px;
  }
  ul.nav li.active a {
    background-color: #ffffff;
    color: #f2c513;
  }
  ul.nav li.active.buttoned {
    border: 2px solid #000000;
  }
  ul.nav li:hover a {
    color: #f2c513;
  }
  ul.nav li:hover.buttoned {
    border: 2px solid #000000;
  }
  ul.nav li:hover ul.dropdown {
    display: block;
  }
  ul.nav li:hover ul.dropdown-wide {
    display: block;
  }
  .show-menu {
    top: 10px;
    left: 0px;
    height: 20px;
    background-color: #000000;
    font-size: 16px;
    font-weight: bold;
    margin: 0px auto;
    border: 1px solid #ffffff;
    width: 100%;
    list-style: none;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    display: none;
  }
  /*Hide checkbox*/
  input[type=checkbox]#show-menu {
    display: none;
  }
  /*Show menu when invisible checkbox is checked*/
  input[type=checkbox]:checked ~ ul.nav {
    display: block;
  }
  #menu-close {
    display: none !important;
  }
  #menu-open {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1279px) {
  .hide-big {
    display: none;
  }
  .hide-big-inline {
    display: none;
  }
  .hide-small {
    display: block;
  }
  .hide-small-inline {
    display: inline-block;
  }
  .layout-one {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .layout-one .c1 {
    width: 100%;
    background: #CCCCCC;
    min-height: 100px;
  }
  .layout-one .c2 {
    width: 50%;
    background: #333333;
    min-height: 100px;
  }
  .layout-one .c3 {
    width: 50%;
    background: #99cc00;
    min-height: 100px;
  }
  .layout-one .c4 {
    width: 50%;
    background: #99ffcc;
    min-height: 100px;
  }
  .layout-one .c5 {
    width: 50%;
    background: #ffff99;
    min-height: 100px;
  }
  .layout-two {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .layout-two .c1 {
    width: 60%;
    -webkit-order: 2;
    order: 2;
    background: #99cc00;
    min-height: 100px;
  }
  .layout-two .c2 {
    width: 40%;
    -webkit-order: 1;
    order: 1;
    background: #ffff99;
    min-height: 100px;
  }
  .layout-two .c3 {
    width: 100%;
    -webkit-order: 3;
    order: 3;
    background: #99ffcc;
    min-height: 100px;
  }
  .layout-three {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .layout-three .c1 {
    width: 25%;
    background: #99ffcc;
    min-height: 100px;
  }
  .layout-three .c4 {
    width: 75%;
    min-height: 100px;
  }
  .layout-three .c3 {
    width: 100%;
    background: #ffff99;
    min-height: 100px;
  }
  .layout-three .c2 {
    width: 100%;
    background: #99cc00;
    min-height: 100px;
  }
  .rounded-small {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .rounded-big {
    border-radius: 25px;
    -moz-border-radius: 25px;
    padding: 25px;
  }
  .squared {
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  .shadowed {
    -moz-box-shadow: 10px 10px 5px #333333;
    -webkit-box-shadow: 10px 10px 5px #333333;
    box-shadow: 10px 10px 5px #333333;
  }
  .buttoned {
    margin: auto;
    border: solid 2px #ffffff !important;
    display: inline-block;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .bordered-light {
    border: 1px solid #ffffff;
  }
  .bordered-dark {
    border: 1px solid #000000;
  }
  .bordered-text {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000000;
  }
  .semi-transparent {
    background: rgba(255, 255, 255, 0.5);
  }
  .semi-transparent-75 {
    background: rgba(255, 255, 255, 0.75);
  }
  .semi-transparent-dark {
    background: rgba(0, 0, 0, 0.5);
  }
  .semi-transparent-dark-75 {
    background: rgba(0, 0, 0, 0.75);
  }
  a {
    text-decoration: none;
  }
  a[ng-click] {
    cursor: pointer;
  }
  .text-fancy {
    font-family: Fredericka the Great;
  }
  .text-dark {
    color: #f2c513 !important;
  }
  .text-light {
    color: #ffffff;
  }
  .largefirst::first-letter {
    font-size: 300%;
    font-weight: bold;
    width: 0.7em;
    line-height: 80%;
  }
  .largefirst::first-letter {
    font-size: 200%;
    font-weight: bold;
    width: 0.7em;
    line-height: 100%;
    background-color: #f2c513;
    padding: 2px;
    padding-bottom: 0;
    border: solid 1px #000000;
    float: left;
    margin: 2px;
  }
  .bannertext {
    font-size: 96px;
    font-family: Fredericka the Great;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000000;
  }
  .img_link {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #f2c513 !important;
  }
  #img_caption {
    text-align: center;
    font-size: 24px;
    color: #000000;
  }
  .information {
    font-size: 16px;
  }
  .fullwidth {
    width: 100%;
    min-width: 1153px;
    max-width: 1600px;
    position: relative;
  }
  .halfwidth {
    width: 50%;
    max-width: 50%;
    position: relative;
  }
  .thirdwidth {
    width: 33%;
    max-width: 33%;
    position: relative;
  }
  .quarterwidth {
    width: 25%;
    max-width: 25%;
    position: relative;
  }
  body {
    background: #ffffff;
    background-image: url("../images/background.jpg");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    color: #f2c513;
    height: auto;
    margin: 0px auto;
    width: 100%;
  }
  #main-body {
    margin: 0px auto;
  }
  #main-content {
    background-color: #ffffff;
    margin: 0px;
    position: relative;
    clear: both;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
    position: absolute;
  }
  .floatingDiv {
    width: 55px;
    height: 25px;
    margin: 5px 5px 0 0;
    position: relative;
  }
  #content {
    margin: 20px;
    padding: 20px;
    color: #000000;
    font-size: 22px;
    width: 90%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  #header {
    background-color: #ffffff;
    margin: 0px;
    display: block;
    position: relative;
    clear: both;
    height: 50px;
    max-height: 50px;
    min-height: 50px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  #logo {
    position: relative;
    height: 100%;
    width: 9%;
    display: inline-block;
    background-image: url("../images/newlogo_transparent.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  #logo img {
    width: 100%;
    height: 100%;
  }
  #tagline {
    font-family: Fredericka the Great;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    color: #f2c513;
    padding: 0px;
    height: auto;
    min-height: 215px;
    display: none;
    position: relative;
    width: 60%;
    max-width: 60%;
    padding-top: 10px;
    float: right;
  }
  #tagline p {
    display: inline-block;
    vertical-align: middle;
  }
  #tagline p #tagline_1 {
    padding-left: 0px;
    display: block;
  }
  #tagline p #tagline_2 {
    padding-left: 10px;
    display: block;
  }
  #tagline p #tagline_3 {
    padding-left: 20px;
    display: block;
  }
  #tagline p #tagline_4 {
    padding-left: 30px;
    display: block;
  }
  #footer {
    height: auto;
    background-color: #000000;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    position: relative;
    bottom: 0px;
    width: 100%;
    color: #ffffff;
    margin-top: calc(10vh);
    z-index: 3;
  }
  #footer a {
    color: #ffffff;
    padding: 0 3px;
    text-decoration: none;
  }
  #footer #footercontent {
    margin: 0 auto;
    max-width: 95%;
  }
  #footer .footercolumn {
    display: inline-block;
    margin: 5px;
    vertical-align: top;
  }
  #footer .footercolumn.links {
    margin-left: 0px;
    margin-right: 0px;
  }
  #footer .footercolumn.links a {
    display: inline;
    margin: 0px !important;
    padding: 0px 0px !important;
  }
  #footer .footercolumn.links a::after {
    content: "     -     ";
  }
  #footer .footercolumn.links a.last::after {
    content: "";
  }
  #footer .footercolumn.links a:hover {
    color: #ffffff;
  }
  #footer .footercolumn.address {
    display: block;
  }
  #footer .footercolumn.address a:hover {
    color: #ffffff;
  }
  #footer .footercolumn.copyright {
    display: block;
  }
  #footer .footercolumn.copyright a:hover {
    color: #ffffff;
  }
  #footer .footercolumn.copyright p {
    display: inline-block;
  }
  #footer .footercolumn.copyright p::before {
    content: " - ";
  }
  #footer .footercolumn #footer_phone {
    display: block;
  }
  .masonry {
    column-count: 3;
    -webkit-column-count: 3;
    column-gap: 0;
    -webkit-column-gap: 0;
  }
  .testimonial {
    border: 1px solid #000000;
    background-color: #ffffff;
    display: inline-block;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin: 10px;
    padding: 10px;
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
    vertical-align: top;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    padding: 5px;
  }
  .testimonial .testimonial-content {
    text-align: left;
  }
  .testimonial .testimonial-contributor {
    width: 100%;
    font-size: 12px;
    font-weight: bold;
    font-style: normal;
    position: relative;
    display: block;
    text-align: right;
  }
  .cta-container {
    overflow: hidden;
    height: 90vh;
    width: 100vw;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0;
    top: 0;
    left: 0;
  }
  .cta-container .cta {
    height: 100%;
    min-height: 500px;
  }
  .cta-container .cta .cta-inner-shell {
    height: 100%;
    width: 100%;
    display: table-cell;
    vertical-align: middle;
  }
  .cta-container .cta .cta-inner-shell a {
    height: 100px;
    width: 250px;
    background-color: #000000;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border: solid 1px #ffffff;
    padding: 20px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    margin: auto;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-box-shadow: 0px 0px 20px #000000;
    -webkit-box-shadow: 0px 0px 20px #000000;
    box-shadow: 0px 0px 20px #000000;
  }
  .cta-container .cta .cta-inner-shell a:hover {
    border: solid 1px #0080ff;
    color: #0080ff;
  }
  .project-cta {
    -webkit-order: 1;
    order: 1;
    float: left;
    width: 40%;
    background: black url("../images/computer-1209641_960_720.jpg") center top repeat;
    background-size: cover;
    shape-outside: polygon(0 0, 100% 0, 60% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 60% 100%, 0 100%);
    color: #ffffff;
    z-index: 2;
    position: absolute;
  }
  .project-cta .cta-outer-shell {
    display: table;
    width: 100%;
    text-align: center;
    height: 100%;
    margin: 0 0 0 -10%;
  }
  .resume-cta {
    -webkit-order: 2;
    order: 2;
    background: black url("../images/resume-bg.png") center top no-repeat;
    background-size: cover;
    z-index: 1;
    width: 100%;
  }
  .resume-cta .cta-outer-shell {
    display: table;
    width: 20%;
    text-align: center;
    height: 100%;
    margin: 0 auto;
  }
  .style-cta {
    -webkit-order: 3;
    order: 3;
    float: right;
    width: 40%;
    background: black url("../images/styleFP.png") center top no-repeat;
    background-size: cover;
    shape-outside: polygon(0 0, 100% 0, 100% 100%, 40% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 40% 100%);
    z-index: 2;
    position: absolute;
    right: 0px;
  }
  .style-cta .cta-outer-shell {
    display: table;
    width: 100%;
    text-align: center;
    height: 100%;
    margin: 0 0 0 0;
    padding-left: 100px;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  .back-to-top {
    position: fixed;
    bottom: 2em;
    right: 0px;
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    padding: 1em;
    display: none;
    z-index: 100;
    background: rgba(255, 255, 255, 0.5);
  }
  .back-to-top:hover {
    background-color: rgba(135, 135, 135, 0.5);
  }
  .overlay {
    position: absolute;
    z-index: 500;
    display: none !important;
  }
  .site-blurb {
    vertical-align: top;
    display: inline-block;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    height: auto;
    margin: 10px;
    padding: 5px;
    border: solid 1px #000000;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .site-blurb img {
    width: 95%;
  }
  .site-display {
    width: 100%;
    text-align: left;
    padding: 20px;
  }
  .site-image {
    width: 45%;
    float: right;
  }
  .default-only {
    display: block;
  }
  .imgcontainer {
    position: relative;
    text-align: center;
    padding-top: 50px;
  }
  .homepage {
    height: 90%;
    position: relative;
    text-align: center;
    padding-top: 50px;
  }
  .imgblock {
    width: 200px;
    max-width: 200px;
    height: auto;
    margin: 5px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    padding: 0px;
    vertical-align: top;
  }
  .imgblock img {
    width: 200px;
    display: block;
  }
  .imgblock .caption {
    font-size: 12px;
    padding: 5px;
  }
  .gallerypage {
    background-image: none;
    background-color: #ffffff;
    margin-bottom: calc(-10vh);
  }
  #galleryname {
    width: 100%;
    text-align: center;
    margin-top: 2px;
    background-color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    position: fixed;
    z-index: 10;
    border: solid 2px;
    border-left: none;
    border-right: none;
  }
  .artist-page {
    height: auto;
    position: relative;
  }
  .artist-page img {
    width: 150px;
    display: block;
    border: solid 2px #f2c513;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .fullycentered {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
  }
  .resume-page {
    background-image: url("../images/resume-page-banner.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .resume-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .resume-page p,
  .resume-page h3 {
    display: block;
    width: 100%;
    text-align: left;
  }
  .resume-page .position-title,
  .resume-page .position-company,
  .resume-page .position-time {
    display: block;
    width: 100%;
  }
  .resume-page .position-time {
    font-style: italic;
  }
  .about-page {
    background-image: url("../images/akron-skyline.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
  }
  .about-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .resources-page {
    background-image: url("../images/water-striking.png");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .resources-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .projects-page {
    background-image: url("../images/source-code-bg.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .projects-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .style-page {
    background-image: url("../images/style-page-banner.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .style-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .testimonials-page {
    background-image: url("../images/testimonials-1.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .testimonials-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .contact-page {
    background-image: url("../images/mailboxes.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
  }
  .contact-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  #contactform {
    width: 80%;
    margin-left: 100px;
  }
  #contactform input {
    margin: 5px 0;
  }
  #navblock {
    width: 100%;
    display: inline-block;
  }
  ul.nav {
    font-family: Arial;
    font-size: 13px;
    font-weight: bold;
    margin: auto;
    box-sizing: content-box;
    width: 100%;
    padding: 0;
    list-style: none;
    text-align: center;
    display: table;
    z-index: 20;
    background-color: #000000;
    top: 0px;
    position: fixed;
    float: right;
  }
  ul.nav.disappear {
    background-color: transparent !important;
    border-color: transparent !important;
  }
  ul.nav > li {
    text-transform: uppercase;
    vertical-align: middle;
    line-height: 48px;
    width: 110px;
    display: table-cell;
    position: relative;
    text-align: center;
  }
  ul.nav > li.hide_mobile {
    display: table-cell;
  }
  ul.nav > li.show_mobile {
    display: none;
  }
  ul.nav > li.chosen {
    background-color: #ffffff;
    color: #f2c513;
  }
  ul.nav > li.chosen a {
    background-color: #ffffff;
    color: #f2c513;
  }
  ul.nav > li.short {
    width: 162px;
    font-size: 12px;
  }
  ul.nav > li.short.chosen {
    background-color: #ffffff;
    color: #f2c513;
  }
  ul.nav > li.short.chosen a {
    background-color: #ffffff;
    color: #f2c513;
  }
  ul.nav > li a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid transparent;
  }
  ul.nav > li a:hover {
    background-color: #000000;
    color: #f2c513;
    border: 2px solid #000000;
  }
  ul.nav > li ul.dropdown {
    width: 80%;
    min-width: 250px;
    background-color: #ffffff;
    display: none;
    position: absolute;
    z-index: 999;
    left: 10%;
    text-align: center;
    padding: 0px;
  }
  ul.nav > li ul.dropdown a {
    background-color: #000000;
    color: #ffffff;
    padding: 0px 5px;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  ul.nav > li ul.dropdown a:hover {
    color: #f2c513;
    background: #000000;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  ul.nav > li ul.dropdown li {
    background-color: #000000;
    margin-left: 0px;
    display: block;
    text-align: center;
    padding-left: 0px;
    padding-right: 0px;
    line-height: 25px;
    border: solid 1px #000000;
  }
  ul.nav > li ul.dropdown li:last-child {
    border-bottom: solid 1px #000000;
  }
  ul.nav > li ul.dropdown-wide {
    width: 250px;
    min-width: 250px;
    background-color: #ffffff;
    display: none;
    position: absolute;
    z-index: 999;
    left: 0;
    text-align: left;
    padding: 0px;
    border: solid 1px #000000;
  }
  ul.nav > li ul.dropdown-wide a {
    width: 240px;
    min-width: 240px;
    background-color: #ffffff;
    color: #f2c513;
    padding: 0px 5px;
  }
  ul.nav > li ul.dropdown-wide a:hover {
    color: #ffffff;
    background: #000000;
  }
  ul.nav > li ul.dropdown-wide li {
    background-color: #ffffff;
    margin-left: 0px;
    display: block;
    text-align: left;
    padding-left: 0px;
    line-height: 25px;
    border-bottom: solid 1px #000000;
  }
  ul.nav > li ul.dropdown-wide li:last-child {
    border-bottom: 0px;
  }
  ul.nav li.active a {
    background-color: #ffffff;
    color: #f2c513;
  }
  ul.nav li.active.buttoned {
    border: 2px solid #000000;
  }
  ul.nav li:hover a {
    color: #f2c513;
  }
  ul.nav li:hover.buttoned {
    border: 2px solid #000000;
  }
  ul.nav li:hover ul.dropdown {
    display: block;
  }
  ul.nav li:hover ul.dropdown-wide {
    display: block;
  }
  .show-menu {
    top: 10px;
    left: 0px;
    height: 20px;
    background-color: #000000;
    font-size: 16px;
    font-weight: bold;
    margin: 0px auto;
    border: 1px solid #ffffff;
    width: 100%;
    list-style: none;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    display: none;
  }
  /*Hide checkbox*/
  input[type=checkbox]#show-menu {
    display: none;
  }
  /*Show menu when invisible checkbox is checked*/
  input[type=checkbox]:checked ~ ul.nav {
    display: block;
  }
  #menu-close {
    display: none !important;
  }
  #menu-open {
    display: none !important;
  }
}
@media screen and (min-width: 0px) and (max-width: 767px) {
  .hide-big {
    display: block;
  }
  .hide-big-inline {
    display: inline-block;
  }
  .hide-small {
    display: none;
  }
  .hide-small-inline {
    display: none;
  }
  .layout-one {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .layout-one .c1 {
    width: 100%;
    background: #CCCCCC;
    min-height: 100px;
  }
  .layout-one .c2 {
    width: 100%;
    background: #333333;
    min-height: 100px;
  }
  .layout-one .c3 {
    width: 100%;
    background: #99cc00;
    min-height: 100px;
  }
  .layout-one .c4 {
    width: 100%;
    background: #99ffcc;
    min-height: 100px;
  }
  .layout-one .c5 {
    width: 100%;
    background: #ffff99;
    min-height: 100px;
  }
  .layout-two {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
  }
  .layout-two .c1 {
    width: 100%;
    -webkit-order: 2;
    order: 2;
    background: #99cc00;
    min-height: 100px;
  }
  .layout-two .c2 {
    width: 100%;
    -webkit-order: 1;
    order: 1;
    background: #ffff99;
    min-height: 100px;
  }
  .layout-two .c3 {
    width: 100%;
    -webkit-order: 3;
    order: 3;
    background: #99ffcc;
    min-height: 100px;
  }
  .layout-three {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
  .layout-three .c1 {
    width: 100%;
    background: #99ffcc;
    min-height: 100px;
  }
  .layout-three .c4 {
    width: 100%;
    min-height: 100px;
  }
  .layout-three .c3 {
    width: 100%;
    background: #ffff99;
    min-height: 100px;
  }
  .layout-three .c2 {
    width: 100%;
    background: #99cc00;
    min-height: 100px;
  }
  .rounded-small {
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .rounded-big {
    border-radius: 25px;
    -moz-border-radius: 25px;
    padding: 25px;
  }
  .squared {
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  .shadowed {
    -moz-box-shadow: 10px 10px 5px #333333;
    -webkit-box-shadow: 10px 10px 5px #333333;
    box-shadow: 10px 10px 5px #333333;
  }
  .buttoned {
    margin: 0 0 !important;
    border: solid 2px #ffffff !important;
    display: block !important;
  }
  .bordered-light {
    border: 1px solid #ffffff;
  }
  .bordered-dark {
    border: 1px solid #000000;
  }
  .bordered-text {
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: #000000;
  }
  .semi-transparent {
    background: rgba(255, 255, 255, 0.5);
  }
  .semi-transparent-75 {
    background: rgba(255, 255, 255, 0.75);
  }
  .semi-transparent-dark {
    background: rgba(0, 0, 0, 0.5);
  }
  .semi-transparent-dark-75 {
    background: rgba(0, 0, 0, 0.75);
  }
  a {
    text-decoration: none;
  }
  a[ng-click] {
    cursor: pointer;
  }
  .text-fancy {
    font-family: Fredericka the Great;
  }
  .text-dark {
    color: #f2c513 !important;
  }
  .text-light {
    color: #ffffff;
  }
  .largefirst::first-letter {
    font-size: 200%;
    font-weight: bold;
    width: 0.7em;
    line-height: 100%;
    background-color: #f2c513;
    padding: 2px;
    padding-bottom: 0;
    border: solid 1px #000000;
    float: left;
    margin: 2px;
  }
  .bannertext {
    font-size: 48px;
    font-family: Fredericka the Great;
  }
  .img_link {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #f2c513 !important;
  }
  #img_caption {
    text-align: center;
    font-size: 24px;
    color: #000000;
  }
  .information {
    font-size: 16px;
  }
  .fullwidth {
    width: 100%;
    min-width: 1153px;
    max-width: 1600px;
    position: relative;
  }
  .halfwidth {
    width: 50%;
    max-width: 50%;
    position: relative;
  }
  .thirdwidth {
    width: 33%;
    max-width: 33%;
    position: relative;
  }
  .quarterwidth {
    width: 25%;
    max-width: 25%;
    position: relative;
  }
  body {
    background: #000000;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 0;
    color: #f2c513;
    height: auto;
    margin: 0px auto;
    width: 100%;
  }
  #main-body {
    margin: 0px auto;
  }
  #main-content {
    background-color: #ffffff;
    margin: 0px;
    position: relative;
    clear: both;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    width: 100%;
  }
  .floatingDiv {
    width: 55px;
    height: 25px;
    margin: 5px 5px 0 0;
    position: relative;
  }
  #content {
    margin: 20px;
    padding: 20px;
    color: #000000;
    font-size: 22px;
    width: 90%;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  }
  #header {
    background-color: #000000;
    padding: 5px;
    margin: 0px;
    display: block;
    position: fixed;
    clear: both;
    height: 30px;
    max-height: 30px;
    min-height: 30px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    width: 100%;
    z-index: 10;
  }
  #logo {
    position: relative;
    height: 100%;
    width: 20%;
    display: inline-block;
    background-image: url("../images/newlogo_transparent.png");
    background-repeat: no-repeat;
    background-size: contain;
  }
  #logo img {
    width: 100%;
    height: 100%;
  }
  #tagline {
    font-family: Fredericka the Great;
    font-size: 24px;
    font-style: italic;
    font-weight: bold;
    color: #f2c513;
    padding: 0px;
    height: auto;
    min-height: 215px;
    display: none;
    position: relative;
    width: 60%;
    max-width: 60%;
    padding-top: 10px;
    float: right;
  }
  #tagline p {
    display: inline-block;
    vertical-align: middle;
  }
  #tagline p #tagline_1 {
    padding-left: 0px;
    display: block;
  }
  #tagline p #tagline_2 {
    padding-left: 10px;
    display: block;
  }
  #tagline p #tagline_3 {
    padding-left: 20px;
    display: block;
  }
  #tagline p #tagline_4 {
    padding-left: 30px;
    display: block;
  }
  #footer {
    height: auto;
    background-color: #000000;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 5px;
    position: relative;
    bottom: 0px;
    width: 100%;
    color: #ffffff;
    margin-top: calc(10vh);
  }
  #footer a {
    color: #ffffff;
    padding: 0 3px;
    text-decoration: none;
  }
  #footer #footercontent {
    margin: 0 auto;
    max-width: 95%;
  }
  #footer .footercolumn {
    display: inline-block;
    margin: 5px;
    vertical-align: top;
  }
  #footer .footercolumn.links {
    display: none;
    margin-left: 0px;
    margin-right: 0px;
  }
  #footer .footercolumn.links a {
    display: inline;
    margin: 0px !important;
    padding: 0px 0px !important;
  }
  #footer .footercolumn.links a::after {
    content: "     -     ";
  }
  #footer .footercolumn.links a.last::after {
    content: "";
  }
  #footer .footercolumn.links a:hover {
    color: #ffffff;
  }
  #footer .footercolumn.address {
    display: block;
  }
  #footer .footercolumn.address a:hover {
    color: #ffffff;
  }
  #footer .footercolumn.copyright {
    display: block;
  }
  #footer .footercolumn.copyright a:hover {
    color: #ffffff;
  }
  #footer .footercolumn.copyright p {
    display: inline-block;
  }
  #footer .footercolumn #footer_phone {
    display: block;
  }
  .masonry {
    column-count: 1;
    -webkit-column-count: 1;
    column-gap: 0;
    -webkit-column-gap: 0;
  }
  .testimonial {
    border: 1px solid #000000;
    background-color: #ffffff;
    display: inline-block;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    margin: 10px;
    padding: 10px;
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
    vertical-align: top;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    padding: 5px;
  }
  .testimonial .testimonial-content {
    text-align: left;
  }
  .testimonial .testimonial-contributor {
    width: 100%;
    font-size: 12px;
    font-weight: bold;
    font-style: normal;
    position: relative;
    display: block;
    text-align: right;
  }
  .cta-container {
    overflow: hidden;
    height: auto;
    width: 100vw;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    margin: 0;
    top: 0;
    left: 0;
  }
  .cta-container .cta {
    height: 150px;
    max-height: 150px;
    display: block;
    width: 100%;
  }
  .cta-container .cta .cta-inner-shell {
    height: 100%;
    width: 100%;
    display: table-cell;
    vertical-align: middle;
  }
  .cta-container .cta .cta-inner-shell a {
    height: 100px;
    width: 45vw;
    background-color: #000000;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    border: solid 1px #ffffff;
    padding: 20px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    margin: auto;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-box-shadow: 0px 0px 20px #000000;
    -webkit-box-shadow: 0px 0px 20px #000000;
    box-shadow: 0px 0px 20px #000000;
  }
  .cta-container .cta .cta-inner-shell a:hover {
    border: solid 1px #0080ff;
    color: #0080ff;
  }
  .project-cta {
    -webkit-order: 1;
    order: 1;
    background: black url("../images/computer-1209641_960_720.jpg") center top repeat;
    background-size: cover;
    color: #ffffff;
  }
  .project-cta .cta-outer-shell {
    display: table;
    width: 100%;
    text-align: center;
    height: 100%;
    margin: 0 auto;
  }
  .resume-cta {
    -webkit-order: 2;
    order: 2;
    background: black url("../images/resume-bg.png") center top no-repeat;
    background-size: cover;
    width: 100%;
  }
  .resume-cta .cta-outer-shell {
    display: table;
    width: 20%;
    text-align: center;
    height: 100%;
    margin: 0 auto;
  }
  .style-cta {
    -webkit-order: 3;
    order: 3;
    background: black url("../images/styleFP.png") center top no-repeat;
    background-size: cover;
  }
  .style-cta .cta-outer-shell {
    display: table;
    width: 100%;
    text-align: center;
    height: 100%;
    margin: 0 0 0 0;
    overflow: hidden;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
  }
  .back-to-top {
    position: fixed;
    bottom: 2em;
    right: 0px;
    text-decoration: none;
    color: #000000;
    font-size: 12px;
    padding: 1em;
    display: none;
    z-index: 100;
    background: rgba(255, 255, 255, 0.5);
  }
  .back-to-top:hover {
    background-color: rgba(135, 135, 135, 0.5);
  }
  .overlay {
    position: absolute;
    z-index: 500;
    display: none !important;
  }
  .site-blurb {
    vertical-align: top;
    display: inline-block;
    break-inside: avoid;
    -webkit-column-break-inside: avoid;
    height: auto;
    margin: 10px;
    padding: 5px;
    border: solid 1px #000000;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .site-blurb img {
    width: 95%;
  }
  .site-display {
    width: 100%;
    text-align: left;
  }
  .site-image {
    width: 100%;
  }
  .default-only {
    display: block;
  }
  .imgcontainer {
    position: relative;
    text-align: center;
    padding-top: 50px;
  }
  .homepage {
    height: 80%;
    position: relative;
    text-align: center;
    padding-top: 50px;
  }
  .imgblock {
    width: 200px;
    max-width: 200px;
    height: auto;
    margin: 5px;
    display: inline-block;
    overflow: hidden;
    text-align: center;
    padding: 0px;
    vertical-align: top;
  }
  .imgblock img {
    width: 200px;
    display: block;
  }
  .imgblock .caption {
    font-size: 12px;
    padding: 5px;
  }
  .gallerypage {
    background-image: none;
    background-color: #ffffff;
  }
  #galleryname {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    background-color: black;
    padding-top: 5px;
    padding-bottom: 5px;
    position: fixed;
    z-index: 9;
    border: solid 2px;
    border-left: none;
    border-right: none;
  }
  .artist-page {
    height: auto;
    position: relative;
  }
  .artist-page img {
    width: 150px;
    display: block;
    border: solid 2px #f2c513;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
  }
  .fullycentered {
    margin: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
  }
  .resume-page {
    background-image: url("../images/resume-page-banner.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .resume-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .resume-page p,
  .resume-page h3 {
    display: block;
    width: 100%;
    text-align: left;
  }
  .resume-page .position-title,
  .resume-page .position-company,
  .resume-page .position-time {
    display: block;
    width: 100%;
  }
  .resume-page .position-time {
    font-style: italic;
  }
  .about-page {
    background-image: url("../images/akron-skyline.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
  }
  .about-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .resources-page {
    background-image: url("../images/water-striking.png");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .resources-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .projects-page {
    background-image: url("../images/source-code-bg.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .projects-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .style-page {
    background-image: url("../images/style-page-banner.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .style-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .testimonials-page {
    background-image: url("../images/testimonials-1.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
    padding-bottom: 15vh;
  }
  .testimonials-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  .contact-page {
    background-image: url("../images/mailboxes.jpg");
    background-repeat: no-repeat;
    background-position: top;
    padding-top: 175px;
  }
  .contact-page #content {
    padding-left: 5vh;
    padding-right: 5vh;
  }
  #contactform {
    width: 80%;
  }
  #contactform input {
    width: 50vw;
    margin: 5px 0;
  }
  #contactform textarea {
    width: 50vw;
  }
  #navblock {
    background-color: #000000;
    top: 0;
    color: #ffffff;
    position: absolute;
    margin: 0px;
    width: 150px;
    height: auto;
    padding: 0px;
    display: none;
    text-align: center;
    right: -200px;
    z-index: 5;
    float: right;
  }
  ul.nav {
    top: 30px;
    left: 0px;
    height: 52px;
    width: 100% !important;
    font-size: 12px;
    font-weight: bold;
    margin: 0px auto;
    margin-top: 20px;
    box-sizing: content-box;
    padding: 0;
    list-style: none;
    color: #ffffff;
    text-align: center;
    background-color: #000000;
    top: 0px;
    position: fixed;
  }
  ul.nav.disappear {
    background-color: #ffffff;
    border-color: #ffffff;
  }
  ul.nav > li {
    padding: 0px;
    margin: 0px;
    text-transform: uppercase;
    background-color: #000000;
    color: #ffffff;
    vertical-align: middle;
    line-height: 36px;
    width: 100%;
    display: block !important;
    position: relative;
    text-align: center;
    border: 1px solid #000000;
    z-index: 999;
    border-radius: 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
  }
  ul.nav > li a {
    display: block;
    color: #ffffff !important;
    text-decoration: none;
    padding: 0px;
  }
  ul.nav > li.hide_mobile {
    display: none !important;
  }
  ul.nav > li.show_mobile {
    display: block;
  }
  ul.nav li a:hover {
    color: #f2c513 !important;
  }
  ul.nav li ul.dropdown {
    display: block;
    list-style-type: none;
    padding-inline-start: inherit;
  }
  ul.nav li ul.dropdown-wide {
    display: none;
  }
  ul.nav li.active a {
    background-color: #ffffff;
    color: #f2c513;
  }
  ul.nav li.active.buttoned {
    border: 2px solid #000000;
  }
  ul.nav li.active ul.dropdown {
    display: block;
  }
  ul.nav li.active ul.dropdown-wide {
    display: block;
  }
  ul.nav li:hover a {
    color: #f2c513;
  }
  ul.nav li:hover.buttoned {
    border: 2px solid #000000;
  }
  ul.nav li:hover ul.dropdown {
    display: block;
  }
  ul.nav li:hover ul.dropdown-wide {
    display: block;
  }
  #menu-close {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    text-align: right;
    z-index: 5;
    display: block;
    position: absolute;
    background-color: black;
  }
  #menu-open {
    text-transform: uppercase;
    width: 20%;
    text-align: left;
    padding: 5px;
    right: 0px;
    top: 0px;
    position: absolute;
    font-size: 16px;
    font-weight: bold;
    display: block;
    color: #f2c513;
  }
  /*Hide checkbox*/
  input[type=checkbox]#show-menu {
    display: none;
  }
  .show-menu {
    display: none;
  }
}
