/*------------------------------------------------------------------

[Table of contents]

1. Stylesheets And Google Fonts Import
2. Reset & Clearfix
3. Basic Elements & Classes
4. Forms
	4.1 Form Layout Classes	
5. Helper Classes
6. Typography
	6.1 Lead Text
	6.2 Headings
7. Layout And Content
	7.1 Page Container
	7.2 Container
	7.3 Columns
	7.4 Flexible columns
8. Header Section
	8.1 Logo
	8.2 Menu trigger button
9. Menu
	9.1 Menu container
	9.2 Navigation Title
	9.3 Navigation
	9.4 Menu overlay
10. Intro Section
11. Sections Images
12. Portfolio Project
13. Content Section
14. Clients Section
15. About Section
	15.1 Team
	15.2 Process
	15.3 Services
16. Slider Content Section
17. Request Box
18. Latest Tweets
19. Contact Section
	19.1 Contact Box
	19.2 Form
20. News Section
21. Section helpers
22. Footer Section
	22.1 Footer Note
23. Elements
24. Plugins
25. Media Queries
 ------------------------------------------------------------------------*/

/* ----------------------------------------------------------------------
	1. Stylesheets and Google fonts import
/* ---------------------------------------------------------------------- */

/* ICOMOON */
@import url(../fonts/icomoon.css);

/* OWL CAROUSEL */
@import url("owl.carousel.css");
@import url("owl.transitions.css");

/* FANCYBOX PLUGIN */
@import url("fancybox.custom.css");


/* 2. Reset & Clearfix (http://meyerweb.com/eric/tools/css/reset/)
 ---------------------------------------------------------------------- */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,and,address,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,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,input,textarea,select{background:transparent;border:0;font-size:100%;margin:0;outline:0;padding:0;vertical-align:baseline}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}body{line-height:1}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}del{text-decoration:line-through}hr{background:transparent;border:0;clear:both;color:transparent;height:1px;margin:0;padding:0}mark{background-color:#ffffb3;font-style:italic}input,select{vertical-align:middle}ins{background-color:red;color:white;text-decoration:none}ol,ul{list-style:none}table{border-collapse:collapse;border-spacing:0}


/* ----------------------------------------------------------------------
	3. Basic Elements & Classes
/* ---------------------------------------------------------------------- */
* {
	-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
	-moz-box-sizing: border-box;    /* Firefox, other Gecko */
	box-sizing: border-box;         /* Opera/IE 8+ */
}

html {
    min-height:100%;
    position:relative
}
body {
	color: #666;
	height:100%;
	background: #222;
	font-weight: 400;
	font: 14px/1.8 "Roboto", Helvetica, Arial, sans-serif;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

::-moz-selection { background: #e96247; color: #fff; text-shadow: none; }
::selection { background: #e96247; color: #fff; text-shadow: none; }

h1, h2, h3, h4, h5, h6 {
	color: #222;
	font-weight: 900;
	line-height: 1.4;
	margin-bottom: 20px;
}

a, a > * {
	color: #e96247;
	font-weight: 500;
	text-decoration: none;
	-webkit-transition: background-color .2s ease, border .2s ease, color .2s ease, opacity .2s ease-in-out;
	   -moz-transition: background-color .2s ease, border .2s ease, color .2s ease, opacity .2s ease-in-out;
	    -ms-transition: background-color .2s ease, border .2s ease, color .2s ease, opacity .2s ease-in-out;
	     -o-transition: background-color .2s ease, border .2s ease, color .2s ease, opacity .2s ease-in-out;
	        transition: background-color .2s ease, border .2s ease, color .2s ease, opacity .2s ease-in-out;
}

a:hover, a > *:hover { color: #222; }

h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 24px; }
h4 { font-size: 22px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }
small { font-size: 12px; }
ol { list-style: decimal; }
ul { list-style: disc; }
li { margin: 4px 0 4px 40px; }
img {  }
dl,hr,ol,ul,pre,table,address,fieldset,blockquote,p,iframe { margin-bottom: 40px; }
ul ul, ol ol, ul ul ul, ol ol ol { margin-bottom:0 }
article { margin-bottom: 40px; }
strong, b { font-weight: 700; }
del {
	text-decoration: line-through;
	color: #999;
}
small, sup, sub { font-size: 85%; }
abbr, acronym { text-transform: uppercase; letter-spacing: .1em; }
a abbr, a acronym { border: none; }
abbr[title], acronym[title], dfn[title] {
	cursor: help;
	border-bottom: 1px dotted #999;
}
sup { vertical-align: super; }
sub { vertical-align: sub; }

/* Blockquote */
blockquote {
	color: #666;
	border-left: 5px solid #ddd;
}
	blockquote p {
		padding: 20px 30px;
		font-size: 16px;
		line-height: 28px;
		color: #999;
		font-style: italic;
	}	
	blockquote .author { 
		color: #222;
		font-weight: 700;
	}
	blockquote .author:before {
		content: "-";
		display: inline-block;
		margin: 0 4px 0 2px;
	}

small {
	font-size: 11px;
}

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



/* ----------------------------------------------------------------------
	5. Helper Classes
/* ---------------------------------------------------------------------- */
.hidden { display: none; }
.disabled { cursor: auto; }
.invisible { visibility: hidden; }
.no-margin { margin: 0 !important; }
.aligncenter { margin-left: auto; margin-right: auto; text-align: center; }
img.inline { vertical-align: middle; max-width: 100%; }
img.size-1-2 { width: 50%; height: 50%;}
img.size-3-4 { width: 75%; height: 75%;}
img.aligncenter { display: block; margin-bottom: 30px; }
.alignleft, .floatleft { float: left !important; }
img.alignleft { margin-bottom: 30px; margin-right: 20px; }
.alignright, .floatright { float: right !important; }
img.alignright { margin-bottom: 30px; margin-left: 20px; }
img.frame { border: 4px solid #fff; }
.text-right { text-align: right; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.color { color: #e96247; }
.white { color: #fff !important; }
.light { color: #eee; }
.dark { color: #666; }
.caps { text-transform: uppercase; }
.clear{ clear:both; display:block; height:1px; margin-top:-1px; overflow:hidden; visibility:hidden; width:0 }
.clearfix:after { clear:both; content:' '; display:block; font-size:0; height:0; line-height:0; visibility:hidden; width:0 }
* html .clearfix,:first-child+html .clearfix { zoom:1 }
.inlineblock { display: inline-block;}
#exit-layer {
	background-color: #222;
	position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    overflow:hidden;
    z-index:9999;
    width: 100%;
    height: 100%;
    opacity: 0;
    display: none;
}
.caption {
	margin-bottom: 40px;
}
.caption .zoom-thumb { margin-bottom: 10px; }
.caption img {
    height: auto;
    margin: 0 0 10px 0;
    padding: 0;
    width: auto;
}
.caption p.caption-text {
    font-size: 12px;
    line-height: 17px;
  	width: 100%;
  	text-align: right;
  	font-style: italic;
}


/* ----------------------------------------------------------------------
	6. Typography
/* ---------------------------------------------------------------------- */


/* 6.1 Lead text
 ------------------------------ */
p.lead.big {
	font-size: 30px;
	line-height: 1.5em;
}
p.lead.medium { font-size: 24px; }
p.lead.small { font-size: 18px; }
p.dark { color: #222; }

/* Headings */
.big-heading {
	font-size: 48px;
}
.medium-heading {
	font-size: 36px;
}


/* 6.2 Headings
 ------------------------------ */
.line-heading {}
.line-heading:after {
	content: "";
	display: block;
	height: 1px;
	width: 60px;
	background-color: #999;
	margin-top: 30px;
	margin-bottom: 30px;
}
.line-heading.tiny { font-weight: 500; }
.line-heading.big { font-size: 24px; }


/* ----------------------------------------------------------------------
	7. Layout And Content
/* ---------------------------------------------------------------------- */


/* 7.1 Page
 ------------------------------ */
#page { display: none; opacity: 0; }


/* 7.2 Container
 ------------------------------ */
.container {
	width: 1170px;
	margin: 0 auto;
	position: relative;
}
.container:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
		

/* 7.3 Columns
 ------------------------------ */
.col-1-1, .col-1-2, .col-1-3, .col-2-3, .col-1-4, .col-3-4 {
	float: left;
	margin-right: 30px;
	margin-bottom: 40px;
}

.col-1-1 { width: 100%; }
.col-1-2 { width: 570px; }
.col-1-3 { width: 370px; }
.col-1-4 { width: 270px; }
.col-2-3 { width: 770px; }
.col-3-4 { width: 870px; }

.col-1-2 .col-1-2 { 
	width: 270px;
	margin-right: 20px;
}

/* Helpers */
.last { margin-right: 0px !important; }
.row { margin-bottom: 40px; clear: both; position: relative; z-index: 1 }
.row:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}

/* 7.4 Flexible columns
 ------------------------------ */
.flex-col-1-1, .flex-col-1-2, .flex-col-1-3, .flex-col-1-4, .flex-col-1-5 { float: left; }
.flex-col-1-1 { width: 100%; }
.flex-col-1-2 { width: 50%; }
.flex-col-1-3 { width: 33.33%; }
.flex-col-1-4 { width: 25% }
.flex-col-1-5 { width: 20% }

.center-col { 
	margin: 0 auto;
	float: none;
}


/* ----------------------------------------------------------------------
	8. Header
/* ---------------------------------------------------------------------- */
#header {
	position: fixed;
	left: 0px;
	top: 0px;
	width: 100%;
	z-index: 901;
	overflow: hidden;
	padding: 10px 0px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-ms-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
}

	#header.show-bg { background-color: rgba(000,000,000,.5); }
	body.show-menu #header.show-bg { background: transparent; }
	body.show-menu { overflow: hidden; }
	body.show-menu #header {
		height: 100%;
		width: 100%;
	}


	/* 8.1 Logo
	 ------------------------------ */
	#logo {
		float: left;
	}
	#logo img { margin: 0; vertical-align: middle;}
	#logo:hover { opacity: 0.5 }


	/* 8.2 Menu Trigger Button
	 ------------------------------ */
	#menu-trigger {
		display: block;
		width: 30px;
		height: auto;
		background-color: transparent;
	
		z-index: 9999;
		position: absolute;
		right: 20px;
		top: 10px;
}
	#menu-trigger .icon {
		display: inline-block;
		width: 22px;
		height: 3px;
		position: relative;
		left: 4px;
		top: 3px;
		background: #fff;
		margin: 10px 0;
	}
	#menu-trigger .icon:before,
	#menu-trigger .icon:after {
		content: '';
		width: 100%;
		height: 3px;
		background: #fff;
		position: absolute;

	}
	#menu-trigger .icon:before {
		top: -7px;
	}
	#menu-trigger .icon:after {
		top: 7px;
	}
	#menu-trigger.close span {
		background: none;
	}
	#menu-trigger.close span:before {
		top: 0 !important;
		background-color: #fff;
		-moz-transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
		-o-transform: rotate(-45deg);
		-ms-transform: rotate(-45deg);
		transform: rotate(-45deg);
	}
	#menu-trigger.close span:after {
		top: 0 !important;
		background-color: #fff;
		-moz-transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
		-o-transform: rotate(45deg);
		-ms-transform: rotate(45deg);
		transform: rotate(45deg);
	}
	#menu-trigger.close span.menu-text {
		color: #fff;
	}
	#menu-trigger:hover span:before {
		top: -8px;
	}
	#menu-trigger:hover span:after {
		top: 8px;
	}

	/* Animations */
	#menu-trigger .icon,
	#menu-trigger .icon:before,
	#menu-trigger .icon:after {
		-webkit-transition: all 0.3s;
		-moz-transition: all 0.3s;
		-ms-transition: all 0.3s;
		-o-transition: all 0.3s;
		transition: all 0.3s;
	}


