/*
Theme Name: Inframe
Theme URI: http://www.inditheme.com/inframe
Author: Inditheme
Author URI: http://www.inditheme.com
Description: Personal WordPress theme for bloggers.
Version: 0.1.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, left-sidebar, right-sidebar, responsive-layout, custom-background, custom-menu, featured-images, microformats, post-formats, sticky-post, threaded-comments, translation-ready
Text Domain: inframe
---------------------------------------------------------------------------------------------------
[Table of contents]
---------------------------------------------------------------------------------------------------
1.0 General Elements
2.0 Wrapper
3.0 Site Navigation
4.0 Social Networking
5.0 Top Search
6.0 Branding Logo
7.0 Featured Content
8.0 Main Content
9.0 Singular
10.0 Wordpress gallery
11.0 Comments
12.0 Author Box
13.0 Related Posts
14.0 Post Navigation
15.0 Pagination
16.0 Archive
17.0 not found
18.0 Sidebar
19.0 Footer
20.0 Media Queries
--------------------------------------------------------------------------------------------------*/
/* -------------------------------------------------------------------------------------------------
[1.0 General Elements]
--------------------------------------------------------------------------------------------------*/
body {
	font-family: "Noto Serif",serif;
	line-height: 25px;
	color: #464646;
	font-size: 13px;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

:focus {
	outline: none;
}

a {
	color: #10D07A;
}

a:hover {
	color: #464646;
}

a,a:hover,a:active,a:focus,input,input:focus {
	text-decoration: none;
	-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;
	outline: none;
	cursor: pointer;
}

button,button:active,button:focus
.btn,.btn:active,.btn:focus {
	outline: none;
}

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

.aligncenter {
	display: block;
	margin-right: auto;
	margin-left: auto;
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
	font-weight: 600;
	font-family: 'Open Sans',sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
}

blockquote {
	font-style: italic;
	letter-spacing: .5px;
	font-size: 14px;
	color: #797979;
}

dt,dd {
	line-height: 1.7;
}

[class*="-title"] a,[class*="-title"] > span {
	font-family: "Open Sans",Sans;
	color: #121212;
	-webkit-word-wrap: break-word;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
	font-size: 13px;
}

input::-moz-placeholder,textarea::-moz-placeholder {
	font-size: 13px;
}

input:-moz-placeholder,textarea:-moz-placeholder {
	font-size: 13px;
}

input::-ms-input-placeholder,textarea::-ms-input-placeholder {
	font-size: 13px;
}

input:focus::-webkit-input-placeholder,textarea:focus::-webkit-input-placeholder {
	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;
}

input:focus:-moz-placeholder,textarea:focus:-moz-placeholder {
	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;
}

input:focus::-moz-placeholder,textarea:focus::-moz-placeholder {
	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;
}

input:focus:-ms-input-placeholder,textarea:focus:-ms-input-placeholder {
	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;
}

/* WP Caption */
.wp-caption {
	margin-bottom: 1.6em;
	max-width: 100%;
}

.wp-caption.alignleft,.wp-caption.alignright,.wp-caption.aligncenter,.wp-caption.alignnone {
	margin-bottom: 24px;
	border: 1px solid #eee;
	padding: 8px;
	text-align: center;
}

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

.wp-caption-text {
	color: #707070;
	color: rgba(51,51,51,0.7);
	font-family: "Noto Sans",sans-serif;
	font-size: 10px;
	font-size: 1rem;
	line-height: 1.5;
	padding: .5em 0 0;
	text-transform: uppercase;
}

/* WP Image */
.comment-content img[height],.inframe-entry-full img,.inframe-entry-excerpt img,img[class*="align"],img[class*="wp-image-"],img[class*="attachment-"] {
	height: auto;
	max-width: 100%;
}

img.alignright,.wp-caption.alignright {
	margin-left: 20px;
}

img.alignleft,.wp-caption.alignleft {
	margin-right: 20px;
}

img.size-full,img.size-large,.wp-post-image,.post-thumbnail img,.widget.widget_text img {
	height: auto;
	max-width: 100%;
}

/* Middle Vertical Align */
.parent-vertical-align {
	width: 70%;
	height: 100%;
	display: table;
	vertical-align: middle;
	position: relative;
	z-index: 3;
	margin: 0 auto;
	text-align: center;
}

.vertical-middle-align {
	vertical-align: middle;
	display: table-cell;
}

.vertical-bottom-align {
	position: relative;
	top: 100%;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	-o-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

/* For sticky Element. */
.is_stuck {
	z-index: 22;
}

/*------------------------------------------------------------------------------------------------
[2.0 Wrapper]
--------------------------------------------------------------------------------------------------*/
.inframe-outer-wrapper {
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	background: #fff;
}

.container,.container-fluid {
	position: relative;
}

/*------------------------------------------------------------------------------------------------
[3.0 Site Navigation]
--------------------------------------------------------------------------------------------------*/
.inframe-nav {
	height: 62px;
	position: relative;
	border-bottom: 1px solid #eee;
	border-top: 1px solid #eee;
	background-color: #fff;
}

.fixed .inframe-nav {
	left: 0;
	right: 0;
	position: fixed;
	top: -80px;
	z-index: 9999;
	box-shadow: 0 0 10px #ECEBEB;
}

.navinline-header .inframe-nav {
	margin-bottom: 90px;
}

.navinbottom-header .inframe-nav {
	margin-bottom: 40px;
}

#top-nav {
	display: none;
}

#top-nav:before,#top-nav:after {
	content: "";
	display: block;
	clear: both;
}

.top-nav {
	position: relative;
	text-align: center;
}

#top-nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#top-nav > ul > li {
	display: inline-block;
	position: relative;
	padding: 18px 0 17px;
}

