/* http://meyerweb.com/eric/tools/css/reset/ 
	v2.0 | 20110126
	License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
* {font-size: 100.01%;}
html,body {
	font-size: 62.5%;
	height:100%;
}


/*
Animate.css - http://daneden.me/animate
LICENSED UNDER THE  MIT LICENSE (MIT)

Copyright (c) 2012 Dan Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

.animated {
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -ms-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -ms-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}

@-webkit-keyframes fadeIn { 
    0% { opacity: 0 }

    100% { opacity: 1 }
}

@-moz-keyframes fadeIn { 
    0% { opacity: 0 }

    100% { opacity: 1 }
}

@-o-keyframes fadeIn { 
    0% { opacity: 0 }

    100% { opacity: 1 }
}

@keyframes fadeIn { 
    0% { opacity: 0 }

    100% { opacity: 1 }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp { 
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY();
    }
}

@-moz-keyframes fadeInUp { 
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateY();
    }
}

@-o-keyframes fadeInUp { 
    0% {
        opacity: 0;
        -o-transform: translateY(20px);
    }

    100% {
        opacity: 1;
        -o-transform: translateY();
    }
}

@keyframes fadeInUp { 
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY();
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInLeftBig { 
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX();
    }
}

@-moz-keyframes fadeInLeftBig { 
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX();
    }
}

@-o-keyframes fadeInLeftBig { 
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX();
    }
}

@keyframes fadeInLeftBig { 
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }

    100% {
        opacity: 1;
        transform: translateX();
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    -moz-animation-name: fadeInLeftBig;
    -o-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRightBig { 
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX();
    }
}

@-moz-keyframes fadeInRightBig { 
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -moz-transform: translateX();
    }
}

@-o-keyframes fadeInRightBig { 
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        -o-transform: translateX();
    }
}

@keyframes fadeInRightBig { 
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    100% {
        opacity: 1;
        transform: translateX();
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    -moz-animation-name: fadeInRightBig;
    -o-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeOut { 
    0% { opacity: 1 }

    100% { opacity: 0 }
}

@-moz-keyframes fadeOut { 
    0% { opacity: 1 }

    100% { opacity: 0 }
}

@-o-keyframes fadeOut { 
    0% { opacity: 1 }

    100% { opacity: 0 }
}

@keyframes fadeOut { 
    0% { opacity: 1 }

    100% { opacity: 0 }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    -moz-animation-name: fadeOut;
    -o-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOutUp { 
    0% {
        opacity: 1;
        -webkit-transform: translateY();
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
}

@-moz-keyframes fadeOutUp { 
    0% {
        opacity: 1;
        -moz-transform: translateY();
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }
}

@-o-keyframes fadeOutUp { 
    0% {
        opacity: 1;
        -o-transform: translateY();
    }

    100% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }
}

@keyframes fadeOutUp { 
    0% {
        opacity: 1;
        transform: translateY();
    }

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    -moz-animation-name: fadeOutUp;
    -o-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutDown { 
    0% {
        opacity: 1;
        -webkit-transform: translateY();
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
}

@-moz-keyframes fadeOutDown { 
    0% {
        opacity: 1;
        -moz-transform: translateY();
    }

    100% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }
}

@-o-keyframes fadeOutDown { 
    0% {
        opacity: 1;
        -o-transform: translateY();
    }

    100% {
        opacity: 0;
        -o-transform: translateY(20px);
    }
}

@keyframes fadeOutDown { 
    0% {
        opacity: 1;
        transform: translateY();
    }

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    -moz-animation-name: fadeOutDown;
    -o-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}

@-webkit-keyframes bounceIn { 
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
    }

    70% { -webkit-transform: scale(.9) }

    100% { -webkit-transform: scale(1) }
}

@-moz-keyframes bounceIn { 
    0% {
        opacity: 0;
        -moz-transform: scale(.3);
    }

    50% {
        opacity: 1;
        -moz-transform: scale(1.05);
    }

    70% { -moz-transform: scale(.9) }

    100% { -moz-transform: scale(1) }
}

@-o-keyframes bounceIn { 
    0% {
        opacity: 0;
        -o-transform: scale(.3);
    }

    50% {
        opacity: 1;
        -o-transform: scale(1.05);
    }

    70% { -o-transform: scale(.9) }

    100% { -o-transform: scale(1) }
}

@keyframes bounceIn { 
    0% {
        opacity: 0;
        transform: scale(.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% { transform: scale(.9) }

    100% { transform: scale(1) }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
}



body {
	overflow-x: hidden;
	overflow-y: scroll;
	margin:0;
	color:#646464;
	font:1.8em/1.333em 'Raleway', sans-serif;
	background:#fff;
	-webkit-text-size-adjust:100%;
	min-width:320px;
}

a {
	color: #f3932d;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

h3 {
	font-size: 1.8em;
	line-height: 1.1em;
	font-weight: 300;
	margin-bottom: 0.8em;
}

h4 {
	font-size: 1.3em;
	font-weight: 600;
}

#page {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}

#logo {
	display: block;
	color: #3c3c3c;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 2.0em;
	line-height: 0.8em;
	margin: 20px 0;
}

.logo-container {
	height: 2.0em;
	float: left;
	margin-right: 0.5em;
}

.logo-container img {
	height: 100%;
	width: auto;
}

#logo span {
	color: #8a8a8a;
	font-size: 0.3em;
	font-family: Georgia, serif;
	display: block;
}

.splash {
	background: black url(../img/splash_bg.png);
	background-attachment: fixed;
	padding: 3.0em 9999px 3.0em;
	margin: 0 -9999px;
	color: #fff;
	text-align: center;
}

.splash.sticky {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	padding: 3.0em 0 3.0em;
	margin: 0;
}

.splash h2 {
	font-size: 4.0em;
	line-height: 1.1em;
	font-family: 'Helvetica Neue', sans-serif;
	font-weight: 100;
}

.splash h2 em {
	font-family: Georgia, serif;
	font-weight: bold;
	display: inline-block;
	position: relative;
		-webkit-animation-name: bounceIn; 
	  -webkit-animation-duration: 0.8s; 
	  -webkit-animation-iteration-count: 1; 
		-moz-animation-name: bounceIn; 
	  -moz-animation-duration: 0.8s; 
	  -moz-animation-iteration-count: 1;
		-ms-animation-name: bounceIn; 
	  -ms-animation-duration: 0.8s; 
	  -ms-animation-iteration-count: 1; 
		-o-animation-name: bounceIn; 
	  -o-animation-duration: 0.8s; 
	  -o-animation-iteration-count: 1; 
		animation-name: bounceIn; 
	  animation-duration: 0.8s; 
	  animation-iteration-count: 1; 
}

@media only screen and (max-width: 767px) {
	.splash h2 {
		font-size: 2.8em;
	}
}

.splash p {
	display: block;
	margin: 1.0em auto 0;
	width: 64%;
	line-height: 1.4em;
}

.splash a {
	color: #f3932d;
	font-weight: 600;
}

.content {
	padding: 2.0em 0;
}

#tweets {
	margin: 0 0 2.0em 0;
	border-bottom: 1px solid #ddd;
	padding: 0 0 2.0em 0;
}

#tweets a {
	text-decoration: none;
	font-weight: 600;
	color: #f3932d;
}

#tweets a:hover {
	text-decoration: underline;
}

#tweets .tweet-body {
	color: #666;
	font-weight: normal;
}

.cols .col1 {
	width: 46%;
	float: left;
}

.cols .col2 {
	width: 46%;
	float: right;
}

.col p {
	margin-bottom: 2.0em;
}

.work-experience li {
	margin-bottom: 1.0em;
}

.work-experience .company {
	font-weight: 600;
	font-size: 1.1em;
	color: #666;
}

.work-experience .title {
	display: block;
}

.work-experience .timespan {
	display: block;
	font-size: 0.8em;
	color: #999;
}

.contact-list {
	margin-top: 1.0em;
}

.contact-list li {
	float: left;
	width: 3.0em;
	margin-right: 0.4em;
}

.contact-list li img {
	width: 100%;
	height: auto;
}

/* cases */