/* ----------------------------------------------------------------------
	9. Menu
/* ---------------------------------------------------------------------- */


/* 9.1 Menu Container
 ------------------------------ */
#menu-container {
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 900;
	width: 100%;
	height: 100%;
	display: none;
}
#menu-container.active { display: block; }

	#menu-container .container {
		position: absolute;
		left: 0px;
		top: 50%;
		z-index: 6;
		width: 100%;
		padding: 0 30px;
		text-align:center;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
		z-index: 903;
	}


		/* 9.2 Navigation Title
 		 ------------------------------ */
		#menu-container .nav-title {
			margin-bottom: 0;
			font-size: 36px;
			text-transform: uppercase;
			color: #fff;
		}


		/* 9.3 Navigation
 		 ------------------------------ */
		#nav ul {
			margin: 0;
			list-style: none;
			text-align: center;
		}
			#nav ul li {
				margin: 0 0 2px 0;
				display: block;
				font-size: 15px;
				text-transform: uppercase;
			}
				#nav ul li a {
					color: #fff;
					display: inline-block;
					padding: 5px 20px;
					border: 1px solid transparent;
				}

				#nav ul li a:hover,
				#nav ul li a.active {
					border: 1px solid #fff;
				}


	/* 9.3 Menu overlay
 	 ------------------------------ */
	#menu-container .overlay {
		opacity: 0.95;
		width: 100%;
		height: 100%;
		z-index: 901;
		position: absolute;
		left: 0;
		top: 0;
		background-color: #000;
	}


/* ----------------------------------------------------------------------
	10. Intro Section
/* ---------------------------------------------------------------------- */
#intro-slider { 
	padding: 0;
	background-color: #222;
	margin-bottom: 0;
	/*cursor:url(../img/grab.cur) 8 8, move;*/
}

