/*
Theme Name: Excel B Child
Version: 1.0
Description: A child theme of Excel Blog
Author: Dejan P
Template: excel-blog
*/


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
}

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

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

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

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
	color: #333;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

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

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
select,
button,
input,
body,
textarea {
	color: #525252;
	font-family: 'Open Sans', sans-serif;
	font-size: 17px;
	line-height: 24px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin-top: 0;
}

p {
	margin-bottom: 1.5em;
	margin-top: 0;
}

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

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

cirlat{
	font-family: 'Open Sans', Sans-serif;
	font-size: 15px;
}
cirlat a{
	text-decoration:none;
}

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

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

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

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

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	-webkit-box-sizing: inherit;
	-moz-box-sizing: inherit;
	box-sizing: inherit;
}

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

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

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

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

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

ul {
	list-style: square;
	padding: 0 0 0 22px;
}

ol {
	list-style: decimal;
	padding: 0 0 0 22px;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 0;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

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

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

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

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	background: #85c125;
	outline: none;
	padding: 8px 20px;
	border: 2px solid #85c125;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: none;
	color: #85c125;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus{
	background: #0d9db7;
}

input[type="email"],
input[type="text"]{
	color: #666;
	border: 1px solid #e7e7e7;
	border-radius: 4px;
	outline: none;
	padding: 10px 15px;
	font-size: 14px;
}


input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #e7e7e7;
	border-radius: 0;
	outline: none;
	padding: 10px 15px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
	border-color: #b4b4b4;
}

textarea {
	width: 100%;
	height: 150px;
	resize: none;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #85c125;
	text-decoration: none;
}

a:hover,
a:focus {
	color: #85c125;
	text-decoration: underline;
}

a:focus {
	outline: thin dotted;
}

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

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	width: 100%;
	height:40px;
	
}


.main-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0px;
	font: 500 16px/30px 'Roboto', sans-serif;
	text-align: center;
	display: block;
}

.main-navigation ul:after{
	content: '';
	display: block;
	clear: both;
}

.main-navigation li {
	display: inline-block;
	position: relative;
	vertical-align: top;
	
}

.main-navigation a {
	display: block;
	text-decoration: none;
	color: #fff;
	padding:5px 10px 5px;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.5);
	float: left;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 99999;
	background: rgba(0,0,0, 0.5);
	border-top: 1px solid #000;
	width: 170px;
	display: none;
	font-weight: 400;
	font-size: 14px;
	text-align: left;
}

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

.main-navigation ul ul a {
	display: block;
	padding: 3px 18px;
	
}

.main-navigation ul ul li {
	float: none;
	display: block;
	margin: 0;
}

.main-navigation li:hover > a,
.main-navigation li:focus > a,
.main-navigation ul li a:hover,
.main-navigation ul li a.focus {
	background: rgba(133, 193, 37, 0.5);
	display:block !important;
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
	background: rgba(133, 193, 37, 0.5);
	display:block !important;
	z-index: 99999;
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
	background: rgba(133, 193, 37, 0.5);
	max-height:100%;
	display: block !important;
	z-index: 99999;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	display: block !important;
}

.main-navigation ul ul ul,
.main-navigation ul ul ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
	background: rgba(133, 193, 37, 0.5);
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
    font-size: 15px;
}

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

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

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

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

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

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

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

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

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

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

/* Make sure select elements fit in widgets. */
.widget select {
	width: 100%;
    color: #666;
	border: 1px solid #e7e7e7;
	outline: none;
	padding: 10px 15px;
}

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

.hentry {
	margin: 0 0 1.5em;
}

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

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

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

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

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}
.comments-link a::before {
    content: "Коментар";
    display: inline-block;
    visibility: visible;
}
.comments-link a {
    visibility: hidden !important;
}

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

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

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

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

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

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

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

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

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

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

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

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

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}

/*common site style*/
.site{
	background: #fff;
}

.custom-background .site{
	max-width: 1450px;
	margin: 0 auto;
}

