
/*

i. General

1. body/html
2. nav
3. main
4. Portfolio
5. about
6. Contact
7. Footer
8. Pages
*/

/* General */

.center-container {
    width: 100%;
    height: 100%;
    display: table;
}

.center-content {
    display: table-cell;
    vertical-align: middle;
}

a {
	text-decoration: none;
}
/*1. body html*/

body, html {
	height: 100%;
}

body {
	background: #000;
	font-family: 'Fjalla One', sans-serif;
	color: #fff;
	width: 100%;
}

#container {
	width: 100%;
	position: relative;
	margin: 0 auto;
	max-width: 2000px;
	opacity: 0;
	transition: opacity 2s ease-in-out;
	-webkit-transition: opacity 2s ease-in-out;
	-moz-transition: opacity 2s ease-in-out;
	margin-bottom: 50px;
	height: 100%
}



.opacitynone {
	opacity: 0;
}

/*2. nav*/
nav {
	position: fixed;
	width: 100%;
	height: 65px;
	padding: 2px 30px;
	top: 0;
	z-index: 999;
	background-color: rgba(0,0,0,0.5);
}

nav ul {
	float: right;
	margin-right: 60px;
	margin-top: 10px;
}

nav ul li {
	color: #000;
	display: inline-block;
	padding: 18px 20px 10px 20px;
}

nav ul li a {
	text-decoration: none;
	color: #fff;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	transition: all 0.5s ease;
	font-size: 0.8em;
}

nav ul li a:hover {
	color: rgba(222,11,11, 1.0);
}

button {
	display: none;
}

#logo img{
	margin-top: 8px;
	width: 140px;
	height: 50px;
	float: left;
	transition: all 1s ease-in-out;
	-webkit-transition: all 1s ease-in-out;
	-moz-transition: all 1s ease-in-out;
}

#logo img:hover{
	transform:  scale(0.9) ;
	-webkit-transform:  scale(0.9) ;
	-moz-transform:  scale(0.9) ;
	-o-transform:  scale(0.9) ;
	-ms-transform:  scale(0.9) ;
}




/*3. main*/

#home {
	background: url(../img/james_home2.jpg);
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 0;
	padding-top: 63.75% ;
	position: relative;
	-webkit-animation: fade_in 4s 1;
	-moz-animation: fade_in 4s 1;
}


#main_logo {
	background: url(../img/james_logo.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 38%;
	height: 0;
	padding-top: 39% ;
	position: absolute;
	left: 15%;
	top: 13%;
	opacity: 1;
	-webkit-animation: fade_in 6s 1;
	-moz-animation: fade_in 6s 1;
}

.delay {
	opacity: 1;
	-webkit-animation: fade_in 5s 1;
	-moz-animation: fade_in 5s 1;
}

@-webkit-keyframes fade_in {
    from {opacity: 0;}
    to {top: 1;}
} 
@-moz-keyframes fade_in {
    from {opacity: 0;}
    to {top: 1;}
} 

#design_edge {
	width: 35%;
	height: 0;
	position: absolute;
	left: 18%;
	top: 39%;
}

#leadcopy {
	width: 34%;
	position: absolute;
	left: 18%;
	top: 50%;
	font-family: 'Lato', sans-serif;
}

#leadcopy p {
	text-align: justify;
	font-size: 0.8em;
	line-height: 1.5em;
}

.portfoio_button {
	width: 94%;
	background-color: rgba(255,255,255, 0.4);
	color: #000;
	text-align: center;
	text-transform: uppercase;
	margin-top: 5%;
	padding: 3%;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	transition: all .8s ease-in-out;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
}

.portfoio_button:hover {
	background-color: rgba(222,11,11, 0.5);
	color: #fff;
}

.design_edge-top {
	background: url(../img/design_edge1.png);
}

.design_edge-bottom {
	background: url(../img/design_edge2.png);
	-webkit-animation: edge 4s 1 ease-in-out;
	-webkit-transform: translate(-.5em, .3em) ;
	-moz-animation: edge 4s 1 ease-in-out;
	-moz-transform: translate(-.5em, .3em) ;
}