#resize-image, 
#intro-image { 
	background-color: #222;
	position: relative;
}
#intro-image {
	min-height: 600px;
	overflow: hidden;
}
	#intro-image .carousel-slider { 
		margin-bottom: 0;
	}
	#intro-image .carousel-slider,
	#intro-image .carousel-slider .slide {
		min-height: 600px;
	}
	#intro-image.big { min-height: 690px }
	#intro-image.medium { min-height: 500px }

	#intro-image.big .carousel-slider,
	#intro-image.big .carousel-slider .slide {
		min-height: 690px;
	}
	#intro-image.medium .carousel-slider,
	#intro-image.medium .carousel-slider .slide {
		min-height: 500px;
	}

	/* Image */
	#intro-image .image,
	#intro-slider .image,
	#resize-image .image {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		z-index: 2;
		background-color: #222;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}

	/* Caption */
	.intro-captions {
		position: absolute;
		left: 0px;
		top: 50%;
		z-index: 6;
		width:100%;
		padding: 0 30px;
		text-align:center;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}
		.intro-captions .caption-title {
			color: #fff;
			font-weight: 400;
			margin-bottom: 0;
			padding: 0 8px;
			display: inline-block;
			margin-top: 4px;
		}
		.caption-title.big { font-size: 46px; font-weight: 900; }
		.caption-title.medium { font-size: 36px; }
		.caption-title.small { font-size: 24px; }

	/* Overlay */
	.overlay {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
		background-color: transparent;
		background-position: left top;
		background-repeat: repeat;
		z-index: 2;
		display: block;
		background-color: #000;
		opacity: 0;
	}
	.overlay.active {
		opacity: 0.6;
	}

	/* Animations */
	.intro-captions .caption-title,
	.intro-captions .divider,
	.intro-captions .intro-button {
		opacity: 0;
		-webkit-transform: translatex(-80px);
		-moz-transform: translatex(-80px);
		transform: translatex(-80px);
	}
	.intro-captions .caption-title.active,
	.intro-captions .divider.active,
	.intro-captions .intro-button.active {
		opacity: 1;
		-webkit-transform: translatex(0px);
		-moz-transform: translatex(0px);
		transform: translatex(0px);
	}

	.overlay.active {
		-webkit-transition: all 1s ease-out;
		-moz-transition: all 1s ease-out;
		-ms-transition: all 1s ease-out;
		-o-transition: all 1s ease-out;
		transition: all 1s ease-out;
	}

	.intro-captions .caption-title.active,
	.intro-captions .divider.active,
	.intro-captions .intro-button.active,
	.swipe-icon {
		-webkit-transition: all 0.5s ease-out;
		-moz-transition: all 0.5s ease-out;
		-ms-transition: all 0.5s ease-out;
		-o-transition: all 0.5s ease-out;
		transition: all 0.5s ease-out;
	}

	/* Delay */
	.overlay.active {
		transition-delay: 1s;
		-webkit-transition-delay: 1s;
		-moz-transition-delay: 1s;
		-ms-transition-delay: 1s;
		-o-transition-delay: 1s;
	}
	.intro-captions .caption-title.active {
		transition-delay: 2s;
		-webkit-transition-delay: 2s;
		-moz-transition-delay: 2s;
		-ms-transition-delay: 2s;
		-o-transition-delay: 2s;
	}
	.intro-captions .divider.active {
		transition-delay: 2.2s;
		-webkit-transition-delay: 2.2s;
		-moz-transition-delay: 2.2s;
		-ms-transition-delay: 2.2s;
		-o-transition-delay: 2.2s;
	}
	.intro-captions .intro-button.active {
		transition-delay: 2.4s;
		-webkit-transition-delay: 2.4s;
		-moz-transition-delay: 2.4s;
		-ms-transition-delay: 2.4s;
		-o-transition-delay: 2.4s;
	}

	/* Swipe Icon */
	.swipe-icon {
		position: absolute;
		right: 40px;
		bottom: 20px;
		opacity: .2;
		background: transparent url(../img/ico-swipe.png) left top no-repeat;
		width: 44px;
		height: 41px;
		z-index: 200;
	}
	.swipe-icon:hover { opacity: 1; }

	/* Scroll Icon */
	.scroll-anim {
		position: absolute;
		bottom: 50px;
		left: 50%;
		margin-left: -24.5px;
		z-index: 3;
		-webkit-animation: scrollfade 1s ease-in alternate infinite;
		-moz-animation: scrollfade 1s ease-in alternate infinite;
		animation: scrollfade 1s ease-in alternate infinite;
	}

		@-webkit-keyframes scrollfade {
			0% { opacity:0.3; }
		  	100% { opacity:1; }
		}
		@-moz-keyframes scrollfade {
			0% { opacity:0.3; }
			100% { opacity:1; }
		}
		@keyframes scrollfade {
			0% { opacity:0.3; }
			100% { opacity:1; }
		}

		.scroll-anim > .scroll {
			color: #FFF;
			display: block;
			font-size: 42px;
			width: 16px;
			height: 30px;
			border: 2px solid #FFF;
			position: relative;
			margin: 0 auto 5px;
			-webkit-border-radius: 10px;
			-moz-border-radius: 10px;
			border-radius: 10px;
		}
		.scroll-anim > .scroll:before {
			content: '';
			display: block;
			position: absolute;
			top: 8px;
			width: 2px;
			height: 4px;
			background: #fff;
			left: 50%;
			margin-left: -1px;
			-webkit-border-radius: 2px;
			-moz-border-radius: 2px;
			border-radius: 2px;
		}
		.scroll-anim > .scroll-text {
			text-transform: uppercase;
			font-size: 12px;
			text-align: center;
			float: left;
			color: #fff;
			letter-spacing: 1px;
		}


/* ----------------------------------------------------------------------
	11. Sections Images
/* ---------------------------------------------------------------------- */

/* Homepage */
.home-slide01 { background-image:url(../img/bg-slide-01.jpg) }
.home-slide02 { background-image:url(../img/bg-slide-02.jpg) }
.home-slide03 { background-image:url(../img/bg-slide-03.jpg) }
.home-slide04 { background-image:url(../img/bg-slide-04.jpg) }

/* About - Intro */
.about-intro { background-image:url(../img/bg-sobre.jpg) }

/* About - Process Steps Background */
.process-steps { background-image: url(../placeholders/process-bg.jpg) }

/* About - Box */
.about-box { background-image: url(../placeholders/about-bg.jpg) }

/* About - Latest Tweets */
.latest-tweets { background-image: url(../placeholders/twitter-bg.jpg) }

/* Contact */
.contact-intro { background-image:url(../img/bg-contato.jpg) }

/* Projects */
.portfolio-intro { background-image:url(../img/bg-projetos.jpg) }

/* Project 01 */
.project01-intro { background-image:url(../placeholders/work-workouts-big.jpg) }

/* Project 02 */
.project02-intro { background-image:url(../placeholders/work-symbols-big.jpg) }

/* Project 03 */
.project03-intro { background-image:url(../placeholders/work-504-big.jpg) }

/* Project 04 */
.project04-intro { background-image:url(../placeholders/work-confirmation-big.jpg) }

/* Project 05 */
.project05-intro { background-image:url(../placeholders/work-flat-ui-big.jpg) }

/* Project 06 */
.project06-slide01 { background-image:url(../placeholders/work-super-wii-big.jpg) }
.project06-slide02 { background-image:url(../placeholders/work-super-wii-big2.jpg) }

/* Project 07 */
.project07-intro { background-image:url(../placeholders/work-vinyl-big.jpg) }

/* Project 08 */
.project08-intro { background-image:url(../placeholders/work-super-desk-big.jpg) }