.container{
	max-width: 1170px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.container:after{
	content: '';
	display: block;
	clear: both;
}

.row{
	margin-left: -15px;
	margin-right: -15px;
}

.row:after{
	content: '';
	display: block;
	clear: both;
}

/*header style*/
.site-header .header-t{
	background: #e7e7e7;
}

.site-header .header-t .info{
	font-size: 14px;
	color: #666;
	float: left;
}

.site-header .header-t .info a{
	color: #666;
	border-right: 1px solid #cbcbcb;
	float: left;
	padding: 8px 10px 8px 0;
	margin-right: 15px;
}

.site-header .header-t .info a:hover,
.site-header .header-t .info a:focus{
	text-decoration: none;
	color: #85c125;
}

.site-header .header-t .info .fa{
	margin-right: 7px;
}

.site-header .header-t .social-networks{
float: right;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	border-right: 1px solid #cbcbcb;
}

.site-header .header-t .social-networks li{
	float: right;
	border-left: 1px solid #cbcbcb;
}

.site-header .header-t .social-networks li a{
	display: block;
	color: #464646;
	padding: 11px 12px 12px;
}

.site-header .header-t .social-networks li a:hover,
.site-header .header-t .social-networks li a:focus{
	text-decoration: none;
	color: #85c125;
}

.site-header .header-t .hw-widget a{
	color: #666;
	border-right: 1px solid #cbcbcb;
	float: left;
	padding: 8px 10px 8px 0;
	margin-right: 5px;
}

.site-header .header-t .hw-widget a:hover,
.site-header .header-t .hw-widget a:focus{
	text-decoration: none;
	color: #85c125;
}


.site-header .site-branding{
	padding: 0;
	text-align: center;
}

.site-header .site-branding .site-title{
	font: 700 32px/35px 'Roboto', sans-serif;
	margin: 0;
	text-transform: uppercase;
}

.site-header .site-branding .site-title a{color: #1e1e1e;}

.site-header .site-branding .site-title a:hover,
.site-header .site-branding .site-title a:focus{
	text-decoration: none;
}

.site-header .site-branding .site-description{
	font: 14px/17px 'Roboto', sans-serif;
	color: #353535;
	margin: 0;
}

.nav-holder{
	background: rgba(0,0,0, 0.3)!important;
	position:absolute;
	width:100%;
	
	
}

/*banner style*/
.banner{position: relative;}

.banner img{
	width: 100%;
	vertical-align: top;
}

.banner .banner-text{
	position: absolute;
	bottom: 96px;
	width: 100%;
	left: 0;
}

.banner .banner-text .text{
	max-width: 750px;
	background: rgba(0, 0, 0, 0.44);
	padding: 30px 8%;
	text-align: center;
	margin: 0 auto;
}

.banner .banner-text .text .title{
	font: 25px/32px 'Playfair Display', serif;
	color: #fff;
	margin: 0 0 30px;
}

.banner .banner-text .text .title a{
	color: #fff;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.banner .banner-text .text .title a:hover,
.banner .banner-text .text .title a:focus{
	text-decoration: none;
	color: #85c125;
}

.banner .banner-text .text .btn-readmore{
	font: 700 16px/20px 'Open Sans', sans-serif;
	color: #fff;
	text-transform: uppercase;
	display: inline-block;
	position: relative;
	padding: 10px 20px 11px;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
	border: 2px solid #fff;
}

.banner .banner-text .text .btn-readmore:hover,
.banner .banner-text .text .btn-readmore:focus{
	text-decoration: none;
	background: #fff;
	color: #85c125;
}

.banner .owl-prev{
	background: url(images/btn-prev.png) no-repeat;
	width: 32px;
	height: 60px;
	position: absolute;
	top: 50%;
	left: 10px;
	font-size: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.5;
	-webkit-transition: opacity 0.35s;
	-moz-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

.banner .owl-prev:hover,
.banner .owl-prev:focus{
	opacity: 1;
}

.banner .owl-next{
	background: url(images/btn-next.png) no-repeat;
	width: 32px;
	height: 60px;
	position: absolute;	
	top: 50%;
	right: 10px;
	font-size: 0;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
	opacity: 0.5;
	-webkit-transition: opacity 0.35s;
	-moz-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

.banner .owl-next:hover,
.banner .owl-next:focus{
	opacity: 1;
}

/*content style*/
#content{
	padding: 71px 0 77px;
	position:relative;
	z-index:5;
	
}

.main-title,
.page-header .page-title{
	font: 23px/30px 'Playfair Display', serif;
	color: #333;
	margin: 0 0 47px;
}

#primary{
	float: left;
	width: 66.6667%;
	padding-left: 15px;
	padding-right: 15px;
}

.full-width #primary{width: 100%;}

#primary .post,
#primary .page{
	overflow: hidden;
	padding-bottom: 39px;
	margin-bottom: 39px;
	border-bottom: 1px solid #ccc;
	
}

#primary .post .post-thumbnail{
	float: left;
	width: 263px;
	margin-right: 30px;
}

#primary .post .text-holder{
	overflow: hidden;
	
}

#primary .post .text-holder .entry-header .entry-meta {
	font-size: 14px;
	line-height: 17px;
	margin: 0 0 6px;
}

#primary .post .text-holder .entry-header .entry-meta span{margin-right: 20px;}

#primary .post .text-holder .entry-header .entry-meta span span{margin-right: 0;}

#primary .post .text-holder .entry-header .entry-meta .author{
    padding: 0;
    margin: 0;
    border: 0;
}

#primary .post .text-holder .entry-header .entry-meta a{
	color: #919191;
}

#primary .post .text-holder .entry-header .entry-meta a:hover,
#primary .post .text-holder .entry-header .entry-meta a:focus{
	text-decoration: none;
	color: #85c125;
}

#primary .post .text-holder .entry-header .entry-meta .fa{
	margin-right: 10px;
}

#primary .post .text-holder .entry-header .entry-title,
#primary .page .text-holder .entry-header .entry-title{
	font: 23px/30px 'Playfair Display', serif;
	margin: 0 0 15px;
	color: #333;	
}

