/*
Theme Name: Themify Peak
Theme URI: https://themify.me/themes/peak
Version: 1.0.9
Description: Created by <a href="http://www.themify.me">Themify</a>.
Author: Themify
Author URI: http://www.themify.me
License: GNU General Public License v2.0
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Copyright: (c) Themify.
Tags: themify, featured-images, translation-ready, custom-menu, sidebar

---------

DO NOT EDIT THIS FILE.

If you need to override theme styling, please add custom CSS in Appearance > Customize > Custom CSS or a child theme (https://themify.me/docs/child-theme).
*/

/*----------------------------------------------------------------------------------
TABLE OF CONTENT

1.  Reset
2.  General Styling (default font, color, lists, headings, form elements, etc.)
3.  Structure (page width & layout containers)
4.  Grid (column width)
5.  Header (logo, tagline, social widget, search form, main menu)
6.  Page (page title, author page, pagination)
7.  Post (post layouts & styling, comments, post navigation)
    7.1 Portfolio Post Type
    7.2 Team Post Type
8.  Sidebar
    8.1 Widget Styles
9.  Footer
10. Builder Styling
11. WordPress Formatting
12. Gallery
13. Clear & Alignment
14. Image Filter
15. WooCommerce

----*/

/************************************************************************************
1. RESET
*************************************************************************************/
html, body, address, blockquote, div, dl, form, h1, h2, h3, h4, h5, h6, ol, p, pre, table, ul,
dd, dt, li, tbody, td, tfoot, th, thead, tr, button, del, ins, map, object,
a, abbr, acronym, b, bdo, big, br, cite, code, dfn, em, i, img, kbd, q, samp, small, span,
strong, sub, sup, tt, var, legend, fieldset, figure {
	margin: 0;
	padding: 0;
}

img, fieldset {
	border: 0;
}

/* set img max-width */
img {
	max-width: 100%;
	height: auto;
}
/* ie 8 img max-width */
.ie8 img { width: auto;}

/* set html5 elements to block */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { 
    display: block;
}

/* audio */
audio {
	max-width: 100%;
}

/* iframes and objects max-width (for embed media) */
iframe, object, embed {
	max-width: 100%;
}

/************************************************************************************
2. GENERAL STYLING
*************************************************************************************/
body {
	font: 1.125em/1.5em 'Yantramanav', sans-serif;
	word-wrap: break-word;
	color: #414446;
	letter-spacing: -0.008em;
 	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	background-color: #fff;
}
a {
	text-decoration: none;
	outline: none;
	color: #0f70e8;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
p {
	padding: 0;
	margin: 0 0 1.65em;
}
small {
	font-size: 87%;
}
blockquote {
	font-size: 1.2em;
	line-height: 1.4em;
	padding: .8em 2em 1em;
	margin: 0 0 1.2em;
	position: relative;
}
blockquote:before {
	content: '\201C';
	font-size: 3.3em;
	position: absolute;
	margin-left: -.5em;
	margin-top: .2em;
}
ins {
	text-decoration: none;
}

/* LIST
================================================ */
ul, ol {
	margin: 0 0 1.4em 1.6em;
	padding: 0;
}
li {
	margin: 0 0 1em 0;
	padding: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
	margin-top: 1em;
}

/* HEADINGS
================================================ */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.4em;
	margin: 0 0 0.7em;
	word-wrap: normal;
	font-weight: 500;
	color: #000;
}
h1 {
	font-size: 2.6em;
	font-family: 'Suranna', serif;
	letter-spacing: -0.005em;
	line-height: 1em;
	margin: 0 0 0.7em;
}
h2 {
	font-size: 2.15em;
	font-family: 'Suranna', serif;
	letter-spacing: 0.015em;
	margin: 0 0 0.4em;
}
h3 {
	font-size: 1.8em;
}
h4 {
	font-size: 1.6em;
}
h5 {
	font-size: 1.3em;
}
h6 {
	font-size: 1.1em;
}

/* FORM
================================================ */
/* form input */
input, textarea, select, input[type=search], button {
	font-size: 100%;
	font-family: inherit;
	max-width: 100%;
}
textarea, input[type=text], input[type=password], input[type=search], input[type=email], input[type=url], input[type=number], input[type=tel], input[type=date], input[type=datetime], input[type=datetime-local], input[type=month], input[type=time], input[type=week] {
	background-color: #fff;
	border: none;
	border: 1px solid #c9caca;
	border-radius: 2px;
	padding: .5em;
	margin: .4em 0;
	max-width: 100%;
	-webkit-appearance: none;
	-webkit-transition: all .7s ease-in-out;
	-moz-transition: all .7s ease-in-out;
	transition: all .7s ease-in-out;
}
input[type=text], input[type=password], input[type=search], input[type=email], input[type=url], input[type=tel] {
	width: 15em;
}
input[type=number] {
	width: 7em;
}

/* text area */
textarea {
	width: 100%;
	min-height: 8em;
	border: 1px solid #c9caca;
	background-color: #fff;
}

/* form input:focus */
textarea:focus, input[type=text]:focus, input[type=password]:focus, input[type=search]:focus, input[type=email]:focus, input[type=url]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=date]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=month]:focus, input[type=time]:focus, input[type=week]:focus {
	outline: none;
	box-shadow: 0px 1px 5px rgba(0,0,0,0.1);
}

/* form button */
input[type=reset], input[type=submit], button {
	background-color: #0F70E8;
	border: none;
	box-shadow: inset 0px 0px 1px rgba(0,0,0,0.8);
	color: #fff;
	cursor: pointer;
	font-size: 0.8em;
	letter-spacing: 0.05em;
	padding: 12px 27px;
	margin-top: 5px;
	text-transform: uppercase;
	-webkit-transition: all 0.7s ease;
	-moz-transition: all 0.7s ease;
	transition: all 0.7s ease;
	-webkit-appearance: none;
}

/* form input:hover */
input[type=reset]:hover, input[type=submit]:hover, button:hover {
	box-shadow: 0px 2px 5px rgba(0,0,0,0.1);
}

/************************************************************************************
3. STRUCTURE
*************************************************************************************/
/* set general layout containers box-sizing */
img, textarea, input, #pagewrap, .pagewidth, #headerwrap, #header, #main-nav, #body, #layout, #content, .post, .author-box, .post-nav, .pagenav, #sidebar, .widget, #footerwrap, #footer, .col4-1, .col4-2, .col4-3, .col3-1, .col3-2, .col2-1 {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

/* main page width */
.pagewidth,
.full_width .themify_builder_row .row_inner {
	width: 1160px;
	max-width: 100%;
	margin: 0 auto;
}

/* body (middle container) */
#body {
	max-width: 100%;
	clear: both;
}

/* admin-bar */
.admin-bar #headerwrap,
.admin-bar #headerwrap.fixed-header {
	top: 32px;
}

/* content */
#content {
	width: 75%;
	float: left;
	padding: 6.5% 0;
}
.sidebar-none #content {
	width: 100%;
	float: none;
}

/* sidebar */
#sidebar {
	width: 17.5%;
	float: right;
	padding: 6.5% 0;
	line-height: 1.35em;
}
#sidebar .secondary {
	width: 47%;
}

/* full_width content */
.full_width #layout {
	width: 100%;
	max-width: 100%;
}
.full_width #content {
	padding: 0;
	width: auto;
	max-width: 100%;
	float: none;
}
.full_width #sidebar {
	width: auto;
	float: none;
}

/* sidebar left */
.sidebar-left #content {
	float: right;
}
.sidebar-left #sidebar {
	float: left;
}

/************************************************************************************
4. GRID
*************************************************************************************/
.col4-1,
.col4-2,
.col4-3,
.col3-1,
.col3-2,
.col2-1 {
	margin-left: 3.2%;
	float: left;
}
.col4-1 {
	width: 22.6%;
}
.col4-2, .col2-1 {
	width: 48.4%;
}
.col4-3 {
	width: 74.2%;
}
.col3-1 {
	width: 31.2%;
}
.col3-2 {
	width: 65.6%;
}
.col.first,
.col4-1.first,
.col4-2.first,
.col4-3.first,
.col3-1.first,
.col3-2.first,
.col2-1.first {
	margin-left: 0;
	clear: left;
}

/************************************************************************************
5. HEADER
*************************************************************************************/
#headerwrap {
	background-color: rgba(255,255,255,0.9);
	border-bottom: 1px solid #c6c7c7;
	-webkit-box-shadow: 0px 6px 10px rgba(0,0,0,.14);
	-moz-box-shadow: 0px 6px 10px rgba(0,0,0,.14);
	box-shadow: 0px 6px 10px rgba(0,0,0,.14);
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 99
}
#header {
	position: relative;
	width: auto;
	max-width: 96%;
}
#header a:hover {
	color: #0f70e8;
}

/* 
SITE LOGO
================================================ */
#site-logo {
	font-family: 'Suranna', serif;
	float: left;
	font-size: 2.6em;
	font-weight: 400;
	line-height: 1em;
	letter-spacing: -0.03em;
	margin: 0.4em 0.55em 0.25em 0;
	padding: 0;
	border: none;
}
#site-logo a {
	text-decoration: none;
}

/* 
SITE DESCRIPTION
================================================ */
#site-description {
	background-color: #0f70e8;
	border-left: 1px solid #c5c5c5;
	color: #fff;
	display: inline-block;
	font-family: 'Suranna', serif;
	font-style: italic;
	font-size: 0.7em;
	margin: 0;
	padding: 0.625em;
	line-height: 100%;
	letter-spacing: 0.06em;
	position: absolute;
	top: 50%;
	z-index: 1;
	opacity: 0;
	width: 0;
	height: 0;
	overflow: hidden;
	-webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	transition: all 0.2s ease;
	-webkit-transform: translate(50%, -50%);
	-moz-transform: translate(50%, -50%);
	transform: translate(50%, -50%);
}
#site-description:before {
	content: '';
	border: 10px solid transparent;
	position: absolute;
	right: 100%;
	border-right-color: #0F70E8;
	top: 50%;
	margin-top: -10px;
}
#site-logo:hover + #site-description {
	height: auto;
	width: auto;	
	opacity: 1;
	width: auto;
	height: auto;
	overflow: inherit;
	-webkit-transform: translate(0, -50%);
	-moz-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

/* 
SOCIAL WIDGET
================================================ */
.social-widget {
	float: right;
	margin: 1.7em 0 1.2em;
	margin-right: 100px;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}
.social-widget a {
	text-decoration: none;
}
.social-widget a:hover {
	text-decoration: none;
}
.social-widget .widget {
	display: inline-block;
	vertical-align: middle;
	margin: 0 2px 0 0;
	padding: 0;
	background: none;
	border: none;
	
	border-radius: 0;
	box-shadow: none;
}
.social-widget .widget div {
	display: inline;
}
.social-widget .widgettitle {
	width: auto;
	font-weight: bold;
	font-size: 100%;
	font-family: inherit;
	text-transform: none;
	letter-spacing: 0;
	position: static;
	display: inline-block;
	vertical-align: middle;
	margin: 0 .5em 0 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	box-shadow: none;
}
.social-widget ul {
	margin: 6px 0 0 !important;
	padding: 0;
	display: inline;
}
.social-widget ul li {
	padding: 0 2px 5px 0;
	margin: 0;
	display: inline-block;
	border: none !important;
	clear: none;
	line-height: 100%;
}
.social-widget li img {
	vertical-align: middle;
	margin-top: -3px;
}
.social-widget ul li a {
	color: #878a8c;
	padding: 0 0.15em;
}