@-webkit-keyframes edge {
   	0% { transform: translate(0px, 0px) ; }
   	75% { transform: translate(0px, 0px) ; }
   	100% { transform: translate(-.5em, .3em) ; }
}
@-moz-keyframes edge {
   	0% { transform: translate(0px, 0px) ; }
   	75% { transform: translate(0px, 0px) ; }
   	100% { transform: translate(-.5em, .3em) ; }
}


.design_edge-top, .design_edge-bottom {
	background-size: contain;
	background-repeat: no-repeat;
	width: 100%;
	height: 0;
	padding-top: 15.67% ;
	position: absolute;
}




/*4. portfolio (web/graphics/video/all) */

#portfolio_container {
	max-width: 2000px;
	margin-top: 80px;
	text-align: center;
	padding: 0 5%;
}

.portfolio_intro {
	width: 45%;
	margin: 2% auto;
	text-align: justify;
	font-family: 'Lato', sans-serif;
	font-size: 0.8em;
	line-height: 1.7em;
}

.portfolio_items {
	display: inline-block;
	background: rgb(0,0,0);
	position: relative;
	width: 22%;
	margin: 1%;
	overflow: hidden;
}

.portfolio_items img {
	width: 100%;
	transition: all .7s ease-in-out;
	-web-kittransition: all .7s ease-in-out;
	-moz-transition: all .7s ease-in-out;
}

.moveup {
	transform: translateY(-8%);
	-moz-transform: translateY(-8%);
	-webkit-transform: translateY(-8%);

}

.blackout {
		opacity: 0.4;
}



.portfolio_items_teaser {
	position: absolute;
	width: 100%;
	background-color: rgb(155, 11, 11);
	bottom: -8em;
	color: #fff;
	text-align: center;
	padding: 4% 2%;
	font-size: 0.8em;
	line-height: 1.3em;
	transition: all .6s ease-in-out;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
}

.portfolio_items_teaser p {
	font-family: 'Lato', sans-serif;
	font-size: 0.8em;
	line-height: 1.2em;
}

.moveup_teaser {
	transform: translateY(-8em);
	-webkit-transform: translateY(-8em);
	-moz-transform: translateY(-8em);
}

.seeall_button {
	width: 45%;
	background-color: rgba(255,255,255, 0.4);
	color: #000;
	text-align: center;
	text-transform: uppercase;
	margin: 0.5em auto;
	padding: .5em;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	transition: all .8s ease-in-out;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
}

.seeall_button:hover {
	background-color: rgba(222,11,11, 0.5);
	color: #fff;
}
/*.rcc {
	background: url(../img/rcc2013.jpg);
	width: 100%;
	padding-top: 100%;
	margin: 0;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	margin: 0 auto;
	top: 0;
}*/



img.header {
	width: 12%;
}

img.graphics_header {
	width: 15%;
}

#pieces2 {
	margin-bottom: 3em;
}

/* 5. about*/

.splash_container {
    background: url(../img/james_work.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}


.splash_container {
-webkit-animation: fade 3s ease;
-moz-animation: fade 3s ease;
-o-animation: fade 3s ease;
}

@-webkit-keyframes fade {
  0%   { opacity: 0; }
  100% { opacity: 1; }
}

.content_wrapper {
    /* These styles are required for the "scroll-over" effect */
    position: absolute;
    top: 92%;
    width: 100%;
    z-index: 2;
    background: #000;
    margin: 0 auto;
    color: #fff;
    min-height: 8%
}

#profile_container {
	position: relative;
}

.profileimage {
	width: 100%;
}

#profile {
	width: 45%;
	position: relative;
	left: 45%;
	top: 20px;
}



/*.profile_text {
	margin-bottom: 4em;
}*/

.about_text h1 {
	font-size: 1.5em;
	line-height: 1.3em;
	margin-bottom: 0.6em;
}

.about_text p {
	font-family: 'Lato', sans-serif;
	text-align: justify;
	font-size: 0.6em;
	line-height: 1.7em;
}



#ethics_container {
	background: url(../img/sign.jpg) no-repeat center center;
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	width: 100%;
	position: relative;
	height: 150%;
}

#sports_container {
	position: relative;
	background: url(../img/sports_bg.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    width: 100%;
    height: 100%;
}