/* ----------------------------------------------------------------------
	12. Portfolio Section
/* ---------------------------------------------------------------------- */
#portfolio {
	position:absolute;
    top:0;
    bottom:0;
    left:0;
    right:0;
    overflow:hidden;
    z-index:1;
    width: 100%;
    height: 100%;
	background-color: #222;
}

	#portfolio-content {
		position: absolute;
		left: 0px;
		top: 50%;
		z-index: 6;
		width:100%;
		text-align:center;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}

		#portfolio-filter {
			margin-bottom: 80px;
			text-transform: uppercase;
			font-size: 12px;
		}

			#portfolio-filter li:after {
				color: #888;
			}
				#portfolio-filter a {
					color: #888;
				}
				#portfolio-filter a:hover,
				#portfolio-filter a.active {
					color: #fff;
				}

	/* Portfolio Carousel */
	#portfolio-carousel { margin-bottom: 0 }
	#portfolio-carousel .owl-wrapper-outer { overflow:  visible; }

	/* Portfolio item */
	.portfolio-item {}

		.portfolio-item img {
			max-width: 100%;
			max-height: 100%;
			width: 100%;
			margin-bottom: 10px;
		}
		.portfolio-item .zoom-thumb { margin-bottom: 6px; }

		.portfolio-item footer .title, .portfolio-item footer .title a {
			font-size: 16px;
			padding: 0 10px;
			margin-bottom: 5px;
			text-transform: uppercase;
			overflow: hidden;
			font-weight: 400;
	        white-space: nowrap;
	        text-overflow: ellipsis;
	        text-overflow: ellipsis;
	        -o-text-overflow: ellipsis;
	        -ms-text-overflow: ellipsis;
	        color: #fff;
		}
		.portfolio-item footer .portfolio-cats {
			text-transform: uppercase;
			font-size: 12px;
			color: #888;
		}
			.portfolio-item footer .portfolio-cats li:after { color: #888; }

		.portfolio-item .overlay {
			position: absolute;
			left: 0;
			top: 0;
			width: 100%;
			height: 100%;
			background-color: #222;
			opacity: .8;
			display: none;
		}

	/* Animations */
	.portfolio-item,
	#portfolio-filter {
		opacity: 0;
		-webkit-transform: translateY(50px);
		-moz-transform: translateY(50px);
		transform: translateY(50px);
	}
	.portfolio-item.animated,
	#portfolio-filter.animated {
		opacity: 1;
	 	-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		transform: translateY(0);
		-webkit-transition: all 0.5s ease-out;
		-moz-transition: all 0.5s ease-out;
		-ms-transition: all 0.5s ease-out;
		-o-transition: all 0.5s ease-out;
		transition: all 0.5s ease-out;
	}


/* ----------------------------------------------------------------------
	12. Portfolio Project
/* ---------------------------------------------------------------------- */

/* Work Details */
.work-details {
	margin:40px 0;
	overflow: hidden;
}
	.work-detail {
		padding: 6% 4%;
		border-right: 1px solid #ddd;
		min-height: 300px;
	}
	.work-details .work-detail:last-child { border-right: 0; }
	
	/* Buuton */
	.work-detail .btn {
		margin-top:20px;
	}

	/* Logo */
	.work-detail .client-logo { margin-top: 20px; }

	/* Work Categories */

	/* Categories */
	.work-categories {
		display: block;
		margin-bottom: 10px;
		color: #e96247;
		margin-top: 10px;
	}
		.work-categories a {
			display: block;
		}
		.work-categories a:hover:after {
			color: #e96247;
		}
		.work-categories a:before {
			content: '/';
			display: inline-block;
			margin-right:4px;
		}


	/* Email List */
	.work-meta {
		list-style: none;
		margin:0;
	}
		.work-meta li {
			margin:0;
			margin: 10px 0;
			overflow: hidden;
			color: #222;
		}
			.work-meta li span {
				display: inline-block;
				min-width: 100px;
				margin-right: 10px;
				color: #666;
			}
			.work-meta li a {
				display: inline-block;
			}


/* ----------------------------------------------------------------------
	13. Content Section
/* ---------------------------------------------------------------------- */
#content {
	padding: 80px 0 0;
	clear: both;
	background: #fff;
	width: 100%;
}

	/* Animate elements */
	#content .animated { 
		visibility:  hidden; 
		opacity: 0;
		-webkit-transform: translate(0px, 50px);
		-moz-transform: translate(0px, 50px);
		transform: translate(0px, 50px);
	}


/* ----------------------------------------------------------------------
	14. Clients Section
/* ---------------------------------------------------------------------- */
.clients-row {
	overflow: hidden;
}	
	.clients-row .client {
		padding: 8% 0;
		text-align: center;
		border-bottom: 1px solid #ddd;
		border-right: 1px solid #ddd;
	}
	.clients-list .clients-row:last-child .client { border-bottom: 0; }
	.clients-row .client:last-child { border-right: 0; }

		.clients-row .client a img, .clients-row .client img {
			display: inline-block;
			vertical-align: middle;
			opacity: 1;
		}
		.clients-row .client img:hover { opacity: .5 }


/* ----------------------------------------------------------------------
	15. About Section
/* ---------------------------------------------------------------------- */
.about-box {
	padding: 80px 0;
	background-color: #ddd;
}
	.about-text {
		padding: 60px;
		background-color: #fff;
	}


/* 15.1 Team
 ------------------------------ */
.member {
	text-align: center;
}	
	.member > img {
		border-radius: 100%;
		-moz-border-radius: 100%;
	}
	.member-name {
		font-size: 24px;
		font-weight: 700;
		margin-bottom: 0px;
	}
	.member-departament {
		font-size: 12px;
		color: #e96247;
		text-transform: uppercase;
		display: inline-block;
		margin-bottom: 20px;
	}


/* 15.2 Process
 ------------------------------ */
#process {}

.process-steps {
	padding: 150px 0;
	text-align: center;
}
	.step-icon {
		font-size: 55px;
		color: #fff;
		margin-bottom: 30px;
		display: inline-block;
	}
	.step-title {
		font-size: 30px;
		color: #fff;
		font-weight: 700;
	}
	.step-text { color: #fff }


/* 15.3 Services
 ------------------------------ */
#services { }
	.service {
		text-align: center;

	}
	.service .service-icon, .service .service-title {
		-webkit-transition: all 0.2s ease-out;
		-moz-transition: all 0.2s ease-out;
		-ms-transition: all 0.2s ease-out;
		-o-transition: all 0.2s ease-out;
		transition: all 0.2s ease-out;
	}
	.service:hover .service-icon, .service:hover .service-title { color: #e96247 }

		.service-icon {
			font-size: 48px;
			color: #444;
			margin-bottom: 30px;
			display: inline-block;
		}
		.service-title {
			font-size: 24px;
		}
		.service-text {}


/* ----------------------------------------------------------------------
	16. Slider Content Section
/* ---------------------------------------------------------------------- */
.slider-content { margin-bottom: 80px; }
.slider-content .slider { margin-bottom: 0; }

/* Boxed */
.slider-content .box {
	padding: 90px 70px;
}


/* ----------------------------------------------------------------------
	17. Request Box
/* ---------------------------------------------------------------------- */
.request {
	width: 100%;
	padding: 120px 0;
	text-align: center;
	background-color: #e96247;
}


/* ----------------------------------------------------------------------
	18. Latest Tweets
/* ---------------------------------------------------------------------- */

#latest-tweets { 
	padding: 120px 0 80px;
	text-align: center;
}
	.twitter-col {
		padding: 0 20%;
	}
	.twitter-col .big-heading {
		margin-bottom: 40px;
	}
	#latest-tweets .slide {
		color: #fff;
		font-size: 24px;
		font-style: italic;
	}	
		#latest-tweets .slide a:hover {
			color: #fff;
		}
		#latest-tweets .slide .date {
			display: block;
			margin-top: 20px;
			margin-bottom: 80px;
			opacity: .7;
			text-transform: uppercase;
			font-size: 18px;
		}
		#latest-tweets .slide .date a {
			color: #fff;
			font-weight: 400;
		}
		#latest-tweets .slide .date a:hover { 
			color: #e96247; 
			opacity: 1;
		}