/* rss */
.social-widget div.rss {
	display: inline-block;
	vertical-align: middle;
	margin-left: 3px;
}
.social-widget div.rss a {
	color: #878a8c;
    display: inline-block;
}
.social-widget .rss a:before {
    content: "\f09e"; 
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: inherit;
    font-size: 20px;
}

#headerwrap .social-widget .widgettitle {
	display: none;
}

/* 
SEARCH FORM
================================================ */
#searchform-wrap {
	position: relative;
	margin-right: 2.8em;
}
#headerwrap #searchform {
	float: right;
	padding: 1.65em 1px 1.7em;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	transition: all .3s ease;
}
#headerwrap #searchform #s {
	width: 87px;
	background-color: #f7f7f7;
	border: 1px solid #d2d2d2;
	color: #ccc;
	font-size: 0.9em;
	margin: 0;
	padding: 5px 25px 4px 10px;
	-webkit-transition: width .7s ease;
	-moz-transition: width .7s ease;
	transition: width .7s ease;
	position: absolute;
	right: 0;
}
#headerwrap #searchform #s:focus,
#headerwrap #searchform #s:hover,
#headerwrap #searchform .icon-search:hover + #s {
	width: 180px;
	color: #000;
}
#headerwrap #searchform .icon-search:before {
	content: "\f002";
	font-family: FontAwesome;
	color: #878a8c;
	font-size: 0.8em;
	font-style: normal;
	position: absolute;
	right: 6px;
	z-index: 1;
	padding: 2px;
}
#headerwrap .slideout-widgets #searchform {
	float: none;
	position: relative;
}
#headerwrap .slideout-widgets #searchform #s {
	position: relative;
	width: 100%;
}
#headerwrap .slideout-widgets #searchform #s:focus,
#headerwrap .slideout-widgets #searchform #s:hover,
#headerwrap .slideout-widgets #searchform .icon-search:hover + #s {
	width: 100%;
}

/* 
MAIN NAVIGATION
================================================ */
#main-nav {
	margin: 0;
	padding: 0;
	float: left;
	font-size: 0.9em;
}
#main-nav li {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	display: block;
	float: left;
}

/* dropdown icon */
#main-nav .menu-item-has-children > a {
	position: relative;
	padding-right: 2em;
}
#main-nav .menu-item-has-children > a:after,
#main-nav ul .menu-item-has-children > a:after {
	content: '\e64b';
	font-family: themify;
	font-size: 0.65em;
	display: inline-block;
	position: absolute;
	top: 52%;
	right: 1em;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}
#main-nav ul .menu-item-has-children > a:after {
	content: '\e649';
}

/* main level link */
#main-nav a {
	color: #5a5e61;
	display: inline-block;
	font-weight: 500;
	padding: 0.65em 1.33em 0.35em;
	margin: 1.55em 0;
	line-height: 1.25em;
	text-decoration: none;
	text-transform: uppercase;
	border-left: 1px solid rgba(197,197,197,.5);
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
#main-nav li:last-child > a {
	border-right: 1px solid #c5c5c5;
}
/* main level link :hover */
#main-nav a:hover {
	color: #0f70e8;
}

/* current link & link :hover */
#main-nav .current_page_item > a, 
#main-nav .current-menu-item > a,
#main-nav .current_page_item a:hover, 
#main-nav .current-menu-item a:hover {
	color: #0f70e8;
}

/* sub-levels link */
#main-nav ul a {
	font-size: 1.1em;
	font-weight: 400;
	display: block;
	text-transform: none;
	line-height: 1.5em;
	padding: 0.6em 0.8em 0.4em 0;
	margin: 0;
	border: none;
	border-bottom: 1px solid #e2e2e2;
	box-sizing:  border-box;
}
#main-nav ul li:last-child > a {
	border: none;
}

/* dropdown ul */
#main-nav ul {
	margin: 0;
	padding: 0.45em 0;
	list-style: none;
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0,0,0,.13), inset 0 16px 9px -13px rgba(0,0,0,0.13);
	position: absolute;
	z-index: 100;
	opacity: 0;
	-webkit-transform: scale(1,0);
	-moz-transform: scale(1,0);
	transform: scale(1,0);
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	transform-origin: top;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	width: 240px;
}
#main-nav ul li {
	background: none;
	padding: 0 1.15em;
	margin: 0;
	float: none;
}
/* sub-levels dropdown */
#main-nav ul ul {
	left: 100%;
	top: 0;
	box-shadow: 0 4px 8px rgba(0,0,0,.13);
}

/* show dropdown ul */
.no-touch #main-nav li:hover > ul {
	display: block;
	opacity: 1;
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	transform: scale(1,1);
}
.touch #main-nav .menu-item-has-children > a:after,
.touch #main-nav ul .menu-item-has-children > a:after {
	display: none;
}
.touch #main-nav .dropdown-open > .sub-menu {
	opacity: 1;
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}
#main-nav .has-mega-column > .sub-menu .sub-arrow,
#mobile-menu .sub-arrow {
	display: none;
}

/* Edge Menu */
#main-nav li.edge > ul {
	left: auto;
    right: 0;
}
#main-nav ul li.edge > ul {
	left: auto;
    right: 100%;
}

#main-nav ul .menu-item-has-children.edge > a:after {
	right: auto;
	left: 0px;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	transform: rotate(180deg);
}

/* mega menu */
#main-nav li:not(.has-mega-column).dropdown-columns-2 > .sub-menu {
	width: 480px;
}
#main-nav li:not(.has-mega-column).dropdown-columns-3 > .sub-menu {
	width: 720px;
}
#main-nav li:not(.has-mega-column).dropdown-columns-4 > .sub-menu {
	width: 960px;
}
#main-nav li:not(.has-mega-column).dropdown-columns-2 > .sub-menu > li,
#main-nav li:not(.has-mega-column).dropdown-columns-3 > .sub-menu > li,
#main-nav li:not(.has-mega-column).dropdown-columns-4 > .sub-menu > li {
	float: left;
	width: 50%;
	box-sizing: border-box;
}
#main-nav li:not(.has-mega-column).dropdown-columns-3 > .sub-menu > li {
	width: 33.32%;
}
#main-nav li:not(.has-mega-column).dropdown-columns-4 > .sub-menu > li {
	width: 25%;
}
#main-nav li:not(.has-mega-column).dropdown-columns-2 > .sub-menu > li:nth-child(2n+1),
#main-nav li:not(.has-mega-column).dropdown-columns-3 > .sub-menu > li:nth-child(3n+1),
#main-nav li:not(.has-mega-column).dropdown-columns-4 > .sub-menu > li:nth-child(4n+1) {
	clear: left;
}

#main-nav .has-mega-sub-menu,
#main-nav .has-mega-column,
#main-nav .has-mega-column ul {
	position: static;
}
#main-nav .has-mega-sub-menu .mega-sub-menu,
#main-nav .has-mega-column > ul {
	background-color: #fff;
	box-shadow: 0 4px 8px rgba(0,0,0,.13), inset 0 16px 9px -13px rgba(0,0,0,0.13);
	opacity: 0;
	list-style: none;
	padding: 5px;
	position: absolute;
	z-index: 100;
	width: 100%;
	left: 0;
	top: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transform: scale(1,0);
	-moz-transform: scale(1,0);
	transform: scale(1,0);
	-webkit-transform-origin: top;
	-moz-transform-origin: top;
	transform-origin: top;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
#main-nav .has-mega-sub-menu .mega-sub-menu {
	min-height: 210px;
	max-height: 70vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#main-nav .has-mega-sub-menu .mega-sub-menu ul {
	width: 15.8%;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	position: static;
	float: left;
	background: none;
    box-shadow: none;
	border: none;
	padding: 0;
	padding-bottom: 2em;
	margin: 1em 0;
	opacity: 1;
	-webkit-transform: none;
	-moz-transform: none;
	transform: none;
}
#main-nav .has-mega-sub-menu .mega-sub-menu > ul li {
	display: block;
	padding: 0;
}
#main-nav .has-mega-sub-menu .mega-sub-menu > ul a {
	color: #000;
	width: auto;
	display: block;
	letter-spacing: .01em;
    padding: 0.5em 1.5em;
	position: relative;
	border: none;
}
#main-nav .has-mega-sub-menu:hover .mega-sub-menu,
#main-nav .has-mega-sub-menu:hover .mega-sub-menu > ul,
.no-touch #main-nav .has-mega-column:hover .mega-column-wrapper,
.no-touch #main-nav .has-mega-column:hover .mega-column-wrapper ul {
	opacity: 1;
	-webkit-transform: scale(1,1);
	-moz-transform: scale(1,1);
	transform: scale(1,1);
}
#main-nav .mega-sub-menu li a:after {
	content: '';
	display: none;
	width: 10px;
	height: 10px;
	border: solid transparent;
	border-width: 1px;
	border-top-color: #000;
	border-right-color: #000;
	margin-top: -7px;
	position: absolute;
	top: 50%;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
	right: 22px;
}
#main-nav .mega-sub-menu li:hover a:after {
	display: inline-block;
}
#main-nav li.mega-link.loading:before {
	content: "\f110";
	font-family: FontAwesome;
	-webkit-animation: fa-spin 2s infinite linear;
	animation: fa-spin 2s infinite linear;
	position: absolute;
	top: 10px;
	right: 40px;
	z-index: 99;
}

/* mega menu posts */
#main-nav .mega-menu-posts {
	width: 80.4%;
	padding: 0 0 0 2em;
	float: left;
	border-left: solid 1px #b2b2b2;
	margin: 1em 0;
}
#main-nav .mega-menu-posts .post {
	width: 17.6%;
	float: left;
	margin: 0 0 3% 3%;
	clear: none;
}
#main-nav .mega-menu-posts .post:nth-of-type(5n+1) {
	margin-left: 0;
}
#main-nav .mega-menu-posts .post-image {
	 margin: 0 0 0.5em;
}
#main-nav .mega-menu-posts .post-image img {
	height: auto;
	width: 100%;
}
#main-nav .mega-menu-posts .post-title {
	font-size: 1.05em;
	font-weight: normal;
	text-transform: none;
	line-height: 1.45em;
	margin: 0;
	border: none;
}
#main-nav .mega-menu-posts .post a {
	letter-spacing: -.0275em;
	text-transform: none;
	padding: 0;
	margin: 0;
	border: none;
	display: block;
}

/* mega column */
#main-nav .has-mega-column  > .sub-menu {
	padding: 2.5% 3% 3%;
	max-height: 70vh;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}