#top-nav a {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: .5px;
	font-family: 'Open Sans',sans-serif;
	font-weight: 600;
	color: #151515;
	-webkit-word-wrap: break-word;
	-moz-word-wrap: break-word;
	-o-word-wrap: break-word;
	word-wrap: break-word;
}

#top-nav .current-menu-item > a,#top-nav a:hover,.top-social a:hover {
	color: #10D07A;
}

#top-nav > ul > li a {
	padding: 0 14px;
}

#top-nav .page_item_has_children > .children li,#top-nav .menu-item-has-children > .sub-menu li {
	border-bottom: 1px solid #717171;
}

#top-nav .page_item_has_children > .children a,#top-nav .menu-item-has-children > .sub-menu a {
	color: #fff;
}

.social-share,.top-search .top-search-button,.top-nav-button,.side-expand button {
	border: none;
	background-color: #fff;
	border-right: 1px solid #eee;
	cursor: pointer;
	padding: 0;
	margin: 0;
}

.top-search .top-search-button {
	border-right: none;
}

.top-nav-button {
	border: none;
	line-height: 40px;
	margin: 0 auto;
	padding: 10px 20px;
	background: #eee;
	text-transform: uppercase;
	font-family: 'Open Sans',sans-serif;
	font-weight: 600;
	font-size: 85%;
	letter-spacing: 1.5px;
	display: inline-block;
	text-align: center;
	z-index: 9999;
	width: 100%;
}

.have-side-sidebar .top-nav-button {
	padding-right: 54px;
}

.top-nav-button .icon {
	margin-right: 2px;
}

.menu-item-has-children > a:after,.top-nav-button:before,.feat-image:after,.jg-entry:before,.sticky .inframe-entry-header:after,blockquote:before {
	font-family: 'Icons';
	font-style: normal;
	font-weight: 400;
	text-decoration: inherit;
	text-align: center;
	speak: none;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	margin-right: 4px;
	position: relative;
}

.top-nav-button:before {
	content: "\f0c9";
}

.top-nav-button.opened:before {
	content: "\f00d";
}

.inframe-nav .menu-item-has-children > a:after {
	content: "\f107";
	margin-right: 0;
	margin-left: 6px;
}

.inframe-nav .sub-menu .menu-item-has-children > a:after {
	position: absolute;
	right: 15px;
	content: "\f105";
}

.menu-item-has-children > a.opened:after {
	content: "\f106";
}

.mega-wrapper {
	display: none;
}

/*------------------------------------------------------------------------------------------------
[4.0 Social Networking]
--------------------------------------------------------------------------------------------------*/
.top-social,.side-expand {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 99;
	height: 100%;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	transition: all .6s ease-in-out;
	overflow: hidden;
}

.top-social.show-on {
	width: 100%;
	background: #fff;
	-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;
}

.social-share > .icon,.top-search .top-search-button .icon,.side-expand .icon {
	height: 62px;
	width: 50px;
	line-height: 62px !important;
	margin: 0;
}

.top-search .top-search-button .icon {
	border-left: 1px solid #eee;
}

.social-share {
	float: left;
}

.top-social a {
	width: 54px;
	color: #3C3B3B;
	padding: 0 15px;
	border-right: 1px solid #eee;
	height: 60px;
	background-color: #fff;
	line-height: 60px;
	display: none;
	float: left;
	text-align: center;
}

/*------------------------------------------------------------------------------------------------
[5.0 Top Search]
--------------------------------------------------------------------------------------------------*/
.top-search {
	position: absolute;
	right: 0;
	z-index: 3;
	min-width: 50px;
	top: 0;
	background-color: #fff;
	overflow: hidden;
	height: 60px;
}

.top-search-button {
	position: absolute;
	top: 0;
	right: 0;
}

.top-search-form {
	display: none;
}

.top-search-form .top-search-field {
	border: none;
	min-width: 220px;
	padding: 18px 0 18px 14px;
	font-size: 10px;
	font-family: 'Open Sans';
}

.top-search-field,.top-search-field:focus,.top-search-field:active {
	outline: none;
}

/*------------------------------------------------------------------------------------------------
[6.0 Branding Logo]
--------------------------------------------------------------------------------------------------*/
.inframe-branding {
	position: relative;
	padding-top: 50px;
	padding-bottom: 50px;
}

.inframe-branding .site-title {
	margin: 0;
	padding: 0;
}

.inframe-branding .site-title,.inframe-branding .site-description {
	width: 0;
	height: 0;
	clip: rect(0,0,0,0);
	text-indent: -99999em;
	margin: 0;
}

.nav-logo-area {
	float: left;
	line-height: 1;
	position: absolute;
	width: 100%;
	text-align: center;
	top: 61px;
	left: 0;
	padding: 20px 0;
	background: #fff;
}

.nav-logo-area h1 {
	margin: 0;
	display: inline-table;
	height: 60px;
	vertical-align: middle;
}

.nav-logo-area a {
	display: table-cell;
	vertical-align: middle;
}

.logo-image {
	display: inline-block;
}

/*------------------------------------------------------------------------------------------------
[7.0 Featured Content]
--------------------------------------------------------------------------------------------------*/
.inframe-featured {
	position: relative;
}

.inframe-featured-inner-wrapper {
	margin-bottom: 54px;
}

.featured-meta {
	background-color: #fff;
	padding: 40px 60px;
	position: relative;
}

.featured-meta:before {
	content: "";
	position: absolute;
	left: -4px;
	top: -4px;
	right: -4px;
	bottom: -4px;
	border: 2px solid #fff;
	z-index: -1;
}

.featured-meta .icon {
	display: none;
}

