
/*

	00. Font Face
	01. Key Frames fade in
	02. Media Queries MAX WIDTH 1024px
	03. Media Queries MAX WIDTH 960px
	04. Media Queries MAX WIDTH 720px
	05. Media Queries MAX WIDTH 520px
	06. Media Queries for landscapes
	07. Media Queries for Portraits
	08. Media Queries for Works Grid
	09. Mobile Navigation Queries
	
	
*/



/* 00. FONT FACE ================================================== */


@font-face {
    font-family: 'OpenSansLight';
    src: url('../fonts/OpenSans-Light-webfont.eot');
    src: url('../fonts/OpenSans-Light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans-Light-webfont.woff') format('woff'),
         url('../fonts/OpenSans-Light-webfont.ttf') format('truetype'),
         url('../fonts/OpenSans-Light-webfont.svg#OpenSansLight') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'OpenSansRegular';
    src: url('../fonts/OpenSans-Regular-webfont.eot');
    src: url('../fonts/OpenSans-Regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans-Regular-webfont.woff') format('woff'),
         url('../fonts/OpenSans-Regular-webfont.ttf') format('truetype'),
         url('../fonts/OpenSans-Regular-webfont.svg#OpenSansRegular') format('svg');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'OpenSansSemibold';
    src: url('../fonts/OpenSans-Semibold-webfont.eot');
    src: url('../fonts/OpenSans-Semibold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/OpenSans-Semibold-webfont.woff') format('woff'),
         url('../fonts/OpenSans-Semibold-webfont.ttf') format('truetype'),
         url('../fonts/OpenSans-Semibold-webfont.svg#OpenSansSemibold') format('svg');
    font-weight: normal;
    font-style: normal;

}

/* SOCIAL ICON */


@font-face {
    font-family: 'Socialico';
    src: url('../fonts/Socialico.eot');
    src: url('../fonts/Socialico.eot?#iefix') format('embedded-opentype'),
         url('../fonts/Socialico.ttf') format('truetype'),
         url('../fonts/Socialico.svg#Socialico') format('svg');
    font-weight: normal;
    font-style: normal;

}


/* 01. KEY FRAMES FADE IN ================================================== */


@-webkit-keyframes Anim { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes Anim { from { opacity:0; } to { opacity:1; } }
@keyframes Anim { from { opacity:0; } to { opacity:1; } }
 
.fade-in {
    -webkit-animation:Anim ease-in 1;
    -moz-animation:Anim ease-in 1;
    animation:Anim ease-in 1;
    opacity: 0.7;
    filter: alpha(opacity=70);
 
    -webkit-animation-fill-mode:forwards;
    -moz-animation-fill-mode:forwards;
    animation-fill-mode:forwards;
 
    -webkit-animation-duration:1s;
    -moz-animation-duration:1s;
    animation-duration:1s;
}
 
.fade-in.one {
-webkit-animation-delay: 0.3s;
-moz-animation-delay: 0.3s;
animation-delay: 0.3s;
}



/* ISOTOP IS THERE FOR SOFT TRANSITIONS BETWEEN WORKS */

.isotope .isotope-item {
  /* change duration value to whatever you like */
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope .isotope-item {
  -webkit-transition-property: -webkit-transform, opacity;
     -moz-transition-property:    -moz-transform, opacity;
          transition-property:         transform, opacity;
}      



/* 02. MAX WIDTH 1024px ================================================== */

@media screen and (max-width: 1024px) {

nav #logo {
	float:left;
	display:inline-block;
	margin-left:0px;
	letter-spacing:2px;
	padding:20px 20px 20px 10px;
	line-height:20px;
	vertical-align:middle;
}
}



/* 03. MAX WIDTH 960px ================================================== */



@media screen and (max-width: 960px) {

header {
	background: url('../images/background_header.jpg') center; /* CHANGE HERE */
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;}

	
.roles {
    font-size: 20pt;  
}


#twitterwrap {
	padding:30px 50px 30px;}

#ticker ul.tweet_list {
height:19px;
font:12px 'OpenSansRegular';
}

ticker .tweet_list li {
overflow:hidden;
vertical-align:middle;
font:12px 'OpenSansRegular';
color:#666;
height:30px;
}

.subtittle {
	padding:20px 30px 10px 30px;
	font:18px'OpenSansRegular';}
	
	
}

/* 04. MAX WIDTH 720px ================================================== */


@media screen and (max-width: 720px) {
header {
	background: url('../images/background_header.jpg') center; /* CHANGE HERE */
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;}

.roles {
    font-size:  20pt;  
}

}