#main-nav .has-mega-column > ul li {
	display: block;
}
#main-nav .has-mega-column > .sub-menu > li {
	float: left;
	margin-left: 0;
	font-size: .95em;
	line-height: 1.7em;
	padding-left: 2.5%;
	box-sizing: border-box;
}
#main-nav .has-mega-column > .sub-menu > li:first-child {
	padding-left: 0;
}
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(2),
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(2) ~ li {
	width: 50%;
}
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(3),
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(3) ~ li {
	width: 33.33%;
}
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(4),
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(4) ~ li {
	width: 25%;
}
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(5),
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(5) ~ li {
	width: 20%;
}
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(6),
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(6) ~ li {
	width: 16.66%;
}
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(7),
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(7) ~ li {
	width: 16.66%;
}
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(8),
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(8) ~ li {
	width: 25%;
}
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(9),
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(9) ~ li {
	width: 33.33%;
}
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(10),
#main-nav .has-mega-column > .sub-menu > li:first-child:nth-last-child(10) ~ li {
	width: 20%;
}
#main-nav .has-mega-column .sub-menu li li {
	padding: 0;
	margin: 0 0 0.5em;
}
#main-nav .has-mega-column > .sub-menu a {
	background: none;
	border: none;
	padding: 0;
	width: 100%;
}
#main-nav .has-mega-column .widgettitle,
#main-nav .has-mega-column > .sub-menu > li > a {
	font-size: 1.1em;
	font-weight: 500;
	line-height: 1.6em;
	margin: 0 0 1em;
	padding: 0;
	text-decoration: none;
	text-transform: uppercase;
}
#main-nav .has-mega-column .widgettitle {
	font-family: inherit;
}
#main-nav .has-mega-column .widgettitle:before { /* hide widget title bottom border */
	display: none;
	margin: 0;
	padding: 0;
}
#main-nav .has-mega-column .mega-column-wrapper h3 a {
	padding: 0;
}
#main-nav .has-mega-column .mega-column-wrapper .mega-column-list a {
	width: auto;
	padding: 0;
	display: inline;
	text-transform: none;
}
#main-nav .has-mega-column .mega-column-wrapper .mega-column-list:first-child {
	margin-left: 0;
}
#main-nav .has-mega-column > .sub-menu li ul,
#main-nav .has-mega-column > .sub-menu > li > ul {
	background: none;
	border: none;
	box-shadow: none;
	padding: 0;
	margin: 0;
	opacity: 1;
	box-shadow: none;
	-webkit-transform: none;
	transform: none;
	width: auto;
}
#main-nav .has-mega-column .columns-sub-item > a:after {
	display: none;
}
.no-touch #main-nav .has-mega-column:hover .mega-column-wrapper,
.no-touch #main-nav .has-mega-column:hover .mega-column-wrapper ul {
	display: block !important;
	opacity: 1;
	-webkit-transform: none;
	transform: none;
}

/* mega column button shortcode */
#main-nav .has-mega-column .mega-column-wrapper a.shortcode.button,
a.shortcode.button {
	line-height: 1.6em;
	margin: 0 0 .6em;
	text-decoration: none;
	text-transform: uppercase;
	border: solid;
	border-width: 1px;
}
#main-nav .has-mega-column .mega-column-wrapper a.shortcode.button {
	text-decoration: none !important;
	color: #333;
	padding: .5em 1em;
	display: inline-block;
	width: auto;
}

/* mobile menu icon */
#menu-icon,
#menu-icon-close {
	display: none;
}
#menu-icon:before {
	content: "\e68e";
	font-family: themify;
	font-size: 1.25em;
}
body.mobile-menu-visible {
    position: relative;
    overflow-y: hidden;
}
.body-overlay {
    display: none;
    background-color: rgba(255,255,255,.7);
    width: 100%;
    height: 100%;
    position: fixed;
    right: 320px;
    top: 0;
    z-index: 1000;
    box-shadow: inset -1px 0 13px rgba(0,0,0,.13)
}
.body-overlay.body-overlay-on {
    display: block; /* fix for Windows phone */
}

/* menu icon */
#headerwrap #menu-icon {
	position: absolute;
	display: block;
	top: 50%;
	right: 0;
	text-decoration: none;
	color: #5a5e61;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	font-size: 1.2em;
	margin-top: .1em;
}
.slideout-widgets-empty #headerwrap #menu-icon {
	display: none;
}
/* slide menu close */
#headerwrap #menu-icon-close {
	position: absolute;
	display: block;
	color: #7f7f7f;
	text-decoration: none;
	top: 10px;
	right: 20px;
	font-size: 1.3em;
}
#headerwrap #menu-icon-close:after {
	content: "\e646";
	font-family: themify;
}
#headerwrap #menu-icon-close:hover {
	color: #000;
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	transform: rotate(90deg);
}

/* Slide Wrapper Styles */
.scrollbar-parent {
	width: 50px;
	height: 50px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.sidemenu {
	height: 100%;
	width: 320px;
	padding: 50px 25px 20px;
	background-color: #fff;
	display: block;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	position: fixed;
	top: 0;
	z-index: 111;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
#mobile-menu {
	right: -320px;
}
#mobile-menu.sidemenu-on {
	right: 0;
	box-shadow: -1px 1px 13px rgba(0,0,0,.13);
}
.sidemenu-active {
	position: relative;
}
.sidemenu-active, .sidemenu-active #headerwrap {
	left: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.sidemenu-right {
	left: -320px;
}
.sidemenu-left {
	left: 320px;
}

.slideout-widgets {
	line-height: 1.4em;
}
.slideout-widgets .widget_nav_menu a,
.slideout-widgets .list-pages a {
	color: #5a5e61;
	display: block;
	font-weight: 500;
	text-transform: uppercase;
}

/* fixed-header */
#headerwrap.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}
.iphone #headerwrap.fixed-header {
	transition: none;
}
#headerwrap.fixed-header #site-logo {
	font-size: 2em;
}
.fixed-header #site-logo img {
	max-height: 60px;
}
#headerwrap.fixed-header #site-description {
	margin-left: 0;
}
#headerwrap.fixed-header #main-nav > li > a,
#headerwrap.fixed-header .social-widget {
	margin-bottom: 15px;
	margin-top: 15px;
}
#headerwrap.fixed-header .social-widget {
	margin-top: 20px;
}
#headerwrap.fixed-header #searchform {
	padding-bottom: 15px;
	padding-top: 15px;
}

/************************************************************************************
6. PAGE
*************************************************************************************/
/* page title */
.page-title {
	margin: 0 0 0.938em;
	padding: 0;
	font-size: 320%;
	line-height: 110%;
        z-index: 3;
        position: relative;
}

/*
AUTHOR PAGE
================================================ */
.author-bio {
	background-color: #e9ebeb;
	text-align: center;
	margin: auto;
	margin-left: 7px;
	padding: 1.3em 1em 3.5em;
}
.author-bio .author-avatar {
	margin: 0 15px 0 0;
}
.author-bio .author-avatar img {
	padding: 5px;
	border: solid 1px #ccc;
}
.author-bio .author-name {
	margin: 0 0 .5em;
	padding: 0;
	font-size: 1.6em;
}
.author-posts-by {
	margin: 0 0 1.5em;
	padding: 1em 0 0;
	font-size: 1.4em;
	text-transform: uppercase;
	border-top: solid 4px #ccc;
	border-color: rgba(118,118,118,.3);
}

/*
PAGINATION
================================================ */
.pagenav {
	clear: both;
	margin-top: 2.7em;
	padding-bottom: 0.45em;
	text-align: center;
}
.pagenav a {
    text-decoration: none;
}
.pagenav a,
.pagenav span {
	color: #5a5e61;
	font-size: 0.9em;
	font-weight: bold;
	display: inline-block;
	line-height: 100%;
	margin: 0 0 0 1px;
	min-height: 16px;
	min-width: 32px;
	padding: 7px 0;
	position: relative;
	text-align: center;
	text-decoration: none;
	vertical-align: middle;
	overflow: hidden;
	border: 1px solid transparent;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.pagenav .current,
.pagenav a:hover {
	background-color: #f7f8f8;
	border-color: #c5c5c5;
	color: #1f7aea;
}
.pagenav .prev,
.pagenav .next {
	background-color: #fff;
	border-color: #c5c5c5;
}
.pagenav .prev:before,
.pagenav .next:before {
        content: '';
        display: inline-block;
	font-family: themify;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}
.pagenav .prev:before {
	content: '\e64a';
}
.pagenav .next:before {
	content: '\e649';
}

/* page category wrapper */
.page-category-title-wrap {
	background-color: #0f70e8;
	background-color: rgba(15,112,232,1);
	padding: 7% 5%;
	text-align: center;
	position: relative;
	color: #fff;
}
.page-category-title,
.page-category-title-wrap .page-title {
	font-family: 'Suranna', serif;
	font-weight: normal;
	font-size: 4.2em;
	margin: 0.225em 0 0.275em;
	letter-spacing: -0.01em;
	color: inherit;
}
.page-category-description  {
	font-family: 'Suranna', serif;
	font-size: 1.2em;
	margin: 0 0 1.35em;
	z-index: 3;
	position: relative;
}
.category-title-overlay{
	background-color: #0f70e8;
	opacity: 0.7;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1;
}

/************************************************************************************
7. POST
*************************************************************************************/
/*
GENERIC POST
================================================ */
.post {
	margin-bottom: 2em;
	position: relative;
	overflow: hidden;
}

/* post content */
.post-content {
	min-width: 120px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.post-content-inner-wrapper {
	display: table;
	width: 100%;
	height: 100%;
}
.post-meta + .post-content-inner-wrapper {
	height: calc( 100% - 32px );
}
.post-content-inner {
	display: table-cell;
	vertical-align: bottom;
	text-align: center;
}

/* post title */
.post-title {
	font-size: 2.1em;
	font-family: 'Yantramanav', sans-serif;
	font-weight: 500;
	line-height: 1.1em;
	letter-spacing: -.02em;
	margin: .2em 0 .5em;
	padding: 0;
	color: inherit;
}
.post-title a {
	text-decoration: none;
	color: inherit;
}
.post-title a:hover {
	color: #0f70e8;
}

/* post image */
.post-image {
	margin: 0 0 1.2em;
}
.post-image img {
	vertical-align: bottom;
}
.grid4 .post-image img,
.grid3 .post-image img,
.grid2 .post-image img {
	width: 100%;
	vertical-align: bottom;
}
.post-image.left {
	float: left;
	margin-right: 1em;
}
.post-image.right {
	float: right;
	margin-left: 1em;
}
.loops-wrapper:not(.overlay):not(.polaroid) > .post > .post-image {
	overflow: hidden;
	position: relative;
}

/* post meta */
.post-meta {
	font-size: 0.8em;
	font-weight: 500;
	text-transform: uppercase;
	line-height: 1.6em;
	margin: 0 0 .5em;
	padding: 0;
	clear: both;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.post-image + .post-content .post-meta {
	color: #fff;
	position: absolute;
	top: 18px;
	left: 0;
	width: 100%;
	padding: 0 30px;
}
.post-meta a {
	color: inherit;
	text-decoration: none;
}
.post-meta a:hover {
	text-decoration: underline;
}
.post-meta span {
	margin-right: 0.2em;
	display: inline-block;
}
.post-meta-inner-left {
	float: left;
}
.post-meta-inner-right {
	float: right;
}

/* post author */
.post-author {
	font-weight: 500;
	vertical-align: middle;
}

/* author avatar */
.author-avatar img.avatar {
	width: 32px;
	height: 32px;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	margin: 0 0.5em 0 0;
	display: inline-block;
	vertical-align: middle;
}

/* post date */
.post-date {
	margin: 0 0 .5em;
	vertical-align: middle;
}
.post-date span {
	margin-right: 0;
}

/* post comment */
.post-comment a:before,
.likeit .like-count:before {
	display: inline-block;
	font-family: themify;
	vertical-align: middle;
	margin: 0 0.45em 0 0;
	font-size: 1.15em;
}
.post-comment a:before {
	content: '\e644';
}

/* likeit-wrap */
.likeit-wrap {
	display: inline-block;
	margin: 0 0 0 .4em;
}
.likeit .like-count:before {
	content: '\e634';
}
.likeit-wrap span {
    display: none;
    color: #eee;
    color: rgba(54,54,54,.3);
}

/* post category */
.post-category {
	text-transform: uppercase;
	font-size: 0.8em;
	font-weight: 500;
	letter-spacing: 0.03em;
}
.post-category a {
	position: relative;
	color: inherit;
}
.post-category a:after {
	border-bottom: 2px solid;
	content: '';
	position: absolute;
	width: 100%;
	left: 0;
	top: 100%;
	opacity: 0.3;	
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}

/* dropcap */
.drop-cap > *:first-child:first-letter,
.single.enable-drop-cap .entry-content > p:first-child:first-letter,
.enable-drop-cap .loops-wrapper:not(.overlay):not(.polaroid).list-post .entry-content > p:first-child:first-letter {
	font-family: 'Suranna', serif;
	font-size: 2.85em;
	float: left;
	line-height: 0.4em;
	padding: 0.425em 0.375em;
	background-color: #0f70e8;
	color: #fff;
	margin-right: 0.325em;
	margin-top: 0.15em;
	margin-bottom: 0.25em;
}
.single .entry-content > p:nth-of-type(2),
.loops-wrapper.list-post .entry-content > p:nth-of-type(2) {
	clear: both;
}
.enable-drop-cap .loops-wrapper:not(.overlay):not(.polaroid).list-post .entry-content {
	text-align: left;
}

/* read more */
.more-link,
.read-more {
	border: 1px solid #acacac;
	color: inherit;
	display: inline-block;
	font-family: 'Yantramanav', sans-serif;
	font-weight: 500;
	font-size: 0.85em;
	padding: 0.45em 2.35em 0.4em;
	line-height: normal;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.more-link:hover,
.read-more:hover {
	background-color: #fff;
	color: #000;
}

.post-excerpt {
	font-size: 1.5em;
	font-family: 'Suranna', serif;
	letter-spacing: 0.013em;
}

/*
SINGLE POST
================================================ */
/* featured image area in single post */
.featured-area {
	position: relative;
	overflow: hidden;
	background-color: rgba(15,112,232,1);
	color: #fff;
	text-align: center;
}

.single .featured-area .post-image + .post-content {
	background-color: rgba(0,0,0,0.3);
	color: #fbfcfc;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	position: absolute;
	overflow: hidden;
	padding: 2%;
	height: 100%;
}
.single .post-image {
	margin: 0;
}
.single .featured-area .post-meta {
	font-size: 0.7em;
	font-weight: 500;
	letter-spacing: 0.01em;
	margin: 0;
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
}
.single .featured-area:hover .post-meta {
	opacity: 1;
}
.single .post-title {
	font-size: 2.6em;
	margin: 0.4em 0 0;
	letter-spacing: -0.007em;
	line-height: 1.19em;
}

/*
SINGLE SPLIT
================================================ */
.single.single-split-layout .featured-area {
	width: 50%;
	float: left;
	position: fixed;
	height: 100%;
	box-sizing: border-box;
	top: 0;
}
.single.single-split-layout .footer-widgets-wrap,
.single.single-split-layout #footerwrap,
.single.single-split-layout #layout {
	width: 50%;
	float: right;
	max-width: none;
	display: block !important;
	box-sizing: border-box;
}
.single.single-split-layout #content {
	padding: 2.6em;
}
.single.single-split-layout .featured-area .post-image img {
	min-height: 100%;
	height: 100vh;
	object-fit: cover;
}
.single.single-split-layout .featured-area .post-image  {
	overflow:hidden;
	height: 100%;
}
.single.single-split-layout .related-posts .post-image img {
	height: auto;
	min-height: initial;
}
.single.single-split-layout .footer-widgets-wrap,
.single.single-split-layout #footerwrap {
	padding-left: 4%;
	padding-right: 4%;
}
.single.single-split-layout .featured-area .post-content {
	padding: 1.1em 1.7em;
	padding-top: 140px;
}
.single.single-split-layout .post-image + .post-content .post-meta {
	top: 140px;
}

/*
SINGLE GALLERY
================================================ */
.single.single-gallery-layout #content,
.single.single-gallery-layout #sidebar {
	padding-top: 8px;
}
.single.single-gallery-layout .featured-area {
	background: none;
	color: inherit;
}
.single.single-gallery-layout .post-content {
	padding-left: 30px;
	padding-right: 30px;
}
.single.single-gallery-layout .post-meta {
	margin: 1.55em 0 2.1em;
	opacity: 1;
}
.single.single-gallery-layout .post-meta-inner-right {
	margin-top: 13px;
}
.single.single-gallery-layout .post-meta .author-avatar img.avatar {
	width: 60px;
	height: 60px;
	margin-right: 0.55em;
}
.single.single-gallery-layout .post-author {
	text-transform: none;
	color: #000;
	font-family: 'Suranna', serif;
        font-size: 1.5em;
	letter-spacing: -0.03em;
	vertical-align: inherit;
}
.single.single-gallery-layout .post-title {
	margin: 0.4em 0 0.45em;
}

