/* Main Styles */
* {
	-webkit-transition: all .5s ease;
	   -moz-transition: all .5s ease;
	    -ms-transition: all .5s ease;
	     -o-transition: all .5s ease;
	        transition: all .5s ease;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

html, body {
	height: 100%;
	width: 100%;
	background-color: #332a2a;
}

html {
	font-size: 17px;
}

body {
	font-family: 'Roboto Slab', 'Book Antiqua', Palatino, 'Palatino Linotype', 'Palatino LT STD', Georgia, serif;
	line-height: 1.618;
}

h1,h2,h3,h4,h5,h6 {
	font-weight: 300;
	font-family: 'Open Sans Condensed', 'Arial Narrow', Arial, sans-serif;
}

p {
	font-size: 1em;
	margin-top: 1rem;
	font-weight: 400;
	word-spacing: 1px;
	line-height: 1.6;
	color: #675656;
}

p:first-of-type {
	margin-top: 0;
}

a {
	text-decoration: none;
}

main {
	width: 100%;
	position: relative;
	z-index: 999;
	margin-top: -8px;
}

section {
	background-color: #332a2a;
	padding-bottom: 6.854rem;
}

::selection {
	color: white;
	background-color: #CE5456;
}

::-moz-selection {
	color: white;
	background-color: #CE5456;
}
/* Clearfix */
.clear {
	clear: both;
}
/* End Main */

/* Header Styles */
header {
	width: 100%;
	position: relative;
	background-color: #1f1a1a;
	z-index: 999;
	max-height: 750px;
}

#splash {
	width: 100%;
}

#logoBG {
	position: absolute;
	left: 0;
	width: 100%;
	text-align: center;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
	padding: 1.618rem 0 1rem;
	background-color: rgba(31,26,26,.65);

}

#logoBG img {
	width: 19%;
	max-width: 260px;
}
/* End Header */

/* Nav Styles */
nav.desktop, nav.mobile {
	width: 100%;
	padding: .236rem 0;
	position: fixed;
	z-index: 99999;
	top: 0;
}

nav.desktop {
	background-color: #dc3b3d;
	-webkit-transform: translateY(-100%);
	   -moz-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	     -o-transform: translateY(-100%);
	        transform: translateY(-100%);
	-webkit-transition: all .75s ease-out;
	   -moz-transition: all .75s ease-out;
	    -ms-transition: all .75s ease-out;
	     -o-transition: all .75s ease-out;
	        transition: all .75s ease-out;
}

.nav-sticky {
	z-index: 99999 !important;
	-webkit-transform: translateY(0px) !important;
	   -moz-transform: translateY(0px) !important;
	    -ms-transform: translateY(0px) !important;
	     -o-transform: translateY(0px) !important;
	        transform: translateY(0px) !important;
	margin-top: 0 !important;
}

nav.desktop h2 {
	float: left;
	font-size: 1.618em;
	margin-left: -50%;
	color: white;
	font-weight: 400;
	letter-spacing: 1px;
}

nav.desktop ul {
	margin: .382rem 1% 0 0;
	float: right;
	width: 300px;
}

nav.desktop ul li {
	display: inline;
	font-family: 'Roboto Slab', 'Book Antiqua', Palatino, 'Palatino Linotype', 'Palatino LT STD', Georgia, serif;
	font-weight: 300;
	color: rgba(255,255,255, .75);
	cursor: pointer;
	border-bottom: 2px solid rgba(255,255,255, 0);
	-webkit-transition: all .25s ease;
	   -moz-transition: all .25s ease;
	    -ms-transition: all .25s ease;
	     -o-transition: all .25s ease;
	        transition: all .25s ease;
}

nav.desktop ul li:nth-of-type(n+2) {
	margin-left: 20%;
}

nav.desktop ul li:hover {
	color: rgba(255,255,255, 1);
	border-bottom: 2px solid rgba(255,255,255, 1);
}

#sticky-nav {
	position: fixed;
	top: 0;
}

nav.mobile {
	display: none;
}