.featured-title {
	margin: 5px 0;
	font-family: 'Open Sans',sans-serif;
	text-transform: uppercase;
	letter-spacing: .5px;
	font-size: 13px;
}

.meta {
	font-size: 11px;
	position: relative;
	padding: 0 2px;
	color: #121212;
	line-height: 1;
	font-family: 'Open Sans',sans-serif;
	font-weight: 600;
	text-transform: uppercase;
}

.featured-meta .meta span {
	background-color: #fff;
	padding: 0 8px;
	position: relative;
	z-index: 2;
}

.featured-meta .meta-date {
	display: none;
	border: 2px solid #EEE;
	padding: 8px;
	margin-top: 5px;
	color: #5A5A5A;
}

.featured-navigation .icon {
	display: inline-table;
}

.featured-content {
	height: 300px;
}

.featured-meta {
	padding: 40px;
}

.featured-navigation a {
	position: absolute;
	height: 90px;
	width: 34px;
	background-color: #EFEFEF;
	left: -17px;
	top: 50%;
	margin-top: -45px;
	line-height: 86px;
	display: inline-block;
	padding: 0;
	border-radius: 0;
	color: #292929;
	box-shadow: 1px 0 4px 0 #eee;
}

.featured-navigation .custom-next {
	right: -17px;
	left: auto;
}

.inframe-featured-category {
	margin-bottom: 30px;
}

.inframe-featured.carousel .featured-navigation .custom-prev {
	left: 3px;
}

.inframe-featured.carousel .featured-navigation .custom-next {
	right: 3px;
}

.featured-meta p {
	display: none;
	padding: 0 40px;
}

.section-title {
	text-align: center;
	text-transform: uppercase;
	margin-top: 0;
	margin-bottom: 30px;
	font-size: 14px;
	letter-spacing: 1px;
	position: relative;
}

.section-title:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	left: 0;
	background: #eee;
	top: 50%;
}

.section-title span {
	display: inline-block;
	background-color: #fff;
	position: relative;
	padding: 0 20px;
}

.inframe-featured-category .wrap {
	overflow: hidden;
}

.featured-category-inner-wrapper {
	margin: 0 -15px;
	padding-top: 20px;
}

.featured-category-inner-wrapper .slick-slide {
	margin: 0 15px;
}

.featured-category-inner-wrapper .featured-title {
	font-size: 12px;
	text-align: center;
	line-height: 1.6;
	padding: 14px 20px 0;
	margin: 0;
	letter-spacing: 1px;
}

.featured-category-content {
	text-align: center;
	background-color: #fff;
}

.inframe-featured-category .slick-dots {
	bottom: auto;
	top: -20px;
	margin: 0;
	padding: 0;
}

.inframe-featured-category .slick-dots li {
	margin: 0;
	width: 16px;
	height: 16px;
}

.inframe-featured-category .slick-dots li button {
	padding: 0;
}

.inframe-featured-category .slick-dots li button,.inframe-featured-category .slick-dots li button:before {
	width: 16px;
	height: 16px;
	font-size: 10px;
}

.featured-category-content {
	-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;
}

.featured-category-content:hover {
	-webkit-transform: translateY(-10px);
	-moz-transform: translateY(-10px);
	-ms-transform: translateY(-10px);
	-o-transform: translateY(-10px);
	transform: translateY(-10px);
}

.inframe-featured-category .slick-list {
	padding-top: 10px;
}

.inframe-featured-category .slick-list img {
	-webkit-transition: opacity .3s ease-in-out;
	-moz-transition: opacity .3s ease-in-out;
	-o-transition: opacity .3s ease-in-out;
	transition: opacity .3s ease-in-out;
}

.feat-thumb {
	position: relative;
}

.feat-thumb .inframe-entry-thumbnail {
	padding-bottom: 0;
}

.feat-cat {
	position: absolute;
	top: 50%;
	left: 0;
	height: 27px;
	width: 100%;
	text-align: center;
	margin-top: -10px;
}

.feat-cat span {
	background-color: #fff;
	display: inline-block;
	padding: 8px 12px;
	padding-right: 10px;
	line-height: 1;
	position: relative;
}

.feat-cat span:before {
	content: "";
	position: absolute;
	top: -4px;
	right: -4px;
	bottom: -4px;
	left: -4px;
	border: 2px solid #fff;
}

/*------------------------------------------------------------------------------------------------
[8.0 Main Content]
--------------------------------------------------------------------------------------------------*/
.inframe-content {
	overflow: hidden;
}

.inframe-content-wrapper {
	padding-bottom: 40px;
}

.post,article.page {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #eee;
	position: relative;
}

.inframe-entry-header {
	text-align: center;
	padding-bottom: 20px;
	position: relative;
}

.sticky .inframe-entry-header:before {
	content: "";
	position: absolute;
	bottom: -80px;
	width: 60px;
	height: 80px;
	background: #FFF;
	z-index: 2;
	left: 40px;
}

.sticky .inframe-entry-header:after {
	content: "\f097";
	position: absolute;
	left: 60px;
	font-size: 30px;
	bottom: -52px;
	z-index: 4;
}

.list.sticky .inframe-entry-header:before {
	bottom: auto;
	top: 10px;
	left: -90px;
}

.list.sticky .inframe-entry-header:after {
	bottom: auto;
	top: 34px;
	left: -68px;
}

.meta-content {
	line-height: 1;
}

.entry-title {
	text-transform: uppercase;
	letter-spacing: .5px;
	font-size: 18px;
	margin: 15px 0 0;
	line-height: 1.6;
}

.meta-icon {
	display: block;
	margin-bottom: 20px;
}