/*
SINGLE SLIDER
================================================ */
/* flex wrapper */
.single.single-slider-layout .flexslider {
	background-color: transparent;
	border: none;
	box-shadow: none;
	margin: 0;
	position: relative;
}

/* flex slides */
.single.single-slider-layout .slides,
.single.single-slider-layout .slides > li,
.single.single-slider-layout .flex-control-nav,
.single.single-slider-layout .flex-direction-nav {
	list-style: none;
	margin: 0;
	padding: 0;
}
.single.single-slider-layout .flexslider .slides > li {
	position: relative;
	margin: 0;
	padding: 0;
}
.single.single-slider-layout .flexslider .slides > li:before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: rgba(0,0,0,0.3);
}
.single.single-slider-layout .flexslider .slides > li img {
	width: 100%;
	display: block;
	height: auto;
	-moz-user-select: none;
	clear: both;
}

/* flex direction/arrow */
.single.single-slider-layout .flex-direction-nav a {
	text-decoration: none;
	opacity: 1;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
    overflow: hidden;
    max-width: 32px;
    max-height: 64px;
}
.single.single-slider-layout .flex-direction-nav a:before {
	background-color: #fff;
	color: #000;
	display: inline-block;
	padding: 22px 8px 22px 4px;
}	
.single.single-slider-layout .flexslider:hover .flex-direction-nav .flex-prev,
.single.single-slider-layout .flex-direction-nav .flex-prev {
	left: 0;
}
.single.single-slider-layout .flexslider:hover .flex-direction-nav .flex-next,
.single.single-slider-layout .flex-direction-nav .flex-next {
	right: 0;
	left: auto;
}
.single.single-slider-layout .flex-direction-nav a:before {
	font: normal 1.3em/1em Themify;
	content: "\e64a";
}
.single.single-slider-layout .flex-direction-nav a.flex-next:before {
	content: "\e649";
}

/* flex bullets/dots */
.single.single-slider-layout .flex-control-nav {
	position: absolute;
	bottom: 0;
	width: 100%;
	text-align: center;
	margin: 0;
	padding: 0;
}
.single.single-slider-layout .flex-control-paging li {
	margin: 0 6px;
	display: inline-block;
	zoom: 1;
	*display: inline;
}
.single.single-slider-layout .flex-control-paging li a {
	background-color: transparent;
	border: 2px solid #fff;
	width: 4px;
    height: 4px;
	text-indent: -900em;
	display: block;
	border-radius: 20px;
}
.single.single-slider-layout .flex-control-paging li a:hover,
.single.single-slider-layout .flex-control-paging li a.flex-active {
	background-color: #fff;
	box-shadow: 0 0 0 2px rgba(255,255,255,1);
}

/* flex caption */
.single.single-slider-layout .flex-caption {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	width: 100%;
	left: 0;
        padding: 0 30px;
        box-sizing: border-box;
	font-family: 'Suranna', serif;
	font-size: 1.6em;
	letter-spacing: -0.01em;
}

.single.single-slider-layout .featured-area {
	position: relative;
	background: none;
}
.single.single-slider-layout .featured-area .post-meta {
	padding: 2.05em 30px;
	margin: 0;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
	opacity: 1;
	z-index: 4;
}
.single.single-slider-layout .post-meta .author-avatar img.avatar {
        width: 60px;
        height: 60px;
        margin-right: 0.55em;
}
.single.single-slider-layout .post-author {
	text-transform: none;
	font-family: 'Suranna', serif;
        font-size: 1.6em;
	letter-spacing: normal;
	vertical-align: inherit;
}
.single.single-slider-layout .post-date {
        font-weight: 300;
	font-size: 1.2em;
}
.single.single-slider-layout .featured-area .post-content-inner-wrapper {
	color: #000;
	padding: 1em 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.single.single-slider-layout  .featured-area .post-content {
	width: 100%;
	min-width: 100%;
}
.single.single-slider-layout  .featured-area .post-title {
	margin: 0.4em 0 0.45em;
}
.single.single-slider-layout  #content,
.single.single-slider-layout  #sidebar {
	padding-top: 0;
}

/*
GENERAL POST STYLING
================================================ */
.loops-wrapper.grid4 .post-meta-inner-left,
.loops-wrapper.grid4 .post-meta-inner-right,
.loops-wrapper.grid3 .post-meta-inner-left,
.loops-wrapper.grid3 .post-meta-inner-right,
.loops-wrapper.grid2 .post-meta-inner-left,
.loops-wrapper.grid2 .post-meta-inner-right {
	float: none;
	text-align: center;
}
.loops-wrapper.grid2-thumb .post-meta-inner-left,
.loops-wrapper.grid2-thumb .post-meta-inner-right,
.loops-wrapper.list-thumb-image .post-meta-inner-left,
.loops-wrapper.list-thumb-image .post-meta-inner-right,
.loops-wrapper.list-large-image .post-meta-inner-left,
.loops-wrapper.list-large-image .post-meta-inner-right {
	float: none;
}
.loops-wrapper.grid2-thumb .post-meta,
.loops-wrapper.list-thumb-image .post-meta,
.loops-wrapper.list-large-image .post-meta {
	position: static;
	padding: inherit;
	color: inherit;
}

.loops-wrapper.grid4 .entry-content,
.loops-wrapper.grid3 .entry-content,
.loops-wrapper.grid2 .entry-content,
.loops-wrapper.grid2-thumb .entry-content,
.loops-wrapper.list-thumb-image .entry-content,
.loops-wrapper.list-large-image .entry-content {
	font-family: 'Suranna', serif;
}
.loops-wrapper.grid2-thumb .read-more,
.loops-wrapper.list-thumb-image .read-more,
.loops-wrapper.list-large-image .read-more {
	font-size: 0.8em;
	padding: 0.6em 1.15em 0.55em 1.4em;
}
.loops-wrapper.grid2-thumb .post-content-inner,
.loops-wrapper.list-thumb-image .post-content-inner,
.loops-wrapper.list-large-image .post-content-inner {
	text-align: inherit;
}

/*
GRID4 POST
================================================ */
.loops-wrapper.grid4 .post {
	margin-bottom: 2.5em;
}
.loops-wrapper.grid4 .post-title {
	font-size: 1.325em;
	letter-spacing: normal;
	margin: 0.25em 0;
}
.loops-wrapper.grid4 .author-avatar img.avatar {
	width: 17px;
	height: 16px;
}
.loops-wrapper.grid4 .post-category {
	font-size: 0.7em;
}
.loops-wrapper.grid4 .post-excerpt {
	font-size: 0.9em;
}
.loops-wrapper.grid4 .post-excerpt p {
	margin: 0 0 0.75em;
}
.loops-wrapper.grid4 .read-more {
	font-size: 0.8em;
	padding: 0.6em 1.15em 0.55em 1.4em;
}

/*
GRID3 POST
================================================ */
.loops-wrapper.grid3 .post {
	margin-bottom: 3.1em;
}
.loops-wrapper.grid3 .post-title {
	font-size: 1.325em;
	letter-spacing: normal;
	margin: 0.25em 0;
}
.loops-wrapper.grid3 .author-avatar img.avatar {
	width: 17px;
	height: 16px;
}
.loops-wrapper.grid3 .post-meta-inner-right {
	margin-top: 0.65em;
}
.loops-wrapper.grid3 .post-category {
	font-size: 0.7em;
}
.loops-wrapper.grid3 .post-excerpt {
	font-size: 0.9em;
	font-family: 'Suranna', serif;
}
.loops-wrapper.grid3 .post-excerpt p {
	margin: 0 0 0.95em;
}
.loops-wrapper.grid3 .read-more {
	font-size: 0.8em;
	padding: 0.6em 1.4em 0.55em 1.2em;
}

