/*
Theme Name: Artist Lite
Theme URI: http://artisttheme.com
Author: Metrocraft
Author URI: http://metrocraft.com
Description: The ultimate WordPress theme for artists. Includes a Jetpack-powered portfolio template to keep your content portable between other themes.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: artist
Tags: light, one-column, fluid-layout, responsive-layout, custom-background, custom-header, custom-menu, threaded-comments

*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Reset
2.0 Typography
3.0 Elements
4.0 Forms
5.0 Navigation
	5.1 Links
	5.2 Menus
6.0 Accessibility
7.0 Alignments
8.0 Clearings
9.0 Widgets
10.0 Content
	10.1 Posts and pages
	10.2 Asides
	10.3 Comments
11.0 Infinite scroll
12.0 Media
	12.1 Captions
	12.2 Galleries
13.0 Structure
14.0 Header
15.0 Content
	15.1 Portfolio
16.0 Media Queries

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

/*--------------------------------------------------------------
1.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, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}

html {
	font-size: 62.5%; /* Corrects text resizing oddly in IE6/7 when body font-size is set using em units http://clagnut.com/blog/348/#c790 */
	overflow-y: scroll; /* Keeps page centered in all browsers regardless of content height */
	-webkit-text-size-adjust: 100%; /* Prevents iOS text size adjust after orientation change, without disabling user zoom */
	-ms-text-size-adjust:     100%; /* www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
	box-sizing: border-box; /* Apply a natural box layout model to the document; see http://www.paulirish.com/2012/box-sizing-border-box-ftw/ */
}
*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
nav,
section {
	display: block;
}

ol,
ul {
	list-style: none;
}

table { /* tables still need 'cellspacing="0"' in the markup */
	border-collapse: separate;
	border-spacing: 0;
}

caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

a img {
	border: 0;
}

/*--------------------------------------------------------------
2.0 Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #404040;
	font-family: 'Arvo', serif;
	font-size: 16px;
	font-size: 1.6rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6,
.entry-meta {
	clear: both;
	font-family: 'Cantarell', sans-serif;
	text-transform: uppercase;
}

h1 {
	font-size: 48px;
	font-size: 4.8rem;
}

h2 {
	font-size: 42px;
	font-size: 4.2rem;
}

h3 {
	font-size: 36px;
	font-size: 3.6rem;
}

h4 {
	font-size: 30px;
	font-size: 3rem;
}

h5 {
	font-size: 24px;
	font-size: 2.4rem;
}

h6 {
	font-size: 18px;
	font-size: 1.8rem;
}

p {
	margin-bottom: 1.5em;
}

b,
strong {
	font-weight: bold;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	border-left: .5em solid #D34A27;
	padding: 0 1.5em;
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 1.5rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 1.5rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

sup,
sub {
	font-size: 75%;
	height: 0;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	bottom: 1ex;
}

sub {
	top: .5ex;
}

small {
	font-size: 75%;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
3.0 Elements
--------------------------------------------------------------*/
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: square;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
	margin-top: 1em;
}

li {
	margin-bottom: 1em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

figure {
	margin: 0;
}

table {
	border-collapse: collapse;
	margin: 0 0 1.5em;
	width: 100%;
}

th {
	font-weight: bold;
}

th,
td {
	border: 1px solid #000;
	padding: .5em;
}

thead {
	background: #D34A27;
	color: #fff;
}

tbody tr:nth-child(even) {
	background: #eee;
}



/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
button,
input,
select,
textarea {
	font-size: 100%; /* Corrects font size not being inherited in all browsers */
	margin: 0; /* Addresses margins set differently in IE6/7, F3/4, S5, Chrome */
	vertical-align: baseline; /* Improves appearance and consistency in all browsers */
}

button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	cursor: pointer; /* Improves usability and consistency of cursor style between image-type 'input' and others */
	-webkit-appearance: button; /* Corrects inability to style clickable 'input' types in iOS */
	font-size: 12px;
	font-size: 1.2rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Addresses excess padding in IE8/9 */
}

input[type="search"] {
	-webkit-appearance: textfield; /* Addresses appearance set to searchfield in S5, Chrome */
	box-sizing: content-box;
}

