body
{
	margin: 0px;
	padding: 0px;
	background-color: #FFF;
	color: #4d4d4d;
	font-family: 'Avenir', sans-serif;
}

#back_to_top
{
	display: none;
}

img
{
	border: 0px;
}

a
{
	text-decoration: none;
	color: #808080;
	-webkit-transition: background-color 0.35s, color 0.35s;
 	-moz-transition: background-color 0.35s, color 0.35s;
 	transition: background-color 0.35s, color 0.35s;
}

a:hover
{
	color: #95d1c8;
	-webkit-transition: background-color 0.35s, color 0.35s;
 	-moz-transition: background-color 0.35s, color 0.35s;
 	transition: background-color 0.35s, color 0.35s;
}

.centered
{
	text-align: center;
}

.ultra_light
{
	font-family: 'Avenir Next', sans-serif;
	font-weight: 100;
}

.twitter
{
	width: 22px;
	height: 22px;
	background-image: url('images/twitter-bird-sprite.png');
	background-size: 108px auto;
	background-repeat: no-repeat;
	position: relative;
	top: 3px;
	display: inline-block;
}

.twitter:hover {
	-webkit-animation: fly 0.2s steps(4) 0 infinite;
	-moz-animation: fly 0.2s steps(4) 0 infinite;
	animation: fly 0.2s steps(4) 0 infinite;
}

@-webkit-keyframes fly {
	from { background-position: 0 0; }
    to { background-position: -108px 0; }
}
@-moz-keyframes fly {
	from { background-position: 0 0; }
    to { background-position: -108px 0; }
}
@keyframes fly {
	from { background-position: 0 0; }
    to { background-position: -108px 0; }
}

p
{
	margin: 0px 0px 1em 0px;
}

.container
{
	position: relative;
	width: 100%;
	max-width: 960px;
	min-height: 400px;
	margin: 0px auto 100px auto;
}

.top
{
	margin-top: 250px;
}

#featured
{
	margin: 0px auto 0px auto;
}

#featured hr
{
	margin-top: 50px;
}

.content
{
	width: 90%;
	margin: 0px auto;
}

#logo
{
	text-align: center;
	position: fixed;
	padding-top: 40px;
	top: 0px;
	left: 0px;
	width: 100%;
	background-color: #FFF;
	z-index: 99;
}

#logo_img
{
	width: 428px;
	height: 132px;
	margin: 0px auto;
	overflow: hidden;
	background-image: url('images/futureperfekt_logo.png');
	background-repeat: no-repeat;
	background-size: 428px 132px;
	cursor: pointer;
}

#quick_contact
{
	display: none;
}

#contact_card
{
	position: fixed;
	top: 24px;
	right: 36px;
	width: 550px;
	background-color: #FFF;
	-webkit-box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.5);
	box-shadow: 0 0.5em 2em rgba(0, 0, 0, 0.5);
	padding: 24px;
	z-index: 100;
	display: none;
	text-transform:uppercase;
	
}


hr
{
	border-style: solid;
	border-color: #E0E0E0;
	border-width: 0px 0px 1px 0px;
	width: 80%;
}

#home
{
	margin-top: 240px;
}

#contact
{
	margin-bottom: 0px;
	padding-bottom: 180px;
}

#contact form, #contact #contact_info, .portfolio_footer
{
	letter-spacing: 2px;
}

.portfolio_footer, .portfolio_footer a
{
	color: #626262;
	font-size: 14px;
	font-weight: 100;
	-webkit-transition: background-color 0.35s, color 0.35s;
 	-moz-transition: background-color 0.35s, color 0.35s;
 	transition: background-color 0.35s, color 0.35s;
}

.portfolio_footer a:hover
{
	color: #95d1c8;
	-webkit-transition: background-color 0.35s, color 0.35s;
 	-moz-transition: background-color 0.35s, color 0.35s;
 	transition: background-color 0.35s, color 0.35s;
}


p.error
{
	color: #e34c4c;
}

.icons
{
	width: 666px;
	margin: 0px auto 108px auto;
}

.icons p
{
	width: 182px;
	margin-right: 59px;
	float: left;
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	color: #4D4D4D;
	letter-spacing: 1px;
	font-weight: bold;
}

.icons p.last
{
	margin-right: 0px;
}

.icons p img
{
	width: 150px;
}

.clearing
{
	clear: both;
}

.all_caps
{
	text-transform: uppercase;
}