/* ----------------------------------------------------------------------
	19. Contact Section
/* ---------------------------------------------------------------------- */

/* Google Maps */
#gmap {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	background-color: #eee;
	height: 600px;
	position: relative;
	width: 100%;
}

.contact-details {
	margin:40px 0;
	overflow: hidden;
}
	.contact-detail {
		padding: 6% 4%;
		border-right: 1px solid #ddd;
		min-height: 300px;
	}
	.contact-details .contact-detail:last-child { border-right: 0; }
	
	/* Email List */
	.email-list {
		list-style: none;
		margin:0;
	}
		.email-list li {
			margin:0;
			margin: 10px 0;
			overflow: hidden;
		}
			.email-list li span {
				display: inline-block;
				min-width: 100px;
				margin-right: 10px;
			}
			.email-list li a {
				display: inline-block;
			}
	
	/* 19.1 Contact Box
 	 ------------------------------ */
	#form-box { 
		border-top: 1px solid #eee;
		position: relative;
	}
	#form-box:before {
		font-family: 'icomoon';
		content: "\e694";
		color: #666;
		font-size: 42px;
		position: absolute;
		left: 50%;
		margin-left: -48px;
		line-height: 96px;
		text-align: center;
		width: 96px;
		height: 96px;
		z-index: 2;
		background-color: #fff;
		border: 1px solid #eee;
		border-radius: 100%;
	}
		#form-box header { margin-bottom: 40px; }
		#form-box .form-title { 
			font-size: 24px;
			margin-bottom: 10px;
			font-weight: 700;
		}


	/* 19.2 Form
 	 ------------------------------ */
	.contact-form input { 
		width: 100%;
		
	}
	.contact-form .submit-button { margin-top: 20px;}
	.contact-form { text-align:  center; }

	.contato-form input { 
		width: 100%;
		
	}
	.contato-form { text-align:  center; }

/* ----------------------------------------------------------------------
	20. News Sections
/* ---------------------------------------------------------------------- */

/* News Entry */
#news-entries .entry:first-child { border-top: 0; }
.entry {
	width: 100%;
	padding: 80px 0;
	border-top: 1px solid #ddd;
}
	.entry .col-2-3, .entry .col-1-3 { margin-bottom: 0 }

	/* Title */
	.entry-title, .entry-title a { color: #222; }
	.entry-title a:hover { color: #e96247; }

	/* Date */
	.entry .date { 
		color: #222;
		display: block;
	}

	/* Categories */
	.categories {
		display: block;
		margin-bottom: 10px;
		color: #e96247;
	}
	.categories:before { 
		content: '/';
		display: inline-block;
		margin-right:4px;
	}
		.categories a {
			display: inline-block;
		}
		.categories a:hover:after {
			color: #e96247;
		}
		.categories a:after {
			content: '/';
			display: inline-block;
			margin: 0 4px;
		}
		.categories a:last-child:after { display: none; }

/* Single */
.single-news {
	max-width: 800px;
	padding-bottom: 40px;
}


/* ----------------------------------------------------------------------
	21. Section Helpers
/* ---------------------------------------------------------------------- */
.section {
	padding: 0px 0 80px;
}
.section.no-padding {
	padding: 0;
}
.padding { padding: 80px 0; }

.section:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
.last-section { padding-bottom: 120px; }

/* Section header */
.section-header {
	text-align: center;
	width: 100%;
	padding: 0 12%;
	margin-bottom: 80px;
}
	.section-title {
		font-size: 48px;
		font-weight: 900;
		margin-bottom: 0px;
	}
	.section-sub-title {
		font-size: 24px;
		font-weight: 500;
		margin-bottom: 0px;
		color: #444;
	}
	.section-header-text {
		font-style: italic;
	}

/* Grey texture */
.grey-texture {
	background: #eee url( '../img/grey-texture.png' ) left top repeat;
}

/* Cover BG */
.cover-bg {
	background-size: cover;
	background-position: center center;
	position: relative;
	-webkit-backface-visibility: hidden;
	background-color: #222;
}

/* Page Navigation */
.page-navigation {
	overflow: hidden;
	margin-top:0px;
}
.page-navigation .left {
	padding: 0 1px 2px 0;
}
.page-navigation .right {
	padding: 0 0 2px 1px;
}
.page-navigation .next,
.page-navigation .prev {
	display: inline-block;
	width: 100%;
	background-color: #f2f2f2;
	text-align: center;
	padding: 30px 0;
	color: #666;
	font-size: 18px;
	text-transform: uppercase;
}
.page-navigation .next i,
.page-navigation .prev i {
	color: #666;
	font-size: 16px;
	margin: 0 8px;
}
.page-navigation .next:hover,
.page-navigation .prev:hover {
	background-color: #222;
	color: #fff;
}
.page-navigation .next:hover i,
.page-navigation .prev:hover i {
	color: #fff;
}


/* ----------------------------------------------------------------------
	22. Footer Section
/* ---------------------------------------------------------------------- */

#footer {
	background-color: #222;
	clear: both;
	padding: 100px 0 100px 0;
}

	/* Columns */
	.footer-col {
		min-height: 300px;
		border-right: 1px solid #333;
		padding: 30px 4%;
		color: #fff;
		width: 33.333%;
		float: left;
	}
	.footer-col p a {
		border-bottom: 1px dotted #fff;
		color: #fff;
	}
	.footer-col p a:hover {
		border-bottom: none;
	}
	.footer-col.last { border: 0; }

		.footer-col h1, .footer-col h2, .footer-col h3, .footer-col h4, .footer-col h5, .footer-col h6 {
			font-size: 30px;
			font-weight: 500;
			color: #fff;
		}
		
		/* Social */
		.social-icon {
			width: 44px;
			height: 44px;
			display: inline-block;
			background-color: #999;
			color: #222;
			text-align: center;
			-webkit-border-radius: 44px;
			-moz-border-radius: 44px;
			border-radius: 44px;
			margin: 4px;
		}
			.social-icon i {
				color: #222;
				line-height: 44px;
				font-size: 18px;
			}
		.social-icon:hover { background-color: #e96247; }
		.social-icon:hover i { color: #fff; }


/* 22.1 Footer Note
 ------------------------------ */
#footer-note {
	width: 100%;
	padding: 15px 20px;
	background-color: #191919;
	text-align: center;
}
	#footer-note p { 
		margin-bottom: 0;
		color: #999;
		font-size: 13px;
	}
		#footer-note p a {
			color: #999;
			border-bottom: #999 1px dotted;
		}
		#footer-note p a:hover { border: none; }



/* ----------------------------------------------------------------------
	23. Elements
/* ---------------------------------------------------------------------- */

/* Stats
 ------------------------------------ */