.meta-icon .icon {
	width: 24px;
	height: 24px;
	line-height: 24px !important;
}

.inframe-entry-header .meta-author {
	border-radius: 30px;
}

.inframe-entry-thumbnail,.inframe-entry-excerpt,.inframe-entry-full {
	padding-bottom: 20px;
	background-color: #fff;
}

.inframe-embed-media {
	margin-bottom: 20px;
}

.inframe-entry-excerpt p {
	margin-bottom: 0;
}

.inframe-entry-full blockquote {
	border: none;
	padding: 24px 24px 40px;
	text-align: center;
	margin: 30px 0;
	border-top: 1px solid #eee;
	border-bottom: 1px solid #eee;
}

.inframe-entry-full blockquote:before {
	content: "\f10d";
}

.footer-meta {
	line-height: 1;
}

.readmore.meta {
	line-height: 1;
	font-weight: 700;
	display: inline-block;
	padding: 0;
	font-family: 'Open Sans',sans-serif;
	text-transform: uppercase;
	font-size: 12px;
}

.readmore:hover {
	color: #10D07A;
}

.bookmarking {
	padding-right: 0;
}

.bookmarking.meta a {
	display: inline-block;
	color: #1D1D1D;
	width: 24px;
	text-align: center;
}

.bookmarking span {
	margin-right: 4px;
}

/* Format Gallery */
.justified-gallery {
	margin: -10px -10px 20px;
}

.jg-entry:before,.jg-entry:after {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity .3s ease-in-out;
	-moz-transition: opacity .3s ease-in-out;
	-o-transition: opacity .3s ease-in-out;
	transition: opacity .3s ease-in-out;
}

.jg-entry:before {
	content: "\f00e";
	width: 36px;
	height: 36px;
	background-color: #fff;
	line-height: 36px;
	z-index: 1;
	margin-top: -18px;
	margin-right: -18px;
	font-size: 16px;
	color: #464646;
}

.jg-entry:after {
	content: "";
	width: 44px;
	height: 44px;
	margin-top: -22px;
	margin-right: -22px;
	z-index: 1;
	border: 2px solid #fff;
}

.jg-entry:hover:before,.jg-entry:hover:after {
	opacity: 1;
}

.jg-entry img {
	-webkit-transition: opacity .3s ease-in-out;
	-moz-transition: opacity .3s ease-in-out;
	-o-transition: opacity .3s ease-in-out;
	transition: opacity .3s ease-in-out;
	opacity: 1;
}

.jg-entry:hover img {
	opacity: .7;
	-webkit-transition: opacity .3s ease-in-out;
	-moz-transition: opacity .3s ease-in-out;
	-o-transition: opacity .3s ease-in-out;
	transition: opacity .3s ease-in-out;
}

/* List Style */
.list .meta-icon,.list .footer-meta .bookmarking {
	display: none;
}

/*------------------------------------------------------------------------------------------------
[9.0 Singular]
--------------------------------------------------------------------------------------------------*/
.single .footer-meta,body.page .footer-meta {
	text-align: center;
	margin-bottom: 15px;
}

.single .footer-meta .tag-links {
	display: block;
}

.single .footer-meta .tag-links a {
	display: inline-block;
	margin: 0 4px;
	color: #1D1D1D;
}

.single .footer-meta .bookmarking.meta,.page .footer-meta .bookmarking.meta {
	float: none !important;
	padding: 12px 0 0;
	margin-top: 15px;
	border-top: 1px solid #E6E6E6;
	display: inline-block;
}

.page .footer-meta .bookmarking.meta {
	border-top: none;
	padding-top: 0;
	margin-top: 0;
}

.single .footer-meta .bookmarking span,.page .footer-meta .bookmarking span {
	display: none;
}

.single .footer-meta .bookmarking.meta a,.page .footer-meta .bookmarking.meta a {
	width: 36px;
	height: 36px;
	text-align: center;
	line-height: 36px;
	border-radius: 50%;
	background-color: #eee;
}

/*------------------------------------------------------------------------------------------------
[10.0 Wordpress gallery]
--------------------------------------------------------------------------------------------------*/
.gallery:before,.gallery:after {
	content: "";
	display: table;
}

.gallery:after {
	clear: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

.gallery-caption {
	background-color: rgba(0,0,0,0.4);
	color: #fff;
	font-size: 12px;
	line-height: 1.5;
	margin: 0;
	max-height: 50%;
	opacity: 0;
	padding: 10px 14px;
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	width: 100%;
}

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

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

/*------------------------------------------------------------------------------------------------
[11.0 Comments]
--------------------------------------------------------------------------------------------------*/
#respond {
	overflow: hidden;
}

.inframe-comments .comments #respond {
	padding: 30px;
	border: 1px dotted #DADADA;
	margin-top: 40px;
}

#reply-title,.comments-title,.inframe-author-box .author-details .author-name,.related-posts-title {
	font-size: 13px;
	font-family: 'Open Sans',sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
	margin: 0 0 10px;
}

#reply-title {
	text-align: left;
	font-size: 11px;
}

.comment-notes,.logged-in-as {
	margin-bottom: 30px;
}

.user-form {
	margin-top: 30px;
	margin: 0 -10px;
}

.user-form .form-control {
	margin-bottom: 24px;
	border-radius: 0;
}

.user-form .field {
	padding: 0 10px;
}

.form-submit #submit {
	font-family: 'Open Sans',sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 11px;
	padding: 10px 14px;
	border-radius: 0;
	color: #464646;
}

#form-allowed-tags {
	display: none;
}

.comment-form-comment {
	margin-bottom: 30px;
}

.comment-form-comment textarea {
	border-radius: 0;
}