#ethics {
	position: relative;
	width: 30%;
	left: 12%;
}

#sports {
	width: 35%;
	position: relative;
	left: 55%;
}

img.profileheader {
	position: absolute;
	width: 12%;
	top: 65px;
	display: block;
	left: 45%;
}

img.arrow {
	position: absolute;
	width: 4%;
	bottom: 8%;
	left: 48%;
	opacity: 0.3;
	-moz-transition: opacity 0.5s ease-in-out;
	-webkit-transition: opacity 0.5s ease-in-out;
	transition: opacity 0.5s ease-in-out;
}


img.arrow:hover {
	opacity: 0.6;
}

/* YouTube Responsive CSS for HubSpot */
/*.video-container {
	width: 35%;
	display: inline-block;
    margin: 10% 10% 0 10%;
    height: auto;
    overflow: hidden;
}*/
#execution_container {
	width: 45%;
	display: inline-block;
	margin: 10% 10% 10% 10%;
}
 
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 35px;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* 6. contact*/

.contact_bg {
	position: relative;
	background: url(../img/contact_bg.jpg) no-repeat center center ; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    width: 100%;
    height: 100%;
}
.contact_info {
	width: 35%;
	left: 50%;
	top: 9em;
	position: absolute;
	line-height: 1.7em;
}

.contact_info h1 {
	font-size: 1.6em;
	margin-bottom: 0.6em;
}

.contact_info p {
	font-family: 'Lato', sans-serif;
	text-align: justify;
	font-size: 1.0em;
	line-height: 1.8em;
}

.contact_info {
	width: 35%;
	left: 50%;
	top: 7em;
	position: relative;
	line-height: 1.7em;
}

#form {
	position: relative;
	margin: 2em 0;
}

#myForm input {
	width: 100%;
	font-family: 'Fjalla One', sans-serif;
	background-color: rgba(255,255,255, 0.9);
	color: #000;
	height: 3em;
	padding-left: 1em;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	position: relative;
	border: none;
}

#myForm textarea {
	width: 100%;
	font-family: 'Fjalla One', sans-serif;
	background-color: rgba(255,255,255, 0.9);
	color: #000;
	height: 6em;
	padding-left: 1em;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	position: relative;
	border: none;
	padding-top: 1em;
}

input#submit.submit_button {
	width: 50%;
	font-family: 'Fjalla One', sans-serif;
	background-color: rgba(255,255,255, 0.9);
	color: #000;
	height: 3em;
	text-align: center;
	text-transform: uppercase;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	transition: all .8s ease-in-out;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	position: relative;
	border: none;
		margin: 0 ;
		padding: 0;
}

input#submit.submit_button:hover {
	background-color: rgba(222,11,11, 0.5);
	color: #fff;
}


#form label {
	display: block;
	margin-top: 1em;
}

img.profileheader_contact {
	position: relative;
	display: block;
	width: 14%;
	top: 5.5em;
	display: block;
	margin: 0 auto;
}



/* 7. Footer */

footer {
	width: 100%;
	position: fixed;
	left: 0;
	bottom: 0;
	text-decoration: none;
	color: #fff;
	clear: both;
	padding: 8px;
	margin: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 1000;
}

footer p {
	position: relative;
	margin-top: 10px;
	display: inline-block;
	font-size: 0.8em;
}

#socialmedia {
	display: inline;
	margin-right: 20px;
	float: right;
}

#socialmedia img {
	width: 20px;
}

footer a {
	text-decoration: none;
	color: #fff;
	padding-left: 5px;
}

footer a:hover {
	color: rgba(222,11,11, 1.0);
}