.stat {
	color: #e96247;
	font-weight: 900;
	font-size: 120px;
	line-height: normal;
	width: 100%;
	display: inline-block;
}
.stat-name { font-size: 18px ; display: inline-block; position: relative; top: -20px;}


/* Read More Button
 ------------------------------------ */
.readmore {
	color: #222;
	display: inline-block;
	text-align: center;
}
.readmore:after {
	font-family: 'icomoon';
	content: '\e644';
	display: inline-block;
	margin-left: 10px;
	color: #777;
	width: 22px;
	height: 22px;
	line-height: 22px;
	font-size: 12px;
	border: 1px dashed #777;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
	-ms-transition: all .2s linear;
	-o-transition: all .2s linear;
	transition: all .2s linear;
}

.readmore:hover {
	color: #e96247;
}
.readmore:hover:after {
	color: #e96247;
	border-color: #e96247;
}


/* Zoom Thumb
 ------------------------------------ */

/* Thumb with title (releases) */
.zoom-thumb {
	display: block;
	margin-bottom: 30px;
	overflow: hidden;
	position: relative;
	overflow: hidden;
	
 }
	.zoom-thumb img {
		max-height: 100%;
		height: auto;
		display: block;
		max-width: 100%;
		margin: 0;
		-webkit-transition: all .30s linear;
		-moz-transition: all .30s linear;
		-ms-transition: all .30s linear;
		-o-transition: all .30s linear;
		transition: all .30s linear;
	}
	.zoom-thumb:hover img {
		-webkit-transform: scale(1.4);
		-moz-transform: scale(1.4);
		-ms-transform: scale(1.4);
		-o-transform: scale(1.4);
		transform: scale(1.4);
	}


/* Separator
 ------------------------------------ */
hr.separator {
	background-color: #ddd;
	width: 100%;
	height: 1px;
	margin-bottom: 80px;
}


/* Divider
 ------------------------------------ */
.divider {
	margin:30px auto 30px;
	width:6px;
	height:6px;
	-webkit-border-radius:3px;
	border-radius:3px;
	position:relative;
}
.divider.white {
	background-color: #fff;
}
.divider.dark {
	background-color: #000;
}
.divider:before, .divider:after {
	content: '';
	height: 1px;
	position: absolute;
	top: 50%;
	width: 150px
}
.divider.white:before, .divider.white:after {
	background-color: #fff;
	opacity: 0.5;
}
.divider.dark:before, .divider.dark:after {
	background-color: #000;
	opacity: 0.2;
}
.divider.long:before, .divider.long:after { width: 200px }
.divider:before { right:13px; }
.divider:after { left:13px; }


/* Inline Dots List
 ------------------------------------ */
.inline-dots {
	margin: 0;
	list-style: none;
}

	.inline-dots li {
		margin: 0;
		display: inline-block;
	}

	.inline-dots li:after {
		content: '·';
		display: inline-block;
		margin: 0 4px 0 6px;
	}
	.inline-dots li:last-child:after { display:  none; }


/* Icon button
 ------------------------------------ */