/* 05. MAX WIDTH 520px ================================================== */


@media screen and (max-width: 520px) {

	
header {
	background: url('../images/background_header.jpg') center; /* CHANGE HERE */
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    }


.subtittle {
	padding:10px 30px 10px 30px;
	font:15px/1.5 'OpenSansRegular';}


#contact .row .col1 {
	width:90%;}

#contact .row .col2 {
	width:90%;
	margin-top:30px;
	text-align: center;}

#contact .inner blockquote p{
	color:#fff;
	text-transform:uppercase;
	font:14px/1.3 'OpenSansRegular';
}

#contact .inner form input[type="text"],
#contact .inner form input[type="email"],
#contact .inner form textarea {
	width:95%;
}


#contact .inner form .submit {
	width:100%;}

footer {
	font-size:9px;}
	
}

/* 06. Smartphones (landscape) ================================================== */


@media only screen 
and (max-device-width : 550px) 
and (orientation : landscape) {
header {
	height:100%;
}


#goto a{
	display: none;}

header h1 {
	margin-top:5%;}
#wrapper {
	position:absolute;
	width:100%;}
#about .inner h2,
#contact .inner h2,
#whatwedo h2 {
	font:20px 'OpenSansRegular';}


}

/* 07. Smartphones (portraits) ================================================== */


@media only screen 
and (min-device-width : 320px) 
and (max-device-width : 480px)
and (orientation : portrait) {
header {
	height:417px;
}
#wrapper {
	position:absolute;
	top:417px;
	width:100%;}

#goto a{
	position:absolute;
	bottom:-60px;}
	
header h1 {
	font-size:30pt;}
#about .inner h2,
#contact .inner h2,
#whatwedo h2 {
	font:20px 'OpenSansRegular';}
}

/* 07. iPads (landscape) ----------- */

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {

}

/* 07. iPads (portrait) ----------- */

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : portrait) {
header h1 {
	margin-top:45%;}
}

/* 07. iPhone 4 ----------- */

/* @media
only screen and (-webkit-min-device-pixel-ratio : 1.5),
only screen and (min-device-pixel-ratio : 1.5) {
header h1 {
	margin-top:50%;}
}

*/


/* 08. PORTRAITS Media Queries ================================================== */


/* 3 COL */

@media (max-width: 800px){
  #portraits li{
    width: 31%;
    padding-top: 0%;
    margin-bottom: 3%;
  }
}

/* 2 COL */

@media (max-width: 600px){
  #portraits li{
    width: 46%;
    padding-top: 0%;
    margin-bottom: 4%;
  }
}

/* SINGLE COL */

@media (max-width: 400px){
  #portraits li{
    width: 75%;
    padding-top: 0%;
    margin-bottom: 5%;
  }
}


/* 08. WORKS GRID Media Queries ================================================== */



@-webkit-keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@-moz-keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@keyframes loader {
	0% { background: #ddd; }
	33% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ccc, -15px 30px 1px #ddd; }
	66% { background: #ccc; box-shadow: 0 0 1px #ccc, 15px 30px 1px #ddd, -15px 30px 1px #ccc; }
}

@media screen and (max-width: 830px) {

	.og-expander h3 { font-size: 32px; }
	.og-expander p { font-size: 13px; }
	.og-expander a { font-size: 12px; }
	.og-fullimg { margin-top:2%; }

}

@media screen and (max-width: 650px) {

	.og-fullimg { display: none; }
	.og-details { float: none; width: 100%; }
	.og-close {right:45%; top:10px; display: none; }
	.og-details h3 {padding-top: 50px;}
	.og-expander-inner {padding-top:10px; }  

}

@media screen and (max-width: 480px) {

	.og-fullimg { display: none; }
	.og-details { float: none; width: 100%; }
	.og-close {right:45%; top:10px; display: none; }
	.og-details h3 {padding-top: 50px; }
	.og-expander-inner {padding-top:10px; }  

}


/* 09. Mobile Navigation Queries ================================================== */ 

@media screen and (max-width: 650px) {

	nav #logo {
	float:left;
	display:inline-block;
	margin-left:0px;
	padding:15px 20px 10px 10px;
	vertical-align:middle;
	}

	nav ul li {
		display: none;
		}
	
	nav select text {color:red;}

	nav select {
      display: block;
		background: url('../images/nav-icon.png') no-repeat  ;
		width: 30px;
		border: none;
		height: 30px;
		display: inline-block;
		right: 15px;
		top: 10px;
		color: rgba(0, 0, 0, 0.0);
    }

}	
	