input[type="search"]::-webkit-search-decoration { /* Corrects inner padding displayed oddly in S5, Chrome on OSX */
	-webkit-appearance: none;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"] {
	padding: 3px;
}

textarea {
	overflow: auto; /* Removes default vertical scrollbar in IE6/7/8/9 */
	padding-left: 3px;
	vertical-align: top; /* Improves readability and alignment in all browsers */
	width: 100%;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
5.1 Links
--------------------------------------------------------------*/
a {
	color: #d34a27;
	text-decoration: none;
	transition: .5s all;
}

a:hover,
a:focus,
a:active {
	color: #000;
}

/*--------------------------------------------------------------
5.2 Menus
--------------------------------------------------------------*/

.main-navigation ul {
	font-size: 24px;
	font-size: 2.4em;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a {
}

.main-navigation ul ul :hover > a {
}

.main-navigation ul ul a:hover {
}

.main-navigation ul li:hover > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a {
}

.menu-toggle,
.main-navigation.toggled .nav-menu {
	display: block;
}

.main-navigation ul {
	display: none;
}

.site-main .comment-navigation,
.site-main .paging-navigation,
.site-main .post-navigation {
	margin: 2em 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.paging-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.paging-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
6.0 Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:hover,
.screen-reader-text:active,
.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 1.4rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar */
}

/*--------------------------------------------------------------
7.0 Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

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

/*--------------------------------------------------------------
8.0 Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.portfolio-category:before,
.portfolio-category:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.gallery:before,
.gallery:after {
	content: "";
	display: table;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.portfolio-category:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.gallery:after {
	clear: both;
}

/*--------------------------------------------------------------
9.0 Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets */
.widget select {
	max-width: 100%;
}

/* Search widget */
.widget_search .search-submit {
	display: none;
}

/*--------------------------------------------------------------
10.0 Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
10.1 Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
10.2 Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
10.3 Comments
--------------------------------------------------------------*/
.comments-area {
	margin-top: 2em;
}

.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

.comment-list {
	margin: 0;
	list-style: none;
}

.comment-list .children {
	list-style: none;
}

.comment-list .avatar {
	float: left;
	margin-right: 1em;
}

.comment-author {
	margin-bottom: .4em;
}

.comment-reply-link {
	background: #D34A27;
	color: #fff;
	font-size: .8em;
	padding: .5em;
}

.comments-title {
	margin-bottom: 1em;
}

.comments-title .genericon-comment:before {
	font-size: 4em;
}

.comment-form label {
	display: block;
}

/*--------------------------------------------------------------
11.0 Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .paging-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
12.0 Media
--------------------------------------------------------------*/
.page-content img.wp-smiley,
.entry-content img.wp-smiley,
.comment-content img.wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
12.1 Captions
--------------------------------------------------------------*/
.wp-caption {
	border: 3px solid #d34a27;
	margin-bottom: 1.5em;
	max-width: 100%;
	overflow: hidden;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin: 0 auto;
}

.wp-caption-text {
	text-align: center;
}

.wp-caption .wp-caption-text {
	background: #d34a27;
	color: #fff;
	font-size: .8em;
	padding: 0.8075em 0;
}

.wp-caption-text a {
	border-bottom: 1px solid white;
	color: #fff;
	transition: .5s border-bottom;
}

.wp-caption-text a:hover {
	border-bottom: 1px solid #d34a27;
}

/*--------------------------------------------------------------
12.2 Galleries
--------------------------------------------------------------*/

.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	float: left;
	margin: 0 4px 4px 0;
	overflow: hidden;
	position: relative;
}

.gallery-columns-1 .gallery-item {
	max-width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 48%;
	max-width: -webkit-calc(50% - 4px);
	max-width:         calc(50% - 4px);
}

.gallery-columns-3 .gallery-item {
	max-width: 32%;
	max-width: -webkit-calc(33.3% - 4px);
	max-width:         calc(33.3% - 4px);
}

.gallery-columns-4 .gallery-item {
	max-width: 23%;
	max-width: -webkit-calc(25% - 4px);
	max-width:         calc(25% - 4px);
}

.gallery-columns-5 .gallery-item {
	max-width: 19%;
	max-width: -webkit-calc(20% - 4px);
	max-width:         calc(20% - 4px);
}

.gallery-columns-6 .gallery-item {
	max-width: 15%;
	max-width: -webkit-calc(16.7% - 4px);
	max-width:         calc(16.7% - 4px);
}

.gallery-columns-7 .gallery-item {
	max-width: 13%;
	max-width: -webkit-calc(14.28% - 4px);
	max-width:         calc(14.28% - 4px);
}

.gallery-columns-8 .gallery-item {
	max-width: 11%;
	max-width: -webkit-calc(12.5% - 4px);
	max-width:         calc(12.5% - 4px);
}

.gallery-columns-9 .gallery-item {
	max-width: 9%;
	max-width: -webkit-calc(11.1% - 4px);
	max-width:         calc(11.1% - 4px);
}

.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
	margin-right: 0;
}

