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

	Theme Name: Nöra
	Theme URI: http://meetmighty.com/themes/nora/
	Description: An overly confident yet creatively fun responsive theme for WordPress.
	
	Author: Mighty Themes
	Author URI: http://meetmighty.com/
	
	Version: 1.0
	
	Tags: black, white, two-columns, responsive-layout, threaded-comments, translation-ready, theme-options, post-formats, custom-menu, featured-images

	License: GNU General Public License version 3.0
	License URI: http://www.gnu.org/licenses/gpl-3.0.html
	
-------------------------------------------------------------------

 TABLE OF CONTENTS
	 
	0. RESET
	1. LAYOUT & STRUCTURE
	2. HEADER
	   - Logo
	   - Nav
	3. FRONT PAGE
	   - Hero
	   - Columns
	   - Portfolio
	   - Clients
	   - Blog
	   - eNews
	4. CONTENT
	   - Page
	   - Post
	   - Article
	   - Author Bio
	   - Comments
	   - Respond
	   - Pagination
	   - Post Formats
	   - Sidebar
	   - Widgets
	5. PAGE TEMPLATES
	   - Page
	   - Archives & Search
	   - 404
	   - Contact
	   - Portfolio Archive
	   - Portfolio Single
	6. FOOTER
	   - Links
	   - Copyright
	7. BROWSERS
	   - Firefox
   
------------------------------------------------ */



/*-------------------------------------
   0. RESET
-------------------------------------*/

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, font, 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 { 
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	}
	
section, article, aside, 
footer, header, nav, hgroup {
  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;
	}
	
:focus {
	outline: 0;
	}
	
ins { 
	text-decoration: none;
	}
	
del {
	text-decoration: line-through;
	}
	
table {
	border-collapse: collapse;
	border-spacing: 0;
	}



/*-------------------------------------
   1. LAYOUT & STRUCTURE
-------------------------------------*/

body {
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 30px;
	color: #444;
	overflow-x: hidden;
	position: relative;
	left: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}

body.push {
	left: -400px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}

@-webkit-keyframes fadeDown {
	0% {
		opacity: 0;
		-webkit-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}

@-moz-keyframes fadeDown {
	0% {
		opacity: 0;
		-moz-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-moz-transform: translateY(0);
	}
}

@-ms-keyframes fadeDown {
	0% {
		opacity: 0;
		-ms-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-ms-transform: translateY(0);
	}
}

@-o-keyframes fadeDown {
	0% {
		opacity: 0;
		-o-transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		-o-transform: translateY(0);
	}
}

@keyframes fadeDown {
	0% {
		opacity: 0;
		transform: translateY(-3px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

.fadeDown {
	-webkit-animation:fadeDown 250ms ease;
	   -moz-animation:fadeDown 250ms ease;
	    -ms-animation:fadeDown 250ms ease;
	     -o-animation:fadeDown 250ms ease;
	        animation:fadeDown 250ms ease;
}
		
a {
	color: #444;
	font-weight: 700;
	border-bottom: 3px solid transparent;
	padding-bottom: 3px;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}
	
a:hover,
body.page-template-template-homepage-php #columns p a:hover,
body.page-template-template-homepage-php #intro a:hover,
.mighty_tweet_widget a:hover,
#content article a.more:hover,
body.single-portfolio .portfolio-meta p a:hover  {
	border-bottom: 3px solid #ddd;
	}
	
::selection { 
	background: #fdd073;
	color: #444;
	}
	
input, textarea, button {
	font-family: 'Open Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 18px;
	line-height: 30px;
	color: #444;
	}

button {
	font-weight: 700;
	}

hr {
	height: 3px;
	display: block;
	background: #EEE;
	border: none;
	margin: 70px 0 55px;
	}

body.single hr {
	margin: 40px 0;
	}

a.btn,
input[type="submit"],
button.btn,
.more-link {
	color: #444;
	font-size: 15px;
	font-weight: 700;
	line-height: 15px;
	padding: 14px 20px 16px;
	border: none;
	border-radius: 3px;
	background-color: #fdd073;
	display: inline-block;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}

a.btn:hover,
input[type="submit"]:hover,
button.btn:hover,
.more-link:hover {
	color: #303030;
	background: #DDD;
	text-decoration: none;
	cursor: pointer;
	border: none;
	}

header, main, footer, aside, section, .clearfix {
	*zoom: 1;
	}

header:before, main:before, footer:before, aside:before, section:before,
header:after, main:after, footer:after, aside:after, section:after,
.clearfix:before,
.clearfix:after {
	display: table;
	content: "";
	line-height:0;
	}

header:after, main:after, footer:after, aside:after, section:after,
.clearfix:after {
	clear:both;
	}

.wrap {
	width: 92%;
	padding: 0 4%;
	}

.full-width {
	width: 100% !important;
	}


/*-------------------------------------
   2. HEADER
-------------------------------------*/

#header {
	background: #fff;
	padding: 30px 0 23px 0;
	}


/* Logo */

#header .logo {
	float: left;
	}


/* Logo > Plain */

#header .logo a {
	color: #242424;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: 3px;
	line-height: 36px;
	text-transform: uppercase;
	display: block;
	float: left;
	}

#header .logo a:hover {
	border-bottom: 3px solid #fdd073;
	text-decoration: none;
	}

#header .logo em {
	color: #afa797;
	font-size: 15px;
	font-weight: 800;
	font-style: normal;
	letter-spacing: 2px;
	line-height: 15px;
	text-transform: uppercase;
	margin-left: 30px;
	position: relative;
	top: 11px;
	float: left;
	}


/* Logo > Custom */

#header .logo a.custom {
	font-size: 0;
	font-weight: normal;
	letter-spacing: normal;
	line-height: 0;
	display: block;
	padding: 0;
	}

#header .logo a.custom:hover {
	}


/* Sidebar Drawer Toggle */

#header #toggle {
	background-color: #242424;
	line-height: 0;
	margin-bottom: -54px;
	float: right;
	position: relative;
	right: -4.35%;
	top: -30px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}

#header #toggle:hover {
	background-color: #fdd073;
	cursor: pointer;
	}

#header #toggle i {
	color: #fdd073;
	font-size: 24px;
	line-height: 24px;
	padding: 38px 40px;
	}

#header #toggle:hover i {
	color: #242424;;
	}


/* Navigation */

#header nav {
	float: right;
	padding-top: 11px;
	position: relative;
	}

#header #nav  {
	float: left;
	list-style: none;
	}

#header #nav li {
	float: left;
	margin-left: 40px;
	position: relative;
	}

#header #nav li:first-child {
	margin-left: 0;
	}

#header #nav li:hover {
	visibility: inherit;
	}

#header #nav li a {
	font-size: 15px;
	font-weight: 800;
	line-height: 15px;
	letter-spacing: 2px;
	text-transform: uppercase;
	display: block;
	padding-bottom: 5px;
	}

#header #nav li.current_page_item a, 
#header #nav li.current-menu-parent a,
#header #nav li.current_page_parent a {
	color: #000;
	border-bottom: 3px solid #fdd073;
	}