#burger {
	position: absolute;
	padding: 12px;
	border-radius: 30px;
	cursor: pointer;
	opacity: 1;
}

.burger-position-1 {
	right: 2.618rem;
	top: 2.618rem;
	background-color: #dc3b3d;
}

.burger-position-2 {
	top: 1.618rem;
	right: 1.618rem;
	background-color: transparent;
}

#burger li {
	height: 2px;
	background-color: white;
	display: block;
	margin-top: 7px;
}

.burger-li-orig {
	width: 24px;
}

.burger-li-animate {
	width: 48px;
}

#burger li:first-of-type {
	margin-top: 2px;
	-webkit-transform-origin: 0% 50%;
	   -moz-transform-origin: 0% 50%;
	    -ms-transform-origin: 0% 50%;
	     -o-transform-origin: 0% 50%;
	        transform-origin: 0% 50%;
}

#burger li:nth-of-type(2) {
	-webkit-transform-origin: 100% 50%;
	   -moz-transform-origin: 100% 50%;
	    -ms-transform-origin: 100% 50%;
	     -o-transform-origin: 100% 50%;
	        transform-origin: 100% 50%;
}

nav.mobile img {
	position: absolute;
	left: 2.618rem;
	top: 2.2rem;
	width: 55px;
	opacity: 1;
}

nav.desktop.mobile-menu-animate {
	-webkit-transform: translateY(0) !important;
	   -moz-transform: translateY(0) !important;
	    -ms-transform: translateY(0) !important;
	     -o-transform: translateY(0) !important;
	        transform: translateY(0) !important;
	opacity: 1 !important;
}

/* End Nav */

/* Contact Styles */
#about, #contact {
	width: 100%;
	height: 100%;
	background-color: white;
	position: fixed;
	top: 0;
	z-index: 99999;
	opacity: 0;
	padding: 0;
	overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

#about::-webkit-scrollbar, #contact::-webkit-scrollbar {
	display:  none;
}

#about p {
	padding-right: 1rem;
}

.close-button {
	position: fixed;
	right: 3%;
	bottom: 5%;
	cursor: pointer;
	z-index: 11;
}

.close-button h1 {
	font-size: 1.618em;
	font-family: 'Roboto Slab', '"Book Antiqua", Palatino, "Palatino Linotype", "Palatino LT STD", Georgia, serif';
	font-weight: 400;
}

.inner-container {
	position: relative;
}

.triangle-background {
	position: fixed;
	width: 0;
	height: 0;
	top: 0;
	border-right: 1px solid transparent;
	border-bottom: 1px solid transparent;
	border-top: 1px solid #1f1a1a;
	border-left: 1px solid #1f1a1a;
	z-index: 99;
}

.ab-bar {
	position: fixed;
    width: calc(10% + 80px);
    background-color: #332a2a;
    z-index: -1;
    border-bottom: 15px solid #dc3b3d;
    left: 0;
}

.close-icon {
	width: 40px;
	height: 6px;
	background-color: #dc3b3d;
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}

.ci-1 {
	opacity: 1;
	-webkit-transform: translateX(-50%) rotate(45deg);
	   -moz-transform: translateX(-50%) rotate(45deg);
	    -ms-transform: translateX(-50%) rotate(45deg);
	     -o-transform: translateX(-50%) rotate(45deg);
	        transform: translateX(-50%) rotate(45deg);
}

.ci-2 {
	opacity: 1;
	-webkit-transform: translateX(-50%) rotate(-45deg);
	   -moz-transform: translateX(-50%) rotate(-45deg);
	    -ms-transform: translateX(-50%) rotate(-45deg);
	     -o-transform: translateX(-50%) rotate(-45deg);
	        transform: translateX(-50%) rotate(-45deg);
}

#contact-about-logo {
	width: 12%;
	min-width: 65px;
	max-width: 150px;
	position: fixed;
	left: 40px;
	top: 40px;
	z-index: 999;
}

#about-pic {
	width: 18%;
	border-radius: 500px;
	border: 5px solid #dc3b3d;
	position: fixed;
	left: 2%;
	top: 2%;
	z-index: 999;
}