.inframe-comments {
	padding-bottom: 30px;
	border-bottom: 1px solid #eee;
}

.comments-title span {
	display: inline-block;
	padding-bottom: 10px;
	border-bottom: 1px solid #E6E6E6;
}

.inframe-comments ul.comments {
	padding-bottom: 40px;
	border-bottom: 1px dotted #DADADA;
	margin-bottom: 40px;
}

.inframe-comments .media {
	margin-top: 40px;
	padding-top: 40px;
	border-top: 1px solid #eee;
}

.inframe-comments .media:first-child {
	padding-top: 0;
	border-top: none;
}

.inframe-comments .media .media-left {
	padding-right: 20px;
}

.inframe-comments .media .media-left .avatar {
	border-radius: 50%;
}

.comment ul.children {
	border-top: 1px solid #EEE;
	margin-top: 40px;
}

.comment ul.children .media:first-child {
	margin-top: 20px;
	padding-top: 0;
}

.comment ul.children ul .media {
	margin-top: 40px;
	padding-top: 20px;
}

.comment .media-body {
	position: relative;
}

.comment.bypostauthor .media-body:before {
	content: "author";
	position: absolute;
	right: 0;
	top: 0;
	background-color: #eee;
	padding: 10px 15px;
	border-radius: 30px;
	line-height: 1;
	font-family: 'Open Sans',sans-serif;
	text-transform: uppercase;
	font-size: 10px;
	font-weight: 700;
}

.meta-comment {
	margin-bottom: 20px;
}

.meta-comment .url {
	font-style: normal;
	font-family: 'Open Sans',sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	font-size: 11px;
	display: block;
	margin-bottom: 15px;
}

.meta-comment a {
	color: #464646;
}

.meta-comment .metadata a,.comment-reply-link {
	color: #AFAFAF;
}

.inframe-comments .media .text {
	line-height: 22px;
	margin-bottom: 20px;
}

.comment-navigation {
	padding: 20px;
	background-color: #eee;
	margin-bottom: 40px;
}

.comment-navigation a {
	color: #464646;
	font-family: 'Open Sans',sans-serif;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 11px;
	letter-spacing: 1px;
}

/*------------------------------------------------------------------------------------------------
[12.0 Author Box]
--------------------------------------------------------------------------------------------------*/
.inframe-author-box {
	background-color: #FFF;
	margin-bottom: 50px;
	padding: 10px 0 50px;
	border-bottom: 1px solid #eee;
}

.inframe-author-box .avatar {
	border-radius: 50%;
	overflow: hidden;
	float: left;
}

.inframe-author-box .author-details {
	padding: 0 0 0 100px;
}

.inframe-author-box .author-details .author-name {
	font-weight: 600;
	margin-bottom: 10px;
	display: inline-block;
	color: #121212;
	text-align: left !important;
}

.inframe-author-box .author-details .author-description {
	line-height: 23px;
	margin-bottom: 0;
}

/*------------------------------------------------------------------------------------------------
[13.0 Related Posts]
--------------------------------------------------------------------------------------------------*/
.inframe-related-posts {
	padding-bottom: 50px;
	margin-bottom: 35px;
	position: relative;
	border-bottom: 1px solid #eee;
}

.related-posts-title span {
	padding-bottom: 10px;
	display: inline-block;
	border-bottom: 1px solid #eee;
	margin-bottom: 25px;
}

.related-posts {
	margin-bottom: 15px;
	text-align: center;
}

.related-title {
	margin: 10px 0 5px;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .5px;
	line-height: 19px;
	text-align: center;
}

.related-posts .inframe-entry-thumbnail {
	padding-bottom: 0;
}

/*------------------------------------------------------------------------------------------------
[14.0 Post Navigation]
--------------------------------------------------------------------------------------------------*/
.screen-reader-text {
	display: none;
}

.nav-links {
	padding: 0 0 50px;
	border-bottom: 1px solid #eee;
	margin-bottom: 50px;
}

.comment-navigation .nav-links {
	margin-bottom: 0;
	padding-bottom: 0;
}

.nav-links .nav-next {
	float: right;
	max-width: 50%;
}

.nav-links .nav-previous {
	float: left;
	max-width: 50%;
}

.nav-links:before,.nav-links:after {
	content: "";
	clear: both;
	display: table;
}

.nav-links a {
	padding: 10px 20px;
	background-color: #eee;
	display: inline-block;
	border-radius: 30px;
	line-height: 1.6;
	text-align: center;
}

/*------------------------------------------------------------------------------------------------
[15.0 Pagination]
--------------------------------------------------------------------------------------------------*/
.inframe-pagination,.nav-links {
	font-family: 'Open Sans',sans-serif;
	letter-spacing: 0;
	font-weight: 600;
	font-size: 11px;
	text-transform: uppercase;
}

.inframe-pagination .nav-links {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.inframe-pagination a,.nav-links a {
	color: #464646;
	font-weight: 700;
}

.inframe-pagination .nav-links:before,.inframe-pagination .nav-links:after {
	content: "";
	display: table;
	clear: both;
}

.inframe-pagination .screen-reader-text {
	display: none;
}

/*------------------------------------------------------------------------------------------------
[16.0 Archive]
--------------------------------------------------------------------------------------------------*/
.inframe-archive-title {
	padding: 30px;
	margin-bottom: 50px;
	text-align: center;
	position: relative;
}

.page-title {
	margin: 0;
	text-transform: uppercase;
	font-size: 18px;
	letter-spacing: 1px;
	position: relative;
	display: block;
}

.taxonomy-description {
	font-size: 13px;
	position: relative;
}

.page-title span {
	color: #10D07A;
}

.inframe-archive-title:before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -30px;
	background-color: #eee;
	z-index: 0;
	bottom: 0;
}