#header #nav li.menu-item-has-children a,
#header #nav li.menu-item-has-children a:hover {
	margin-bottom: 12px;
	}


/* Navigation > Dropdown Menus */

#header #nav .sub-menu,
#header #nav .children {
	display: none;
	padding: 0;
	position: absolute;
	left: -10px;
	z-index: 99999;
	border-radius: 3px;
	background: #FFF;
	box-shadow: 0px 1px 7px rgba(0,0,0,0.3);
	}

#header #nav li:hover > ul,
#header #nav ul li:hover > ul {
	display: inline-block;
	-webkit-animation: fadeDown 250ms ease;
	-moz-animation: fadeDown 250ms ease;
	-ms-animation: fadeDown 250ms ease;
	-o-animation: fadeDown 250ms ease;
	animation: fadeDown 250ms ease;
	}

#header #nav .sub-menu ul,
#header #nav .children ul {
	left: 99.75%;
	top: 0;
	}

#header #nav ul li,
#header #nav ul ul li {
	margin-left: 0;
	border-top: 1px solid #e5e5e5;
	}

#header #nav ul li:first-child,
#header #nav ul ul li:first-child {
	border-top: none;
	}

#header #nav ul a,
#header #nav ul ul a {
	color: #202020;
	font-weight: 700;
	font-size: 14px;
	line-height: 18px;
	text-transform: none;
	letter-spacing: 0;
	text-align: left;
	padding: 10px;
	display: inline-block;
	min-width: 125px;
	border-bottom: none !important;
	margin-bottom: 0 !important;
	}

#header #nav ul a:hover,
#header #nav ul ul a:hover {
	color: #fdd073 !important;
	border-bottom: none;
	}

#header #nav li.current_page_item ul a, 
#header #nav li.current-menu-parent ul a,
#header #nav li.current_page_parent ul a {
	color: #202020;
	font-weight: 700;
	}

#header #nav ul li.current-menu-item a {
	color: #fdd073 !important;
	}


/* Header Meta */

#header-meta {
  background-color: #f1efe9;
  margin-bottom: 23px;
  padding: 0px 0 0;
}

#header-meta h1 {
	color: #1c1c1c;
	font-size: 36px;
	font-weight: 800;
	letter-spacing: 7px;
	line-height: 58px;
	text-transform: uppercase;
	}

#header-meta h2 {
	font-size: 24px;
	font-weight: 400;
	line-height: 36px;
	width: 90%;
	margin: 2px auto 0 0;
	}

.force-odd {
  background: none repeat scroll 0 0 #f7f7f7 !important;
}



/*-------------------------------------
   4. CONTENT
-------------------------------------*/

#content {
	float: left;
	width: 60%;
	margin-right: 7.5%;
	text-align: left;
	}


/* Page */

body.page #content .entry-header h1.entry-title {
	margin-bottom: 20px;
	}

body.page #content .entry-header {
	margin-bottom: 0;
	}


/* Post */

#content .post .entry-header h1.entry-title {
	color: #121212;
	font-size: 28px;
	font-weight: 700;
	line-height: 34px;
	margin-bottom: 5px;
	}


/* Article */

#content article {
	margin-bottom: 90px;
	}

#content article.sticky {
	background: #fffef5;
	border-bottom: 2px solid #f5f4e8;
	padding: 50px 10px;
	}

#content .entry-header {
	margin-bottom: 20px;
	}


/* Article > Header */

#content article .entry-header h1.entry-title {
	color: #000;
	font-size: 32px;
	font-weight: 700;
	line-height: 42px;
	}

#content article .entry-header .entry-image {
	line-height: 0;
	display: block;
	margin-bottom: 30px;
	}

#content article .entry-header .entry-image,
#content article .entry-header .entry-image:hover {
	border-bottom: none !important;
	}

#content article .entry-header .entry-image a {
	display: block;
	border-bottom: none !important;
	padding-bottom: 0px !important
	}

#content article .entry-header .entry-image,
#content article .entry-header .entry-image a:hover {
	border-bottom: none !important;
	}

#content article .entry-header h2.entry-title {
	font-size: 28px;
	font-weight: 700;
	letter-spacing: 0px;
	line-height: 34px;
	margin-bottom: 10px;
	}

#content article .entry-header h2.entry-title a {
	font-weight: 700;
	color: #121212;
	}

#content article a.more {
	border-bottom: 3px solid #fdd073;
	}


/* Article > Content */

#content article .entry-content a.more-link {
	font-size: 15px;
	font-weight: 700;
	line-height: 15px;
	padding: 14px 18px;
	}

#content article .entry-content p,
#content article .entry-content pre,
#content article .entry-content ul,
#content article .entry-content ol,
#content article .entry-content dl,
#content article .entry-content dd,
#content article .entry-content address,
#content article .entry-content table,
#content article .entry-content fieldset,
#content article .entry-content form {
	margin-bottom: 35px;
	}

#content article .entry-content ul li,
#content article .entry-content ol li {
	padding-left: 15px;
	list-style-position: inside;
	}

#content article .entry-content ul li {
	list-style-type: disc;
	}

#content article .entry-content ul ul li {
	list-style-type: circle;
	}

#content article .entry-content ul ul ul li {
	list-style-type: square;
	}

#content article .entry-content ol li {
	list-style-type: decimal;
	}

#content article .entry-content ol ol li {
	list-style-type: decimal-leading-zero;
	}

#content article .entry-content ol ol ol li {
	list-style-type: lower-roman;
	}

#content article .entry-content ol ol,
#content article .entry-content ol ul,
#content article .entry-content ul ul,
#content article .entry-content ul ol {
	margin-bottom: 0;
	}

#content article .entry-content blockquote {
	font-style: italic;
	padding-left: 20px;
	margin-left: 10px;
	border-left: 3px solid #fdd073;
	}

#content article .entry-content h1, h2, h3, h4, h5, h6 {
	color: #242424;
	font-weight: 700;
	margin-bottom: 30px;
	}

#content article .entry-content h1 { font-size: 26px; line-height: 28px; }
#content article .entry-content h2 { font-size: 21px; line-height: 24px; }
#content article .entry-content h3 { font-size: 17px; line-height: 23px; }
#content article .entry-content h4 { font-size: 15px; line-height: 20px; }
#content article .entry-content h5 { font-size: 12px; line-height: 18px; }
#content article .entry-content h6 { font-size: 10px; line-height: 16px; }

#content article .entry-content pre {
	background: #F4F4F4;
	border-radius: 4px;
	padding: 20px 25px;
	max-width: 100%;
	overflow: scroll;
	}

#content article .entry-content .fa-ul li {
	list-style: none;
	}


/* Post Content (Block & Pull Quotes) */

#content article .entry-content .pull-left {
	float: left;
	padding-bottom: 45px !important;
	margin: 0 60px 20px 0;
	}

#content article .entry-content .pull-right {
	float: right;
	padding-bottom: 45px !important;
	margin: 0 0 20px 60px;
	}

#content article .entry-content .pull-left,
#content article .entry-content .pull-right,
#content article .entry-content blockquote {
	font-style: italic;
	padding: 35px 55px 20px;
	background: #f5f5f5;
	width: 33%;
	}