.cases h3 {
	text-align: center;
	font-size: 3.0em;
	text-transform: uppercase;
	font-weight: 300;
	margin-top: 1.0em;
	border-top: 1px solid #ddd;
	padding-top: 1.0em;
}

.case-study,
.other-clients {
	width: 100%;
	margin-bottom: 4.0em;
	padding-bottom: 3.0em;
	border-bottom: 2px dashed #ddd;
}

.other-clients h3 {
	font-size: 1.0em;
	font-weight: 600;
	text-align: center;
	text-transform: uppercase;
	margin-bottom: 2.0em;
}

.other-clients img {
	width: 100%;
	height: auto;
}

.m-hidden {
	display: block;
}

.d-hidden {
	display: none;
}

.case-study .case-image-block {
	-moz-box-shadow: inset 0px 3px 8px rgba(50, 50, 50, 0.35);
	-webkit-box-shadow: inset 0px 3px 8px rgba(50, 50, 50, 0.35);
	-ms-box-shadow: inset 0px 3px 8px rgba(50, 50, 50, 0.35);
	-o-box-shadow: inset 0px 3px 8px rgba(50, 50, 50, 0.35);
	box-shadow: inset 0px 3px 8px rgba(50, 50, 50, 0.35);
	background: #333;
	padding: 1.5em 9999px 0em;
	margin: 0 -9999px;
	border-bottom: 1px solid #ccc;
}