#primary .post .text-holder .entry-header .entry-title a,
.search #primary .page .text-holder .entry-header .entry-title a{
	color: #333;
}

#primary .post .text-holder .entry-header .entry-title a:hover,
#primary .post .text-holder .entry-header .entry-title a:focus,
.search #primary .page .text-holder .entry-header .entry-title a:hover,
.search #primary .page .text-holder .entry-header .entry-title a:focus{
	text-decoration: none;
	color: #85c125;
}

#primary .post .text-holder .entry-content{margin: 0;}

#primary .post .text-holder .entry-footer{overflow: hidden;}

#primary .post .text-holder .entry-footer .btn-readmore,
.search #primary .page .text-holder .entry-footer .btn-readmore{
	font: 700 16px/20px 'Open Sans', sans-serif;
	color: #85c125;
	display: inline-block;
	position: relative;
	padding: 10px 20px 11px;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	border: 2px solid #85c125;
}

#primary .post .text-holder .entry-footer .btn-readmore:hover,
#primary .post .text-holder .entry-footer .btn-readmore:focus,
.search #primary .page .text-holder .entry-footer .btn-readmore:hover,
.search #primary .page .text-holder .entry-footer .btn-readmore:focus{
	text-decoration: none;
	background: #85c125;
	color: #fff;
}

/*single post style*/
.single-post #primary .post .post-thumbnail,
#primary .page .post-thumbnail{
	float: none;
	display: block;
	margin: 0 0 20px;
	width: 100%;
}

.single-post #primary .post .text-holder{
	width: 100%;
}

#primary .post .entry-content h1,
#primary .page .entry-content h1{
	font-size: 38px;
	line-height: 55px;
	margin: 0 0 15px;
	color: #333;
	font-family: 'Playfair Display', serif;
}

#primary .post .entry-content h2,
#primary .page .entry-content h2{
	font-size: 29px;
	line-height: 35px;
	margin: 0 0 20px;
	color: #333;
	font-family: 'Playfair Display', serif;
}

#primary .post .entry-content h3,
#primary .page .entry-content h3{
	font-size: 23px;
	line-height: 27px;
	margin: 0 0 20px;
	color: #333;
	font-family: 'Playfair Display', serif;
}

#primary .post .entry-content h4,
#primary .page .entry-content h4{
	font-size: 21px;
	line-height: 25px;
	margin: 0 0 20px;
	color: #333;
	font-family: 'Playfair Display', serif;
}

#primary .post .entry-content h5,
#primary .page .entry-content h5{
	font-size: 18px;
	line-height: 22px;
	margin: 0 0 20px;
	color: #333;
	font-family: 'Playfair Display', serif;
}

#primary .post .entry-content h6,
#primary .page .entry-content h6{
	font-size: 17px;
	line-height: 20px;
	margin: 0 0 18px;
	color: #333;
	font-family: 'Playfair Display', serif;
}

#primary .post .entry-content blockquote,
#primary .page .entry-content blockquote{
	margin: 0 0 1.5em;
	line-height: 28px;
	font-style: italic;
	padding: 0 0 0 52px;
	font-family: 'Playfair Display', serif;
	background: url(images/bg-quote.png) no-repeat;
}

#primary .post .entry-content .pull-right,
#primary .page .entry-content .pull-right{
	float: right;
	width: 263px;
	border-top: 3px solid #f1f1f2;
	text-align: right;
	margin-left: 30px;
	padding-top: 10px;
}

#primary .post .entry-content .pull-left,
#primary .page .entry-content .pull-left{
	float: left;
	width: 263px;
	border-top: 3px solid #f1f1f2;
	margin-right: 30px;
	padding-top: 10px;
}

#primary .post .entry-content .dropcap,
#primary .page .entry-content .dropcap{
	font-size: 86px;
	line-height: 87px;
	float: left;
	margin-right: 15px;
	font-family: 'Playfair Display', serif;
	color: #333;
}

#primary .post .entry-content .highlight,
#primary .page .entry-content .highlight{
	background: #ea8f51;
	color: #fff;
}

#primary .post .entry-content table thead,
#primary .page .entry-content table thead{
	background: #e9e9e9;
	font-weight: 700;
}

#primary .post .entry-content table thead th,
#primary .page .entry-content table thead th{
	font-weight: 700;
}

#primary .post .entry-content table th,
#primary .page .entry-content table th,
#primary .post .entry-content table td,
#primary .page .entry-content table td{
	padding: 1vw 2vw;
	text-align: left;
}

#primary .post .entry-content table tr,
#primary .page .entry-content table tr{border-bottom: 1px solid #ebebeb;}

.single-post #primary .post .entry-footer{
	border-top: 1px solid #ccc;
	padding-top: 39px;
	overflow: hidden;
}

#primary .post .entry-footer .left,
#primary .page .entry-footer .left{float: left;}

#primary .post .entry-footer .right,
#primary .page .entry-footer .right{float: right;}