#content article .entry-content blockquote {
	width: auto;
	margin: 10px 0 40px;
	}

#content article .entry-content blockquote p {
	margin-bottom: 35px;
	}

#content article .entry-content blockquote cite {
	color: #000;
	font-size: 14px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 2px;
	line-height: 14px;
	text-transform: uppercase;
	display: block;
	}

#content article .entry-content blockquote cite a {
	font-weight: 700;
	color: #000;
	}

#content article .entry-content blockquote cite a:hover {
	text-decoration: none;
	}

#content article .entry-content img,
#content article .entry-content .wp-caption img,
#content article .entry-content iframe,
#content article .entry-content object,
#content article .entry-content embed,
#content article .entry-content video {
	max-width: 100%;
	max-height: auto;
	}

#content article .entry-content img,
#content article .entry-content .wp-caption img {
	height: auto;
	}

#content article .entry-content .mejs-audio {
	margin-bottom: 35px;
	}



/* Post Content (Divider) */

#content hr {
	background-color: #f5f5f5;
	border: 0;
	height: 3px;
	margin: 7% 0;
	}


/* Post Content (Tables) */

#content article .entry-content table {
	width: 100%;
	}

#content article .entry-content table thead {
	background: #f7f7f7;
	}

#content article .entry-content table thead th {
	font-weight: bold;
	text-align: left;
	}

#content article .entry-content table td,
#content article .entry-content table th {
	padding: 10px;
	}

#content article .entry-content table td {
	border-bottom: solid 1px #f7f7f7;
	}

#content article .entry-content table tr:last-child td {
	border-bottom: none;
	}

#content article .entry-content table tr:nth-child(even) {
	background: #f7f7f7;
	}


/* Post Content (Misc) */

.highlight {
	background: #fff198;
	padding: 0 3px;
	border-radius: 3px;
	}

.alignleft {
	display: inline;
	float: left;
	margin: .5em 2em 0 0;
	}

.alignright {
	display: inline;
	float: right;
	margin: .5em 0 0 2em;
	}

.aligncenter {
	clear: both;
	display: block;
	margin: 0 auto;
	}

#content article .entry-content .wp-caption {
	margin: 1.5em auto;
	max-width: 100% !important;
	}

#content article .entry-content .wp-caption img {
	display: block;
	margin: 0;
	max-width: 100% !important;
	height: auto;
	}

.wp-caption .wp-caption-text {
	color: #777;
	font-weight: 600;
	font-size: 11px;
	font-style: italic;
	line-height: 11px;
	margin: 1em 0 0 0 !important;
	text-align: center;
	}


/* Article > Content > WordPress Gallery */

.gallery {
	margin: 0 auto 18px;
	}

.gallery .gallery-item {
	float: left;
	margin-top: 0;
	text-align: center;
	width: 33%;
	}

.gallery-columns-2 .gallery-item {
	width: 50%;
	}

.gallery-columns-4 .gallery-item {
	width: 25%;
	}

.gallery img,
#gallery-1 img {
	border: 1px solid #EFEFEF !important;
	background: #F4F4F4; 
	padding: 8px;
	line-height: 0;
	}

.gallery img:hover {
	background: white;
	}

.gallery-columns-2 .attachment-medium {
	max-width: 92%;
	height: auto;
	}

.gallery-columns-4 .attachment-thumbnail {
	max-width: 84%;
	height: auto;
	}

.gallery .gallery-caption {
	color: #888;
	font-size: 12px;
	margin: 0 0 12px;
	}

.gallery dl,
.gallery dt {
	margin: 0;
	}

.gallery br+br {
	display: none;
	}


/* Entry Links */

#content .entry-links {
	margin-bottom: 35px;
	}

#content .entry-links a {
	background: #F4F4F4;
	padding: 5px 10px;
	margin: 0 5px;
	border-radius: 3px;
	border-bottom: none;
	}

#content .entry-links a:hover {
	color: #000;
	border-bottom: none;
	}


/* Post Format > Quote */

#content article.format-quote .entry-header .entry-image {
	margin-bottom: 0;
	}

#content article.format-quote .entry-quote {
	color: #242424;
	font-size: 21px;
	font-style: italic;
	line-height: 40px;
	padding: 40px 50px 25px 40px;
	background: #f5f5f5;
	margin-bottom: 55px;
	}

#content article.format-quote .entry-quote p {
	margin-bottom: 35px;
	}

#content article.format-quote .entry-quote cite {
	color: #000;
	font-size: 14px;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 2px;
	line-height: 14px;
	text-transform: uppercase;
	display: block;
	}


/* Author Bio */

#content .author-bio .avatar {
	border-radius: 45px;
	margin: 2px 25px 30px 0;
	float: left;
	}

#content .author-bio .author-name {
	margin-bottom: 5px;
	}

#content .author-bio .author-description {
	margin-bottom: 5px;
	font-size: 16px;
	line-height: 1.6em;
	}


/* Comments */

#content #comments h3 {
	font-size: 21px;
	margin-bottom: 45px;
	}

#content #comments .comments-closed {
	margin-bottom: 50px;
	}

#content #comments .comment .bypostauthor {
	overflow: auto;
	}

#content #comments .comment article {
	margin-bottom: 50px;
	}

#content #comments .comment .avatar {
	border-radius: 45px;
	margin: 2px 5% 0 0;
	float: left;
	}

#content #comments .comment-author,
#content #comments .comment-content,
#content #comments .comment-reply {
	float: right;
	width: 81.5%;
	}

#content #comments .comment-author {
	margin-bottom: 5px;
	}

#content #comments .comment-author cite {
	font-style: normal;
	font-weight: 700;
	margin-right: 10px;
	}

#content #comments .comment-author time {
	font-style: italic;
	font-size: 14px;
	color: #777;
	margin-right: 15px;
	}

#content #comments .comment-content p {
	font-size: 16px;
	line-height: 1.6em;
	margin-bottom: 10px;
	}

#content #comments .comment-reply-link,
#content #comments .comment-edit-link {
	font-size: 14px;
	}


/* Threaded comments */

#content #comments ol .children {
	margin-left: 18.5%;
	}

#content #comments .children .avatar {
	border-radius: 45px;
	width: 15%;
	height: 15%;
	float: left;
	margin-right: 5%;
	}

#content #comments .children .comment-author,
#content #comments .children .comment-content,
#content #comments .children .comment-reply {
	float: right;
	width: 80%;
	}


/* Reply form in comments */

#content #cancel-comment-reply-link {
	font-size: 14px;
	margin-left: 10px;
	}


/* Respond */

#content #respond {
	margin-bottom: 55px;
	background-color: #f1efe9;
	padding: 35px;
	}

#content #respond h3 {
	font-size: 21px;
	}

#content #respond p {
	margin-bottom: 25px;
	}

#content #respond label {
	color: #000;
	display: block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 14px;
	margin-bottom: 10px;
	text-transform: uppercase;
	}

#content #respond label .required {
	color: red;
	}