.heading_text
{
	font-size: 36px;
	text-align: center;
	line-height: 1.5em;
	margin-bottom: 60px;
	font-weight: light;
	letter-spacing: 3px;
}

.text_input
{
	background-color: #F2F2F2;
	border: 0px;
	font-family: 'Avenir', sans-serif;
	font-size: 21px;
	letter-spacing: 1px;
	padding: .4em;
	width: 90%;
	font-weight: 100;
	color: #4b4949;
	
}

label
{
	text-transform: uppercase;
	color: #808080;
}

#contact form
{
	width: 56%;
	float: left;
	margin-right: 50px;
}

.submit_btn
{
	-webkit-appearance: none;
 	-webkit-border-radius: 0;
	background-color: #F2F2F2;
	border: 0px;
	text-transform: uppercase;
	font-size: 16px;
	padding: 0px;
	color: #808080;
	cursor: pointer;
	margin: 0px;
	width: 100px;
	height: 44px;
	overflow: hidden;
	display: inline-block;
	position: relative;
	letter-spacing: 1px;
	-webkit-transition: background-color 0.35s, color 0.35s;
 	-moz-transition: background-color 0.35s, color 0.35s;
 	transition: background-color 0.35s, color 0.35s;
}

.submit_btn:hover
{
	background-color: #95D1C8;
	color: #FFF;
	-webkit-transition: background-color 0.35s, color 0.35s;
 	-moz-transition: background-color 0.35s, color 0.35s;
 	transition: background-color 0.35s, color 0.35s;
}

.label {
    display: block;
    width: 100%;
    height: 100%;
    padding: 5px 0px;
    position: relative;
    top: 0%;
    -webkit-transition: top 0.35s;
 	-moz-transition: top 0.35s;
 	transition: top 0.35s;
}

.submit_btn:hover .label {
    top: -100%;
}

#contact_info
{
	line-height: 1.5em;
}

.float_left
{
	float: left;
}

.justified
{
	letter-spacing: .05em;
}

.flexslider
{
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-o-border-radius: 0px;
	border-radius: 0px;
	-moz-box-shadow: none;
	-o-box-shadow: none;
	box-shadow: none;
}

.subtext
{
	text-align: center;
	margin-top: -67px;
	font-size: 12px;
	letter-spacing: 2px;

}


div.laptop, div.tablet_laptop
{
	background-image: url('/images/featured/laptop_image.png');
	background-repeat: no-repeat;
	/*background-size: 884px;*/
	background-size: 103%;
	/*background-position: -12px 0px;*/
	background-position: 50% 0%;
	position: relative;
	width: 100%;
	height: 540px;
}

div.tablet_laptop
{
	background-image: none;
}

.flexslider .slides div.laptop img, .flexslider .slides div.tablet_laptop img
{
	position: absolute;
	width: 100%;
	top: 0%;
	left: 0%;
}

.laptop_screen
{
	position: absolute;
	/*width: 541px;*/
	width: 63.2%;
	height: 339px;
	/*top: 101px;*/
	top: 18.7%;
	/*left: 160px;*/
	left: 18.5%;
	overflow: hidden;
}

.flexslider .slides div.laptop img.slid, .flexslider .slides div.tablet_laptop img.slid
{
	/*left: 528px;*/
	left: 100%;
	-moz-transition: left .3s;
    -webkit-transition: left .3s;
    -o-transition: left .3s;
    transition: left .3s;
}

.flexslider ul.slides li
{
	position: relative;
}

div.tablets
{
	position: relative;
	/*width: 856px;*/
	height: 540px;
	width: 100%;
}

.flexslider .slides div.tablets img
{
	position: absolute;
	/*right: 50px;*/
	right: .58%;
	bottom: 0px;
}



.flexslider .slides div.tablets img.vert
{
	/*width: 390px;*/
	width: 45.5%;
}
.flexslider .slides div.tablets img.horz
{
	/*width: 380px;*/
	width: 44.4%;
}

.flexslider .slides div.tablets img#h_tablet
{
	opacity: 0;
	/*width: 475px;*/
	width: 55.5%;
	bottom: 4px;
	/*right: 233px;*/
	right: 27.2%;
}

.flexslider .slides div.tablets img#v_tablet
{
	/*right: 233px;*/
	right: 27.2%;
	opacity: 1;
}

.flexslider .slides div.tablets img#v_tablet.slid
{
	/*right: 55px;*/
	right: 6.4%;
	-moz-transition: all .65s;
    -webkit-transition: all .65s;
    -o-transition: all .65s;
    transition: all .65s;
}