.icon-button {
	border: 1px solid #fff;
	color: #fff;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
	font-weight: 400;
	text-transform: uppercase;
	height: 60px;
	width: 60px;
	text-align: center;
	display: inline-block;
	position: relative;
	z-index: 1;
}
.icon-button i {
	font-size: 16px;
	color: #fff;
	line-height: 60px;
	z-index: 2;
	position: relative;
}
.icon-button:after {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	content: '';
	position: absolute;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	border-radius: 60px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 0;
}
.icon-button:hover:after { background-color: #fff; }
.icon-button:hover i { color: #111; }


/* Flexible video
 ------------------------------------ */
.video-wrap {
	margin: 0 0 30px;
}


/* Alertboxes
 ------------------------------------ */
.error, .success, .info, .warning {
	display: block;
	font-size: 13px;
	font-weight: bold;
	border: 1px solid;
	padding: 14px 20px 14px 20px;
	clear: both;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}
.error {
	background-color: #fdcaca;
	color: #7f6060;
	border-color: #ffc3c3;
}
.success {
	background-color: #cafdce;
	color: #637a65;
	border-color: #9cfaa3;
}
.info {
	background-color: #dee9fe;
	color: #737b8b;
	border-color: #cddfff;
}
.warning {
	background-color: #fbe9de;
	color: #877863;
	border-color: #fbe0b9
}


/* Buttons
 ------------------------------------ */
input[type="submit"], button {
 	border: 1px solid #444;
	color: #222;
	background-color: transparent;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	padding: 10px 40px;
	display: inline-block;
	width: auto;
 }

input[type="submit"]:hover, button:hover {
	background-color: #444;
	color: #fff;
 }


.btn, .stamp-button {
	border: 1px solid #fff;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	text-transform: uppercase;
	padding: 10px 40px;
	display: inline-block;
	position: relative;
	z-index: 2;
	margin-bottom: 30px;
}
.btn.dark {
	border: 1px solid #222;
	color: #222;
}
.btn span, .stamp-button span { 
	z-index: 2;
	position: relative;
	color: #fff;
}
.btn.dark span { color: #222; }
.btn:after, .stamp-button:after {
	width: 100%;
	height: 0;
	top: 0;
	left: 0;
	background: #fff;
	content: '';
	position: absolute;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	z-index: 0;
}
.btn.dark:after{
	background: #222;
}

.btn:hover,
.btn:hover span,
.stamp-button:hover, 
.stamp-button:hover span { color: #111; }

.btn.dark:hover,
.btn.dark:hover span { color: #fff; }

.btn:hover:after,
.btn:active:after,
.stamp-button:hover:after, 
.stamp-button:active:after { height: 100%; }


/* Carousel
 ------------------------------------ */
.carousel {
	margin-bottom: 30px;
}

.carousel-fw-item {
	width: auto;
	margin: 1px;
}

/* Slider */
.slider {
	background-color: #222;
}
.text-slider { background-color: transparent; }
.carousel-slider {
	margin-bottom: 30px;
}
	.carousel-slider img {
		display: block;
	    width: 100%;
	    height: auto;
	}

	.carousel-slider .owl-pagination {
		z-index: 10;
		position: absolute;
		text-align: center;
	
		left: 0;
		bottom: 10px;
		width: 100%;
}
	
	.carousel-slider .slide { position:  relative; overflow: hidden;}


	.carousel-slider.owl-theme .owl-buttons i {
	  	color: #111;
	  	font-size: 18px;
	  	line-height: 36px;
	}
 
	.carousel-slider.owl-theme .owl-controls .owl-buttons div {
	  	position: absolute;
	}
	

	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-prev,
	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-next {
		height: 50px;
		width: 50px;
		margin-top: -25px;
		border: 1px solid #fff;
		text-align: center;
	}

	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-prev i,
	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-next i {
		color: #fff;
		line-height: 50px
	}

	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-prev:hover,
	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-next:hover {
		background-color: rgba(255,255,255,0.2)
	}
	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-prev:hover i,
	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-next:hover i {
		color: #fff;
	}
	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-prev {
	  	left: 0px;
	  	border-left: 0;
	  	top: 50%;
	}
	 
	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-next {
	  	right: 0px;
	  	border-right: 0;
	  	top: 50%;
	}

	.carousel-slider.owl-theme .owl-controls {
		margin-top: 0px;
	}

	/* Animations */
	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-prev,
	.carousel-slider.owl-theme .owl-controls .owl-buttons .owl-next {
		-webkit-transition: all 0.5s ease-out;
		-moz-transition: all 0.5s ease-out;
		-ms-transition: all 0.5s ease-out;
		-o-transition: all 0.5s ease-out;
		transition: all 0.5s ease-out;
	}


	/* Owl Carousel Owl Theme v1.3.2
 	-------------------------------- */

	.owl-theme .owl-controls{
		margin-top: 30px;
		text-align: center;
	}


	/* Styling Next and Prev buttons */
	.owl-theme .owl-controls .owl-buttons div{
		color: #fff;
		display: inline-block;
		zoom: 1;
		*display: inline;/*IE7 life-saver */
	}

	/* Clickable class fix problem with hover on touch devices */
	/* Use it for non-touch hover action */
	.owl-theme .owl-controls.clickable .owl-buttons div:hover{
		filter: Alpha(Opacity=100);/*IE7 fix*/
		opacity: 1;
		text-decoration: none;
	}

	/* Styling Pagination*/
	.owl-theme .owl-controls .owl-page{
		display: inline-block;
		zoom: 1;
		*display: inline;/*IE7 life-saver */
	}
	.owl-theme .owl-controls .owl-page span {
		display: block;
		width: 12px;
		height: 12px;
		position: relative;
		margin: 0 3px;
	}

	.owl-theme .owl-controls .owl-page span:after {
		content: '';
		width: 4px;
		height: 4px;
		background: #fff;
		-webkit-border-radius: 4px;
		-moz-border-radius: 4px;
		border-radius: 4px;
		display: inline-block;
		position: absolute;
		top: 3px;
		left: 3px;
}

	.owl-theme .owl-controls .owl-page.active span,
	.owl-theme .owl-controls.clickable .owl-page:hover span {
		width: 12px;
		height: 12px;
		background: transparent;	
		-webkit-border-radius: 12px;
		-moz-border-radius: 12px;
		border-radius: 12px;
		border: 1px solid #fff;
		
	}
	.owl-theme .owl-controls .owl-page.active span:after,
	.owl-theme .owl-controls.clickable .owl-page:hover span:after {
		display: none;
	}

	/* If PaginationNumbers is true */
	.owl-theme .owl-controls .owl-page span.owl-numbers{
		height: auto;
		width: auto;
		color: #FFF;
		padding: 2px 10px;
		font-size: 12px;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
	}

	/* preloading images */
	.owl-item.loading{
		min-height: 150px;
		background: url(../img/AjaxLoader.gif) no-repeat center center
	}

	.image.zoom {-webkit-animation: sliderzoom linear 40s infinite alternate; }
	@-webkit-keyframes sliderzoom
	{
	   from { -webkit-transform: scale(1);
			-moz-transform: scale(1);
			-ms-transform: scale(1);
			-o-transform: scale(1);
			transform: scale(1); }
	   to   {
	   		-webkit-transform: scale(1.4);
			-moz-transform: scale(1.4);
			-ms-transform: scale(1.4);
			-o-transform: scale(1.4);
			transform: scale(1.4);
	   }
	}


/* ----------------------------------------------------------------------
	24. Plugins
/* ---------------------------------------------------------------------- */

/* Message for older IE browsers
 -------------------------------- */
#ie-message { background:#c00; border-bottom:1px solid #900; display: block; margin: 0 auto 20px auto; width:100%; z-index:2000; }
#ie-message p { text-align:center; color:#fff; font-size:13px; padding:20px; margin: 0 25%; }
#ie-message a { color:#fff; font-weight:bold; text-decoration:underline; }


/* Isotope CSS3 transitions
 -------------------------------- */
.isotope,
.isotope .isotope-item {
  -webkit-transition-duration: 0.8s;
     -moz-transition-duration: 0.8s;
      -ms-transition-duration: 0.8s;
       -o-transition-duration: 0.8s;
          transition-duration: 0.8s;
}

.isotope {
  -webkit-transition-property: height, width;
     -moz-transition-property: height, width;
      -ms-transition-property: height, width;
       -o-transition-property: height, width;
          transition-property: height, width;
}

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


/* ----------------------------------------------------------------------
	25 Media Queries
/* ---------------------------------------------------------------------- */


/* ----------------------------------------------------------------------
	For Small Desktop Devices [ 960px ]
/* ---------------------------------------------------------------------- */
@media only screen and (max-width: 1200px) {


	/* Basic Elements & Classes
 	 ---------------------------------------------------------------------- */
 	body { font-size:  13px; }
 	 

	/* Layout and content
	 ---------------------------------------------------------------------- */

	/* Container */
	.container { width: 960px; }

			
		/* Columns
		 -------------------------------- */
		.col-1-1, .col-1-2, .col-1-3, .col-2-3, .col-1-4, .col-3-4 {
			margin-right: 20px;
		}
		.col-1-2 { width: 460px; }
		.col-1-3 { width: 300px; }
		.col-1-4 { width: 220px; }
		.col-2-3 { width: 620px; }
		.col-3-4 { width: 700px; }

		.col-1-2 .col-1-2 { width: 220px; }

		.center-col { 
			margin: 0 auto;
			width: 500px;
		}


	/* Typography
 	 ---------------------------------------------------------------------- */

	/* Lead text */
	p.lead.big {
		font-size: 18px;
		line-height: 1.5em;
	}

	/* Line heading */
	.line-heading {
		font-size: 16px;
	}
	.line-heading:after {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.line-heading.tiny { font-weight: 500; }
	.line-heading.big { font-size: 20px; }


	/* Slider content
	 ---------------------------------------------------------------------- */

	/* Boxed */
	.slider-content .box {
		padding: 40px 40px;
	}


	/* Elements
 	 ---------------------------------------------------------------------- */

}


/* ----------------------------------------------------------------------
	For Tablet Devices [ 748px ]
/* ---------------------------------------------------------------------- */
@media only screen and (min-width: 768px) and (max-width: 980px) {


	/* Layout and content
	 ---------------------------------------------------------------------- */

	/* Container */
	.container { width: 748px; }
		.container img { 
			max-width:100%;
			max-height:100%;
		}
			

		/* Columns
		 -------------------------------- */
		.col-1-2 { width: 364px; }
		.col-1-3 { width: 236px; }
		.col-2-3 { width: 492px; }
		.col-1-4 { width: 172px; }
		.col-3-4 { width: 492px; }

		.col-1-2 .col-1-2 { width: 100%; margin-right: 0; margin-bottom: 0 }
		.center-col { 
			width: 492px;
		}


	/* Typography
 	 ---------------------------------------------------------------------- */

	/* Lead text */
	p.lead.big {
		font-size: 16px;
		line-height: 1.5em;
	}

	/* Line heading */
	.line-heading {
		font-size: 16px;
	}
	.line-heading:after {
		margin-top: 20px;
		margin-bottom: 20px;
	}
	.line-heading.big { font-size: 18px; }

	
	/* Intro Slider / Resize Image / Intro image
 	 ---------------------------------------------------------------------- */
	#intro-slider { 
		padding: 0;
		background-color: #222;
		margin-bottom: 0;
		cursor:url(../img/grab.cur) 8 8, move;
	}

	#intro-image,
	#intro-image.medium,
	#intro-image.big { 
		min-height: 300px;
	}
	#intro-image .carousel-slider,
	#intro-image .carousel-slider .slide,
	#intro-image.medium .carousel-slider,
	#intro-image.medium .carousel-slider .slide,
	#intro-image.big .carousel-slider,
	#intro-image.big .carousel-slider .slide {
		min-height: 300px;
	}
	
	.scroll-anim { bottom: 30px; }


	/* Slider content
	 ---------------------------------------------------------------------- */

	/* Boxed */
	.slider-content .box {
		padding: 30px 30px;
	}

	
	/* Contact Us
	 ---------------------------------------------------------------------- */
	#gmap { height: 400px;}


	/* Elements
 	 ---------------------------------------------------------------------- */


 	/* Slider
	 ------------------------------------ */
	.slider .owl-buttons {
		display: none;
	}


}


/* ----------------------------------------------------------------------
	For Mobile Devices [ 300px ]
/* ---------------------------------------------------------------------- */
@media only screen and (max-width: 767px) {


	/* Layout and content
	 ---------------------------------------------------------------------- */

	/* Container */
	.container { width: 300px; }
		.container img { 
			max-width: 100%;
			max-height:100%;
		}
		
			
		/* Columns
		 -------------------------------- */
		.col-1-2,
		.col-1-3,
		.col-1-4,
		.col-1-5,
		.col-2-3,
		.col-3-4 { 
			width: 300px;
			margin-right:0;
		}
		.flex-col-1-2, 
		.flex-col-1-3,
		.flex-col-1-4,
		.flex-col-1-5  { 
			width: 100%;
		}
		.col-1-2 .col-1-2 { width: 100%; margin-right: 0; margin-bottom: 0 }
		.center-col { margin: 0 auto; }


	/* Header
 	 ---------------------------------------------------------------------- */

 	#header {
 		padding: 4px 0;
 	}
 	#logo img {
 		width: 70%;
 		height: 70%;
	}

 	#menu-trigger {
		top: 5px;
	}


	/* Menu Container
	 -------------------------------- */
	#menu-container .nav-title,
	#menu-container .divider {
		display: none;
	}


	/* Typography
 	 ---------------------------------------------------------------------- */

	/* Headings */
	.big-heading {
		font-size: 32px;
	}


	/* Sections
 	 ---------------------------------------------------------------------- */

 	/* Section header */
 	.section-title { font-size: 36px; }
 	.section-sub-title { font-size: 18px; }


 	/* About
	 ---------------------------------------------------------------------- */
	.about-box {
		padding: 40px 0;
	}
		.about-text {
			padding: 30px;
		}


	/* Intro Slider/Image
 	 ---------------------------------------------------------------------- */
 	#intro-image,
 	#intro-image.medium,
 	#intro-image.big {  
 		min-height: 300px;
 	}
 	#intro-image .carousel-slider,
	#intro-image .carousel-slider .slide,
	#intro-image.medium .carousel-slider,
	#intro-image.medium .carousel-slider .slide,
	#intro-image.big .carousel-slider,
	#intro-image.big .carousel-slider .slide {
		min-height: 300px;
	}
	.caption-title.big { font-size: 22px; }
	.caption-title.medium { font-size: 16px; }
	.caption-title.small { font-size: 14px; }
	.scroll-anim { bottom: 20px; }

	
	/* Clients
 	---------------------------------------------------------------------- */
	.clients-row .client {
		padding: 6% 0;
		border-right: 0;
	}
	.clients-list .clients-row:last-child .client { border-bottom: 1px solid #c7c7c7; }
	.clients-list .clients-row:last-child .client:last-child { border-bottom: none; }


	/* Portfolio
 	 ---------------------------------------------------------------------- */

	#portfolio-filter {
		margin-bottom: 41px;
	}

	.work-detail {
		padding: 20px 2% 40px;
		border-bottom: 1px solid #c7c7c7;
		border-right: 0;
		min-height: 0;
		margin-bottom: 20px;
	}
	.work-details .work-detail:last-child { border-bottom: 0;  }
	

	/* Process
 	---------------------------------------------------------------------- */
	.process-steps {
		padding: 50px 0;
	}
		.step-icon {
			font-size: 55px;
		}
		.step-title {
			font-size: 24px;
		}


	/* Latest Tweets
	 ---------------------------------------------------------------------- */
	#latest-tweets { 
		padding: 80px 0 60px;
	}
		.twitter-col {
			padding: 0 10%;
		}
		.twitter-col .big-heading {
			margin-bottom: 30px;
		}
		#latest-tweets .slide {
			font-size: 18px;
		}	
			#latest-tweets .slide a:hover {
				color: #fff;
			}
			#latest-tweets .slide .date {
				margin-bottom: 80px;
				font-size: 14px;
			}
	

	/* Contact Us
	 ---------------------------------------------------------------------- */
	#gmap { height: 300px;}
	.contact-detail {
		padding: 20px 2% 40px;
		border-bottom: 1px solid #c7c7c7;
		border-right: 0;
		min-height: 0;
		margin-bottom: 20px;
	}
	.contact-details .contact-detail:last-child { border-bottom: 0;  }


	/* Footer
	 ---------------------------------------------------------------------- */

	#footer {
		background-color: #222;
		clear: both;
		padding: 50px 0 50px 0;
	}

		/* Columns */
		.footer-col {
			min-height:0;
			border-bottom: 1px solid #333;
			border-right: 0;
			padding: 30px 0;
			width: 100%;
			display: block;
			margin-bottom: 30px;
		}
		

	/* Elements
 	 ---------------------------------------------------------------------- */


 	/* Carousel
	 ------------------------------------ */
	.carousel-fw-item {
		width: 100%;
		padding: 0 1px;
	}


	/* Divider
	 ------------------------------------ */
	.divider.long:before, .divider.long:after { width:130px }