#content #respond input[type="text"] {
	color: #202020;
	font-size: 18px;
	line-height: 28px;
	border: 2px solid #eee;
	background-color: #fff;
	border-radius: 2px;
	padding: 8px 8px 10px 8px;
	width: 97%;
	display: block;
	}

#content #respond textarea {
	color: #202020;
	font-size: 18px;
	line-height: 28px;
	border: 2px solid #eee;
	background-color: #fff;
	border-radius: 2px;
	padding: 8px 8px 10px 8px;
	width: 97%;
	height: 150px;
	margin-bottom: 40px;
	display: block;
	}

#content #respond textarea:focus,
#content #respond input[type="text"]:focus {
	border: 2px solid #ddd;
	}

#content #respond input[type="submit"] {
	font-size: 14px;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: 2px;
	background-color: #fdd073;
	border-radius: 2px;
	border: none;
	text-transform: uppercase;
	padding: 20px;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}

#content #respond input[type="submit"]:hover {
	background-color: rgba(255,255,255,1);
	}


/* Pagination */

#content .pagination {
	margin-bottom: 50px;
	}

#content .pagination a:nth-of-type(1) {
	margin-right: 35px;
	}

#content .pagination a span {
	color: #777;
	}

#content .pagination .prev {
	float: left;
	}

#content .pagination .next {
	float: right;
	}


/* Article > Responsive Images */

#content article .entry-header .entry-image img {
	max-width: 100% !important;
	height: auto;
	}


/* Article > Post Format > Quote */

body.blog #content article.format-quote .entry-meta {
	margin-bottom: 15px;
	}

body.blog #content article.format-quote .entry-title {
	margin-bottom: 10px !important;
	}

#content article.format-quote .entry-title a:hover blockquote p {
	color: #fdd073;
	}

#content article.format-quote .entry-title cite {
	color: #808080;
	font-size: 18px;
	letter-spacing: -1px;
	margin-top: 10px;
	display: block;
	}

#content article.format-quote .entry-header h2.entry-title {
	margin-bottom: 30px;
	}


/* Article > Post Format > Link */

#content article.format-link .entry-header .entry-image {
	margin-bottom: 0;
	}

#content article.format-link .entry-link {
	background: #f5f5f5;
	padding: 30px 30px 40px 30px;
	margin-bottom: 55px;
	}

#content article.format-link .entry-link i {
	float: right;
	position: relative;
	top: 15px;
	font-size: 44px;
	color: rgba(0,0,0,0.08);
	}

#content article.format-link .entry-link h3 {
	font-size: 26px;
	line-height: 40px;
	margin-bottom: 5px;
	}

#content article.format-link .entry-link h3 a {
	color: #242424;
	}

#content article.format-link .entry-link h3 a:hover {
	text-decoration: none;
	border-bottom: 2px solid #fdd073;
	}

#content article.format-link .entry-link p {
	font-style: italic;
	color: #777;
	line-height: 23px;
	margin-bottom: 0px;
	}


/* Article > Post Format > Audio */

.mejs-time-loaded {
	background: #484848 !important;
	}

.mejs-time-current {
	background: #fdd073 !important;
	}

/* eliminate the yellow border around the play button during playback */
.mejs-controls .mejs-button button:focus {
	outline: none !important;
	}

.mejs-controls .mejs-horizontal-volume-slider .mejs-horizontal-volume-current {
	background: #fdd073 !important;
	}

.mejs-container .mejs-controls .mejs-time {
	padding-top: 9px !important;
	}

.mejs-container .mejs-controls .mejs-time span {
	color: #BBB !important;
	text-shadow: 1px 1px 0px rgba(0,0,0,.6);
	}

#content article.format-audio.post-thumb .mejs-container,
#content article.format-audio.post-thumb .mejs-controls {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	}


/* Flexslider */

.flexslider { 
	margin: 0 0 30px 0;
	padding: 0;
	position: relative;
	}

.flexslider .slides > li {
	display: none; 
	-webkit-backface-visibility: hidden;
	width: 50%;
	}

.flexslider .slides img {
	width: 100%;
	display: block;
	}

.flex-pauseplay span {
	text-transform: capitalize;
	}

.slides:after {
	content: "."; 
	display: block; 
	clear: both; 
	visibility: hidden; 
	line-height: 0; 
	height: 0;
	}

html[xmlns] .format-gallery .slides {
	display: block;
	}

* html .format-gallery .slides {
	height: 1%;
	}

.no-js .slides > li:first-child {
	display: block;
	}

.flex-control-paging {
	display: none;
	}

.flex-direction-nav {
	position: absolute;
	width: 100%;
	bottom: 57%;
	}

.flex-direction-nav a {
	color: #242424;
	background-color: #fff;
	font-size: 48px;
	line-height: 44px;
	display: block;
	position: absolute;
	border-bottom: 0;
	padding: 8px 16px;
	-webkit-transition: .15s ease-in;
	-moz-transition: .15s ease-in;
	transition: .15s ease-in;
	}

.flex-direction-nav a:hover {
	color: rgba(255,255,255,1);
	background-color: #fdd073;
	border-bottom: 0;
	}

.flex-direction-nav .flex-prev {
	left: 0px;
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
	}

.flex-direction-nav .flex-next {
	right: 0px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	}


/* Sidebar */

#sidebar {
	float: left;
	width: 30%;
	}


/* Sidebar Drawer */

#sidebar-drawer {
	box-shadow: inset 0px 0 5px 0 rgba(0,0,0,.15);
	background-color: #242424;
	padding: 50px;
	width: 300px;
	height: 100%;
	top: 0;
	right: -400px;
	z-index: 1000;
	position: fixed;
	opacity: 0;
	overflow-x: scroll;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}

#sidebar-drawer.open {
	opacity: 1;
	right: 0px;
	}

#sidebar-drawer .widget h4 {
	color: #fff;
	}

#sidebar-drawer .widget,
#sidebar-drawer .widget.widget_nav_menu a {
	color: rgba(255,255,255,0.5);
	font-weight: normal;
	}

#sidebar-drawer .widget a {
	color: #fdd073;
	}


/* Sidebar Footer */

#sidebar-footer {
	background-color: #f1efe9;
	text-align: center;
	}

#sidebar-footer .widget {
	font-size: 16px;
	line-height: 30px;
	width: 25%;
	float: left;
	padding: 2% 4%;
	margin: 85px 0 85px;
	}

#sidebar-footer .widget:nth-child(2n) {
	border-left: 4px solid #fff;
	border-right: 4px solid #fff;
	}

#sidebar-footer .widget a {
	font-weight: 700;
	}

#sidebar-footer .widget h4 {
	color: #242424;
	font-size: 18px;
	font-weight: 800;
	line-height: 28px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 38px;
	}


/* Widgets */

.widget {
	font-size: 15px;
	line-height: 23px;
	margin-bottom: 50px;
	width: 100%;
	float: left;
	}

.widget-title {
	color: #1c1c1c;
	font-size: 14px;
	font-weight: 800;
	line-height: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 30px;
	}


/* Recent Posts Widget */

.widget_recent_entries li {
	margin-bottom: 15px;
	padding-left: 25px;
	position: relative;
	}