.case-image-block img {
	width: 100%;
	display: block;
	position: relative;
	
	-moz-transform: scale(0.95);
	-webkit-transform: scale(0.95);
	-ms-transform: scale(0.95);
	-o-transform-origin: 50% bottom;
	transform: scale(0.95);
	
	-moz-transform-origin: 50% bottom;
	-webkit-transform-origin: 50% bottom;
	-ms-transform-origin: 50% bottom;	
	-o-transform-origin: 50% bottom;
	transform-origin: 50% bottom;
	
	-moz-transition: all 0.8s;
	-webkit-transition: all 0.8s;
	-ms-transition: all 0.8s;
	-o-transition: all 0.8s;
	transition: all 0.8s;
}


.case-study .case-image-block.show img {
	-moz-transform: scale(1);
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}


.case-study p {
	-moz-column-count: 2;
	-moz-column-gap: 4.0em;
	-webkit-column-count: 2;
	-webkit-column-gap: 4.0em;
	column-count: 2;
	column-gap: 4.0em;
	line-height: 1.5em;
	font-size: 0.9em;
}

.case-study h4 {
	text-align: center;
	display: block;
	width: 60%;
	margin: 1.0em auto;
	font-size: 2.0em;
	color: #333;
	line-height: 1.1em;
}

.case-study h4 a {
	color: #333;
}

.case-study span {
	display: block;
	text-transform: uppercase;
	font-weight: 100;
	margin-top: 0.8em;
	font-size: 0.7em;
}

.case-study .button {
	display: block;
	margin: 2.0em auto 0;
	text-align: center;
	background: #f3932d;
	color: #fff;
	font-weight: 600;
	padding: 0.5em 1.0em;
	width: 12.0em;
	line-height: 2.0em;
}

.case-study .button:hover,
footer .button:hover {
	background: #444;
}

footer a {
	display: block;
	margin: 2.0em auto 0;
	text-align: center;
	background: #888;
	color: #fff;
	font-weight: 600;
	padding: 0.5em 1.0em;
	width: 12.0em;
	line-height: 2.0em;
}

@media only screen and (min-width: 900px) {

	.case-study.helsinki-airport .case-image-block {
		background: #fff url(../img/helsinki_airport_bg.jpg) repeat-x;
		background-attachment: fixed;
	}
	
	.case-study.wartsila .case-image-block {
		background: #000 url(../img/twentyfour_bg.jpg) repeat-x;
		background-attachment: fixed;
	}
	
	.case-study.laakkonen .case-image-block {
		background: #000 url(../img/bg-laakkonen.jpg) repeat-x;
		background-attachment: fixed;
	}

	
	.case-study.crasman .case-image-block {
		background: #fff url(../img/crasman_bg.png) repeat-x;
		background-attachment: fixed;
	}
	
	.case-study.vianor .case-image-block {
		background: #070707 url(../img/vianor_bg.jpg) repeat-x;
		background-attachment: fixed;
	}
	
	.case-study.coppamedia .case-image-block {
		background: #000 url(../img/coppamedia_bg.jpg) repeat-x;
		background-attachment: fixed;
	}
	
	
}

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

	.cols,
	.case-study p,
	.other-clients {
		padding-left: 2.0em;
		padding-right: 2.0em;
	}
	
	.case-study .case-image-block img {
		width: 80%;
		margin: 0 auto;
	}
	
	.other-clients {
		width: auto;
	}
	
	.other-clients img {
		width: 100%;
	}
	
	.case-study .case-image-block {
		width: 100%;
		margin: 0;
		padding: 2.0em 0 0;
	}
	

	.splash {
		width: 100%;
		padding: 3.0em 0 3.0em;
		margin: 0 0;
	}


}


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

	.other-clients h3 {
		text-align: left;
		text-transform: none;
	}

	.other-clients ul {
		list-style: circle inside;
	}

	.m-hidden {
		display: none;
	}

	.d-hidden {
		display: block;
	}

	.page-header {
		width: 100%;
		text-align: center;
		padding: 0;
	}

	.logo-container {
		margin-top: 1.0em;
		float: none;
		margin-right: 0;
		
	}

	.splash {
		width: 100%;
		padding: 3.0em 0 3.0em;
		margin: 0 0;
	}

	.cols .col1, .cols .col2 {
		float: none;
		width: 100%;
		display: block;
		clear: both;
	}
	
	#page {
		max-width: 100%;
	}
	
	.contact-list {
		margin-bottom: 5.0em;
	}
	

	.case-study p {
		-moz-column-count: 1;
		-webkit-column-count: 1;
		column-count: 1;
	}
	
	.case-image-block img {
		width: 100%;
		display: block;
		position: static;
		left: 0;
	}
	
}