.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
	clear: left;
}

.gallery-caption {
	background-color: rgba(0, 0, 0, 0.7);
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
	max-height: 50%;
	opacity: 0;
	padding: 6px 8px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	width: 100%;
}

.gallery-caption:before {
	content: "";
	height: 100%;
	min-height: 49px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.gallery-item:hover .gallery-caption {
	opacity: 1;
}

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
	display: none;
}

/*--------------------------------------------------------------
13.0 Structure
--------------------------------------------------------------*/

.site-header,
.hentry,
.navigation,
.widget-area,
.site-header,
.comments-area,
.portfolio-area,
.error404 #content,
.archive .page-header,
.search .page-header {
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 4em;
	padding-right: 4em;
}

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

.site-header {
	padding-top: 2em;
	padding-bottom: 2em;
	position: relative;
}

.site-branding {
	display: inline-block;
	max-width: 75%;
}

.site-title {
	font-size: 36px;
	font-size: 3.6rem;
	text-transform: uppercase;
}

.site-title a {
	/*
	background-image: url('images/logo.png');
	background-position: top center;
	background-repeat: no-repeat;
	background-size: 48.5px 49px;
	padding-top: 49px;
	*/
	color: #000;
	display: inline-block;
	text-decoration: none;
}

.site-description {
	font-size: 12px;
	font-size: 1.2rem;
}

.menu-toggle {
	background: none;
	border: none;
	box-shadow: none;
	margin-top: -27px;
	position: absolute;
	top: 50%;
	right: 4em;
}

.menu-toggle:before {
	font-size: 36px;
	font-size: 3.6rem;
}

.toggled .menu-toggle:before {
	content: "\f406";
}

.toggled .menu-toggle {
	position: fixed;
	top: 6em;
}