.widget_recent_entries li:before {
	color: #bbb;
	font-size: 16px;
	font-family: "FontAwesome";
	content: "\f0f6";
	position: absolute;
	top: 1px;
	left: 0;
	-webkit-font-smoothing: antialiased;
	}

.widget_recent_entries li span {
	color: #888;
	font-size: 11px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 1px;
	display: block;
	}


/* Categories Widget */

.widget_archive li,
.widget_categories li {
	color: #aaa;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 1px;
	line-height: 26px;
	position: relative;
	padding-left: 12px;
	margin-left: 2px;
	}

.widget_archive li:before,
.widget_categories li:before {
	color: #bbb;
	font-family: "FontAwesome";
	content: "\f105";
	position: absolute;
	top: 0;
	left: 0;
	}

.widget_archive li a,
.widget_categories li a {
	font-size: 15px;
	font-weight: 700;
	text-transform: none;
	letter-spacing: 0;
	padding-right: 3px;
	}


/* Recent Comments Widget */

.widget_recent_comments li {
	margin-bottom: 15px;
	}


/* Search Form / Widget */

.search-form .search-input {
	font-size: 15px;
	line-height: 21px;
	padding: 4%;
	border: none;
	border-radius: 4px;
	background-color: #f4f4f4;
	width: 83%;
	}

.search-form .search-input:focus {
	border: none;
	}

.search-form .search-submit {
	font-size: 15px;
	line-height: 21px;
	padding: 4% 5%;
	float: right;
	}


/* Calendar */

#calendar_wrap {
	border: 1px solid #DDD;
	border-radius: 4px;
	}

.widget_calendar #wp-calendar {
	width: 100%;
	}

.widget_calendar caption {
	font-size: 18px;
	font-style: italic;
	color: #777;
	background: #F4F4F4;
	padding: 5px 0 8px 0;
	margin-bottom: 10px;
	border-bottom: 1px solid #DDD;
	}

.widget_calendar th,
.widget_calendar td {
	text-align: center;
	}

.widget_calendar #today {
	background: #F4F4F4;
	border-radius: 4px;
	}

.widget_calendar #prev,
.widget_calendar #next {
	padding: 5px 0;
	}


/* RSS Widget */

.widget_rss ul li {
	margin-bottom: 15px;
	}

.widget_rss ul li span.rss-date {
	display: block;
	font-style: italic;
	color: #777;
	}


/* Text Widget */

.textwidget p {
	margin-bottom: 15px;
	}

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

.textwidget a img {
	border-bottom: none !important;
	}

.textwidget a:hover img {
	border-bottom: none !important;
	}

.textwidget form select,
.textwidget form input,
.textwidget form textarea {
	max-width: 97%;
	}


/* Nav Widget */

.widget_nav_menu ul ul {
	margin-left: 20px;
	}


/* Recent Tweet Widget */

.mighty_tweet_widget ul,
.mighty_tweet_widget ul li {
	margin-bottom: 25px;
	}

.mighty_tweet_widget a {
	border-bottom: 3px solid #fdd073;
	}

.mighty_tweet_widget .twitter-time-stamp {
	color: #777;
	font-size: 16px;
	font-weight: 400 !important;
	font-style: italic;
	line-height: 16px;
	letter-spacing: 0;
	border-bottom: none;
	display: block;
	margin-top: 35px;
	}

.mighty_tweet_widget .twitter-time-stamp:before {
	color: #afa797;
	font-size: 17px;
	font-style: normal;
	line-height: 17px;
	font-family: 'FontAwesome';
	content: "\f099";
	margin-right: 8px;
	}

.mighty_tweet_widget .twitter-time-stamp:hover {
	border-bottom: none;
	}


/* Recent Project Widget */

.mighty_project_widget .post {
	float: left;
	width: 100%;
	line-height: 0;
	margin-bottom: 10px;
	}

.mighty_project_widget .last {
	margin-right: 0;
	}


/* Dribbble Widget */

.mighty_dribbble_widget li {
	line-height: 0;
	margin-bottom: 15px;
	}

.mighty_dribbble_widget li a {
	line-height: 0;
	border-bottom: none;
	display: block;
	}

.mighty_dribbble_widget li a:hover {
	border-bottom: none;
	}

.mighty_dribbble_widget a img {
	width: 100%;
	}

.mighty_dribbble_widget p {
	padding-top: 10px;
	}


/* Instagram & Flickr Widgets */

.mighty_instagram_widget ul,
.mighty_flickr_widget ul {
	float: left;
	position: relative;
	right: -2px;
	margin-bottom: 30px;
	width: 103%;
	overflow: hidden;
	}

.mighty_instagram_widget li,
.mighty_flickr_widget li {
	line-height: 0;
	margin: 0 4% 4% 0;
	float: left;
	width: 21%;
	height: auto;
	}

.mighty_instagram_widget li a,
.mighty_flickr_widget a {
	line-height: 0;
	border-bottom: none;
	display: block;
	}

.mighty_instagram_widget li a:hover,
.mighty_flickr_widget li a:hover {
	border-bottom: none;
	}

.mighty_instagram_widget li img,
.mighty_flickr_widget li img {
	border-radius: 4px;
	width: 100%;
	height: 100%;
	}

.mighty_instagram_widget p {
	padding-top: 10px;
	}

#sidebar-drawer .mighty_instagram_widget li, 
#sidebar-drawer .mighty_flickr_widget li {
	width: 29%;
	}


/* Social Links */

.mighty_social_widget ul {
	float: left;
	}

.mighty_social_widget li {
	float: left;
	line-height: 0;
	margin: 0 15px 15px 0;
	}

.mighty_social_widget a,
#sidebar-drawer .mighty_social_widget a {
	float: left;
	padding: 15px;
	height: 17px;
	width: 17px;
	border-radius: 3px;
	border-bottom: none;
	background: #F4F4F4;
	color: #777;
	font-size: 18px;
	line-height: 18px;
	text-align: center;
	}

#sidebar-footer .mighty_social_widget a {
	background: #FFF;
	box-shadow: 0px 2px 0px 0px rgba(0, 0, 0, 0.1);
	}

.mighty_social_widget a:hover,
#sidebar-footer .mighty_social_widget a:hover,
#sidebar-drawer .widget.mighty_social_widget a:hover {
	background: #fdd073;
	color: #FFF;
	border-bottom: none;
	}

#sidebar-drawer .mighty_social_widget a {
	background: rgba(0,0,0,0.15);
	}

#sidebar-drawer .mighty_social_widget a:hover {
	color: #242424 !important;
	}


/* Video */

.mighty_video_widget .vid {
	margin: 0 4.5%;
	}



/*-------------------------------------
   5. PAGE TEMPLATES
-------------------------------------*/

/* Homepage > Intro */

body.page-template-template-homepage-php #intro {
	text-align: center;
	padding-top: 85px;
	padding-bottom: 110px;
	}

body.page-template-template-homepage-php #intro h1 {
	color: #242424;
	font-size: 50px;
	font-weight: 800;
	line-height: 64px;
	text-transform: uppercase;
	letter-spacing: 5px;
	}

