/*
Theme Name: Discofolio
Theme URI: http://designbygallagher.com
Author: Michael Gallagher
Author URI: http://designbygallagher.com
Description: A Custom Built Disco-Infused Wordpress Portfolio I Built For Myself.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: discofolio
Tags: Portfolio, Custom, Clean, Modern, Lightweight

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Custom Post Types
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
# Responsive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background-color: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
h3 {
  font-size: 1.6em;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
  color: #fff;
  font-family: sans-serif;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
  font-family: 'Roboto', sans-serif;
  line-height: 1.2;
}
p {
  margin-bottom: 1.5em;
}
dfn,
cite,
em,
i {
  font-style: italic;
}
blockquote {
  margin: 0 1.5em;
}
address {
  margin: 0 0 1.5em;
}
pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}
code,
kbd,
tt,
var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}
abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}
mark,
ins {
  background: #fff9c0;
  text-decoration: none;
}
big {
  font-size: 125%;
}
/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
  box-sizing: border-box;
}
*,
*:before,
*:after {
  /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
  box-sizing: inherit;
}
#masthead {
  -moz-flex: none;
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
}
#page {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  min-height: 100vh;
  height: 100%;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
#content {
  -moz-flex: 1 0 auto;
  -ms-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  /* 2 */
  width: 100%;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
}
blockquote,
q {
  quotes: "" "";
}
hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}
ul,
ol {
  margin: 0 0 1.5em 3em;
}
ul {
  list-style: disc;
}
ol {
  list-style: decimal;
}
li > ul,
li > ol {
  margin-bottom: 0;
  margin-left: 1.5em;
}
dt {
  font-weight: bold;
}
dd {
  margin: 0 1.5em 1.5em;
}
img {
  height: auto;
  /* Make sure images are scaled correctly. */
  max-width: 100%;
  /* Adhere to container width. */
  display: block;
}
table {
  margin: 0 0 1.5em;
  width: 100%;
}
/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button:not(.slbCloseBtn):not(.slbArrow):not(.menu-toggle),
input[type="button"]:not(.slbCloseBtn):not(.slbArrow):not(.menu-toggle),
input[type="reset"],
input[type="submit"] {
  border: 1px solid;
  border-color: #ccc #ccc #bbb;
  border-radius: 3px;
  background-clip: padding-box;
  background: #e6e6e6;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
  color: rgba(0, 0, 0, 0.8);
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  padding: .6em 1em .4em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
button:not(.slbCloseBtn):not(.slbArrow):not(.menu-toggle):hover,
input[type="button"]:not(.slbCloseBtn):not(.slbArrow):not(.menu-toggle):hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
  border-color: #ccc #bbb #aaa;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}
button:not(.slbCloseBtn):not(.slbArrow):not(.menu-toggle):focus,
input[type="button"]:not(.slbCloseBtn):not(.slbArrow):not(.menu-toggle):focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
  border-color: #aaa #bbb #bbb;
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
  color: #666;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-clip: padding-box;
  padding: 3px;
}
select {
  border: 1px solid #ccc;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
  color: #111;
}
textarea {
  width: 100%;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
  color: #fff;
  transition: all .3s;
}
a:hover,
a:focus,
a:active {
  color: midnightblue;
}
a:focus {
  outline: thin dotted;
}
a:hover,
a:active {
  outline: 0;
}
/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
  clear: both;
  display: block;
  float: left;
  width: 100%;
  margin-bottom: 20px;
}
.fixed-nav.main-navigation .menu-main-container {
  width: calc(100% - 330px);
  float: right;
}
.main-navigation ul {
  list-style: none;
  padding-left: 0;
  display: none;
  margin: 0 auto;
}
.main-navigation li {
  float: left;
  position: relative;
  text-align: center;
}
.main-navigation a {
  display: block;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
}
.main-navigation ul ul {
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  float: left;
  position: absolute;
  top: 1.5em;
  left: -999em;
  z-index: 99999;
}
.main-navigation ul ul ul {
  left: -999em;
  top: 0;
}
.main-navigation ul ul a {
  width: 200px;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
  left: auto;
}
.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
  left: 100%;
}
.main-navigation .current_page_item > a:after {
  content: "..";
  text-align: center;
  display: block;
}
/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
  display: block;
}
.menu-toggle {
  display: none;
}
.main-navigation ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: space-between;
  -moz-box-pack: space-between;
  -ms-flex-pack: sspace-betweens;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 790px;
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
  margin: 3em 0 2em;
  overflow: hidden;
  width: 90vw;
  position: relative;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
  float: left;
  width: 50%;
  display: block;
  padding-left: 10px;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
  float: right;
  text-align: right;
  width: 50%;
  display: block;
  padding-right: 10px;
}
.comment-navigation .nav-next a,
.posts-navigation .nav-next a,
.post-navigation .nav-next a,
.comment-navigation .nav-previous a,
.posts-navigation .nav-previous,
.post-navigation .nav-previous a {
  display: block;
  position: relative;
  font-size: 1.1em;
  text-decoration: none;
  color: #fff;
  font-weight: 300;
}
.comment-navigation .nav-next a:before,
.posts-navigation .nav-next a:before,
.post-navigation .nav-next a:before {
  border-style: solid;
  border-width: 0.2em 0.2em 0 0;
  content: '';
  display: inline-block;
  height: 0.6em;
  left: 6px;
  position: relative;
  float: right;
  top: 7px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  vertical-align: top;
  width: 0.6em;
}
.comment-navigation .nav-previous a:before,
.posts-navigation .nav-previous a:before,
.post-navigation .nav-previous a:before {
  border-style: solid;
  border-width: 0.2em 0.2em 0 0;
  content: '';
  display: inline-block;
  height: 0.6em;
  left: -6px;
  position: relative;
  top: 7px;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
  vertical-align: top;
  width: 0.6em;
}
.comment-navigation .nav-next a:after,
.posts-navigation .nav-next a:after,
.post-navigation .nav-next a:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  right: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all .5s;
}
.comment-navigation .nav-previous a:after,
.posts-navigation .nav-previous a:after,
.post-navigation .nav-previous a:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  transition: all .5s;
}
.comment-navigation .nav-next a:hover:after,
.posts-navigation .nav-next a:hover:after,
.post-navigation .nav-next a:hover:after {
  width: calc(100% - 10px);
  right: auto;
}
.comment-navigation .nav-previous a:hover:after,
.posts-navigation .nav-previous a:hover:after,
.post-navigation .nav-previous a:hover:after {
  width: calc(100% - 10px);
  left: auto;
  right: 0;
}
.fixed-nav,
.toggled {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  padding: 30px 0 10px;
  min-height: 88px;
  background-size: 100vw 100vh !important;
  background-repeat: no-repeat;
  transition: all .3s;
}
.toggled {
  transition: none !important;
}
.fixed-nav.main-navigation ul {
  -webkit-box-pack: space-around;
  -moz-box-pack: space-around;
  -ms-flex-pack: sspace-arounds;
  -webkit-justify-content: space-around;
  justify-content: space-around;
}
#wpadminbar {
  height: 0;
  overflow: hidden;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  background-clip: padding-box;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */
}
/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
  outline: 0;
}
/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}
.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
}
.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}
/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
  margin: 0 0 1.5em;
}
/* Make sure select elements fit in widgets. */
.widget select {
  max-width: 100%;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
  display: block;
}
.hentry {
  /*margin: 0 0 1.5em;*/
}
.byline,
.updated:not(.published) {
  display: none;
}
.single .byline,
.group-blog .byline {
  display: inline;
}
.page-content,
.entry-content,
.entry-summary {
  /*margin: 1.5em 0 0;*/
}
.page-links {
  clear: both;
  margin: 0 0 1.5em;
}
.headerCont {
  clear: both;
}
.menu-toggle {
  border: 0;
  background: 0;
  color: #fff;
  width: 40px;
  height: 34px;
  position: absolute;
  top: 20px;
  right: 20px;
  text-indent: -9999px;
  box-shadow: none;
  padding: 0;
  text-shadow: none;
  border-radius: 0;
  background-clip: padding-box;
  border-bottom: 5px solid #fff;
  line-height: .75;
  z-index: 10;
}
.menu-toggle:hover,
.menu-toggle:focus {
  border-color: inherit;
  box-shadow: none;
}
.menu-toggle:before,
.menu-toggle:after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 5px;
  background: #fff;
  transition: all .5s;
}
.menu-toggle:before {
  margin-top: -9px;
}
.menu-toggle:after {
  margin-top: -6px;
}
.toggled {
  height: 100vh;
  opacity: .9;
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.toggled .menu-toggle {
  border: 0;
}
.toggled .menu-toggle:before {
  -webkit-transform: rotateZ(135deg);
  -ms-transform: rotateZ(135deg);
  transform: rotateZ(135deg);
  margin-top: 4px;
}
.toggled .menu-toggle:after {
  -webkit-transform: rotateZ(45deg);
  -ms-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  margin-top: -8px;
}
.main-navigation.toggled .menu-main-container {
  width: 100%;
}
.main-navigation.toggled .menu-main-container ul {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 60px;
  font-size: 4.5vw;
}
.main-navigation.toggled .menu-main-container ul li {
  margin-top: 50px;
}
.site-branding {
  margin: 50px 0 10px;
}
.home .site-branding {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  height: calc(100vh - 40px);
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 30px 0 10px;
}
.site-title {
  background-size: contain !important;
  width: 300px;
  height: 174px;
  text-indent: -9999px;
  margin: 0 auto 40px;
}
.site-title > a {
  width: inherit;
  height: inherit;
  display: block;
}
.home .site-title {
  position: fixed;
  width: 349px;
  height: 200px;
  left: 0;
  right: 0;
  top: 40vh;
}
.nav-logo {
  background-size: contain !important;
  width: 131px;
  height: 70px;
  position: absolute;
  margin: 0 0 0 170px;
  text-indent: -9999px;
  top: -70px;
  z-index: 10;
}
.nav-logo > a {
  display: block;
  position: absolute;
  top: 4px;
  width: 260px;
  left: -130px;
}
.nav-logo:before {
  content: "Design By";
  text-indent: 0;
  margin-left: -130px;
  width: 110px;
  padding: 10px 0;
  display: block;
  font-size: 18px;
  margin-top: 6px;
  border-right: 1px solid #fff;
  font-weight: 300;
  text-transform: uppercase;
}
.fixed-nav .nav-logo {
  top: 12px;
  transition-delay: .4s;
  transition: top 1s cubic-bezier(0.87, -0.41, 0.19, 1.44), margin 0.3s;
}
.fixed-nav .nav-logo:hover {
  margin-left: 180px;
}
.toggled .nav-logo {
  top: 12px;
  transition: top 1s cubic-bezier(0.87, -0.41, 0.19, 1.44), margin 0.3s;
}
.headerBackground {
  width: 100%;
  height: calc(100vh + 60px);
  max-width: none;
  position: fixed;
  transition: height 999999s;
  top: 0;
  left: 0;
  z-index: -1;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.headerBackground img {
  width: 100vw;
  height: 100vh;
  max-width: none;
}
.page .entry-content {
  width: 98vw;
  margin-left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.entry-content section {
  max-width: 1260px;
}
.entry-content section:not(.entry-project) {
  width: 100%;
  margin: 0 auto;
}
.entry-content .entry-project {
  margin-bottom: calc(100vh/3.8);
}
.entry-content .entry-project:first-of-type,
.entry-content section:not(.entry-project) + .entry-project {
  margin-top: calc(100vh/8);
}
.entry-project:nth-of-type(odd) {
  -moz-align-self: flex-end;
  -ms-align-self: flex-end;
  -webkit-align-self: flex-end;
  align-self: flex-end;
  margin-right: 11vw;
}
.entry-project:nth-of-type(even) {
  margin-left: 11vw;
}
.entry-content .pageHeader {
  display: none;
}
.entry-project .content {
  padding: 1.3em 6em 3em 2em;
}
.entry-project:nth-of-type(even) .content {
  float: right;
  padding: 1.3em 2em 3em 5em;
}
.entry-content a.readMore {
  display: inline-block;
  border: 2px solid #fff;
  padding: 10px 40px;
  text-decoration: none;
  color: #fff;
  border-radius: 3px;
  background-clip: padding-box;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  margin: 10px 0;
  background: linear-gradient(65deg, #ffffff 50%, transparent 50%);
  background-size: 220% 100%;
  background-position: right bottom;
  transition: none;
  transition: background-position 0.3s;
}
.entry-content a.readMore:hover,
.entry-content a.readMore:active,
.entry-content a.readMore:focus {
  background-position: center left;
  color: #23282d;
  font-weight: 400;
  padding-right: 38px;
}
.home .entry-content a.readMore:hover,
.home .entry-content a.readMore:active,
.home .entry-content a.readMore:focus {
  color: #ba31d0;
}
.page-id-10 .entry-content a.readMore:hover,
.page-id-10 .entry-content a.readMore:active,
.page-id-10 .entry-content a.readMore:focus {
  color: #5896fb;
}
.page-id-8 .entry-content a.readMore:hover,
.page-id-8 .entry-content a.readMore:active,
.page-id-8 .entry-content a.readMore:focus {
  color: #3b7e87;
}
.entry-content .designProject .content > h3:before,
.entry-content .webProject .content > h3:before {
  display: block;
  font-weight: 300;
  font-size: .65em;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.entry-content .designProject .content > h3:before {
  content: "Visual Design";
}
.entry-content .webProject .content > h3:before {
  content: "Web Development";
}
.entry-project .content,
.entry-project .projImg {
  width: 50%;
  float: left;
}
.entry-project .projImg a,
.entry-project .projImg a img {
  display: block;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}
.entry-project .projImg:hover a {
  -webkit-transform: scale(0.98);
  -ms-transform: scale(0.98);
  transform: scale(0.98);
}
.entry-project .projImg:hover a img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*--------------------------------------------------------------
## Projects
--------------------------------------------------------------*/
.single-web-project #page,
.single-design-project #page {
  width: 90vw;
  max-width: 100%;
}
.single-web-project .entry-content,
.single-design-project .entry-content {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  margin-top: 60px;
}
.single-web-project .entry-content .contentSide,
.single-design-project .entry-content .contentSide {
  width: 460px;
  position: absolute;
  overflow: hidden;
}
.single-web-project .entry-content .contentSide.fixed-side,
.single-design-project .entry-content .contentSide.fixed-side {
  position: fixed;
  top: 20vh;
}
.single-web-project .entry-content .contentSide .side-container,
.single-design-project .entry-content .contentSide .side-container {
  overflow-y: scroll;
  height: calc(80vh - 110px);
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
  padding-right: 20px;
}
.single-web-project .entry-content .contentSide h1.entry-title,
.single-design-project .entry-content .contentSide h1.entry-title {
  margin: 0;
}
.single-web-project .entry-content .projImages,
.single-design-project .entry-content .projImages {
  position: relative;
  left: 580px;
  width: calc( 100% - 580px);
}
.single-web-project .entry-content .projImages img,
.single-design-project .entry-content .projImages img {
  box-shadow: 0px 2px 13px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 1vw;
  width: 100%;
}
.slbImage {
  max-height: none !important;
  max-width: 90vw !important;
}
/*--------------------------------------------------------------
## footer
--------------------------------------------------------------*/
#colophon {
  -moz-flex: none;
  -ms-flex: none;
  -webkit-flex: none;
  flex: none;
}
.site-info {
  clear: both;
  text-align: center;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
  word-wrap: break-word;
}
.bypostauthor {
  display: block;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
  /* Theme Footer (when set to scrolling) */
  display: none;
}
/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
  display: block;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
  max-width: 100%;
}
/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*="wp-image-"] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}
.wp-caption-text {
  text-align: center;
}
/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery-caption {
  display: block;
}
@keyframes horzizontal-fill {
  from {
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 1%, rgba(255, 255, 255, 0) 100%);
  }
  to {
    background: linear-gradient(90deg, #ffffff 0%, #ffffff 100%, rgba(255, 255, 255, 0) 100%);
  }
}
@media screen and (max-width: 1520px) {
  .entry-content .entry-project {
    margin-bottom: calc(100vh/5.8);
    margin-left: 4vw;
    margin-right: 4vw;
  }
  .entry-content .entry-project .content {
    padding-top: 0;
  }
  .entry-content .entry-project .content h3 {
    margin-top: 0;
  }
}
@media screen and (min-width: 1420px) {
  .main-navigation.fixed-nav ul {
    margin-left: calc(100% - 940px);
  }
}
@media screen and (max-width: 1200px) {
  .single-web-project .entry-content .projImages,
  .single-design-project .entry-content .projImages {
    left: 44vw;
    width: calc( 100% - 45vw);
  }
  .single-web-project .entry-content .contentSide,
  .single-design-project .entry-content .contentSide {
    width: 40vw;
  }
}
@media screen and (max-width: 920px) {
  .menu-toggle {
    display: block;
  }
  .main-navigation ul {
    display: none;
  }
  .page .entry-content {
    width: 100%;
  }
  .entry-content .entry-project {
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column-reverse;
    -moz-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    margin-bottom: calc(100vh/11.8);
  }
  .entry-project .content,
  .entry-project .projImg {
    width: 100%;
    -moz-align-self: center;
    -ms-align-self: center;
    -webkit-align-self: center;
    align-self: center;
    padding-left: 0 !important;
    padding-right: 0 !important;
    text-align: center;
  }
  .entry-project .projImg {
    margin-bottom: 4em;
  }
  .entry-project .projImg a {
    display: inline-block;
  }
}
@media screen and (max-width: 768px) {
  .site-title,
  .home .site-title {
    width: 50vw;
    height: 29vw;
  }
  .single-web-project .entry-content,
  .single-design-project .entry-content {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .single-web-project .entry-content .projImages,
  .single-design-project .entry-content .projImages {
    left: 0;
    width: 100%;
  }
  .single-web-project .entry-content .projImages img,
  .single-design-project .entry-content .projImages img {
    margin-bottom: 40px;
  }
  .single-web-project .entry-content .contentSide,
  .single-design-project .entry-content .contentSide {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
  }
  .single-web-project .entry-content .contentSide.fixed-side,
  .single-design-project .entry-content .contentSide.fixed-side {
    position: relative;
    top: auto;
  }
  .single-web-project .entry-content .contentSide .side-container,
  .single-design-project .entry-content .contentSide .side-container {
    overflow-y: auto;
    height: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    padding-right: 0;
  }
}
@media screen and (max-width: 600px) {
  .comment-navigation .nav-previous,
  .posts-navigation .nav-previous,
  .post-navigation .nav-previous,
  .comment-navigation .nav-next,
  .posts-navigation .nav-next,
  .post-navigation .nav-next {
    width: 100%;
  }
  .comment-navigation .nav-previous,
  .posts-navigation .nav-previous,
  .post-navigation .nav-previous {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 520px) {
  .site-title,
  .home .site-title {
    width: 70vw;
    height: 41vw;
  }
}
@media screen and (max-width: 370px) {
  .nav-logo {
    margin-left: 120px;
  }
  .nav-logo:before {
    text-indent: 10px;
    margin-left: -120px;
  }
}