.contact-info, .about-info {
	position: relative;
    left: 30%;
    width: 60%;
    float: left;
}

.about-info{
	left: 26%;
}

.about-contact-head {
	position: relative;
    z-index: 11;
    text-transform: uppercase;
    font-size: 4.236em;
    color: #dc3b3d;
    letter-spacing: 1px;
	margin-top: 4.236rem;
    text-align: center;
    margin-bottom: 2.618rem;
}

.contact-info h2 {
	width: 100%;
	font-size: 1.618em;
	margin: 2.618rem 0 0;
}

.contact-info h2 a {
	color: #dc3b3d;
}

.contact-info h2 a:hover {
	color: #1f1a1a;
}

.svg-contact {
	width: 45px;
	height: 45px;
	margin: 18%;
}

.contact-info #logos a {
	float: left;
	width: 70px;
    background-color: #332a2a;
    border-radius: 100px;
    height: 70px;
    margin-right: 35px;
}

.contact-info #logos a:hover {
	background-color: #dc3b3d;
}

#logos {
	padding-bottom: 4.236rem;
	margin: 2.618rem 0 0;
}

.contact-logos {
	fill: white;
}

.about-info {
	padding-bottom: 6.854rem;
}

.about-info .about-p {
    margin: 0 auto 4.236rem 10%;
    max-width: 680px;
}

.about-info h2 {
	font-size: 1.618em;
	color: #dc3b3d;
	margin: 2.618rem 0;
}

.about-p p:first-of-type {
	font-size: 1.318em;
	font-style: italic;
	line-height: 1.4;
	font-weight: 300;
	color: #dc3b3d;
}

.skill-section {
	max-width: 680px;
   margin: 0 auto 0 10%
}

.skills {
	width: 47.25%;
	float: left;
}

.about-info  div:nth-of-type(2) .skills:first-of-type {
	margin-right: 5%;
}

.skills h3 {
	font-size: 1.618em;
	color: #332a2a;
	font-weight: 400;
	margin-bottom: 1rem;
	font-variant: small-caps;
}

.skills-icon {
	width: 100px;
	margin-bottom: 1rem !important;

}

.skills-icon img {
	width: 100%;
}

.skills ul {
	margin-left: 1.618rem;
	width: 75%;
	color: #675656;
	padding-bottom: 4.618rem;
}

.skills ul li {
	list-style: disc !important;
}

.skills ul h3 {
	margin: 0 0 .618rem -1.618rem;
	text-transform: uppercase;
	font-size: 1em;
}

.skills:nth-of-type(2) ul:first-of-type {
	margin-bottom: 1rem;
	padding-bottom: 1.618rem;
}

/* End Contact/About */

/* Catergory logos */
#cat-container ul li .cat-logos {
	content: '';
	position: relative;
	width: 70px;
	height: 70px;
	border-radius: 70px;
	background-color: #332a2a;
	margin: 0 auto;
}

#web-after {
	content: '';
	border-bottom: 40px solid #1f1a1a;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	position: absolute;
	bottom: 0;
	left: 15px;
}

#graphic-after {
	content: '';
	width: 30px;
	border-bottom: 21px solid #1f1a1a;
	position: absolute;
	bottom: 24px;
	left: 41px;
}

#art-after {
	content: '';
	width: 20px;
	border-bottom: 80px solid #1f1a1a;
	position: absolute;
	bottom: 0;
	left: 25px;
}

.selected-cat {
	background-color: #332a2a;
}

#cat-container {
	background-color: #1f1a1a;
}

#cat-container ul {
	width: 100%;
	margin: 0 auto;
}

#cat-container ul li {
	display: inline;
	color: #332a2a;
	float: left;
	width: 33.33%;
	padding: 1.618rem 0 1rem;
	cursor: pointer;
}

#cat-container ul li h2 {
	text-align: center;
	letter-spacing: 2px;
	font-size: 1.618em;
	margin-top: .618rem;
}
/* end logos */

/* Folio Styles */
#work, #cat-container, .folio-container, .project-container  {
	width: 100%;
	min-width: 100%;
	position: relative;
}