body.page-template-template-homepage-php #intro h2 {
	font-size: 24px;
	font-weight: 400;
	line-height: 42px;
	margin: 28px auto 0 auto;
	width: 80%;
	}

body.page-template-template-homepage-php #intro a {
	border-bottom: 3px solid #fdd073;
	}


/* Homepage > Text Columns */

body.page-template-template-homepage-php #columns {
	background-color: #f1efe9;
	text-align: center;
	}

body.page-template-template-homepage-php #columns .column  {
	width: 25%;
	float: left;
	border-right: 4px solid #fff;
	padding: 0 4%;
	margin: 75px 0 85px;
	}

body.page-template-template-homepage-php #columns .last  {
	border-right: none;
	}

body.page-template-template-homepage-php #columns img  {
	margin-bottom: 35px;
	}

body.page-template-template-homepage-php #columns h2 {
	color: #242424;
	font-size: 24px;
	font-weight: 800;
	line-height: 34px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
	}

body.page-template-template-homepage-php #columns p {
	margin-bottom: 18px;
	}

body.page-template-template-homepage-php #columns p a {
	padding-bottom: 4px;
	border-bottom: 3px solid #fdd073;
	}


/* Homepage > Blog Posts */

body.page-template-template-homepage-php #blog {
	padding: 100px 4% 110px;
	}

body.page-template-template-homepage-php #blog .blog-post {
	float: left;
	width: 60%;
	margin-right: 7.5%;
	margin-left: 1.5%;
	}

body.page-template-template-homepage-php #blog .blog-posts {
	float: left;
	width: 30%;
	}

body.page-template-template-homepage-php #blog .blog-post a.more {
	padding-bottom: 4px;
	border-bottom: 3px solid #fdd073;
	}

body.page-template-template-homepage-php #blog .blog-post .entry-title {
	font-size: 30px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 3px;
	line-height: 40px;
	margin-bottom: 15px;
	}

body.page-template-template-homepage-php #blog .blog-post .entry-title a {
	color: #242424;
	font-weight: 800;
	}

body.page-template-template-homepage-php #blog .blog-posts .entry-title {
	margin-bottom: 15px;
	}

body.page-template-template-homepage-php #blog .blog-post .entry-meta,
body.page-template-template-homepage-php #blog .blog-posts .entry-meta {
	color: #777;
	font-weight: 400;
	font-size: 16px;
	font-style: italic;
	line-height: 16px;
	margin-bottom: 38px;
	}

body.page-template-template-homepage-php #blog .blog-posts .entry-meta {
	margin-bottom: 35px;
	}

body.page-template-template-homepage-php #blog .blog-post .entry-meta a,
body.page-template-template-homepage-php #blog .blog-posts .entry-meta a {
	font-weight: 700;
	font-style: normal;
	}

body.page-template-template-homepage-php #blog .blog-post .entry-meta span,
body.page-template-template-homepage-php #blog .blog-posts .entry-meta span {
	margin: 0 3px;
	}

body.page-template-template-homepage-php #blog .blog-post .entry-excerpt p {
	line-height: 34px;
	margin-bottom: 45px;
	}

body.page-template-template-homepage-php #blog .blog-posts ul {
	padding-top: 30px;
	border-top: 3px solid #f1efe9;
	}

body.page-template-template-homepage-php #blog .blog-posts li {
	position: relative;
	padding-left: 35px;
	margin-bottom: 30px;
	border-bottom: 3px solid #f1efe9;
	}

body.page-template-template-homepage-php #blog .blog-posts li:before {
	color: #afa797;
	font-family: "FontAwesome";
	font-size: 21px;
	line-height: 21px;
	content: "\f0f6";
	position: absolute;
	top: 5px;
	left: 0;
	-webkit-font-smoothing: antialiased;
	}

body.page-template-template-homepage-php #blog .blog-posts li:last-child {
	margin-bottom: 0;
	}


/* Homepage > Portfolio Section */

body.page-template-template-homepage-php #portfolio {
	position: relative;
	z-index: 100;
	bottom: -1px;
	}

body.page-template-template-homepage-php #portfolio .flexslider {
	margin-bottom: 0;
	max-height: 600px;
	}

body.page-template-template-homepage-php #portfolio .flex-direction-nav {
	position: absolute;
	width: 100%;
	bottom: 58%;
	z-index: 1000;
	}

body.page-template-template-homepage-php #portfolio .flex-direction-nav a {
	color: #242424;
	background-color: #fff;
	font-size: 58px;
	line-height: 54px;
	letter-spacing: 0;
	padding: 10px 20px;
	-webkit-transition: .15s ease-in;
	-moz-transition: .15s ease-in;
	transition: .15s ease-in;
	}

body.page-template-template-homepage-php #portfolio .flex-direction-nav a:hover {
	color: #fff;
	background-color: #242424;
	}

body.page-template-template-homepage-php #portfolio .flex-direction-nav .flex-prev {
	padding-left: 14px;
	}

body.page-template-template-homepage-php #portfolio .flex-direction-nav .flex-next {
	padding-right: 14px;
	}

body.page-template-template-homepage-php #portfolio .slide {
	float: left;
	overflow: hidden;
	height: auto;
	width: 100%;
	display: block;
	position: relative;
	}

body.page-template-template-homepage-php #portfolio .slide-content {
	float: left;
	overflow: hidden;
	height: 600px;
	width: 100%;
	display: block;
	position: relative;
	box-shadow: inset 0 0 0 1000px rgba(0,0,0,.35);
 	-webkit-background-size: cover !important;
  	-moz-background-size: cover !important;
  	-o-background-size: cover !important;
  	background-size: cover !important;	
  	background-position:center center !important;
	}

body.page-template-template-homepage-php #portfolio .flex-active-slide .flex-caption {
	display: block !important;
	}

body.page-template-template-homepage-php #portfolio .slide .flex-caption {
    position: absolute;
    top: 20%;
    z-index: 1;
    display: none;
    text-align: center;

	}

body.page-template-template-homepage-php #portfolio .slide .flex-caption h2 a {
	color: #fff;
    font-size: 50px;
	font-weight: 800;
	line-height: 64px;
	text-transform: uppercase;
	letter-spacing: 5px;
	text-shadow: 0px 1px 20px rgba(0,0,0,0.6);	
	}

body.page-template-template-homepage-php #portfolio .slide .flex-caption h2 a:hover {
	border-bottom: 3px solid #fdd073;
	}

body.page-template-template-homepage-php #portfolio .slide .flex-caption p {
	color: #fff;
	font-size: 24px;
	font-weight: 400;
	line-height: 42px;
	margin: 0px auto 40px auto;
	width: 80%;
	text-shadow: 0px 1px 25px rgba(0,0,0,1);	
	}

body.page-template-template-homepage-php #portfolio .slide .flex-caption a.btn {
	padding: 16px 20px 18px;
	box-shadow: 0px 1px 10px rgba(0,0,0,0.3);
	}

body.page-template-template-homepage-php #portfolio .slide .flex-caption a.btn:hover {
	background-color: #000;
	color: #fdd073;
	}