#primary .post .entry-footer .cat-links,
#primary .page .entry-footer .cat-links{
    overflow: hidden;
    margin: 0 0 15px;
    display: block;
}

#primary .post .entry-footer .tags-links,
#primary .page .entry-footer .tags-links{
    display: block;
    overflow: hidden;
}

#primary .post .entry-footer .tags-links:before,
#primary .page .entry-footer .tags-links:before{
    content: '\f02c';
    font-family: 'FontAwesome';
    font-size: 15px;
    color: #717171;
    float: left;
    margin-right: 7px;
    line-height: 32px;
}

#primary .post .entry-footer .tags-links a,
#primary .page .entry-footer .tags-links a{
    font-size: 12px;
	color: #717171;
	font-weight: 300;
    text-transform: uppercase;
}

#primary .post .entry-footer .tags-links a:hover,
#primary .page .entry-footer .tags-links a:hover,
#primary .post .entry-footer .tags-links a:focus,
#primary .page .entry-footer .tags-links a:focus{
    text-decoration: none;
    color: #85c125;
}

#primary .post .entry-footer .cat-links a,
#primary .page .entry-footer .cat-links a{
	font-size: 12px;
	float: left;
	border: 2px solid #ddd;
	text-transform: uppercase;
	color: #717171;
	margin-right: 10px;
	padding: 0 10px;
	font-weight: 300;
}

#primary .post .entry-footer .cat-links a:hover,
#primary .page .entry-footer .cat-links a:hover,
#primary .post .entry-footer .cat-links a:focus,
#primary .page .entry-footer .cat-links a:focus{
	background: #85c125;
	border-color: #85c125;
	color: #fff;
	text-decoration: none;
}

#primary .post .entry-footer .social-networks,
#primary .page .entry-footer .social-networks{
	display: inline-block;
	vertical-align: middle;
	font-size: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	line-height: 18px;
}

#primary .post .entry-footer .social-networks li,
#primary .page .entry-footer .social-networks li{
	float: left;
	margin-left: 15px;
}

#primary .post .entry-footer .social-networks li a,
#primary .page .entry-footer .social-networks li a{
	color: #353535;
}

#primary .post .entry-footer .social-networks li a:hover,
#primary .page .entry-footer .social-networks li a:hover,
#primary .post .entry-footer .social-networks li a:focus,
#primary .page .entry-footer .social-networks li a:focus{
	text-decoration: none;
	color: #85c125;
}

.pagination{
	font: 16px/30px 'Playfair Display', serif;
}

.pagination a{
	border: 1px solid #85c125;
	padding: 0 11px;
	display: inline-block;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.pagination a:hover,
.pagination a:focus{
	text-decoration: none;
	background: #85c125;
	color: #fff;
}

.pagination .current{
	border: 1px solid #85c125;
	background: #85c125;
	color: #fff;
	padding: 0 11px;
	display: inline-block;
}

/*comments area style*/
.comments-area{margin: 0 0 73px;}

.comments-area .comments-title,
.comments-area .comment-reply-title{
	font-size: 20px;
	line-height: 30px;
	color: #333;
	padding: 10px 0;
	text-transform: uppercase;
	margin: 0 0 30px;
	font-family: 'Playfair Display', serif;
}

.comments-area ol{
	margin: 0;
	padding: 0;
	list-style: none;
}

.comments-area .comment-body .avatar{
	float: left;
	margin-right: 20px;
}

.comments-area .comment-body .fn{
	float: left;
	font-size: 18px;
	line-height: 24px;
	color: #313131;
	margin-right: 15px;
	font-family: 'Playfair Display', serif;
}

.comments-area .comment-body .says{display: none;}

.comments-area .comment-body .comment-metadata{
	float: left;
	font-size: 14px;
	color: #919191;
}

.comments-area .comment-body .comment-metadata a{color: #919191;}

.comments-area .comment-body .comment-metadata a:hover,
.comments-area .comment-body .comment-metadata a:focus{
	text-decoration: none;
	color: #85c125;
}

.comment-author{float: left;
}

.comment-meta{overflow: hidden;}

.comments-area .comment-body .comment-content{
	margin-left: 97px;
	margin-top: -42px;
}

.comments-area .comment-body .reply{
	margin-left: 97px;
	font-size: 16px;
	font-weight: 700;
}

.comments-area .comment-body{
	border-bottom: 1px solid #f3f3f3;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.comments-area .comment-list .children{padding-left: 77px;}

.comments-area .comment-form label{display: none;}

.comments-area .comment-form .comment-form-author{
	float: left;
	width: 240px;
	margin-right: 8px;
}

.comments-area .comment-form .comment-form-email{
	float: left;
	width: 245px;
	margin-right: 8px;
}

.comments-area .comment-form .comment-form-url{
	float: left;
	width: 245px;
}

.comments-area .comment-form input[type="text"],
.comments-area .comment-form input[type="email"],
.comments-area .comment-form input[type="url"]{
	width: 100%;
	padding: 10px 15px;
}

/*section popular style*/
.popular{
	background: #f9f9f9;
	padding: 50px 0;
}

.popular .img-holder{
	margin: 0 0 15px;
}

.popular .img-holder img{
	vertical-align: top;
}

/*sidebar style*/
#secondary{
	float: left;
	width: 33.3333%;
	padding-left: 15px;
	padding-right: 15px;
}

#secondary .widget .widget-title{
	font: 23px/30px 'Playfair Display', serif;
	color: #fff;
	background: #85c125;
	text-align: center;
	padding: 5px 16px 6px;
	margin: 0;
	border-top-left-radius:3px;
	border-top-right-radius:3px;
}

#secondary .widget_rss .widget-title a{color: #fff;}

#secondary .widget_rss .widget-title a:hover,
#secondary .widget_rss .widget-title a:focus{text-decoration: none;} 

.widget ul{
	margin: 0;
	list-style: none;
	font-size: 15px;
	line-height: 22px;
	background: #f9f9f9;
	padding: 30px;
}

.widget ul li{
	margin: 0 0 15px;
}

.widget ul li:last-child{margin: 0;}

.widget ul li a{color: #919191;}

.widget ul li a:hover,
.widget ul li a:focus{
	color: #85c125;
	text-decoration: none;
}

/*widget search style*/
#secondary .widget.widget_search{
	background: #f9f9f9;
	padding: 30px;
}

/*secondary featured post widget style*/
#secondary .widget.widget_excel_blog_featured_post .img-holder img{vertical-align: top;}

#secondary .widget.widget_excel_blog_featured_post .img-holder{
    padding: 30px 30px 0;
    background: #f9f9f9;
}