/*
GRID2 POST
================================================ */
.loops-wrapper.grid2 .post {
	margin-bottom: 3.7em;
}
.loops-wrapper.grid2 .post-title {
	font-size: 1.35em;
    letter-spacing: 0.009em;
	margin: 0.5em 0 0;
}
.loops-wrapper.grid2 .post-meta-inner-right {
	margin-top: 0.65em;
}
.loops-wrapper.grid2 .post-category {
	font-size: 0.855em;
	letter-spacing: 0.01em;
}
.loops-wrapper.grid2 .post-excerpt {
	font-size: 1.125em;
	font-family: 'Suranna', serif;
}
.loops-wrapper.grid2 .post-excerpt p {
	margin: 0 0 0.95em;
}
.loops-wrapper.grid2 .read-more {
	font-size: 0.8em;
	padding: 0.6em 1.4em 0.55em 1.2em;
}

/*
GRID2-THUMB POST
================================================ */
.loops-wrapper.grid2-thumb .post-title {
	font-size: 1.8em;
}
.loops-wrapper.grid2-thumb .post-image {
	width: 20%;
	float: left;
	margin: 0 1.6em 1.3em 0;
}
.loops-wrapper.grid2-thumb .post-content {
	overflow: hidden;
	min-width: 120px;
}

/*
LIST-THUMB-IMAGE POST
================================================ */
.module-post .list-thumb-image .post,
.loops-wrapper.list-thumb-image .post {
	clear: both; /* require for FF */
	margin-bottom: .5em;
}
.module-post .list-thumb-image .post-title,
.loops-wrapper.list-thumb-image .post-title {
	font-size: 1.15em;
}
.loops-wrapper.list-thumb-image .post-image {
	width: 20%;
	float: left;
	margin: 0 1.4em 1em 0;
}
.loops-wrapper.list-thumb-image .post-image img {
	width: 100%;
}
.loops-wrapper.list-thumb-image .post-content {
	overflow: hidden;
}
.loops-wrapper.list-thumb-image .post-video {
	width: 20%;
	float: left;
	margin: 0 1.4em 1em 0;	
	padding-bottom: 12.25%;
}
.loops-wrapper.list-thumb-image .post-video .post-video { /* reset inner video wrapper */
	width: 100%;
	float: none;
	padding: 0;
	margin: 0;
	display: block;
	position: static;
}

/*
LIST-LARGE-IMAGE POST
================================================ */
.loops-wrapper.list-large-image .post-image {
	max-width: 70%;
	float: left;
	margin: 0 2em 1.3em 0;
}

/*
SLIDER POST
================================================ */
.loops-wrapper.slider {
	position: relative;
	margin: 0 0 50px;
}
.loops-wrapper .slideshow-wrap {
	height: 0; /* will be toggled with js */
	visibility: hidden; /* will be toggled with js */

/* remove this on final because it will be toggled with js */
	height: auto;
	visibility: visible;
/* end remove */
}
.loops-wrapper.slider .post {
	width: 100%;
	float: left;
	margin-left: 0;
	margin-bottom: 0;
	text-align: left;
	position: relative;
	margin: 0 0 15px;
	min-height: 40px;
} 
.loops-wrapper.slider .post-image {
	width: auto;
	float: none;
	margin: 0;
}
.loops-wrapper.slider .post-image img {
	width: 100%;
	vertical-align: bottom;
}
.loops-wrapper.slider .post-image .lightbox .zoom {
	display: none;
}
.loops-wrapper.slider .post-title {
	font-size: 1.8em;
	line-height: 1.2em;
	margin: 0 0 0.313em;
}
.loops-wrapper.slider .post-date {
	margin: 0;
}
.loops-wrapper.slider .post-content {
	position: absolute;
	bottom: 0;
	width: 100%;
	min-height: 40px;
	padding: 15px 5%;
	overflow: visible;
	margin: 0 auto;
	background-color: rgba(0,0,0,.6);
	font-size: .9em;
	line-height: 1.5em;
	color: #eee;
}
.loops-wrapper.slider .post-content a {
	color: #fff !important;
}

/* reset slider shortcode in framework css */
.shortcode.post-slider .carousel-prev,
.shortcode.slider .carousel-prev,
.shortcode.post-slider .carousel-next,
.shortcode.slider .carousel-next {
	border-radius: 0;
	border: 0;
	text-shadow: none;
	margin: 0;
	box-shadow: none;
	background-image: none;
}