body.page-template-template-homepage-php #portfolio .slide .flex-caption a.btn i {
	margin-left: 3px;
	}


/* Contact */

body.page-template-template-contact-php #contact-form {
	background-color: #f1efe9;
	padding: 50px;
	margin-bottom: 35px;
	}

body.page-template-template-contact-php #contact-form p {
	color: #cb2020;
	font-style: italic;
	margin-bottom: 50px;
	}

body.page-template-template-contact-php #contact-form p.success {
	color: #339933;
	margin-bottom: 20px;
	}

body.page-template-template-contact-php #contact-form ul {
	position: relative;
	}

body.page-template-template-contact-php #contact-form ul li {
	margin-bottom: 30px;
	}

body.page-template-template-contact-php #contact-form label {
	color: #000;
	display: block;
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 2px;
	line-height: 14px;
	margin-bottom: 10px;
	text-transform: uppercase;
	}

body.page-template-template-contact-php #contact-form .required {
	color: red;
	font-size: 12px;
	}

body.page-template-template-contact-php #contact-form input[type="text"],
body.page-template-template-contact-php #contact-form textarea {
	color: #202020;
	font-family: 'Gentium Basic', serif;
	font-size: 18px;
	line-height: 28px;
	border: 2px solid #eee;
	background-color: #fff;
	border-radius: 2px;
	padding: 8px 8px 10px 8px;
	width: 95%;
	display: block;
	}

body.page-template-template-contact-php #contact-form input[type="text"]:focus,
body.page-template-template-contact-php #contact-form textarea:focus {
	border: 2px solid #ddd;
	}

body.page-template-template-contact-php #contact-form textarea {
	height: 135px;
	}

body.page-template-template-contact-php #contact-form input[type="submit"] {
	font-size: 14px;
	font-weight: 700;
	line-height: 14px;
	letter-spacing: 2px;
	background-color: #fdd073;
	border-radius: 2px;
	border: none;
	text-transform: uppercase;
	padding: 20px;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	}

body.page-template-template-contact-php #contact-form input[type="submit"]:hover {
	color: #fff;
	background-color: #000;
	cursor: pointer;
	}

body.page-template-template-contact-php #contact-form .contact-name,
body.page-template-template-contact-php #contact-form .contact-email,
body.page-template-template-contact-php #contact-form .contact-phone {
	width: 47%;
	}

body.page-template-template-contact-php #contact-form .contact-message,
body.page-template-template-contact-php #contact-form .contact-submit {
	position: absolute;
	top: 0;
	right: 0;
	width: 47%;
	}

body.page-template-template-contact-php #contact-form .contact-submit {
	top: 228px;
	margin-bottom: 0;
	}

body.page-template-template-contact-php .maps {
	width: 100%;
	height: 350px;
	margin-top: -80px;
	margin-bottom: 50px;
	}

body.page-template-template-contact-php .maps iframe {
	pointer-events: none;
	}

body.page-template-template-contact-php #googlemap {
	width: 100%;
	height: 100%;
	}


/* Single Blog Post */

body.single-post #content {
	margin-bottom: 20px;
	}


/* Page */

body.page #content article {
	margin-bottom: 60px;
	}

body.page .entry-image {
	line-height: 0;
	margin-bottom: 40px;
	}

body.page #content article .entry-content {
	padding-top: 10px;
	}

body.page #sidebar {
	margin-top: 10px;
	}


/* Archives & Search */

body.archive h2.archive-title,
body.search h2.archive-title {
	font-size: 24px;
	margin-bottom: 60px;
	}

body.archive #header-meta .avatar {
	border-radius: 37px;
	width: 75px;
	height: 75px;
	display: block;
	margin: 0 auto 20px auto;
	}


/* 404 */

body.error404 #content {
	text-align: center;
	}

body.error404 span.big {
	font-size: 125px;
	line-height: 125px;
	display: block;
	margin-bottom: 50px;
	}

body.error404 .search-form  {
	display: inline-block;
	margin: 20px 0 35px;
	}


/* Archive Page Template */

body.page-template-template-archives-php .archive-list h4 {
	color: #1c1c1c;
	font-size: 14px;
	font-weight: 800;
	line-height: 14px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 15px;
	}

body.page-template-template-archives-php .archive-list ul {
	color: #CCC;
	margin-bottom: 40px;
	list-style: disc inside;
	margin-left: 8px;
	}


/* Portfolio Archive */