#work {
	background-color: #1f1a1a;
}

.folio-container {
	min-height: 700px;
	background-color: #332a2a;
}

.folio-container section {
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
}

.hide {
	-webkit-transform: translateX(-100%);
	   -moz-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	     -o-transform: translateX(-100%);
	        transform: translateX(-100%);
	        left: -100%;
}

.show-up {
	-webkit-transform: translateY(-100%);
	   -moz-transform: translateY(-100%);
	    -ms-transform: translateY(-100%);
	     -o-transform: translateY(-100%);
	        transform: translateY(-100%);
	        left: 100%;
}

.work-container {
	width: 45%;
	margin: 4.236rem 0 0 3.5%;
	float: left;
	position: relative;
	cursor: pointer;
	background-color: #332a2a;
	overflow: hidden;
}

.work div img {
	width: 100%;
	height: 100%;
}

.work div h2 {
	position: absolute;
	bottom: 0;
	font-size: 1em;
	color: white;
	padding: 1rem 0;
	font-family: 'Roboto Slab', 'Book Antiqua', Palatino, 'Palatino Linotype', 'Palatino LT STD', Georgia, serif;
	letter-spacing: 1px;
	z-index: 3;
}

.work div:nth-of-type(odd) .work-container h2{
	left: 3%;
}

.work div:nth-of-type(even) .work-container h2{
	right: 3%;
}

	#king .work-container {
		margin-left: 27.5% !important;
	}

/* Triangle styles */
.tri-bottom, .tri-top {
	width: 100%;
	height: 100%;
	position: absolute;
	z-index: 2;
	-webkit-transition: none;
	   -moz-transition: none;
	    -ms-transition: none;
	     -o-transition: none;
	        transition: none;
}

.tri-bottom {
	top: 0;
	left: 0;
}

.work div:nth-of-type(odd) .work-container .tri-bottom {
	left: -6px !important;
}

.tri-top {
	background-color: #1f1a1a;
	z-index: 1;
	bottom: 0;
}

.tri-bottom img {
	width: 101% !important;
	height: 100%;
	opacity: 1 !important;
}

.tri-bottom-move {
    top: 100%;
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}
.tri-top-move {
    bottom: 100% !important;
    -webkit-transition: none;
       -moz-transition: none;
        -ms-transition: none;
         -o-transition: none;
            transition: none;
}

#king {
	margin-left: auto;
	margin-right: auto;
}
/* End Folio */

/* Projects Styles */
.project-container {
	background-color: #332a2a;
}

.project-container article {
	background-color: white;
	opacity: 0;
	display: none;
	padding: 6.854rem 0 6.854rem;
}

.project-container h1 {
	font-size: 4.236em;
	text-transform: uppercase;
	color: #dc3b3d;
	line-height: 1;
	margin-bottom: 1rem;
	margin-left: -2px;
}

.project-container h2 {
	font-size: 1.618em;
	font-family: 'Roboto Slab', 'Book Antiqua', Palatino, 'Palatino Linotype', 'Palatino LT STD', Georgia, serif;
	color: #1f1a1a;
	font-weight: 400;
	line-height: 1;
	margin-bottom: 2.618rem;
}

.description  {
    float: right;
    width: 40%;
    margin: -6px 5% 0 0;
    position: relative;
}

.project-container a.launch-web {
	-webkit-box-sizing: content-box;
	   -moz-box-sizing: content-box;
	        box-sizing: content-box;
	font-variant: small-caps;
	font-size: 1em;
	background-color: #dc3b3d;
	color: white;
	padding: .618rem 1.618rem .818rem;
	border: 2px solid transparent;
	display: inline-block;
	margin-top: 35px;
}

.project-container a.launch-web:hover {
	background-color: white;
	border: 2px solid #dc3b3d;
	color: #dc3b3d;
}

.project-container .back {
	font-variant: small-caps;
	font-size: 1.618em;
	font-family: 'Open Sans Condensed', 'Arial Narrow', Arial, sans-serif;
	position: relative;
	color: #7b7b7b;
	font-weight: 400;
	cursor: pointer;
	margin-top: 2.618rem;
	margin-bottom: 0;
}