.grid .inframe-archive-title:before {
	left: 20px;
	right: 20px;
}

/*------------------------------------------------------------------------------------------------
[17.0 not found]
--------------------------------------------------------------------------------------------------*/
.inframe-none {
	background-color: #eee;
	padding: 30px;
	font-size: 13px;
}

.inframe-none .form-inline .input-group {
	width: 100%;
}

/*------------------------------------------------------------------------------------------------
[18.0 Sidebar]
--------------------------------------------------------------------------------------------------*/
.inframe-sidebar {
	padding-top: 40px;
	font-size: 13px;
}

.inframe-entry-footer:before,.inframe-entry-footer:after,.inframe-sidebar:before,.inframe-sidebar:after,.tagcloud:before,.tagcloud:after {
	content: "";
	clear: both;
	display: table;
	height: 0;
}

.inframe-sidebar a {
	color: #111;
}

.inframe-sidebar a:hover {
	color: #10D07A;
}

.widget {
	margin-bottom: 34px;
	padding: 0 30px 30px;
	border: 1px solid #EEE;
}

.widget:last-child {
	margin-bottom: 0;
}

.widget-title {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
	text-align: center;
	margin: -18px 0 20px;
}

.widget-title span {
	background-color: #FFF;
	padding: 10px 15px;
	display: inline-block;
}

.inframe-sidebar .widget ul {
	padding: 0;
	margin-bottom: 0;
}

.widget_recent_entries ul,.widget_recent_comments ul,.widget_categories ul,.widget_meta ul,.widget_archive ul,.widget_pages ul,.widget_rss ul,.widget_nav_menu ul {
	list-style: none;
	padding-left: 0 !important;
	padding-right: 0;
}

.inframe-sidebar .widget li {
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-bottom: 1px solid #EEE;
}

.inframe-sidebar .widget li:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.widget select {
	width: 100%;
	padding: 8px;
	border: 1px solid #eee;
	background-color: #f7f7f7;
}

/* Side sidebar */
.side-sidebar .widget {
	margin-bottom: 44px;
}

.side-sidebar .widget:last-child {
	margin-bottom: 0;
}

.side-overlay {
	content: "";
	position: relative;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.9);
	z-index: 99;
	top: 0;
	left: 0;
}

.side-opened .side-overlay {
	position: fixed;
}

.side-sidebar {
	position: fixed;
	max-width: 370px;
	width: 80%;
	height: 100%;
	top: 0;
	z-index: 99;
	background: #FFF;
	padding: 40px;
	right: 0;
	overflow-x: visible;
	-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-transform: translateX(100%);
	-moz-transform: translateX(100%);
	-ms-transform: translateX(100%);
	-o-transform: translateX(100%);
	transform: translateX(100%);
}

.side-expand {
	width: 50px;
	position: absolute;
	right: 50px;
	z-index: 44;
	border: none;
	left: auto;
	text-align: center;
	border-left: 1px solid #EEE;
}

.side-expand button {
	border-right: none;
}

.side-opened .side-sidebar {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	overflow-y: auto;
}

/* Advertise Widget */
.banner-wrapper {
	text-align: center;
}

.advertise_banner_widget .widget-title {
	display: none;
}

.advertise_banner_widget {
	padding: 0;
	border: none;
	margin-top: -3px;
}

.banner-ads {
	display: inline-block;
	margin: 0 auto;
}

/* About Widget */
.info-name {
	font-family: 'Open Sans',sans-serif;
	font-weight: 600;
	display: block;
	text-align: center;
	margin: 20px 0 10px;
}

.info-description {
	text-align: center;
	line-height: 20px;
}

.tagcloud a {
	font-size: 10px !important;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 1px;
	float: left;
	padding: 8px 12px;
	background-color: #F3F3F3;
	line-height: 1;
	margin: 0 2px 4px;
	border: 1px solid #eee;
	font-family: 'Open Sans',sans-serif;
}

.widget_calendar table {
	width: 100%;
	border: 1px solid #eee;
}

.widget_calendar th,.widget_calendar td {
	text-align: center;
	border: 1px solid #eee;
	padding: 4px 0;
}

/* Widget Social Networking */
.inframe-sidebar .social_networking_widget a,.footer-widget .social_networking_widget a {
	width: 40px;
	height: 40px;
	line-height: 36px;
	text-align: center;
	border: 1px solid #eee;
	margin: 0 2px 4px;
	display: inline-block;
}

.footer-fullwidth-widget .social_networking_widget {
	text-align: center;
}

.footer-fullwidth-widget .social_networking_widget a {
	display: block;
	padding: 4px 10px;
	border: 1px solid #5A5A5A !important;
	margin: 0 20px 4px;
}

.footer-fullwidth-widget .social_networking_widget a:hover {
	background: #969696;
	color: #fff;
}

.social_networking_widget a span,.footer-widget .social_networking_widget a span {
	display: none;
}

.footer-fullwidth-widget .social_networking_widget a span {
	margin-left: 4px;
	display: inline;
}

.rtl .footer-fullwidth-widget .social_networking_widget a span {
	margin-left: 0;
	margin-right: 4px;
}

/* Widget Custom Recent Post. */
.recent-post-title {
	text-transform: uppercase;
	font-size: 12px;
	letter-spacing: 1px;
	margin: 10px 0 6px;
}

.recent-thumbnail {
	float: left;
	width: 80px;
}

.recent-post-excerpt {
	padding-left: 95px;
}

.recent-post .recent-post-meta span {
	padding: 0;
	font-size: 11px;
	color: #777;
}

.recent-post-meta {
	padding: 0 0 0 95px;
}