/* slider carousel controls */
.loops-wrapper.slider .carousel-wrap {
	position: relative;
}
.loops-wrapper.slider .carousel-nav-wrap {
	width: 100% !important;
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-prev, 
.loops-wrapper.slider .carousel-nav-wrap .carousel-next {
	position: absolute; 
	top: 30%;
	display: block;
	width: auto !important;
	height: auto !important;
	float: left;
	font-size: 0;
	text-indent: -900em;
	text-decoration: none;
	color: #fff;	
	background-color: rgba(0,0,0,.3);
	padding: 5% 2.5%;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-prev {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
	left: 0;
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-next {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;	
	right: 0;
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-prev:hover, 
.loops-wrapper.slider .carousel-nav-wrap .carousel-next:hover {
	color: #fff;
	background-color: rgba(0,0,0,.5);
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-prev:hover {
	padding-left: 4%;
}
.loops-wrapper.slider .carousel-nav-wrap .carousel-next:hover {
	padding-right: 4%;
}

/* carousel prev/next arrow */
.loops-wrapper.slider .carousel-nav-wrap .carousel-next:before,
.loops-wrapper.slider .carousel-nav-wrap .carousel-prev:before {
	width: 100%;
	text-align: center;
	content: '\f054';
	font-family: FontAwesome;
    display: block;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
	text-align: center;
    font-size: 18px;
	line-height: 100%;
	position: absolute;
	left: 0;
	top: 45%;
}

/* carousel pager */
.loops-wrapper.slider .carousel-pager {
	clear: both;
	text-align: center;
	line-height: 100%;
	width: auto;
}
.loops-wrapper.slider .carousel-pager a {
	text-indent: -900em;
	width: 8px;
	height: 8px;
	display: inline-block;
	vertical-align: middle;
	margin: 2px 3px 0;
	background-color: #ccc;
	background-color: rgba(0,0,0,.2);
	border: solid 2px #666;
	border-radius: 100%;
	cursor: pointer;
}
.loops-wrapper.slider .carousel-pager a.selected  {
	background-color: #fff;
	border-color: #ccc;
}

/*
reset post layouts in .col
================================================ */
.col4-1 .post-content-inner,
.col4-2 .post-content-inner,
.col3-1 .post-content-inner,
.col2-1 .post-content-inner {
	text-align: left;
}
.col4-1 .loops-wrapper.list-post .post,
.col4-2 .loops-wrapper.list-post .post,
.col3-1 .loops-wrapper.list-post .post,
.col2-1 .loops-wrapper.list-post .post {
	margin-bottom: .75em;
}
.col4-1 .loops-wrapper.list-post .post-title,
.col4-2 .loops-wrapper.list-post .post-title,
.col3-1 .loops-wrapper.list-post .post-title,
.col2-1 .loops-wrapper.list-post .post-title {
	font-size: 1.3em;
}

/*
TILED POST (JS)
================================================ */
.tile_enable .loops-wrapper.auto_tiles {
	width: 100%;
	position: relative;
	-webkit-user-select: none;
        -moz-user-select: none; 
	user-select: none;
}
.tile_enable .loops-wrapper.auto_tiles ,
.tile_enable .loops-wrapper.custom_tiles{
    width: 100%;
    height: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: 100;

}
.tile_enable .loops-wrapper.auto_tiles.loading-finish,
.tile_enable .loops-wrapper.custom_tiles.loading-finish{
    z-index: 1;
}
.tile_enable .loops-wrapper.auto_tiles:before,
.tile_enable .loops-wrapper.custom_tiles:before{
    content: "\f110";
    font-family: FontAwesome;
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    position: absolute;
    top: 20%;
    right: 50%;
    z-index: 110;
}
.tile_enable .loops-wrapper.auto_tiles.loading-finish:before,
.tile_enable .loops-wrapper.custom_tiles.loading-finish:before{
    display:none;
}

.tile_enable .loops-wrapper.auto_tiles:not(.tiles_resing)  .post{
    top: 0;
    left: 0;
    opacity:0;
    -webkit-transition-property: top, left, opacity;
    -moz-transition-property: top, left, opacity;
    -ms-transition-property: top, left, opacity;
    -o-transition-property: top, left, opacity;
    transition-property: top, left, opacity;
    height:100%;
}
.is_phone .auto_tiles  .post,
.is_phone .custom_tiles  .post{
        width:100%;
}
.tile_enable .loops-wrapper.auto_tiles.loading-finish .post{
	opacity:1;
}
.tile_enable .auto_tiles,
.tile_enable .auto_tiles:not(.tiles_resing) .post {
  -webkit-transition-duration: 0.7s;
     -moz-transition-duration: 0.7s;
      -ms-transition-duration: 0.7s;
       -o-transition-duration: 0.7s;
          transition-duration: 0.7s;
}
.tile_enable .loops-wrapper.auto_tiles  {
  -webkit-transition-property: height, width;
	-moz-transition-property: height, width;
	-ms-transition-property: height, width;
	-o-transition-property: height, width;
	transition-property: height, width;
	height:62px;
	overflow:hidden;
}

.tile_enable .loops-wrapper.custom_tiles .post-tiled{
	margin: 0 0 0.4% 0;
	opacity:0;
}
.tile_enable .loops-wrapper.tiled .gutter-sizer { 
	width: 0.4%;
	margin:0;
}
.tile_enable .loops-wrapper.custom_tiles.loading-finish .post-tiled{
	opacity:1;
}
.tile_enable .post-tiled.tiled-square-large{
	width: 49.76%;
	height:490px;
}
.tile_enable .post-tiled.tiled-square-small,
.tile_enable .custom_tiles .grid-sizer{
	width: 24.68%;
	height: 240px;
}
.tile_enable .custom_tiles .grid-sizer{
	height:0;
}
.tile_enable .post-tiled.tiled-landscape {
	width:49.76%;
	height: 240px;
}
.tile_enable .post-tiled.tiled-portrait{
	width: 24.68%;
	height:490px;
}
.tile_enable .loops-wrapper.no-gutter .gutter-sizer{
	width:0;
}
.tile_enable .loops-wrapper.no-gutter.custom_tiles .post-tiled{
	margin:0;
}
.tile_enable .loops-wrapper.no-gutter.custom_tiles .tiled-square-large,
.tile_enable .loops-wrapper.no-gutter.custom_tiles .tiled-landscape {
	width: 49.8%;
}
.tile_enable .loops-wrapper.no-gutter.custom_tiles .grid-sizer,
.tile_enable .loops-wrapper.no-gutter.custom_tiles .tiled-portrait,
.tile_enable .loops-wrapper.no-gutter.custom_tiles .tiled-square-small{
	width: 24.9%;
}

/* tiled layout */
.loops-wrapper.tiled .post {
    background-color: #eee;
}
.loops-wrapper.tiled .embed-youtube {
	padding: 0;
	margin: 0;
	height: 100%;
}
.loops-wrapper.tiled .post.tiled-square-small,
.loops-wrapper.tiled .post.tiled-portrait {
	font-size: 0.85em;
	line-height: 1.5em;
}
.loops-wrapper.tiled .tiled-square-small .post-title,
.loops-wrapper.tiled .tiled-portrait .post-title {
	font-size: 1.4em;
}
.loops-wrapper.tiled .post-image{
	margin: 0;
}
.tile_enable .loops-wrapper.tiled .post-image {
	margin: 0;
	height: 100%;
	position: absolute !important;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
}
.loops-wrapper.tiled .post-image + .post-content {
	height: 100%;
	color: #fff;
	padding: 2%;
	z-index: 9;
	position:relative;
}
.loops-wrapper.tiled .tiled_overlay_link{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
}
.loops-wrapper.tiled .post-meta,
.loops-wrapper.tiled .post-content-inner>*{
	z-index:11;
	position:relative;
}
.is_phone .loops-wrapper.tiled .post-image + .post-content {
	position: absolute;
	top: 0;
	width: 100%;
	left: 0;
}
.loops-wrapper.tiled .post-image + .post-content:before {
	content: '';
	display: block;
	background: rgba(0,0,0,0.8);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,.8)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: -o-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: -moz-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: -ms-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	opacity: 0.2;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.loops-wrapper.tiled .post:hover .post-image + .post-content:before {
	opacity: 1;
}
.loops-wrapper.tiled .post-date {
	display: inline-block;
	margin-bottom: auto;
}
.loops-wrapper.tiled .post-meta {
	padding: 0 22px;
	opacity: 0;
}
.is_phone .loops-wrapper.tiled .post-meta,
.loops-wrapper.tiled .post:hover .post-meta {
	opacity: 1;
}
.loops-wrapper.tiled .entry-content {
	line-height: 1.3em;
	font-family: 'Suranna', serif;
}

@media screen and (max-width:780px) {
	.loops-wrapper.custom_tiles .post-tiled {
		width: 100%;
		position: relative !important;
		top: 0 !important;
		left: 0 !important;
	}
	.loops-wrapper.custom_tiles{
		height: auto !important;
	}
}

/*
OVERLAY POST
================================================ */
.loops-wrapper.overlay .post-image,
.loops-wrapper.polaroid .post-image {
	margin: 0;
}
.loops-wrapper.overlay .post-image + .post-content,
.loops-wrapper.polaroid .post-image + .post-content {
	background: rgba(0,0,0,0.8);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,.8)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: -o-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: -moz-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: -ms-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	color: #fbfcfc;
	top: 100%;
	position: absolute;
	overflow: hidden;
	padding: 2%;
	height: 100%;
	width: 100%;
}
.loops-wrapper.overlay .post:hover .post-image + .post-content,
.loops-wrapper.polaroid .post:hover .post-image + .post-content {
	top: 0;
}
.loops-wrapper.overlay .post-image + .post-content .post-meta,
.loops-wrapper.polaroid .post-image + .post-content .post-meta {
	opacity: 0;
}
.loops-wrapper.overlay .post:hover .post-image + .post-content .post-meta,
.loops-wrapper.polaroid .post:hover .post-image + .post-content .post-meta {
	opacity: 1;
}
.loops-wrapper.overlay .post-image + .post-content .post-excerpt p:nth-of-type(1),
.loops-wrapper.polaroid .post-image + .post-content .post-excerpt p:nth-of-type(1) {
	text-overflow: ellipsis;
	overflow: hidden;
	white-space: nowrap;
	width: 13em;
	margin-left: auto;
	margin-right: auto;
}

/*
POLAROID POST
================================================ */
.loops-wrapper.polaroid.list-post .post-image + .post-content {
	top: 82%;
}
.loops-wrapper.polaroid.grid4 .post-image + .post-content {
	top: 55%;
}
.loops-wrapper.polaroid.grid3 .post-image + .post-content {
	top: 65%;
}
.loops-wrapper.polaroid.grid2 .post-image + .post-content {
	top: 75%;
}
.loops-wrapper.polaroid .post-image + .post-content .post-content-inner {
	vertical-align: top;
}
.loops-wrapper.polaroid .post:hover .post-image + .post-content .post-content-inner {
	vertical-align: bottom;
}

/*
NO-GUTTER POST
================================================ */
.loops-wrapper.no-gutter .post {
	margin: 0 !important; 
	clear:none !important;
}
.loops-wrapper.no-gutter.grid4 .post {
	width: 25%;
}
.loops-wrapper.no-gutter.grid3 .post {
	width: 33.33%;
}
.loops-wrapper.no-gutter.grid2 .post {
	width: 50%;
}
.loops-wrapper.no-gutter.list-post .post {
	width: 100%;
}
.loops-wrapper.no-gutter.grid4,
.loops-wrapper.no-gutter.grid3,
.loops-wrapper.no-gutter.grid2 {
	margin-bottom: 3em;
}

/************************************************************************************
AUTHOR BOX
*************************************************************************************/
.author-box {
	margin: 1em 0 2.3em;
	border: none;
	background-color: #fff;
	display: table;
	width: 100%;
}
.author-box .author-avatar {
	background-color: #e9ebeb;
	width: 207px;
	margin: auto;
	text-align: center;
	display: table-cell;
	vertical-align: middle;
}
.author-box .author-avatar img {
	border-radius: 100%;
	width: 125px;
	height: 126px;
}
.author-box .author-name {
	margin: 0 0 0.2em;
	font-family: 'Suranna', serif;
	font-size: 2.5em;
	letter-spacing: 0.01em;
	padding-top: 0.5em;
	color: #000;
}

/************************************************************************************
POST PAGINATION (the <nextpage> tag)
*************************************************************************************/
.post-pagination {
	text-align: right;
	margin: .5em 0 2em;
}
.post-pagination strong {
	margin-right: 3px;
}
.post-pagination a {
	margin-left: 3px;
	margin-right: 3px;
}

/************************************************************************************
POST NAVIGATION
*************************************************************************************/
.post-nav {
	margin: 0 0 2.1em;
	padding: 0;
	clear: both;
	font-size: 1.1em;
	letter-spacing: 0.005em;
}
.post-nav .prev,
.post-nav .next {
	width: 47%;
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.post-nav .prev {
	float: left;
	padding-left: 25px;
}
.post-nav .next {
	float: right;
	text-align: right;
	padding-right: 25px;
}

/* post nav link */
.post-nav a {
	display: inline-block;
	color: inherit;
	position: relative;
}
.post-nav a:hover {
	color: #0f70e8;
}

/* post nav arrow */
.post-nav .arrow {
	font-size: 1.2em;
}
.post-nav .next .arrow {
	float: right;
}
.post-nav .next .arrow:before,
.post-nav .prev .arrow:before {
	font-family: themify;
    top: 0;
	position: absolute;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
}
.post-nav .prev .arrow:before {
	content: '\e64a';
	left: -30px;
}
.post-nav .next .arrow:before {
	content: '\e649';
	right: -30px;
}
.post-nav .next:hover .arrow:before {
 	-webkit-animation: next-arrow 1s infinite;/* Chrome, Safari, Opera */
	-webkit-animation-timing-function: linear;/* Chrome, Safari, Opera */
	animation: next-arrow 1s infinite;
	animation-timing-function: linear;
}
.post-nav .prev:hover .arrow:before {
 	-webkit-animation: prev-arrow 1s infinite;/* Chrome, Safari, Opera */
	-webkit-animation-timing-function: linear;/* Chrome, Safari, Opera */
	animation: prev-arrow 1s infinite;
	animation-timing-function: linear;
}

/************************************************************************************
COMMENTS
*************************************************************************************/
.commentwrap {
	margin: .625em 0 1.25em;
	position: relative;
	padding: 1.5em 0 0;
	clear: both;
	border-top: 1px solid #ced0d0;
}

/* comment title */
.comment-title,
.comment-reply-title {
	font-size: 2em;
	font-family: 'Suranna', serif;
	margin: 0 0 0.2em;
	padding: 0;
}

/* comment pagenav */
.commentwrap .pagenav {
	margin: 10px 0;
	border: none;

	box-shadow: none;
}
.commentwrap .pagenav.top {
	margin: 0;
	position: absolute;
	top: 30px;
	right: 0;
}

/* commentlist */
.commentlist {
	margin: 0 0 30px;
	padding: 0;
}
.commentlist li {
	margin: 0;
	padding: 1em 0 0 73px;
	list-style: none;
	position: relative;
}
.commentlist .comment-author {
	margin: 1px 0 6px;
	padding: 0;
}
.commentlist .avatar {
	border-radius: 100%;
	width: 49px;
	height: 48px;
	position: absolute;
	left: 0;
}
.commentlist cite {
	font-style: normal;
	font-size: 130%;
	font-family: 'Suranna', serif;
}
.commentlist cite a {
	text-decoration: none;
}
.commentlist .comment-author br {
	display: none;
}
.commentlist .bypostauthor > .comment-author cite:before {
	content: '\f02e';
	font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
	margin-right: 12px;
}
.commentlist .comment-time {
	font-size: .83em;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}
.commentlist .commententry {
	position: relative;
	min-height: 40px;
	overflow: hidden;
	padding-bottom: 5px;
	word-wrap: break-word;
}
.commentlist ul,
.commentlist ol {
	margin: 0;
	padding: 0;
}

/* reply link */
.commentlist .reply {
	padding-left: 21px;
}
.commentlist .comment-reply-link {
	background-color: #fff;
	border: 1px solid #c9c9c9;
	font-size: 0.75em;
	text-transform: uppercase;
	text-decoration: none;
	line-height: normal;
	letter-spacing: 0.06em;
	padding: 0.2em 0.95em;
	position: relative;
}
.commentlist .comment-reply-link:hover {
	box-shadow: 0px 2px 5px rgba(0,0,0,0.10);
}
.commentlist .comment-reply-link:before {
	content: '';
	display: inline-block;
	position: absolute;
	left: -22px;
	top: -5px;
	border-left: 2px solid #d8d9d9;
	border-bottom: 2px solid #d8d9d9;
	width: 19px;
	height: 17px;
}

/* 
COMMENT FORM
================================================ */
#respond {
    margin: 0;
    padding: 1em 0 0;
    position: relative;
    clear: both;
}
#respond #cancel-comment-reply-link {
    position: absolute;
    top: 20px;
    right: 0;
    font-size: 0.5em;
    line-height: 100%;
    text-decoration: none;
    display: block;
    font-family: 'Yantramanav', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
#respond #cancel-comment-reply-link:hover {
	color: #fb4e55;
}
#respond #cancel-comment-reply-link:before,
#respond #cancel-comment-reply-link:after {
    content: '';
    display: inline-block;
    border-top: 1px solid;
    width: 1em;
    position: absolute;
    left: -1em;
    top: 45%;
    transition: all 0.3s ease;
}
#respond #cancel-comment-reply-link:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
#respond #cancel-comment-reply-link:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#respond #cancel-comment-reply-link:hover:before {
    -webkit-transform: rotate(130deg);
    -moz-transform: rotate(130deg);
    transform: rotate(130deg);
}
#respond #cancel-comment-reply-link:hover:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
#commentform {
	margin: 1.35em 0 0;
}
#commentform input[type=text] {
	width: 402px;
	margin-right: 13px;
}
#commentform label {
	font-weight: bold;
	text-transform: uppercase;
}
#commentform label small {
	font-weight: normal;
}
#commentform textarea {
	height: 227px;
}
#commentform input#submit {
	padding: 12px 27px;
}
#commentform p {
	margin-bottom: 0.1em;
}