.project-container .back:hover {
	color: #332a2a;
}

.back-arrow {
	position: absolute;
	width: 0;
	height: 0;
	top: 6px;
	left: -32px;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-right: 20px solid #7b7b7b;
}

.arrow-animate {
	left: -43px !important;
	border-top-width: 12px !important;
	border-bottom-width: 12px !important;
	border-right-width: 24px !important;
	top: 4px;
}

/* Web Projects */
#web-projects article:nth-child(-n+3) img {
	width: 45%;
	margin-left: 3.5%;
	float: left;
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	   -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	     -o-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.city .description{
	float: none;
	width: 60%;
	margin: 0 auto;
}

.city-gallery a img {
	border: 3px solid #332a2a;
	width: 100%;
}

.city .back {
	left: 50%;
	display: inline-block;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}

/* Graphic/art Projects */
#graphic-projects .back, #art-projects .back {
	left: 50%;
	display: inline-block;
	-webkit-transform: translateX(-50%);
	   -moz-transform: translateX(-50%);
	    -ms-transform: translateX(-50%);
	     -o-transform: translateX(-50%);
	        transform: translateX(-50%);
}

#graphic-projects .description, #art-projects .description {
	float: none;
	width: 60%;
	margin: 0 auto;
}

.gallery {
	margin-bottom: 4.236rem;
}

.magnific img, .gallery a img {
	border: 3px solid #332a2a;
	width: 100%;
}

.magnific, .gallery a {
	position: relative;
	display: block;
	width: 85%;
	margin: 2.618rem auto 0;
	max-width: 700px;
}

.magnific:first-of-type, .gallery a:first-child {
	margin-top: 4.236rem;
}

.magnific:hover, .gallery a:hover {
	opacity: .85;
}

.magnific:before, .gallery a:before {
	content: '+';
	color: #7b7b7b;
	font-size: 1.618em;
	background-color: #ebebeb;
	padding: 0px 15px 2px;
	border-radius: 40px;
	position: absolute;
	right: 12px;
	bottom: 15px;
	z-index: 1;
}
/* End Project styles */

/* Mask Section */
#mask-container {
	background-color: #1f1a1a;
	padding: 0;
	height: 100vh;
	min-height: 500px;
	overflow: hidden;
}

#mask-inner-container {
	position: fixed;
	width: 100%;
	height: 100%;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
       -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
         -o-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
}

#Layer_1 {
    width: 93%;
    height: 100%;
    margin-left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

#layer-mask-top {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	z-index: 1;
}

#ce-logo {
	-webkit-transition: all 3s ease;
	   -moz-transition: all 3s ease;
	    -ms-transition: all 3s ease;
	     -o-transition: all 3s ease;
	        transition: all 3s ease;
}

/*
.triangle-mask {
	-webkit-clip-path: polygon(50% 0, 0 0, -10% 0, 110% 0, 100% 0);
	clip-path: polygon(50% 0, 25% 0, -10% 0, 110% 0, 100% 0);
}

.new-triangle-mask {
	-webkit-clip-path: polygon(50% 200%, 0 145%, -10% 0, 110% 0, 100% 145%) !important;
	clip-path: polygon(50% 345%, 0 75%, -10% 0, 110% 0, 100% 75%) !important;
}

#theButton {
	position: relative;
	z-index: 2;
}

#circle-mask rect, #rect {
	-webkit-transition: none;
	   -moz-transition: none;
	    -ms-transition: none;
	     -o-transition: none;
	        transition: none;
}
*/
/* End Mask Section */

/*Footer styles*/
footer {
	padding: 1rem;
	background-color: #dc3b3d;
	font-size: .618em;
}

footer p {
	float: left;
	width: 70%;
	color: white;
	margin-left: 1em;
}

footer a {
	float: right;
	text-align: right;
	text-decoration: none;
	color: white;
	width: 25%;
	margin-right: 1em;
}