.recent-post-excerpt p {
	line-height: 20px;
	font-size: 12px;
}

.recent-post {
	overflow: hidden;
	margin-bottom: 10px;
}

.recent-post:last-child,.recent-post:last-child p {
	margin-bottom: 0;
}

.fb-page.fb_iframe_widget {
	width: 100%;
	overflow-x: auto;
}

.jr-insta-thumb ul.thumbnails li img {
	width: 100%;
}

/*------------------------------------------------------------------------------------------------
[19.0 Footer]
--------------------------------------------------------------------------------------------------*/
.inframe-footer {
	font-size: 13px;
	line-height: 22px;
	background-color: #252525;
	color: #9A9A9A;
}

.inframe-footer a {
	color: #CECECE;
	border-bottom: 1px dotted #4C4C4C;
	padding-bottom: 2px;
	display: inline-block;
}

.inframe-footer a:hover {
	color: #10D07A;
}

.inframe-footer .footer-widget li {
	padding-bottom: 4px;
}

.footer-fullwidth-widget .widget {
	border: none;
	padding: 0;
}

.footer-widget .widget {
	padding-left: 0;
	padding-right: 0;
	background-color: transparent;
	border: none;
	margin-bottom: 0;
}

.footer-widget:first-child {
	padding-top: 40px;
}

.inframe-footer .widget-title {
	text-align: left;
	margin-top: 0;
}

.rtl .inframe-footer .widget-title {
	text-align: right;
}

.inframe-footer .widget-title span {
	background-color: transparent;
	padding: 0;
	color: #fff;
	box-shadow: none;
	font-size: 13px;
}

.inframe-footer .tagcloud a {
	padding: 8px 10px;
	background-color: transparent;
	border: 2px solid #969696;
}

.inframe-footer .footer-copyright {
	padding: 20px;
	text-align: center;
	color: #929292;
	font-family: 'Open Sans',sans-serif;
	border-top: 1px solid #383838;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-weight: 600;
}

.inframe-footer .footer-copyright a {
	color: #929292;
	border: none;
}

.inframe-footer .recent-post-title a {
	border-bottom: none;
}

/* Scroll to top. */
.scrolltotop {
	position: fixed;
	right: 30px;
	bottom: 44px;
	width: 40px;
	height: 40px;
	opacity: 0;
}

.scrolltotop button {
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	box-shadow: 0 0 10px #fff;
}

.scrolltotop button:hover {
	background: #10D07A;
	color: #fff;
}

/*------------------------------------------------------------------------------------------------
[20.0 Media Queries]
--------------------------------------------------------------------------------------------------*/
@media (max-width: 767px) {
.list {
	text-align: center;
}
}

@media (min-width: 480px) and (max-width: 991px) {
.top-social.show-on {
	width: auto;
}

.social-share {
	width: 0;
	color: #fff;
	clip: rect(0,0,0,0);
}

.inframe-nav .top-social > a[class*="social-"] {
	display: inline-block !important;
	width: 44px;
	visibility: visible;
}
}

@media (min-width: 480px) and (max-width: 991px) {
.top-nav-button {
	float: right;
	margin-right: 30px;
	text-align: right;
}

.have-side-sidebar .top-nav-button {
	margin-right: 80px;
}
}

@media (min-width: 768px) {
.featured-content {
	height: 520px;
}

.inframe-featured.carousel .featured-content {
	height: 340px;
}

.featured-meta {
	padding: 50px;
}

.inframe-featured.carousel .featured-meta {
	padding: 20px;
}

.featured-title {
	font-size: 20px;
	margin: 10px 0;
	line-height: 1.4;
}

.inframe-featured.carousel .featured-title {
	font-size: 16px;
}

.featured-meta .meta-date,.featured-meta p {
	display: inline-block;
}
}

@media (max-width: 991px) {
#top-nav {
	position: absolute;
	z-index: 99;
	background-color: #eee;
	left: 0;
	top: 60px;
	width: 100%;
	display: none;
	overflow-y: auto;
	height: 100vh;
	padding-bottom: 80px;
}

#top-nav > ul > li {
	display: block;
	border-bottom: 1px solid #E6E6E6;
	padding: 0;
}

#top-nav > ul > li a {
	padding-top: 8px;
	padding-bottom: 8px;
	display: block;
}

#top-nav .menu-item-has-children > .sub-menu {
	display: none;
	background-color: #464646;
}

.menu-item-has-children > a:after {
	position: absolute;
}
}

@media (min-width: 992px) {
.inframe-branding {
	padding: 70px 0;
}

.top-nav-button {
	display: none;
}

#top-nav {
	display: block !important;
}

.navinline-header .top-nav {
	position: initial;
}

.navinline-header.have-side-sidebar #top-nav > ul {
	padding-right: 15px;
}

.boxed.navinline-header.have-side-sidebar #top-nav ul {
	padding-right: 40px;
}

#top-nav .mega-menu {
	position: initial;
}

#top-nav .menu-item-has-children > .sub-menu,#top-nav .mega-menu .mega-wrapper {
	position: absolute;
	width: 200px;
	z-index: 99;
	background: #FFF;
	box-shadow: 0 1px 2px #DEDEDE;
	visibility: hidden;
	left: 0;
	top: 61px;
	-webkit-transition: opacity .15s ease;
	-moz-transition: opacity .15s ease;
	-ms-transition: opacity .15s ease;
	-o-transition: opacity .15s ease;
	transition: opacity .15s ease;
	zoom: 1;
	opacity: 0;
	-webkit-opacity: 0;
	-moz-opacity: 0;
	filter: alpha(opacity=0);
	display: block;
}