#secondary .widget.widget_excel_blog_featured_post .text-holder{
    padding: 30px;
    background: #f9f9f9;
}

#secondary .widget.widget_excel_blog_featured_post .text-holder .readmore{
    border: 2px solid #333;
    color: #333;
    display: inline-block;
    padding: 5px 12px 5px;
    font-size: 15px;
    position: relative;
    text-transform: uppercase;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

#secondary .widget.widget_excel_blog_featured_post .text-holder .readmore:hover,
#secondary .widget.widget_excel_blog_featured_post .text-holder .readmore:focus{
    text-decoration: none;
    background: #333;
    color: #fff;
}

#secondary .widget.widget_text .textwidget{
    padding: 30px 30px 5px 30px;
    background: #f9f9f9;
	font-size: 15px;	
}

#secondary .widget.widget_text .textwidget a{
	color: #919191;
}

#secondary .widget.widget_text .textwidget a:hover, #secondary .widget.widget_text .textwidget a:focus{
	text-decoration: none;
	color: #85c125;
}

.widget.widget_search .search-form{
	border: 1px solid #e3e3e3;
	padding: 6px 10px;
	border-radius: 5px;
}

.widget.widget_search .search-form:after{
	content: '';
	display: block;
	clear: both;
}

.widget.widget_search .search-form label{
	float: left;
	width: 65%;
}

.widget.widget_search .search-form input[type="search"]{
	background: none;
	border: 1;
	padding: 1;
	font-size: 10px;
	width: 50%;
}

.widget.widget_search .search-form input[type="submit"]{
	float: right;
	background: url(images/btn-search.png) no-repeat;
	width: 17px;
	height: 18px;
	text-indent: -9999px;
	border: 0;
	padding: 0;
	margin: 1px 0 0;
}

/*widget archive style*/
.widget.widget_archive ul li,
.widget.widget_categories ul li{
	overflow: hidden;
	text-align: right;
}

.widget.widget_archive ul li a:before,
.widget.widget_categories ul li a:before{
	
	font-family: 'FontAwesome';
	font-size: 15px;
	margin-right: 9px;
}

.widget.widget_archive ul li a,
.widget.widget_categories ul li a{float: left;}

/*widget recent and popular style*/
.widget.widget_excel_blog_recent_post li,
.widget.widget_excel_blog_popular_post li{
	overflow: hidden;
	padding-bottom: 17px;
	margin-bottom: 17px; 
	border-bottom: 1px solid #e3e3e3;
}

.widget.widget_excel_blog_recent_post li:last-child,
.widget.widget_excel_blog_popular_post li:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}

.widget.widget_excel_blog_recent_post .post-thumbnail,
.widget.widget_excel_blog_popular_post .post-thumbnail{
	float: left;
	width: 70px;
	margin-right: 20px;
}

.widget.widget_excel_blog_recent_post .post-thumbnail img,
.widget.widget_excel_blog_popular_post .post-thumbnail img{
	vertical-align: top;
}

.widget.widget_excel_blog_recent_post .text-holder,
.widget.widget_excel_blog_popular_post .text-holder{
	overflow: hidden;
}

.widget.widget_excel_blog_recent_post .entry-title,
.widget.widget_excel_blog_popular_post .entry-title{
	font: 16px/20px 'Playfair Display', serif;
	margin: 0 0 12px;
}

.widget.widget_excel_blog_recent_post .entry-title a,
.widget.widget_excel_blog_popular_post .entry-title a{
	color: #333;
}