/*8. Pages */
.astrakhan_container {
    background: url(../img/astrakhan/astrakhan_main.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.jjc_container {
    background: url(../img/jjc/jjc_main.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.lbj_container {
    background: url(../img/lbj/lbj_main.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.rcc_container {
    background: url(../img/rcc/directory_main.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.grg_container {
    background: url(../img/grg/grg_main.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.nations_ig_container {
    background: url(../img/nations/nations_main.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.cetus_container {
    background: url(../img/cetus/cetus_main.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.artsig_container {
    background: url(../img/artsig_main.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.richmondsteel_container {
    background: url(../img/richmondsteel/richmondsteel_main.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.nationscupvideo_container {
    background: url(../img/nationsvideo/nationsvideo_main.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}

.motiongraphics_container {
    background: url(../img/motiongraphics/motiongraphics_main.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    z-index: 1;
    overflow: hidden;
    /* The following styles are required for the "scroll-over" effect */
    width: 100%;
    height: 92%;
    top: 0;
    left: 0;
    position: fixed !important;
}
#work_header {
	width: 30%;
	position: relative;
	left: 65%;
}

.about_text h3 {
	font-family: 'Lato', sans-serif;
	font-size: 0.7em;
	line-height: 1.4em;
}

.about_text h3 a {
	text-decoration: none;
	font-family: 'Lato', sans-serif;
	font-size: 0.7em;
	line-height: 1.4em;
	color: #ccc;
}

.about_text a:hover {
	color: rgba(222,11,11, 1.0);
}
.arrow_left {
	position: fixed;
	left:0;
	top: 50%;
	width: 2.5%;
	z-index: 1000;
	opacity: 0.3;
	-moz-transform: translateX(0%) translateY(-50%);
	-webkit-transform: translateX(0%) translateY(-50%);
	transform: translateX(0%) translateY(-50%);
	transition: all .7s ease-in-out;
	-webkit-transition: all .7s ease-in-out;
	-moz-transition: all .7s ease-in-out;
}

.arrow_left:hover {
	width: 3.5%;
	opacity: 0.6;
}

.arrow_left img {
	width: 100%;
}

.arrow_right {
	position: fixed;
	right:0;
	top: 50%;
	width: 2.5%;
	z-index: 1000;
	opacity: 0.3;
	-moz-transform: translateX(0%) translateY(-50%);
	-webkit-transform: translateX(0%) translateY(-50%);
	transform: translateX(0%) translateY(-50%);
	transition: all .7s ease-in-out;
	-webkit-transition: all .7s ease-in-out;
	-moz-transition: all .7s ease-in-out;
}

.arrow_right:hover {
	width: 3.5%;
	opacity: 0.6;
}

.arrow_right img {
	width: 100%;
}

#work_block1 {
	background: url(../img/redback.jpg) no-repeat center center;
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	width: 100%;
	position: relative;
	height: 150%;
}

#work_block2 {
	position: relative;
	background: url(../img/greyback.jpg) no-repeat center center; 
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
    width: 100%;
    height: 100%;
}

#slider_1 {
	width: 30%;
	display: inline-block;
	float: left;
	margin:10%;
}

#worktext_1 {
	width: 35%;
	display: inline-block;
	float: right;
	margin:10% 10% 10% 0;
}

#slider_2 {
	width: 30%;
	display: inline-block;
	float: right;
	margin:10%;
}

#worktext_2 {
	width: 35%;
	display: inline-block;
	float: left;
	margin:10% 0 10% 10%;
}

#worktext_2_video {
	width: 25%;
	display: inline-block;
	float: left;
	margin:10% 0 10% 10%;
}

#work_block3 {
	background: url(../img/redback.jpg) no-repeat center center;
  	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	width: 100%;
	position: relative;
	height: 150%;
}

#slider_3 {
	width: 30%;
	display: inline-block;
	float: left;
	margin:10%;
}

#followup {
	width: 40%;
	display: inline-block;
	float: left;
	margin:10%;
}


#followup img {
	width: 100%;
}

#worktext_3 {
	width: 30%;
	display: inline-block;
	float: right;
	margin:10% 10% 10% 0;
}

#portfolio_pieces a {
	color: transparent;
}


.feature_button {
	width: 66%;
	background-color: rgba(255,255,255, 0.4);
	color: #000;
	text-align: center;
	text-transform: uppercase;
	margin: 1em 0;
	padding: .5em;
	border-radius: 3px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	transition: all .8s ease-in-out;
	-webkit-transition: all .8s ease-in-out;
	-moz-transition: all .8s ease-in-out;
	text-shadow: none;
}

.feature_button:hover {
	background-color: rgba(222,11,11, 0.5);
	color: #fff;
}