.flexslider .slides div.tablets img#h_tablet.slid
{
	/*right: 330px;*/
	right: 38.5%;
	opacity: 1;
	-moz-transition: all .65s;
    -webkit-transition: all .65s;
    -o-transition: all .65s;
    transition: all .65s;
}


.flexslider .slides div.phones
{
	position: relative;
	height: 540px;
	/*width: 856px;*/
	width: 100%;
}

.flexslider .slides div.phones img
{
	position: absolute;
	bottom: 0px;
	/*left: 172px;*/
	left: 20%;
	/*width: 220px;*/
	width: 25.7%;
}


.flexslider .slides div.phones img.phone2 { bottom: 2px; width: 25.6%; /*219px;*/ }
.flexslider .slides div.phones img.phone3 { bottom: 4px; width: 25.4%; /*218px;*/ }

.flexslider .slides div.phones img.phone2.slid
{
	left: 37.6%; /*322px;*/
	bottom: 0px;
	display: block;
	-moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.flexslider .slides div.phones img.phone3.slid
{
	left: 55.1%; /*472px;*/
	bottom: 0px;
	display: block;
	-moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

#logos
{
	width: 768px;
	min-height: 100px;
	height: 100px;

	padding-bottom: 10px;
}

#logos .content
{
	width: 100%;
}

#logos hr
{
	width: 100%;
}

#logos p
{
	width: 100px;
	height: 100px;
	margin-right: 50px;
	margin-bottom: 0px;
}

#logos p.first
{
	margin-left: 34px;
}

#logos p.last
{
	margin-right: 0px;
}

#logos img
{
	width: 100%;
	opacity: .5;
	-webkit-transition: opacity 0.35s, color 0.35s;
 	-moz-transition: opacity 0.35s, color 0.35s;
 	transition: opacity 0.35s, color 0.35s;
}

#logos img:hover
{
	opacity: .7;
	-webkit-transition: opacity 0.35s, color 0.35s;
 	-moz-transition: opacity 0.35s, color 0.35s;
 	transition: opacity 0.35s, color 0.35s;
}

.row
{
	margin-bottom: 150px;
}

.item
{
	font-size: 13px;
	font-weight: 100;
	letter-spacing: 1px;
	color: #626262;
	width: 100%;
	margin-right: 10.85%;
	border-top: 1px solid #CCC;
	min-height: 225px;
	padding-top: 25px;
}

.item.first
{
	border-top: 0px;
}

.item .logo
{
	width: 17%;

	margin-right: 14.5%;
}

.item .info
{
	margin-right: 14.5%;
	line-height: 1.4em;
}

.item .links
{
	line-height: 1.7em;
}

.item .info, .item .links
{
	width: 27%;
}

.item.last
{
	margin-right: 0px;
}

.client_logo
{
	text-align: center;
}

.client_logo img
{
	width: 175px;
}

span.title
{
	color: #000;
	text-transform: uppercase;
	font-weight: normal;
	display: inline;
	margin-bottom: .4em;
}

p.linethrough
{
	/*border-bottom: 1px solid #999;
	height: .7em*/
}

p.linethrough span
{
	/*background-color: #FFF;*/
	padding: 0px 1em;
	border-bottom: 1px solid #999;
}

.content.fullwidth
{
	width: 100%;
}

.normal
{
	display: block;
}

.mobile_only
{
	display: none;
}


@media all and (max-width: 1024px) and (orientation:landscape) {

	div.tablets img.vert { width: 10.95%; }
}

@media all and (max-width: 960px) {
	.container 
	{
		width: 95%;
	}
}

@media all and (max-width: 800px) {

	.flexslider .slides div.phones img { bottom: 100px; }	
	
	.flexslider .slides div.phones img.phone2 { bottom: 102px; width: 25.6%; /*219px;*/ }
	.flexslider .slides div.phones img.phone3 { bottom: 104px; width: 25.4%; /*218px;*/ }

	.flexslider .slides div.phones img.phone2.slid { bottom: 100px; }

	.flexslider .slides div.phones img.phone3.slid { bottom: 100px; }
	
	.flex-direction-nav a { top: 40%; }
	
	
	.flexslider .slides div.tablets img { bottom: 100px; }
	.flexslider .slides div.tablets img#h_tablet { bottom: 104px; }
	
	.flexslider .slides div.laptop img, .flexslider .slides div.tablet_laptop img
	{
		top: 5%;
	}
	
	.container 
	{
		width: 95%;
	}
	
	#contact form
	{
		margin-right: 20px;
	}
	
	.portfolio_footer
	{
		font-size: 14px;
	}
	
	#logos hr
	{
		width: 77%;
	}
	
	#logos .content
	{
		width: 77%;
		text-align: center;
	}
	
	#logos p
	{
		width: 80px;
		height: 80px;
		margin-right: 30px;
		margin-bottom: 0px;
		display: inline-block;
		float: none;
	}
	
	#logos p.first
	{
		margin-left: 0px;
	}
	
}/* <---- this was it */

/* Mobile Styles Begin Here */
@media all and (max-width: 600px) {

	
	#contact form
	{
		width: auto;
		float: none;
	}

	.float_left
	{
		float: none;
	}
	
	.heading_text
	{
		font-size: 33px;
		text-align: left;
	}
	
	#featured
	{
		min-height: 0px;
		margin-bottom: 20px
	}
	
	#featured .heading_text, #featured .subtext
	{
		text-align: center;
	}
	
	#home
	{
		margin-top: 172px;
		border-bottom: 0px;
	}
	
	#contact
	{
		padding-bottom: 100px;
	}
	
	#home .heading_text
	{
		width: 100%;
	}
	
	#logo
	{
		text-align: left;
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 70px;
		background-color: #FFF;
		z-index: 99;
	}
	
	#logo #logo_img
	{
		width: 385px;
		height: 118px;
		margin: 0px;
		overflow: hidden;
		background-image: url('images/futureperfekt_logo.png');
		background-repeat: no-repeat;
		background-position: -124px 0px;
		background-size: 325px auto;
		width: 111px;
		position: absolute;
		top: 12px;
		left: 19px;

	}
	
	#logo #logo_img img
	{

	}
	
	#quick_contact
	{
		position: absolute;
		top: 12px;
		right: 12px;
		display: block;
	}
	
	.justified
	{
		letter-spacing: normal;
	}

	
	.icons
	{
		width: 100%;
	}

	.icons p
	{
		text-align: center;
		margin-bottom: 60px;
		width: 100%;
		float: none;
		font-size: 12px;
		text-transform: uppercase;
		color: #4D4D4D;
	}
	
	.icons p img
	{
		width: 200px;
	}
	
	.icons p.last
	{
	}
	
	.text_input
	{
		width: 100%;
	}
	
	#contact form
	{
		width: 95%;
		margin-right: 50px;
	}
	
	#contact #contact_info
	{
		padding-top: 30px;
	}
	
	#contact_card
	{
		display: none;
		width: 75%;
		top: 24px;
		right: 12px;
		opacity: 0;
	}
	
	#back_to_top
	{
		position: absolute;
		bottom: 0px;
		right: 20px;
		display: block;
	}
	
	.subtext
	{
		text-align: left;
	}
	
	#logos
	{
		width: 100%;
		height: auto;
		padding-bottom: 10px;
		margin: 0px auto 50px auto;
	}
	
	#logos .content
	{
		width: 80%;
		text-align: center;
	}

	#logos p
	{
		width: 25%;
		height: auto;
		margin-right: 8%;
		margin-left: 0px;
		display: inline-block;	
	} 
	
	#logos p.first
	{
		margin-left: 0px;
	}

	#logos p.last
	{
		margin-right: 0px;
		margin-left: 0px;
	}
	
	#logos p.end
	{
		margin-right: 0px;
		margin-left: 0px;
	}

	#logos img
	{
		width: 100%;
	}

	#featured hr
	{
		margin-top: 50px;
		height: 1px;
		margin-bottom: 0px;
	}
	
	#logos hr
	{
		width: 80%;
		margin-top: 22px;
	}
	
	.row
	{
		margin: 0px auto;
		width: 89%;
	}
	
	.item
	{
		width: 100%;
		float: none;
		margin: 0px auto 100px auto;
	}
	
	p.linethrough
	{
		height: auto;
		border-bottom: 0px;
	}
	
	p.linethrough span
	{
		background-color: transparent;
		padding: 0px .5em;
	}
	
	#portfolio .heading_text
	{
		text-align: center;
	}
	
	.top
	{
		margin-top: 200px;
	}
	
	.normal
	{
		display: none;
	}
	
	.mobile_only
	{
		display: block;
	}
	
	.item
	{
		width: 97%;
		margin: 0px auto 50px auto;
	}
	
	.item .logo
	{
		width: 100%;
		text-align: center;
	}
	
	.item .info, .item .links
	{
		width: 100%;
		margin: 0px;
	}
}