/************************************************************************************
INFINITE SCROLL
*************************************************************************************/
/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
	-webkit-transition: none;
	-moz-transition: none;
	-ms-transition: none;
	-o-transition: none;
	transition: none;
}
.load-more {
	clear: both;
	margin: 10px 0 50px;
	padding: 20px 0;
	text-align: center;
}
.loader-wait .load-more-button:before{
        content: "\f110";
        font-family: FontAwesome;
        -webkit-animation: fa-spin 2s infinite linear;
        animation: fa-spin 2s infinite linear;
        position: absolute;
        top: 14px;
        left: 8px;
        z-index: 2;
}
#pagewrap .load-more-button { /* add #pagewrap to prevent override */
	padding: .8em 2em;
	text-decoration: none;
	display: inline-block;
	background: #fff;
	color: #5a5e61;
	border: 1px solid #C5C5C5;
	font-weight:500;
	line-height: 100%;
	position:relative;
}
#pagewrap .load-more-button:hover{
	color:#0f70e8;
}
.load-more span{
	display: block;
	border: 1px solid rgba(197,197,197,.2);
	width: 100%;
	margin-top: -24px;
}
#infscr-loading {
	position: fixed;
	text-align: center;
	bottom: 50px;
	left: 0;
	width: 100%;
	z-index: 100;
	overflow: hidden;
}
#infscr-loading img {
	padding: 8px;
	border-radius: 9em;
}
.infinity_without_loader #infscr-loading {
	display:none !important;
}
.full_width .load-more {
	width: 88%;
	margin-left: auto;
	margin-right: auto;
}

/************************************************************************************
POST VIDEO (css for fluid video)
*************************************************************************************/
.post-video,
.embed-youtube {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	margin-bottom: 15px;
}
.post-video iframe,
.post-video object,
.post-video embed,
.embed-youtube iframe,
.embed-youtube object,
.embed-youtube embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/************************************************************************************
RELATED POSTS
*************************************************************************************/
.related-posts {
	overflow: hidden;
	margin: 0 0 1.1em;
	font-size: 0.7em;
}
.related-posts .post {
	width: 32.8%;
	float: left;
	margin: 0 0 3% 0.8%;
	clear: none;
	position: relative;
	text-align: center;
}
.related-posts .post:nth-of-type(3n+1) {
	margin-left: 0;
}
.related-posts .related-title {
	margin: 0 0 2em;
	padding: 1em 0 0;
	font-size: 1.2em;
	text-transform: uppercase;
	color: #000;
	letter-spacing: normal;
}
.related-posts .post-image {
	margin: 0;
	min-width: 0;
}
.related-posts .post-meta {
	margin: 0 0 .7em;
	font-size: .9em;
}
.related-posts .post-content {
	overflow: hidden;
}
.related-posts .post-image + .post-content {
    color: #fbfcfc;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    overflow: hidden;
	z-index: 9;
}
.related-posts .post-image + .post-content:before {
	content: '';
	display: block;
	background: rgba(0,0,0,0.8);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(rgba(0,0,0,0)), to(rgba(0,0,0,.8)));
	background: -webkit-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: -o-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: -moz-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: -ms-linear-gradient(top, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,.8) );
	opacity: 0.2;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.related-posts .post:hover .post-image + .post-content:before {
	opacity: 1;
}
.related-posts .post-content-inner-wrapper {
	display: table;
	width: 100%;
	height: 100%;
}
.related-posts .post-content-inner {
	display: table-cell;
	vertical-align: bottom;
}
.related-posts .post-category {
	margin: 0 0 0.95em;
	display: block;
	font-size: 0.85em;
	text-transform: uppercase;
}
.related-posts .post-title {
	font-size: 1.2em;
	margin: 0 0 0.85em;
	line-height: normal;
}
.full_width .related-posts {
	max-width: 1253px;
	margin: 0 auto 4em;
}

/************************************************************************************
MASONRY LAYOUT
*************************************************************************************/
.masonry-done.loops-wrapper .post {
	margin-right: 0;
	margin-left: 0;
}
.list-post .grid-sizer {
	width: 100%;
}
.grid4 .grid-sizer {
	width: 22.6%;
}
.grid3 .grid-sizer {
	width: 31.2%;
}
.grid2 .grid-sizer {
	width: 48.4%;
}
.gutter-sizer{
	width: 3.19%;
}
.grid4.no-gutter .grid-sizer {
	width: 25%;
}
.grid3.no-gutter .grid-sizer {
	width: 33.33%;
}
.gecko .grid3.no-gutter .grid-sizer {
	width: 33.3332%; /* fix grid3 in Firefox */
}
.grid2.no-gutter .grid-sizer {
	width: 50%;
}
.no-gutter .gutter-sizer{
	width: 0%;
}

/* GALLERY COLUMN
================================================ */
/* gallery column 1 (display all in one line) */
#body .gallery-columns-1 .item,
#body .gallery-columns-1 .gallery-item {
	width: auto;
}
#body .gallery-columns-1 br {
	display: none !important;
}

/* gallery column 2 */
#body .gallery-columns-2 .item,
#body .gallery-columns-2 .gallery-item {
	width: 50%;
}

/* gallery column 3 */
#body .gallery-columns-3 .item,
#body .gallery-columns-3 .gallery-item {
	width: 33.333%;
}
/* gallery column 4 */
#body .gallery-columns-4 .item,
#body .gallery-columns-4 .gallery-item {
	width: 25%;
}

/* gallery column 5 */
#body .gallery-columns-5 .item,
#body .gallery-columns-5 .gallery-item {
	width: 20%;
}

/* gallery column 6 */
#body .gallery-columns-6 .item,
#body .gallery-columns-6 .gallery-item {
	width: 16.666%;
}

/* gallery column 7 */
#body .gallery-columns-7 .item,
#body .gallery-columns-7 .gallery-item {
	width: 14.285%;
}

/* gallery column 8 */
#body .gallery-columns-8 .item,
#body .gallery-columns-8 .gallery-item {
	width: 12.5%;
}

/* gallery column 9 */
#body .gallery-columns-9 .item,
#body .gallery-columns-9 .gallery-item {
	width: 11.111%;
}

/* set gallery item margin-right */
#body .gallery-columns-1 .gallery-item,
#body .gallery-columns-2 .gallery-item,
#body .gallery-columns-3 .gallery-item,
#body .gallery-columns-4 .gallery-item,
#body .gallery-columns-5 .gallery-item,
#body .gallery-columns-6 .gallery-item,
#body .gallery-columns-7 .gallery-item,
#body .gallery-columns-8 .gallery-item,
#body .gallery-columns-9 .gallery-item {
	margin: 0;
}

/* clear gallery item margin-right */
#body .gallery-columns-9 .gallery-item:nth-of-type(9n),
#body .gallery-columns-8 .gallery-item:nth-of-type(8n),
#body .gallery-columns-7 .gallery-item:nth-of-type(7n),
#body .gallery-columns-6 .gallery-item:nth-of-type(6n),
#body .gallery-columns-5 .gallery-item:nth-of-type(5n),
#body .gallery-columns-4 .gallery-item:nth-of-type(4n),
#body .gallery-columns-3 .gallery-item:nth-of-type(3n),
#body .gallery-columns-2 .gallery-item:nth-of-type(2n) {
	margin-right: 0;
}

/* Masonry Gallery */
.gallery-wrapper.masonry .item .gallery-caption .post-title {
	font-size: 1em;
}
.gallery-wrapper.masonry .item .gallery-item-wrapper {
	overflow: hidden;
}
.gallery-wrapper.masonry .item .gallery-item-wrapper .gallery-caption {
	background-color: #000;
	background: rgba(38,31,61,.8);
	margin: 0;
	height: 100%;
	text-align: center;	
}
.gallery-wrapper.masonry .item .gallery-caption .post-category a, 
.gallery-wrapper.masonry .item .gallery-caption .post-title a {
	color: #FFF;
}

/* gallery item */
.gallery-wrapper .item {
	background-color: inherit;
	display: block;
	float: left;
	margin: 0;
	padding: 0;
	overflow: hidden;
}
.gallery-wrapper .item .gallery-item-wrapper {
	display: block;
	position: relative;
	height: 100%;
	margin: 0;
	padding: 0;
}
.gallery-wrapper .item img {
	display: inline-block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	-webkit-backface-visibility: hidden;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-ms-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.featured-area .gallery-wrapper .item img {
	display: block;
}

.gallery-wrapper .item .gallery-item-wrapper .gallery-caption {
	display: block;
	visibility: hidden;
	position: absolute;
	top: 20%;
	padding: 15% 6%;
	width: 100%;
	text-align: left;
	color: inherit;
	font-family: 'Suranna', serif;
	font-size: 0.9em;
	line-height: 120%;
	margin: .25em 0 0;
	opacity: 0;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.gallery-wrapper .item:hover .gallery-caption {
	color: #fff;
	display: block;
	visibility: visible;
	top: 0;
	opacity: 1;
}

/* gallery caption content */
.gallery-wrapper .item .gallery-caption .post-title {
	font-size: 1.65em;
	margin-top: .5em;
	color: inherit;
}
.gallery-wrapper .item .gallery-caption .post-category {
	font-size: .85em;
	font-weight: 500;
	margin-top: .25em;
	text-decoration: none;
	color: inherit;
}
.gallery-wrapper .item .gallery-caption .post-category:after {
	display: none;
	visibility: hidden;
}
.gallery-wrapper .item .gallery-caption .post-category a,
.gallery-wrapper .item .gallery-caption .post-title a {
	text-decoration: none;
	color: inherit;
}
.gallery-wrapper .item:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}

/************************************************************************************
7.1 PORTFOLIO POST TYPE
*************************************************************************************/
.project-date,
.project-client,
.project-services,
.project-view {
	border-left: 1px solid #C5C5C5;
	color: #0f70e8;
	display: inline-block;
	font-size: 1.2em;
	font-family: 'Suranna';
	padding: 0 1em;
	margin: 0 .5em;
}
.project-date strong,
.project-client strong,
.project-services strong,
.project-view strong {
	color: #000;
	display: block;
	font-size: .6em;
	font-family: 'Yantramanav';
	font-weight: 500;
	letter-spacing: .1em;
	margin-bottom: .2em;
	text-transform: uppercase;
}
.project-client {
	border-left: none;
	padding: 0;
	margin: 0;
}
.single-portfolio .project-meta {
	margin-bottom: 3em;
}
.single-portfolio .post-image {
	margin: 0;
}
/* Post Filter */
.post-filter {
	padding: 0;
	margin: 0;
	font-family: 'Yantramanav', sans-serif;
	clear: both;
	overflow: hidden;
}
.post-filter li {
	border-left: 1px solid rgba(211,211,211,0.4);
	display: inline-block;
	padding: .2em .5em .2em .8em;
	line-height: 0;
	margin:  0.1em 0 1.7em;
}
.post-filter li a {
	color: #888b8d;
	font-size: 0.85em;
	font-weight: 500;
	display: inline-block;
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	line-height: 0.9em;
	letter-spacing: 0.03em;
}
.post-filter li:first-child {
	border: none;
	padding-left: 0;
}
.post-filter li a:after {
	border-bottom: 3px solid;
	content: '';
	position: absolute;
	width: 0;
	left: 0;
	top: 100%;
	opacity: 0;
	-webkit-transition: all .3s ease;
	-moz-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
}
.post-filter li:hover > a,
.post-filter li.active a {
	color: #0f70e8;
}
.post-filter li:hover > a:after,
.post-filter li.active a:after {
	opacity: 1;
	width: 100%;
	padding-top: 7px;
}

/************************************************************************************
8. SIDEBAR
*************************************************************************************/
.widget {
	margin: 0 0 2.3em;
}
.widgettitle {
	font-weight: 500;
	font-size: 1.2em;
	margin: 0 0 0.7em;
	padding: 0;
	position: relative;
	letter-spacing: 0.01em;
}
.widgettitle:before {
	content: '____';
	display: block;
	margin-bottom: 1.25em;
	letter-spacing: -1px;
	font-size: 20px;
}
.widget ul {
	margin: 0;
	padding: 0;
}
.widget li {
	margin: 0;
	padding: .65em 0;
	list-style: none;
	clear: both;
}
.widget ul ul {
	margin: 6px 0 -6px 0px;
	padding: 0;
	border-top: none;
}
.widget ul ul li {
	margin: 0;
	padding-left: 10px;
}

/************************************************************************************
8.1 WIDGET STYLES
*************************************************************************************/
/* calendar widget */
.widget #wp-calendar caption {
	font-weight: bold;
	padding-bottom: 10px;
}
.widget #wp-calendar td {
	width: 31px;
	padding: 0.2em 0.015em;
	text-align: center;
}