.widget.widget_excel_blog_recent_post .entry-title a:hover,
.widget.widget_excel_blog_recent_post .entry-title a:focus,
.widget.widget_excel_blog_popular_post .entry-title a:hover,
.widget.widget_excel_blog_popular_post .entry-title a:focus{
	color: #85c125;
}

.widget.widget_excel_blog_recent_post .entry-meta,
.widget.widget_excel_blog_popular_post .entry-meta{
	font-size: 12px;
	line-height: 15px;
}

.widget.widget_excel_blog_recent_post .entry-meta span,
.widget.widget_excel_blog_popular_post .entry-meta span{margin-right: 15px;}

.widget.widget_excel_blog_recent_post .entry-meta span .fa,
.widget.widget_excel_blog_popular_post .entry-meta span .fa{
    margin-right: 5px;
}

.widget.widget_excel_blog_recent_post .entry-meta span span,
.widget.widget_excel_blog_popular_post .entry-meta span span{margin-right: 0;}

/*widget tagcloud style*/
.widget.widget_tag_cloud .tagcloud{
	overflow: hidden;
	background: #f2f2f2;
	padding: 30px;
}

.widget.widget_tag_cloud .tagcloud a{
	float: left;
	background: #e3e3e3;
	padding: 7px 14px;
	color: #525252;
	border-radius: 3px;
	margin: 0 4px 4px 0;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	transition: all 0.2s;
}

.widget.widget_tag_cloud .tagcloud a:hover,
.widget.widget_tag_cloud .tagcloud a:focus{
	text-decoration: none;
	background: #85c125;
	color: #fff;
}

.widget.widget_calendar caption{
	font-size: 14px;
	color: #fff;
	line-height: 16px;
	background: #525252;
	padding: 12px 0;
}


.widget.widget_calendar table{
	position: relative;
}

.widget.widget_calendar thead th{
	font-size: 14px;
	color: #616161;
	font-weight: 400;
	height: 35px;
	background: #f4f4f4;
}

.widget.widget_calendar tbody{
	border: 1px solid #e3e3e3;
	border-top: 0;
}

.widget.widget_calendar tbody td{
	text-align: center;
	font-size: 14px;
	height: 35px;
	line-height: 35px;
	color: #919191;
}

.widget_calendar table #prev a{
    left: 15px;
    position: absolute;
    top: 16px;
    background: url(images/btn-prev-month.png) no-repeat;
    width: 7px;
    height: 11px;
    text-indent: -9999px;
}

.widget.widget_calendar table #next a {
    position: absolute;
    right: 15px;
    top: 16px;
    background: url(images/btn-next-month.png) no-repeat;
    width: 7px;
    height: 11px;
    text-indent: -9999px;
}

.widget.widget_calendar table tbody td a{
	display: block;
	height: 100%;
	color: #fff;
	background: #85c125;
}

/*widget social links style*/
.widget.widget_excel_blog_social_links ul:after{
    content: '';
    display: block;
    clear: both;
}

.widget.widget_excel_blog_social_links ul li{
    float: left;
    margin: 0 3px 3px 0;
}