.main-navigation.toggled {
	background: rgba(255,255,255,.95);
	height: 100%;
	width: 100%;
	overflow: scroll;
	padding-top: 10em;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.menu {
	text-align: center;
}

.header-image {
	background-attachment: fixed;
	margin-bottom: 2em;
}

/*--------------------------------------------------------------
15.0 Content
--------------------------------------------------------------*/

.hentry {
	border-bottom: 3px solid #d34a27;
	padding-bottom: 3em;
}

.archive .page-title,
.search .page-title {
	border-bottom: 3px solid #d34a27;
	display: inline-block;
	font-size: 24px;
	font-size: 2.4rem;
	margin-bottom: 1em;
}

.entry-title {
	font-size: 60px;
	font-size: 6rem;
	text-transform: uppercase;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

.entry-title a {
	color: #000;
	text-decoration: none;
	transition: .5s all;
}

.entry-title a:hover {
	color: #d34a27;
}

.entry-meta {
	font-size: 24px;
	font-size: 2.4rem;
	text-transform: uppercase;
}

.entry-meta a {
	border-bottom: 1px dotted #000;
	color: #000;
	text-decoration: none;
	transition: .5s all;
}

.entry-meta a:hover {
	border-bottom: 1px dotted #fff;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
	margin-bottom: .25em;
}


.entry-footer .genericon {
	font-size: 24px;
	font-size: 2.4rem;
	padding-right: .2em;
}

.cat-links,
.tags-links,
.comments-link,
.edit-link {
	display: block;
	padding-bottom: .5em;
}

.entry-footer span:last-child {
	padding-bottom: 0;
}

.page-template-template-home-php .hentry {
	border-bottom: 0;
	padding-bottom: 0;
}

.site-main .header-image {
	height: 250px;
	background-size: cover;
}

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

.portfolio-category-title {
	background: #D34A27;
	color: #fff;
	font-size: 18px;
	font-size: 1.8rem;
	padding: .5em;
}

.portfolio-category-title a {
	color: #fff;
	display: block;
}

.portfolio-category-title a:after {
	content: "\2192";
	color: #D34A27;
	padding-left: .5em;
	transition: .5s color;
}

.portfolio-category-title a:hover:after {
	color: #fff;
}

.portfolio-item {
	float: left;
	font-size: 0;
	overflow: hidden;
	position: relative;
	width: 33.33%;
}

.portfolio-title {
	color: #fff;
	font-size: 18px;
	font-size: 1.8rem;
	position: absolute;
	text-align: center;
	top: 150%;
	transition: .5s all;
	transform: translateY(-50%);
	width: 100%;
}

.portfolio-item a:hover .portfolio-title {
	top: 50%;
	background: rgba(0,0,0,.5);
	height: 100%;
	padding-top: 50%;
}

.portfolio-item .wp-post-image {
	transition: .5s all;
}

.portfolio-item a:hover .wp-post-image {
	transform: scale(1.1) rotate(5deg);
}

/*--------------------------------------------------------------
16.0 Widget Area
--------------------------------------------------------------*/

.widget-area {
	margin-top: 2em;
	text-align: center;
}

.widget-title {
	font-size: 16px;
	font-size: 1.6rem;
	margin-bottom: 1em;
}

.widget ul {
	list-style: none;
	margin: 0;
}

.widget li {
	margin-bottom: .5em;
}

.widget-area-toggle {
	color: #d34a27;
	margin-top: 2em;
	text-align: center;
}

.widget-area {
	display: none;
}

.widget-area-toggle .genericon {
	cursor: pointer;
	font-size: 2em;
}

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

.site-info {
	text-align: center;
	padding: 5em 0;
}

#back-to-top {
	color: #d34a27;
	content: "hi";
	cursor: pointer;
	display: none;
	font-size: 2em;
	position: fixed;
	bottom: 1em; right: .5em;
}

/*--------------------------------------------------------------
18.0 Media Queries
--------------------------------------------------------------*/

@media (max-width: 768px) {
	.site-header,
	.hentry,
	.navigation,
	.widget-area,
	.site-header,
	.comments-area,
	.portfolio-area,
	.error404 #content,
	.archive .page-header,
	.search .page-header {
		padding-left: 2em;
		padding-right: 2em;
	}

	.menu-toggle {
		right: 2em;
	}

	#back-to-top {
		display: none !important;
	}

	.site-info .sep {
		visibility: hidden;
		display: block;
	}

}

@media (max-width: 480px) {

	.site-header,
	.hentry,
	.navigation,
	.widget-area,
	.site-header,
	.comments-area,
	.portfolio-area,
	.error404 #content,
	.archive .page-header,
	.search .page-header {
		padding-left: 1em;
		padding-right: 1em;
	}

	.menu-toggle {
		right: 1em;
	}

	.site-title {
		font-size: 24px;
		font-size: 2.4rem;
	}

	.entry-title {
		font-size: 36px;
		font-size: 3.6rem;
	}

	.entry-meta {
		font-size: 14px;
		font-size: 1.4rem;
	}

	.menu-toggle:before {
		font-size: 24px;
		font-size: 2.4rem;
	}

	h1 {
		font-size: 36px;
		font-size: 3.6rem;
	}

	h2 {
		font-size: 30px;
		font-size: 3rem;
	}

	h3 {
		font-size: 24px;
		font-size: 2.4rem;
	}

	h4 {
		font-size: 20px;
		font-size: 2rem;
	}

	h5 {
		font-size: 18px;
		font-size: 1.8rem;
	}

	h6 {
		font-size: 16x;
		font-size: 1.6rem;
	}

	.portfolio-item {
		float: none;
		width: 100%;
	}

}