/* recent post widget */
.widget_recent_entries li {
	margin: 0 0 1.2em;
}
.widget_recent_entries a {
	font-size: 1.2em;
	display: inline-block;
	margin: 0 0 .3em;
}
.widget_recent_entries .post-date {
	display: block;
	font-size: .95em;
}

/* feature posts widget */
.widget .feature-posts-list br {
	display: none;
}
.widget .feature-posts-list .post-img {
	margin: 0 1.2em 1em 0;
	float: left;
}
.widget .feature-posts-list small {
	font-size: 90%;
	display: block;
	margin: 0 0 .3em;
}
.widget .feature-posts-list .feature-posts-title {
	margin: 0 0 .2em;
	display: inline;
	font-size: 1.1em;
}
.widget .feature-posts-list .post-excerpt {
	display: block;
	font-family: inherit;
	font-size: inherit;
	line-height: normal;
}

/* twitter widget */
.widget .twitter-list li {
	padding: 0;	
	margin: 0 0 1.2em;
}
.widget .twitter-list .twitter-timestamp {
	font-style: italic;
	display: block;
	padding-top: .4em;
}
.widget .follow-user {
	margin: 0;
	padding: 5px 0;
}

/* links widget */
.widget .links-list img, .widget_links img {
	vertical-align: middle;
}

/* recent comments widget */
.recent-comments-list .avatar {
	margin-right: 12px;
	float: left;
}

/* flickr widget */
.widget .flickr_badge_image {
	margin-top: 10px;
}
.widget .flickr_badge_image img {
	width: 120px;
	height: 120px;
	margin: 0;
	float: left;
}

/* search widget */
#sidebar #searchform {
	position: static;
}
#sidebar #searchform #s {
	width: 93%;
}

/* add white bg to facebook badge iframe */
iframe[src*="facebook"] {
	background-color: #fff;
}

/* reset twitter embed max-width to 100% */
#content .twitter-tweet-rendered {
	max-width: 100% !important;
}
#content .twt-border {
	max-width: 100% !important;
	min-width: 180px !important;
}

/************************************************************************************
9. FOOTER
*************************************************************************************/
#footerwrap {
	clear: both;
	border-top: 1px solid #e1e3e3;
	background-color: #fff;
}

/* footer widgets */
.footer-widgets-wrap {
	background-color: #f0f2f2;
	border-top: 1px solid #d8dada;
	box-shadow: 0px -5px 175px rgba(0,0,0,0.1);
	line-height: 1.35em;
	position: relative;
}
.footer-widgets {
	clear: both;
}
.footer-widgets .widget {
	margin-top: 4.25em;
	margin-bottom: 5em;
	letter-spacing: normal;
}
.footer-widgets .widgettitle {
	color: inherit;
	margin-bottom: 0.7em;
}
.footer-widgets .widgettitle:before {
	display: none;
}

/* footer text */
.footer-text {
	clear: both;
	padding: 2.35em 0 2em;
	text-align: center;
}
.footer-text .one {
	font-family: 'Suranna', serif;
	font-size: 1.1em;
	line-height: 1.1em;
	margin-bottom: 0.45em;
}
.footer-text .two {
	font-size: 0.85em;
	letter-spacing: 0.012em;
}
.footer-text a {
	color: inherit;
}
#footer .footer-nav {
        list-style: none;
        margin: 30px auto 0px auto;
        text-align: center;
        text-transform: uppercase;
        letter-spacing: .1em;
}
#footer .footer-nav li {
        display: inline-block;
	margin: 0;
}
#footer .footer-nav li a {
        text-decoration: none;
        font-size: 1.143em;
        padding: 8px;
}
/* back to arrow */
.back-top {
	text-align: center;
	line-height: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -32px;
}
.back-top .arrow-up {
	display: inline-block;
}
.back-top .arrow-up a {
	display: inline-block;
	text-decoration: none;
	margin: auto;
	-webkit-box-shadow: 0 0 rgba(0,0,0,0.13), 0 0px rgba(0,0,0,0.13), 4px 0 4px -3px rgba(0,0,0,0.13), -4px 0 4px -3px rgba(0,0,0,0.13);
	-moz-box-shadow: 0 0 rgba(0,0,0,0.13), 0 0px rgba(0,0,0,0.13), 4px 0 4px -3px rgba(0,0,0,0.13), -4px 0 4px -3px rgba(0,0,0,0.13);
	box-shadow: 0 0 rgba(0,0,0,0.13), 0 0px rgba(0,0,0,0.13), 4px 0 4px -3px rgba(0,0,0,0.13), -4px 0 4px -3px rgba(0,0,0,0.13);
	background-color: #fff;
	line-height: 42px;
	width: 64px;
	height: 42px;
	position: relative;
}
.back-top a:before {
	content: '\e648';
	display: inline-block;
	font-family: themify;
	font-size: 1.4em;
	position: absolute;
	top: 54%;
	left: 52%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.back-top .arrow-up:hover > a {
	background-color: #0f70e8;
	color: #fff;
}
.back-top .arrow-up:hover a:before {
	-webkit-animation: back-to-top 1.5s infinite; /* Chrome, Safari, Opera */
	animation: back-to-top 1.5s infinite;
	-webkit-animation-timing-function: linear;
	animation-timing-function: linear;
}
/* back to top animation */
@-webkit-keyframes back-to-top {
	0% {top: 10px;}
	50% {top: 80%;}
	100% {top: 10px;}
}
@-moz-keyframes back-to-top {
	0% {top: 10px;}
	50% {top: 80%;}
	100% {top: 10px;}
}
@-o-keyframes back-to-top {
	0% {top: 10px;}
	50% {top: 80%;}
	100% {top: 10px;}
}
@keyframes back-to-top {
	0% {top: 10px;}
	50% {top: 80%;}
	100% {top: 10px;}
}

/************************************************************************************
10. BUILDER STYLING
*************************************************************************************/
/* builder row */
.full_width .themify_builder_row.fullwidth .row_inner {
	width: auto;
	max-width: 100%;
	padding: 0;
}

/* module title */
.themify_builder_content .module-title {
	margin: 1.4em 0 1.6em;
	padding: 1em 0 0;
	font-size: 1.4em;
	text-transform: uppercase;
	letter-spacing: 1px;
}


/************************************************************************************
11. WORDPRESS POST FORMATTING
*************************************************************************************/
.sticky {}
img.alignleft, img.aligncenter, img.alignright, img.alignnone {
	margin-bottom: 1em;
}
.alignleft {
	float: left;
	margin-right: 2em;
}
.alignright {
	float: right;
	margin-left: 2em;
}
.aligncenter {
	text-align: center;
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.wp-caption {
	text-align: center;
	margin-bottom: 1em;
	max-width: 100%;
}
.wp-caption-text {
	margin: .5em 0;
}

/* attachment page */
body.attachment {
	width: auto;
	float: none;
	position: static;
}
.single .attachment.post {
	width: auto;
	float: none;
}

/************************************************************************************
12. WP GALLERY
*************************************************************************************/
#body .gallery {
	margin: 0 0 20px 0;
}

/* gallery item */
#body .gallery .gallery-item {
	margin: 0 8px 8px 0;
	vertical-align: top;
	width: auto;
	float: left;
	text-align: center;
}
#body .gallery img {
	border: none;
	vertical-align: middle;
}

/* gallery caption */
#body .gallery .gallery-caption {
	line-height: 120%;
	font-size: 90%;
	text-align: center;
	margin: 5px 0 0;
}

/* GALLERY COLUMN
================================================ */
/* gallery column 1 (display all in one line) */
#body .gallery-columns-1 .gallery-item {
	width: auto;
}
#body .gallery-columns-1 br {
	display: none !important;
}

/* gallery column 2 */
#body .gallery-columns-2 .gallery-item {
	width: 49.2%;
}

/* gallery column 3 */
#body .gallery-columns-3 .gallery-item {
	width: 32.3%;
}
/* gallery column 4 */
#body .gallery-columns-4 .gallery-item {
	width: 23.8%;
}

/* gallery column 5 */
#body .gallery-columns-5 .gallery-item {
	width: 18.8%;
}

/* gallery column 6 */
#body .gallery-columns-6 .gallery-item {
	width: 15.4%;
}

/* gallery column 7 */
#body .gallery-columns-7 .gallery-item {
	width: 13%;
}

/* gallery column 8 */
#body .gallery-columns-8 .gallery-item {
	width: 11.18%;
}

/* gallery column 9 */
#body .gallery-columns-9 .gallery-item {
	width: 9.77%;
}

/* set gallery item margin-right */
#body .gallery-columns-1 .gallery-item,
#body .gallery-columns-2 .gallery-item,
#body .gallery-columns-3 .gallery-item,
#body .gallery-columns-4 .gallery-item,
#body .gallery-columns-5 .gallery-item,
#body .gallery-columns-6 .gallery-item,
#body .gallery-columns-7 .gallery-item,
#body .gallery-columns-8 .gallery-item,
#body .gallery-columns-9 .gallery-item {
	margin: 0 1.5% 1.5% 0;
}

/* clear gallery item margin-right */
#body .gallery-columns-9 .gallery-item:nth-of-type(9n),
#body .gallery-columns-8 .gallery-item:nth-of-type(8n),
#body .gallery-columns-7 .gallery-item:nth-of-type(7n),
#body .gallery-columns-6 .gallery-item:nth-of-type(6n),
#body .gallery-columns-5 .gallery-item:nth-of-type(5n),
#body .gallery-columns-4 .gallery-item:nth-of-type(4n),
#body .gallery-columns-3 .gallery-item:nth-of-type(3n),
#body .gallery-columns-2 .gallery-item:nth-of-type(2n) {
	margin-right: 0;
}

/************************************************************************************
13. CLEAR & ALIGNMENT
*************************************************************************************/
.clear {
	clear: both;
}
.left {
	float: left;
}
.right {
	float: right;
}
.textleft {
	text-align: left;
}
.textright {
	text-align: right;
}
.textcenter {
	text-align: center;
}

/* clearfix */
.clearfix:after, .widget li:after, #body:after, #footer:after, footer:after, .pagenav:after, #main-nav:after, .menu:after, .gallery:after, #content:after {
	content: "";
	display: table;
	clear: both;
}

/************************************************************************************
ANIMATIONS
*************************************************************************************/
/* post nav animation */
@-webkit-keyframes prev-arrow {
	0% {left: -30px;}
	50% {left: -20px;}
	100% {left: -30px;}
}
@keyframes prev-arrow {
	0% {left: -30px;}
	50% {left: -20px;}
	100% {left: -30px;}
}

@-webkit-keyframes next-arrow {
	0% {right: -30px;}
	50% {right: -20px;}
	100% {right: -30px;}
}
@keyframes next-arrow {
	0% {right: -30px;}
	50% {right: -20px;}
	100% {right: -30px;}
}