.widget.widget_excel_blog_social_links ul li a{
    display: block;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    color: #fff;
    background: #85c125;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.widget.widget_excel_blog_social_links ul li a:hover,
.widget.widget_excel_blog_social_links ul li a:focus{
    text-decoration: none;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.widget.widget_excel_blog_social_links ul li a[href*="facebook"]{background: #3B5998;}

.widget.widget_excel_blog_social_links ul li a[href*="twitter"]{background: #55ACEE;}

.widget.widget_excel_blog_social_links ul li a[href*="pinterest"]{background: #CB1F27;}

.widget.widget_excel_blog_social_links ul li a[href*="linkedin"]{background: #007BB6;}

.widget.widget_excel_blog_social_links ul li a[href*="google"]{background: #DD5044;}

.widget.widget_excel_blog_social_links ul li a[href*="instagram"]{background: #A97D64;}

.widget.widget_excel_blog_social_links ul li a[href*="yoooutube"]{background: #DE2825;}


/*popular slider style*/
#popular-slider .text-holder .entry-meta {
	font-size: 14px;
	line-height: 17px;
	margin: 0 0 10px;
}

#popular-slider .text-holder .entry-meta span{margin-right: 20px;}

#popular-slider .text-holder .entry-meta span span{margin-right: 0;}

#popular-slider .text-holder .entry-meta a{
	color: #919191;
}

#popular-slider .text-holder .entry-meta a:hover,
#popular-slider .text-holder .entry-meta a:focus{
	text-decoration: none;
	color: #85c125;
}

#popular-slider .text-holder .entry-meta .fa{
	margin-right: 10px;
}

#popular-slider .text-holder .entry-title{
	font: 23px/30px 'Playfair Display', serif;
	margin: 0 0 15px;	
}

#popular-slider .text-holder .entry-title a{
	color: #333;
}

#popular-slider .text-holder .entry-title a:hover,
#popular-slider .text-holder .entry-title a:focus{
	text-decoration: none;
	color: #85c125;
}

#popular-slider .text-holder .entry-content{margin: 0;}

.popular .owl-prev{
	background: url(images/btn-prev.png) no-repeat;
	width: 32px;
	height: 60px;
	top: 79px;
	margin-top: 0;
	left: 0;
	position: absolute;
	font-size: 0;
	opacity: 0.5;
	-webkit-transition: opacity 0.35s;
	-moz-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

.popular .owl-prev:hover,
.popular .owl-prev:focus{opacity: 1;}

.popular .owl-next{
	background: url(images/btn-next.png) no-repeat;
	width: 32px;
	height: 60px;
	top: 79px;
	margin-top: 0;
	right: 0;
	position: absolute;
	font-size: 0;
	opacity: 0.5;
	-webkit-transition: opacity 0.35s;
	-moz-transition: opacity 0.35s;
	transition: opacity 0.35s;
}

.popular .owl-next:hover,
.popular .owl-next:focus{
	opacity: 1;
}

/*author style*/
.author-section{
	overflow: hidden;
	border-bottom: 1px solid #e7e7e7;
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.author-section .img-holder{
	float: left;
	width: 114px;
	margin-right: 20px;
}

.author-section .img-holder img{
	vertical-align: top;
	-webkit-border-radius: 100px;
	border-radius: 50%;
}

.author-section .text-holder{overflow: hidden;}

.author-section .text-holder .title{
	font-size: 19px;
	line-height: 26px;
	margin: 0 0 7px;
	color: #333;
	font-family: 'Playfair Display', serif;
}

.author-section .text-holder .social-networks{
	margin: 0;
	padding: 0;
	list-style: none;
	overflow: hidden;
	font-size: 15px;
}

.author-section .text-holder .social-networks li{
	float: left;
	margin-right: 15px;
}

.author-section .text-holder .social-networks li a{
	color: #353535;
}

.author-section .text-holder .social-networks li a:hover,
.author-section .text-holder .social-networks li a:focus{
	text-decoration: none;
	color: #85c125;
}

/*searh page style*/
.search .page-header .search-form,
.error404 .error-holder .search-form{
	border: 1px solid #e3e3e3;
	padding: 6px 10px;
	border-radius: 5px;
	width: 60%;
	margin: 0 0 47px;
}

.search .page-header .search-form:after,
.error404 .error-holder .search-form:after{
	content: '';
	display: block;
	clear: both;
}

.search .page-header .search-form label,
.error404 .error-holder .search-form label{
	float: left;
	width: 85%;
}

.search .page-header .search-form input[type="search"],
.error404 .error-holder .search-form input[type="search"]{
	background: none;
	border: 0;
	padding: 0;
	font-size: 15px;
	width: 100%;
}

.search .page-header .search-form input[type="submit"],
.error404 .error-holder .search-form input[type="submit"]{
	float: right;
	background: url(images/btn-search.png) no-repeat;
	width: 17px;
	height: 18px;
	text-indent: -9999px;
	border: 0;
	padding: 0;
	margin: 3px 0 0;
}

/*search page style*/
.search #primary .page .entry-footer{
	padding-top: 0;
	border-top: 0;
}

/*error page style*/
.error404 .error-holder{
	font-size: 18px;
    line-height: 26px;
    margin: 0 auto;
    max-width: 555px;
    text-align: center;
}

.error404 .error-holder h1{
	color: #85c125;
    font-size: 100px;
    font-weight: 400;
    line-height: 90px;
    margin: 0 0 30px;
    font-family: 'Playfair Display', serif;
}

.error404 .error-holder h2{
    font-size: 30px;
    font-weight: 400;
    line-height: 36px;
    font-family: 'Playfair Display', serif;
}

.error404 .error-holder .search-form{
	width: 100%;
}

/*footer style*/
.site-footer{
	background: #3f3c41;
	color: #999;
	font-size: 14px;
}

.site-footer a,
.site-footer strong{
	color: #bcbcbc;
}

.site-footer a:hover,
.site-footer a:focus{
	text-decoration: none;
	color: #fff;
}

.site-footer .footer-t{
	padding: 10px 0 0px;
}

.site-footer .col{
	float: left;
	width: 33.3333%;
	padding-left: 15px;
	padding-right: 15px;
}

.site-footer .widget .widget-title{
	font: 23px/30px 'Playfair Display', serif;
	color: #85c125;
	margin: 0 0 23px;
}

.site-footer .widget ul{
	background: none;
	padding: 0;
}

.site-footer .widget.widget_excel_blog_recent_post li,
.site-footer .widget.widget_excel_blog_popular_post li{
	border-bottom: 0;
}

.site-footer .widget.widget_excel_blog_recent_post .entry-title a,
.site-footer .widget.widget_excel_blog_popular_post .entry-title a{
	color: #bcbcbc;
}

.site-footer .widget.widget_excel_blog_recent_post .entry-title a:hover,
.site-footer .widget.widget_excel_blog_popular_post .entry-title a:hover,
.site-footer .widget.widget_excel_blog_recent_post .entry-title a:focus,
.site-footer .widget.widget_excel_blog_popular_post .entry-title a:focus{
	color: #fff;
}

.site-footer .widget ul li a:hover,
.site-footer .widget ul li a:focus{
	color: #fff;
}

.site-footer .widget.widget_rss ul li a{
    color: #fff;
}

.site-footer .widget.widget_rss ul li a:hover,
.site-footer .widget.widget_rss ul li a:focus{
    text-decoration: underline;
}

.site-footer .widget.widget_tag_cloud .tagcloud{
    background: none;
    padding: 0;
}

.site-footer .widget_search .search-form input[type="search"]{
    color: #fff;
}

.site-footer .footer-bottom{
	padding: 10px 0;
	line-height:10px;
	background:#85c125;
	overflow: hidden;
	font-size: 16px;
}

.site-footer .footer-bottom .site-info{
	text-align:center;
	color: #3f3c41;
}

.site-footer .footer-bottom .site-by{
	visibility: hidden !important;
}

#mobile-header{
	display: none;
}

@media only screen and (max-width: 1450px){
	.custom-background .site{
		max-width: 90%;
	}
}

@media only screen and (max-width: 1199px){
	.container{
		max-width: 970px;
	}
}

@media only screen and (max-width: 991px){
	.container{
		max-width: 750px;
	}

	.banner .banner-text{
		bottom: 40px;
	}

	#primary{
		width: 100%;
		margin-bottom: 30px;
	}

	#secondary{
		width: 100%;
	}
    
    .nav-holder{
        display: none;
    }
}