body.page-template-template-portfolio-sortable-php #header-meta {
	margin-bottom: 60px;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter {
	margin-bottom: 60px;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter ul,
body.page-template-template-portfolio-sortable-php .portfolio-filter li {
	display: inline-block;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter li {
	margin-left: 20px;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter i {
	color: #ccc;
	font-size: 15px;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter li.filter-heading {
	color: #333;
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-left: 5px;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter li a {
	font-weight: 700;
	font-size: 17px;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter li a:hover {
	text-decoration: none;
	}

body.page-template-template-portfolio-sortable-php .portfolio-filter li a.active {
	color: #fdd073;
	font-weight: 700;
	}


/* Isotope */

.isotope-item {
  z-index: 2;
  position: relative;
	}

.isotope-hidden.isotope-item {
  pointer-events: none;
  z-index: 1;
	}

.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;
	}

body.page-template-template-portfolio-sortable-php .portfolio-container {
	width: 104.25%;
	overflow: hidden;
	margin-bottom: 50px;
	}

body.page-template-template-portfolio-sortable-php .post {
	width: 30%;
	height: auto;
	margin-right: 3%;
	margin-bottom: 40px !important;
	text-align: center;
	}

body.page-template-template-portfolio-php .post,
body.archive-portfolio .post,
body.single-portfolio #portfolio .post {
	width: 31%;
	height: auto;
	margin-right: 3.5%;
	margin-bottom: 30px !important;
	float: left;
	text-align: center;
	}

body.page-template-template-portfolio-php .last,
body.archive-portfolio .last,
body.single-portfolio #portfolio .last {
	margin-right: 0;
	}

body.page-template-template-portfolio-php .item,
body.page-template-template-portfolio-sortable-php .item,
body.archive-portfolio .item,
body.single-portfolio #portfolio .item,
.mighty_project_widget .item {
	height: 100%;
	width: 100%;
	overflow: hidden;
	line-height: 0;
	}

body.page-template-template-portfolio-php .item a,
body.page-template-template-portfolio-sortable-php .item a,
body.archive-portfolio .item a,
body.single-portfolio #portfolio .item a,
.mighty_project_widget .item a {
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: relative;
	display: block;
	z-index: 100;
	border-bottom: none !important;
	line-height: 0;
	padding-bottom: 0 !important
	}

body.page-template-template-portfolio-php .item img,
body.page-template-template-portfolio-sortable-php .item img,
body.archive-portfolio .item img,
body.single-portfolio #portfolio .item img,
.mighty_project_widget .item img {
	z-index: 101;
	height: auto;
	width: 100%;
	overflow: hidden;
	-webkit-transition: .15s ease-in;
	-moz-transition: .15s ease-in;
	transition: .15s ease-in;
	}

body.page-template-template-portfolio-php .item a:hover img,
body.page-template-template-portfolio-sortable-php .item a:hover img,
body.archive-portfolio .item a:hover img,
body.single-portfolio #portfolio .item a:hover img,
.mighty_project_widget .item a:hover img {
	-webkit-transition: .15s ease-in;
	-moz-transition: .15s ease-in;
	transition: .15s ease-in;
	-moz-transform: scale(1.02);
	-webkit-transform: scale(1.02);
	-o-transform: scale(1.02);
	}

body.page-template-template-portfolio-php .item a .overlay,
body.page-template-template-portfolio-sortable-php .item a .overlay,
body.archive-portfolio .item a .overlay,
body.single-portfolio #portfolio .item a .overlay,
.mighty_project_widget .item a .overlay {
	height: 100%;
	width: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	display: block;
	background: #fdd073;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 102;
	}

body.page-template-template-portfolio-php .item a:hover .overlay,
body.page-template-template-portfolio-sortable-php .item a:hover .overlay,
body.archive-portfolio .item a:hover .overlay,
body.single-portfolio #portfolio .item a:hover .overlay,
.mighty_project_widget .item a:hover .overlay {
	background: #fdd073;
	opacity: 0.75;
	}

body.page-template-template-portfolio-php .item .view,
body.page-template-template-portfolio-sortable-php .item .view,
body.archive-portfolio .item .view,
body.single-portfolio #portfolio .item .view,
.mighty_project_widget .item .view {
	height: 76.6%;
	width: 76.6%;
	padding: 11.6%;
	text-align: left;
	overflow: hidden;
	color: #FFF;
	font-weight: 800;
	font-size: 28px;
	line-height: 38px;
	letter-spacing: 1px;
	text-transform: uppercase;
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.25);
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 103;
	}

body.page-template-template-portfolio-php .item a:hover .view,
body.page-template-template-portfolio-sortable-php .item a:hover .view,
body.archive-portfolio .item a:hover .view,
body.single-portfolio #portfolio .item a:hover .view,
.mighty_project_widget .item a:hover .view {
	opacity: 1;
	}

body.page-template-template-portfolio-php .item .view em,
body.page-template-template-portfolio-sortable-php .item .view em,
body.archive-portfolio .item .view em,
body.single-portfolio #portfolio .item .view em,
.mighty_project_widget .item .view em {
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0;
	text-transform: capitalize;
	opacity: 0.75;
	display: block;
	padding-top: 10px;
	line-height: 21px;
	}


/* Portfolio Single */

body.single-portfolio #content article {
	margin-bottom: 70px;
	}

body.single-portfolio .flexslider { 
	margin: 0;
	}

body.single-portfolio .flex-direction-nav {
	width: 100%;
	top: 44%;
	}

body.single-portfolio .flex-direction-nav a {
	color: #242424;
	background-color: #fff;
	font-size: 58px;
	line-height: 54px;
	letter-spacing: 0;
	padding: 10px 20px;
	-webkit-transition: .15s ease-in;
	-moz-transition: .15s ease-in;
	transition: .15s ease-in;
	}

body.single-portfolio .flex-direction-nav a:hover {
	color: #fff;
	background-color: #242424;
	}

body.single-portfolio .flex-direction-nav .flex-prev {
	padding-left: 14px;
	}

body.single-portfolio .flex-direction-nav .flex-next {
	padding-right: 14px;
	}

body.single-portfolio .entry-image {
	margin-bottom: 60px;
	line-height: 0;
	}

body.single-portfolio .entry-image img {
	width: 100% !important;
	height: auto;
	}

body.single-portfolio .portfolio-meta {
	float: left;
	width: 24.5%;
	background: #f1efe9;
	border-radius: 3px;
	padding: 3%;
	margin-right: 40px;
	}

body.single-portfolio .portfolio-meta p {
	font-weight: 800;
	font-size: 13px;
	color: #303030;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin-bottom: 25px;
	}

body.single-portfolio .portfolio-meta p:last-child {
	margin-bottom: 10px;
	}

body.single-portfolio .portfolio-meta p span {
	font-size: 16px;
	font-style: italic;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 23px;
	letter-spacing: 0;
	color: #777;
	display: block;
	}

body.single-portfolio .portfolio-meta p a {
	font-weight: normal;
	color: #777;
	}

body.single-portfolio .portfolio-meta p a.btn {
	text-transform: capitalize;
	letter-spacing: 0;
	padding: 14px 15px 16px;
	margin-top: 5px;
	font-weight: bold;
	color: #303030;
	}

body.single-portfolio .portfolio-meta p a.btn:hover {
	background: #FFF;
	color: #fdd073;
	border-bottom: 0px !important;
	}

body.single-portfolio .entry-content,
body.single-portfolio .entry-header {
	float: right;
	width: 65%;
	}

/* Portfolio Single > Other Projects */

body.single-portfolio #portfolio {
	background-color: #f1efe9;
	padding: 60px 0 50px;
	}

body.single-portfolio #portfolio h1 {
	color: #1c1c1c;
	font-size: 24px;
	font-weight: 900;
	line-height: 32px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 60px;
	}



/*-------------------------------------
   6. FOOTER
-------------------------------------*/

#footer {
	font-size: 16px;
	font-weight: 400;
	line-height: 16px;
	padding: 50px 0;
	}

#footer a {
	font-weight: 700;
	}


/* Copyright */

#footer .copyright {
	font-style: italic;
	}

#footer .copyright a {
	font-style: normal;
	margin: 0 3px;
	}


/* Links */

#footer nav {
	float: right;
	}

#footer nav ul {
	float: left;
	}

#footer nav li {
	float: left;
	margin-left: 35px;
	}

#footer nav li:first-child {
	margin-left: 0;
	}


/* Social */

#footer li.twitter {
	background: url(images/social-twitter.svg) no-repeat top left;
	padding-left: 24px;
	}

#footer li.facebook {
	background: url(images/social-facebook.svg) no-repeat top left;
	padding-left: 24px;
	}

#footer li.dribbble {
	background: url(images/social-dribbble.svg) no-repeat top left;
	padding-left: 24px;
	}

#footer li.instagram {
	background: url(images/social-instagram.svg) no-repeat top left;
	padding-left: 24px;
	}

#footer li.linkedin {
	background: url(images/social-linkedin.svg) no-repeat top left;
	padding-left: 24px;
	}

#footer li.pinterest {
	background: url(images/social-pinterest.svg) no-repeat top left;
	padding-left: 24px;
	}

#footer li.vimeo {
	background: url(images/social-vimeo.svg) no-repeat top left;
	padding-left: 24px;
	}



/*-------------------------------------
   7. BROWSERS & MISC
-------------------------------------*/

/* Firefox */

@-moz-document url-prefix() {

	hr {
		height: 5px;
		}

	.search-form .search-input {
		padding: 10px 5px;
		width: 200px;
		}

	#content article.format-quote .entry-title cite {
	    font-weight: 400;
		}

	.flex-direction-nav a {
	    padding: 10px 15px 15px;
		}

}

/* Misc */

a.mighty-button {
	border-bottom: none;
	}