/* ----------------------------------------------------------------------
	For Mobile Devices [ 440px ] [ Horizontal ]
/* ---------------------------------------------------------------------- */
@media only screen and (min-width: 480px) and (max-width: 767px) {
	

	/* Layout and content
	 ---------------------------------------------------------------------- */

	/* Container */
	.container { width: 440px; }


		/* Columns
		 -------------------------------- */
		.col-1-2,
		.col-1-3,
		.col-1-4,
		.col-1-5,
		.col-2-3,
		.col-3-4 { 
			width: 440px;
			margin-right:0;
		}
		.flex-col-1-3,
		.flex-col-1-2,
		.flex-col-1-4,
		.flex-col-1-5 { 
			width: 100%;
		}
		.center-col { margin: 0 auto; }

	
	/* Intro Slider/Image
 	 ---------------------------------------------------------------------- */
	.scroll-anim { bottom: 10px; }


	/* Portfolio
 	 ---------------------------------------------------------------------- */

	#portfolio-filter {
		margin-bottom: 5px;
	}	
	
	.portfolio-item img {
			margin-bottom: 5px;
		}

		.portfolio-item footer .title, .portfolio-item footer .title a {
			margin-bottom: 5px;
		}

				
	/* Elements
 	 ---------------------------------------------------------------------- */
	

	/* Carousel
	 ------------------------------------ */
	.carousel-fw-item {
		width: auto;
		padding: 0;
	}

}