@media only screen and (max-width: 767px){
	.site-header .header-t .info,
	.site-header .header-t .hw-widget,
	.site-header .header-t .social-networks{
		width: 100%;
		text-align: center;
	}

	.site-header .header-t .info{
		border-bottom: 1px solid #cbcbcb;
	}

	
	.site-header .header-t .info a{
		float: none;
		display: inline-block;
	}

	.site-header .header-t .social-networks li{
		float: none;
		display: inline-block;
	}

	.site-header .header-t .hw-widget {
		display: inline-block;
	}
	
	.site-header .header-t .social-networks{border-right: 0;}

	.site-header .header-t .social-networks li:last-child{
		border-right: 1px solid #cbcbcb;
	}

	#mobile-header{
		display: block;
		float: right;
	}

	#mobile-header a{
		display: block;
		background: url(images/menu-icon1.png) no-repeat;
		width: 35px;
		height: 28px;
		text-indent: -9999px;
	}

	.main-navigation{display: none;}

	.nav-holder{padding: 8px 0;}

	.banner .owl-nav{display: none;}

	.banner .banner-text{
		position: unset;
		background: rgba(0, 0, 0, 0.44);
	}

	.banner .banner-text .text{
		background: none;
		padding: 10px 8%;
	}

	.banner .banner-text .text .title{
		font-size: 20px;
		line-height: 27px;
	}

	#content{
		padding: 20px 0;
	}

	#primary .post .post-thumbnail{
		width: 100%;
		margin: 0 0 20px;
	}

	#primary .post .text-holder{
		width: 100%;
	}

	#primary .post,
	#primary .page{text-align: center;}

	.site-footer .col{
		width: 100%;
	}

	.main-title,
	.page-header .page-title{text-align: center;}

	#primary .post .text-holder .entry-header .entry-title,
	#primary .page .text-holder .entry-header .entry-title{
		font-size: 20px;
		line-height: 28px;
	}

	#popular-slider li .text-holder .entry-title{
		font-size: 18px;
		line-height: 26px;
	}

	.search .page-header .search-form,
	.error404 .error-holder .search-form{
		width: 100%;
		display: inline;
		float: right;
	}

	#primary .post .entry-footer .left,
	#primary .page .entry-footer .left{
		width: 100%;
		text-align: center;
		margin-bottom: 10px;
	}

	#primary .post .entry-footer .cat-links a,
	#primary .page .entry-footer .cat-links a{
		float: none;
		display: inline-block;
		margin: 0 5px;
	}

	#primary .post .entry-footer .right,
	#primary .page .entry-footer .right{
		width: 100%;
		text-align: center;
	}

	.author-section{text-align: center;}

	.author-section .img-holder{
		width: 100%;
		margin: 0 0 15px;
	}

	.author-section .text-holder{width: 100%;}

	.author-section .text-holder .social-networks li{
		float: none;
		display: inline-block;
		margin: 0 7px;
	}

	.comments-area .comment-body .comment-content{
		margin-left: 0;
		margin-top: 0;
	}

	.comment-author{margin-bottom: 10px;}

	.comments-area .comment-body .reply{margin-left: 0;}

	.comments-area .comment-list .children{padding-left: 20px;}

	.comments-area .comment-form .comment-form-author,
	.comments-area .comment-form .comment-form-email,
	.comments-area .comment-form .comment-form-url{
		width: 100%;
		margin-right: 0;
	}

}