#top-nav .mega-menu .mega-wrapper {
	width: auto;
	right: 0;
	padding: 30px;
	background: #f7f7f7;
	border-left: 1px solid #eee;
	border-right: 1px solid #eee;
}

.navinline-header #top-nav .mega-menu .mega-wrapper {
	left: 15px;
	right: 15px;
}

.boxed #top-nav .mega-menu .mega-wrapper {
	left: 0;
	right: 0;
}

.mega-inner-wrapper {
	margin: 0 -15px;
}

.mega-inner-wrapper:before,.mega-inner-wrapper:after {
	content: "";
	clear: both;
	display: table;
}

.mega-post {
	float: left;
	width: 25%;
	padding: 0 15px;
}

.mega-post .entry-title {
	margin: 10px;
	line-height: 18px;
}

#top-nav .menu-item-has-children:hover > .sub-menu,#top-nav .mega-menu:hover .mega-wrapper {
	visibility: visible;
	opacity: 1;
	-webkit-opacity: 1;
	-khtml-opacity: 1;
	-moz-opacity: 1;
	filter: alpha(opacity=100);
	-webkit-transition: opacity .15s ease;
	-moz-transition: opacity .15s ease;
	-ms-transition: opacity .15s ease;
	-o-transition: opacity .15s ease;
	transition: opacity .15s ease;
}

#top-nav li li.menu-item-has-children .sub-menu {
	left: 100%;
	top: 0;
}

#top-nav ul ul .menu-item-has-children:hover .sub-menu {
	left: 100%;
	top: 0;
}

#top-nav .menu-item-has-children > .sub-menu li {
	border-bottom: none;
	text-align: left;
	border-bottom: 1px solid #F5F5F5;
	position: relative;
}

#top-nav > ul ul.sub-menu li a {
	padding-top: 12px;
	padding-bottom: 12px;
	color: #151515 !important;
	line-height: 1.4;
	display: block;
}

.parent-vertical-align {
	width: 54%;
}

.inframe-featured-category {
	margin-bottom: 50px;
}

.post,article.page {
	margin-bottom: 40px;
	padding-bottom: 40px;
}

.widget {
	margin-bottom: 40px;
}

.widget.is_stuck {
	z-index: 2;
	background: #fff;
}

.inframe-entry-header,.inframe-entry-thumbnail,.inframe-entry-full {
	padding-bottom: 30px;
}

.inframe-embed-media {
	margin-bottom: 30px;
}

.footer-widget {
	padding-top: 60px !important;
	padding-right: 40px;
	padding-bottom: 20px;
	line-height: 22px;
	font-size: 12px;
}

.rtl .footer-widget {
	padding-right: 0;
	padding-left: 40px;
}

.footer-widget:last-child {
	padding-right: 20px;
}

.inframe-sidebar {
	padding-left: 40px;
	line-height: 22px;
	padding-top: 0;
	position: initial;
}

.inframe-content {
	padding-right: 0;
}

.one-col .inframe-content {
	padding-right: 15px;
}

.one-col:not(.boxed) .inframe-entry-thumbnail img {
	width: 100%;
}

.boxed .inframe-content
.inframe-entry-excerpt {
	padding-bottom: 24px;
}

/* List Style. */
.list .inframe-entry-thumbnail {
	width: 50%;
	float: left;
	padding-bottom: 0;
}

.list .post-inner-wrapper {
	width: 50%;
	float: left;
	padding-left: 30px;
	padding-top: 10px;
}

.list:before,.list:after {
	content: "";
	clear: both;
	display: table;
}

.list .inframe-entry-header {
	text-align: left;
	padding-bottom: 20px;
}

.list .meta {
	padding: 0 10px 0 0;
}

.list .entry-title {
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.5;
}

/* Grid style. */
.grid:not(.single) .inframe-content-inner {
	margin: 0 -20px;
	display: block;
}

.inframe-content-inner .grid {
	display: inline-block;
	border-bottom: none;
}
.inframe-content-inner .grid:not(:first-child) {
	width: 50%;
	vertical-align: top;
	margin-right: -4px;
}

.inframe-content-inner .grid .post-inner-wrapper {
	padding: 0 20px;
}

.inframe-content-inner .grid:first-child {
	width: 100%;
}

.inframe-content-inner .grid:after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 20px;
	right: 20px;
	height: 1px;
	background: #eee;
}

.inframe-content-inner .grid:not(:first-child) .meta-icon {
	position: absolute;
	right: 50%;
	bottom: -42px;
	background-color: #fff;
	padding: 10px;
	margin-right: -22px;
	border-radius: 50%;
}

.inframe-content-inner .grid:first-child .entry-title {
	font-size: 20px;
}

.inframe-content-inner .grid:not(:first-child ) .entry-title {
	font-size: 15px;
}

.footer-fullwidth-widget .social_networking_widget a {
	display: inline-block;
	margin: 0 4px;
}

.inframe-comments {
	padding-bottom: 50px;
}
}

@media (min-width: 1179px) {
.navinline-header .inframe-nav,.navinbottom-header .inframe-nav {
	margin-bottom: 50px;
}

.nav-logo-area {
	top: 0;
	width: auto;
	left: 15px;
	height: 60px;
	padding: 0;
}

.fixed .nav-logo-area {
	left: 40px;
}

.fixed.width .nav-logo-area {
	left: 20px;
}

.navinline {
	float: right;
}

.boxed:not(.fixed) .nav-logo-area {
	left: 70px;
}

.boxed:not(.fixed) .inframe-nav > .container-fluid {
	padding-right: 70px;
	padding-left: 70px;
}

.inframe-content-wrapper {
	padding-bottom: 90px;
}

.inframe-entry-quote {
	padding: 0 60px;
}
}
