@import url('https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed:400,500,600');
@import url('https://fonts.googleapis.com/css?family=Barlow:400,600');

*{margin: 0; padding: 0; box-sizing: border-box;}
body{font: 400 14px 'Barlow', sans-serif; color: #484848; line-height: 1.7;}
a{text-decoration: none; color: #484848; transition: all 0.2s linear;}
a:hover{text-decoration: none; color: #b8972e;}

.clear{clear: both;}
.spacer20{padding: 10px 0;}
h1, h2, h3, h4, h5, h6 {
    color: #111;
    font-weight: 500;
    font-family: "Barlow Semi Condensed", sans-serif;
}
h1{font-size: 28px;}
h2{font-size: 24px;}
h3{font-size: 20px;}
h4{font-size: 16px;}

#disqus_thread{margin-top: 40px;}

header .top-bar{background: #333; padding: 10px 0;}
header .top-bar .welcome-msg{color: #fff; float: left;}
header .top-bar .welcome-msg p{margin: 0;}
header .top-bar .social{float: right;}
header .top-bar .social ul li{ display: inline-block; padding-right: 15px;}
header .top-bar .social ul li a{ color: #fff;}
header .top-bar .social ul li a:hover{ color: #b8972e;}

header .logo-wrap{text-align: center; padding: 30px 0;}
header .logo-wrap h1 a{font-size: 70px; color: #333; font-family: 'Barlow Semi Condensed', sans-serif;}
header .logo-wrap h1 a:hover{color: #b8972e; text-decoration: none;}
header .logo-wrap .site-tagline{}

.navbar-default{background: #342d2d;}
.navbar-default .navbar-nav li a{font: 400 15px 'Barlow Semi Condensed', sans-serif; text-transform: uppercase; color: #fff;}
.navbar-default .navbar-nav li a:hover{color: #b8972e;}
.navbar .navbar-nav {display: inline-block; float: none;}
.navbar .navbar-collapse {text-align: center;}

.navbar-default .navbar-nav>.active>a, .navbar-default .navbar-nav>.active>a:focus, .navbar-default .navbar-nav>.active>a:hover{background: none; color: #b8972e;}

.carousel-caption{width: 50%; left: 25%; text-align: center; padding: 30px 20px; bottom: 36%; z-index: 9; background: rgba(255, 255, 255, 0.9) padding-box; color: #484848; text-shadow: none;}
.carousel-caption h4{color: #333; font-size: 35px; text-shadow: none; margin-bottom: 15px;}
.carousel-caption h4 a{color: #333; text-decoration: none;}
.carousel-caption h4 a:hover{color: #b8972e; text-decoration: none;}
.carousel-caption a.category{ display: inline-block; background: #b8972e; padding: 2px 8px; line-height: 1.5; font-size: 12px; border-radius: 4px; text-transform: uppercase; color: #fff !important; margin-right: 10px;}
.carousel-caption a:hover{text-decoration: none;}
.date:before {content: "\f017"; display: inline-block; font-family: FontAwesome; margin-right: 6px; font-size: 11px; font-style: normal;}
.author:before {content: "\f2c0"; display: inline-block; font-family: FontAwesome; margin-right: 6px; font-size: 11px; font-style: normal;}

#primary{float: left;}
.category a{ display: inline-block; background: #b8972e; padding: 2px 8px; line-height: 1.5; font-size: 12px; border-radius: 4px; text-transform: uppercase; color: #fff !important; margin-right: 10px;}
.main-area{padding: 40px 0;}
.main-content{margin-bottom: 40px;}
.blog-entries .blog-entry img{max-width: 100%;}
.entry-thumb{position: relative;;}
.entry-thumb a {display: block; overflow: hidden; position: relative;}
.entry-thumb img {
	-webkit-transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
	-moz-transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
	transition: all 400ms cubic-bezier(0.215, 0.61, 0.355, 1);
	-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	-moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	-o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	max-width: 100%;
	width: 100%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.entry-thumb a {
	display: block;
	overflow: hidden;
	position: relative;
}

.entry-thumb a:after {
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	background: #000;
	opacity: 0.1;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.entry-thumb a:before {
	content: "\f0f6";
	display: block;
	height: auto;
	width: 100%;
	position: absolute;
	bottom: 35%;
	color: #fff;
	font-family: FontAwesome;
	z-index: 999;
	font-size: 40px;
	text-align: center;
	opacity: 0;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.entry-thumb a:hover:after {
	opacity: 0.25;
}

.entry-thumb a:hover:before {
	opacity: 1;
	bottom: 40%;
}

.entry-thumb a:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}
.entry-thumb:after {
	content: "";
	display: block;
	position: absolute;
	border-bottom: 20px solid #fff;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	bottom: 0;
	z-index: 9;
	left: 35px;
}
.blog-entry{border-bottom: 1px dotted #f1efef;}
.blog-entries .blog-entry .blog-content-body{text-align: center; padding: 20px;}
.blog-entries .blog-entry .blog-content-body h2{font-size: 25px; font-weight: 500; padding-bottom: 10px;}
.entry-content{padding: 20px 0;}
.entry-content p{line-height: 24px;}
a.more-link {letter-spacing: 1px; display: inline-block; padding: 8px 20px; font-size: 11px; text-transform: uppercase; background: #111; font-weight: 500; margin-top: 10px; color: #fff;}
a.more-link:hover {background: #b8972e; color: #fff;}

.post-meta span{margin: 0 15px 0 0; color: #888; font-size: 13px; letter-spacing: 0.5px;}

.sidebar{float: right; padding: 0 15px;}
.sidebar-wrapper {
    border: 1px dashed #f7f5f5;
    border-top: none;
    border-right: none;
}
.sidebar .widget {
    padding: 0 0 30px 30px;
    margin: 0;
}
.widget-area .widget:after, .widget-area .widget:before {
    clear: both;
    content: "";
    display: table;
}
.sidebar .widget-title {
	position: relative;
	font-size: 20px;
	margin-bottom: 20px;
	background: #f7f7f7;
	padding: 10px 20px;
	text-align: center;
	font-weight: 600;
  margin-top: 0;
}
.author-image{position: relative;;}
.author-image:after {
	content: "";
	display: block;
	position: absolute;
	border-bottom: 10px solid #fff;
	border-left: 10px solid transparent;
	border-right: 10px solid transparent;
	bottom: 0;
	z-index: 9;
	left: 35px;
}
img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
.author-intro {
    text-align: center;
    padding: 20px;
    background: #fff;
    position: relative;
    z-index: 9;
}
.author-name{
  font-size: 20px;
  margin: 0;
}
.author-info{
  display: table;
  text-align: center;
  line-height: 22px;
}
.widget ul{list-style: none; padding: 0; margin: 0;}

.author-social .social-links li {
	float: none;
	display: inline-block;
	margin: 5px 2px;
}
.author-social .social-links li a {
	background-color: #fbfbfb;
}

.author-social  .social-links li a:before {
	color: #717579;
}

.author-social  .social-links li a:hover:before {
	color: #fff;
}
.social-links li a i {
	color: #cacad8;
	font-size: 18px;
	font-weight: 400;
}

.social-links li a:after {
	display: none !important;
}

.social-links li a:before {
	color: #fff;
	content: "\f0c1";
	display: block;
	font-family: FontAwesome;
	font-weight: 400;
	line-height: 2.8;
	font-size: 14px;
}

.social-links li a:hover {
	background-color: #cacad8;
}

.social-links li a:hover:before {
	color: #fff;
}

.social-links li a[href*="facebook.com"]:before {
	content: "\f09a";
}

.social-links li a[href*="twitter.com"]:before {
	content: "\f099";
}

.social-links li a[href*="linkedin.com"]:before {
	content: "\f0e1";
}

.social-links li a[href*="plus.google.com"]:before {
	content: "\f0d5";
}

.social-links li a[href*="youtube.com"]:before {
	content: "\f167";
}

.social-links li a[href*="dribbble.com"]:before {
	content: "\f17d";
}

.social-links li a[href*="pinterest.com"]:before {
	content: "\f0d2";
}

.social-links li a[href*="bitbucket.org"]:before {
	content: "\f171";
}

.social-links li a[href*="github.com"]:before {
	content: "\f113";
}

.social-links li a[href*="codepen.io"]:before {
	content: "\f1cb";
}

.social-links li a[href*="flickr.com"]:before {
	content: "\f16e";
}

.social-links li a[href$="/feed/"]:before {
	content: "\f09e";
}

.social-links li a[href*="foursquare.com"]:before {
	content: "\f180";
}

.social-links li a[href*="instagram.com"]:before {
	content: "\f16d";
}

.social-links li a[href*="tumblr.com"]:before {
	content: "\f173";
}

.social-links li a[href*="reddit.com"]:before {
	content: "\f1a1";
}

.social-links li a[href*="vimeo.com"]:before {
	content: "\f194";
}

.social-links li a[href*="digg.com"]:before {
	content: "\f1a6";
}

.social-links li a[href*="twitch.tv"]:before {
	content: "\f1e8";
}

.social-links li a[href*="stumbleupon.com"]:before {
	content: "\f1a4";
}

.social-links li a[href*="delicious.com"]:before {
	content: "\f1a5";
}

.social-links li a[href*="mailto:"]:before {
	content: "\f0e0";
}

.social-links li a[href*="soundcloud.com"]:before {
	content: "\f1be";
}

.social-links li a[href*="wordpress.org"]:before {
	content: "\f19a";
}

.social-links li a[href*="wordpress.com"]:before {
	content: "\f19a";
}

.social-links li a[href*="jsfiddle.net"]:before {
	content: "\f1cc";
}

.social-links li a[href*="tripadvisor.com"]:before {
	content: "\f262";
}

.social-links li a[href*="foursquare.com"]:before {
	content: "\f180";
}

.social-links li a[href*="angel.co"]:before {
	content: "\f209";
}

.social-links li a[href*="slack.com"]:before {
	content: "\f198";
}

/*social links hover effect */

.social-links li a[href*="facebook.com"]:hover {
	background-color: #3b5998;
}

.social-links li a[href*="twitter.com"]:hover {
	background-color: #00aced;
}

.social-links li a[href*="plus.google.com"]:hover {
	background-color: #dd4b39;
}

.social-links li a[href*="/feed/"]:hover {
	background-color: #dc622c;
}

.social-links li a[href*="wordpress.org"]:hover {
	background-color: #21759b;
}

.social-links li a[href*="github.com"]:hover {
	background-color: #4183c4;
}

.social-links li a[href*="linkedin.com"]:hover {
	background-color: #007bb6;
}

.social-links li a[href*="pinterest.com"]:hover {
	background-color: #cb2027;
}

.social-links li a[href*="flickr.com"]:hover {
	background-color: #ff0084;
}

.social-links li a[href*="vimeo.com"]:hover {
	background-color: #aad450;
}

.social-links li a[href*="youtube.com"]:hover {
	background-color: #b00;
}

.social-links li a[href*="instagram.com"]:hover {
	background-color: #517fa4;
}

.social-links li a[href*="dribbble.com"]:hover {
	background-color: #ea4c89;
}

.social-links li a[href*="skype.com"]:hover {
	background-color: #12a5f4;
}

.social-links li a[href*="digg.com"]:hover {
	background-color: #333;
}

.social-links li a[href*="codepen.io"]:hover {
	background-color: #000;
}

.social-links li a[href*="reddit.com"]:hover {
	background-color: #ff4500;
}

.social-links li a[href*="mailto:"]:hover {
	background-color: #1d62f0;
}

.social-links li a[href*="foursquare.com"]:hover {
	background-color: #f94877;
}

.social-links li a[href*="stumbleupon.com"]:hover {
	background-color: #eb4924;
}

.social-links li a[href*="twitch.tv"]:hover {
	background-color: #6441a5;
}

.social-links li a[href*="tumblr.com"]:hover {
	background-color: #32506d;
}

.social-links li a[href*="foursquare.com"]:hover {
	background-color: #f94877;
}

.social-links li a[href*="stumbleupon.com"]:hover {
	background-color: #eb4924;
}

.social-links li a[href*="twitch.tv"]:hover {
	background-color: #6441a5;
}

.social-links li a[href*="tumblr.com"]:hover {
	background-color: #32506d;
}

.social-links li a[href*="soundcloud.com"]:hover {
	background-color: #f50;
}

.social-links li a[href*="wordpress.org"]:hover {
	background-color: #21759b;
}

.social-links li a[href*="jsfiddle.net"]:hover {
	background-color: #4679bd;
}

.social-links li a[href*="tripadvisor.com"]:hover {
	background-color: #86c171;
}

.social-links li a[href*="foursquare.com"]:hover {
	background-color: #2d5be3;
}

.social-links li a[href*="angel.co"]:hover {
	background-color: #000;
}

.social-links li a[href*="slack.com"]:hover {
	background-color: #56b68b;
}
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.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;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}
.social-links li a {
	background-color: #333;
	border: medium none;
	display: inline-block;
	height: 38px;
	line-height: 1.7;
	margin-right: 0;
	padding: 0;
	text-align: center;
	vertical-align: middle;
	width: 38px;
}
.author-main-details{text-align: center;}
.author-social{margin-top: 20px;}
/*--------------------------------------------------------------
12.2. Galleries
--------------------------------------------------------------*/

.gallery {
	margin: 0 -5px;
	margin-bottom: 15px;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
	margin: 0;
	padding: 5px;
}

.gallery-item img {
	vertical-align: middle;
}

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

.gallery-columns-3 .gallery-item {
	max-width: 32.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;
}

.gallery-caption {
	text-align: center;
	background: #fbfbfb;
	padding: 5px;
}
figure {
    display: block;
    -webkit-margin-before: 1em;
    -webkit-margin-after: 1em;
    -webkit-margin-start: 40px;
    -webkit-margin-end: 40px;
}

/*--------------------------------------------------------------
28. Recent Posts Widget
--------------------------------------------------------------*/

.advanced-recent-posts-item {
	clear: both;
	float: left;
	width: 100%;
	margin-top: 15px;
}

.advanced-recent-posts-thumb {
	margin-right: 15px;
	float: left;
}

.advanced-recent-posts-thumb img {
	margin-right: 0;
	-webkit-transition: all 400ms cubic-bezier(0.215, 0.61, 0.35, 1);
	-moz-transition: all 400ms cubic-bezier(0.215, 0.61, 0.35, 1);
	-o-transition: all 400ms cubic-bezier(0.215, 0.61, 0.35, 1);
	transition: all 400ms cubic-bezier(0.215, 0.61, 0.35, 1);
	-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.35, 1);
	-moz-transition-timing-function: cubic-bezier(0.215, 0.61, 0.35, 1);
	-o-transition-timing-function: cubic-bezier(0.215, 0.61, 0.35, 1);
	transition-timing-function: cubic-bezier(0.215, 0.61, 0.35, 1);
	max-width: 100%;
	width: 100%;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.advanced-recent-posts-thumb a:hover img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
	transform: scale(1.1);
}

.advanced-recent-posts-thumb a {
	overflow: hidden;
	display: block;
	position: relative;
}

.advanced-recent-posts-thumb a:after {
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	background: #000;
	opacity: 0.1;
	position: absolute;
	top: 0;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

.advanced-recent-posts-thumb a:hover:after {
	opacity: 0.3;
}

.advanced-recent-posts-text-wrap {
	display: table-cell;
}

.advanced-recent-posts-summary p {
	margin-bottom: 5px;
}

.advanced-recent-posts-item:first-child {
	margin: 0;
}

.advanced-recent-posts-title {
	font-size: 17px;
	margin-bottom: 10px;
  margin-top: 0;
}

.advanced-recent-posts-date {
	display: block;
	margin-bottom: 3px;
	font-size: 13px;
}

.widget_recent_entries .post-date {
	display: block;
}

.advanced-recent-posts-date:before,
.widget_recent_entries .post-date:before {
	display: inline-block;
	font-family: FontAwesome;
	height: 15px;
	margin-right: 8px;
	content: "\f017";
	color: #666;
	font-size: 12px;
}

.sidebar-categories ul{
    list-style: outside none none;
    padding: 0;
    margin: 0;
}
.sidebar-categories ul li{
  text-align: right;
  padding-bottom: 10px;
  padding-top: 8px;
  position: relative;
  border-top: 1px dashed #f1efef;
  display: block;
  float: left;
  clear: both;
  width: 100%;
}
.sidebar-categories ul li a{float: left;}
.sidebar-categories ul li:before {
    content: "\f10c";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 7px;
    left: 2px;
    position: absolute;
    top: 14px;
    line-height: 14px;
}
.sidebar-categories ul li{padding-left: 15px;}

.nav-pagination{text-align: center;}
.pagination>.active>a, .pagination>.active>a:focus, .pagination>.active>a:hover, .pagination>.active>span, .pagination>.active>span:focus, .pagination>.active>span:hover{background: #b8972e; border-color: #b8972e;}
.pagination>li>a, .pagination>li>span{padding: 15px 20px; color: #484848;}

footer{background: #111; overflow: hidden; padding: 50px 0; clear: both; color: #bbb;}
footer .widget-column{float: left; padding: 0 15px;}
footer .footer-active-4{ width: 25%;}
footer .widget-title{color: #fff;
    margin-bottom: 15px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;}
footer .text-widget p{color: #bbb; line-height: 22px; padding-bottom: 15px;}
.footer-social {
    clear: both;
    overflow: hidden;
    margin: 0;
}
.widget-area .widget:after, .widget-area .widget:before{
  clear: both;
content: "";
display: table;
}
#footer-widgets ul {
    list-style: none;
    margin: 0;
}
/*--------------------------------------------------------------
13. Social Links
--------------------------------------------------------------*/

.footer-social {
	clear: both;
	overflow: hidden;
	margin: 0;
}

.social-links {
	margin: 0;
	padding: 0;
}

.social-links li a {
	background-color: #333;
	border: medium none;
	display: inline-block;
	height: 38px;
	line-height: 1.7;
	margin-right: 0;
	padding: 0;
	text-align: center;
	vertical-align: middle;
	width: 38px;
}

.social-links li {
	display: block;
	float: left;
	margin-right: 6px;
	margin-bottom: 4px;
	margin-top: 4px;
}

.widget-area.sidebar .social-links li,
#footer-widgets .social-links li,
.widget-area.sidebar .social-links li a,
#footer-widgets .social-links li a {
	padding: 0;
}

.widget-area.sidebar .social-links li:before,
#footer-widgets .social-links li:before {
	display: none;
}

.social-links li a i {
	color: #cacad8;
	font-size: 18px;
	font-weight: 400;
}

.social-links li a:after {
	display: none !important;
}

.social-links li a:before {
	color: #fff;
	content: "\f0c1";
	display: block;
	font-family: FontAwesome;
	font-weight: 400;
	line-height: 2.8;
	font-size: 14px;
}

.social-links li a:hover {
	background-color: #cacad8;
}

.social-links li a:hover:before {
	color: #fff;
}

.social-links li a[href*="facebook.com"]:before {
	content: "\f09a";
}

.social-links li a[href*="twitter.com"]:before {
	content: "\f099";
}

.social-links li a[href*="linkedin.com"]:before {
	content: "\f0e1";
}

.social-links li a[href*="plus.google.com"]:before {
	content: "\f0d5";
}

.social-links li a[href*="youtube.com"]:before {
	content: "\f167";
}

.social-links li a[href*="dribbble.com"]:before {
	content: "\f17d";
}

.social-links li a[href*="pinterest.com"]:before {
	content: "\f0d2";
}

.social-links li a[href*="bitbucket.org"]:before {
	content: "\f171";
}

.social-links li a[href*="github.com"]:before {
	content: "\f113";
}

.social-links li a[href*="codepen.io"]:before {
	content: "\f1cb";
}

.social-links li a[href*="flickr.com"]:before {
	content: "\f16e";
}

.social-links li a[href$="/feed/"]:before {
	content: "\f09e";
}

.social-links li a[href*="foursquare.com"]:before {
	content: "\f180";
}

.social-links li a[href*="instagram.com"]:before {
	content: "\f16d";
}

.social-links li a[href*="tumblr.com"]:before {
	content: "\f173";
}

.social-links li a[href*="reddit.com"]:before {
	content: "\f1a1";
}

.social-links li a[href*="vimeo.com"]:before {
	content: "\f194";
}

.social-links li a[href*="digg.com"]:before {
	content: "\f1a6";
}

.social-links li a[href*="twitch.tv"]:before {
	content: "\f1e8";
}

.social-links li a[href*="stumbleupon.com"]:before {
	content: "\f1a4";
}

.social-links li a[href*="delicious.com"]:before {
	content: "\f1a5";
}

.social-links li a[href*="mailto:"]:before {
	content: "\f0e0";
}

.social-links li a[href*="soundcloud.com"]:before {
	content: "\f1be";
}

.social-links li a[href*="wordpress.org"]:before {
	content: "\f19a";
}

.social-links li a[href*="wordpress.com"]:before {
	content: "\f19a";
}

.social-links li a[href*="jsfiddle.net"]:before {
	content: "\f1cc";
}

.social-links li a[href*="tripadvisor.com"]:before {
	content: "\f262";
}

.social-links li a[href*="foursquare.com"]:before {
	content: "\f180";
}

.social-links li a[href*="angel.co"]:before {
	content: "\f209";
}

.social-links li a[href*="slack.com"]:before {
	content: "\f198";
}

/*social links hover effect */

.social-links li a[href*="facebook.com"]:hover {
	background-color: #3b5998;
}

.social-links li a[href*="twitter.com"]:hover {
	background-color: #00aced;
}

.social-links li a[href*="plus.google.com"]:hover {
	background-color: #dd4b39;
}

.social-links li a[href*="/feed/"]:hover {
	background-color: #dc622c;
}

.social-links li a[href*="wordpress.org"]:hover {
	background-color: #21759b;
}

.social-links li a[href*="github.com"]:hover {
	background-color: #4183c4;
}

.social-links li a[href*="linkedin.com"]:hover {
	background-color: #007bb6;
}

.social-links li a[href*="pinterest.com"]:hover {
	background-color: #cb2027;
}

.social-links li a[href*="flickr.com"]:hover {
	background-color: #ff0084;
}

.social-links li a[href*="vimeo.com"]:hover {
	background-color: #aad450;
}

.social-links li a[href*="youtube.com"]:hover {
	background-color: #b00;
}

.social-links li a[href*="instagram.com"]:hover {
	background-color: #517fa4;
}

.social-links li a[href*="dribbble.com"]:hover {
	background-color: #ea4c89;
}

.social-links li a[href*="skype.com"]:hover {
	background-color: #12a5f4;
}

.social-links li a[href*="digg.com"]:hover {
	background-color: #333;
}

.social-links li a[href*="codepen.io"]:hover {
	background-color: #000;
}

.social-links li a[href*="reddit.com"]:hover {
	background-color: #ff4500;
}

.social-links li a[href*="mailto:"]:hover {
	background-color: #1d62f0;
}

.social-links li a[href*="foursquare.com"]:hover {
	background-color: #f94877;
}

.social-links li a[href*="stumbleupon.com"]:hover {
	background-color: #eb4924;
}

.social-links li a[href*="twitch.tv"]:hover {
	background-color: #6441a5;
}

.social-links li a[href*="tumblr.com"]:hover {
	background-color: #32506d;
}

.social-links li a[href*="foursquare.com"]:hover {
	background-color: #f94877;
}

.social-links li a[href*="stumbleupon.com"]:hover {
	background-color: #eb4924;
}

.social-links li a[href*="twitch.tv"]:hover {
	background-color: #6441a5;
}

.social-links li a[href*="tumblr.com"]:hover {
	background-color: #32506d;
}

.social-links li a[href*="soundcloud.com"]:hover {
	background-color: #f50;
}

.social-links li a[href*="wordpress.org"]:hover {
	background-color: #21759b;
}

.social-links li a[href*="jsfiddle.net"]:hover {
	background-color: #4679bd;
}

.social-links li a[href*="tripadvisor.com"]:hover {
	background-color: #86c171;
}

.social-links li a[href*="foursquare.com"]:hover {
	background-color: #2d5be3;
}

.social-links li a[href*="angel.co"]:hover {
	background-color: #000;
}

.social-links li a[href*="slack.com"]:hover {
	background-color: #56b68b;
}


/* WP Social Share */
.ss-social-sharing {
	display: block;
	float: left;
	text-align: center;
	border: 1px dashed #f7f5f5;
	padding: 0 15px;
	margin: 30px 0;
	width: 100%;
	clear: both;
}

.social-sharing.ss-social-sharing a {
	border: medium none;
	display: inline-block;
	height: 38px;
	line-height: 1.7;
	margin-right: 0;
	padding: 0;
	text-align: center;
	vertical-align: middle;
	width: 38px;
	background-image: none;
	text-indent: 999px;
	overflow: hidden;
}

.social-sharing span {
	display: inline-block;
	font-size: 16px;
	font-style: italic;
	margin: 5px 15px;
}


.social-sharing.ss-social-sharing a:before {
	color: #222;
	content: "\f0c1";
	display: block;
	font-family: FontAwesome;
	font-weight: 400;
	line-height: 2.8;
	font-size: 14px;
	text-indent: 0;
}

.social-sharing.ss-social-sharing a:hover {
	background-color: #cacad8;
}

.social-sharing.ss-social-sharing a:hover:before {
	color: #fff;
}

.social-sharing.ss-social-sharing a[href*="facebook.com"]:before {
	content: "\f09a";
}

.social-sharing.ss-social-sharing a[href*="twitter.com"]:before {
	content: "\f099";
}

.social-sharing.ss-social-sharing a[href*="linkedin.com"]:before {
	content: "\f0e1";
}

.social-sharing.ss-social-sharing a[href*="plus.google.com"]:before {
	content: "\f0d5";
}

.social-sharing.ss-social-sharing a[href*="pinterest.com"]:before {
	content: "\f0d2";
}

.social-sharing.ss-social-sharing a[href*="reddit.com"]:before {
	content: "\f1a1";
}

.social-sharing.ss-social-sharing a[href*="xing.com"]:before {
	content: "\f168";
}

/* Social Links Hover Effect */

.social-sharing.ss-social-sharing a[href*="facebook.com"]:hover {
	background-color: #3b5998;
}

.social-sharing.ss-social-sharing a[href*="twitter.com"]:hover {
	background-color: #00aced;
}

.social-sharing.ss-social-sharing a[href*="plus.google.com"]:hover {
	background-color: #dd4b39;
}

.social-sharing.ss-social-sharing a[href*="linkedin.com"]:hover {
	background-color: #007bb6;
}

.social-sharing.ss-social-sharing a[href*="youtube.com"]:hover {
	background-color: #b00;
}

.social-sharing.ss-social-sharing a[href*="reddit.com"]:hover {
	background-color: #ff4500;
}

.social-sharing.ss-social-sharing a[href*="xing.com"]:hover {
	background-color: #b0d400;
}

.social-sharing.ss-social-sharing a[href*="pinterest.com"]:hover {
	background-color: #cb2027;
}

aside{display: block;}

#footer-widgets ul li a:after {
    content: "\f10c";
    display: inline-block;
    font-family: FontAwesome;
    font-size: 7px;
    left: 2px;
    position: absolute;
    top: 9px;
}
.recent-blog ul li{padding: 2px 10px; position: relative;}
.recent-blog ul li a{color: #bbb; padding-left: 10px;}
.recent-blog ul li a:hover{color: #b8972e;}
.advanced_recent_posts .advanced-recent-posts-title a{color: #bbb;}

.site-footer {
    background-color: #000;
    clear: both;
    font-size: 13px;
    padding: 15px 0;
    text-align: center;
    color: #aaa;
    border-top: 1px solid #222;
}
.site-footer ul li{list-style: none; display: inline-block;}
.site-footer ul li a {display: block; padding: 2px 10px; text-transform: uppercase; color: #b8972e;}
.site-footer ul li a:hover {color: #fff;}
.copyright {
    display: inline-block;
    padding-right: 15px;
    position: relative;
}
.site-info {
    float: none;
    display: inline-block;
    margin-left: 5px;
}
.site-info a {
    color: #b8972e;
}
.site-info a:hover {
    color: #fff;
}
.copyright:after {
    content: "";
    height: 10px;
    width: 1px;
    background: #ddd;
    position: absolute;
    right: 5px;
    top: 8px;
}

/*--------------------------------------------------------------
17. Custom Header
--------------------------------------------------------------*/

#custom-header {
	position: relative;
	background: #fbfbfb;
	background-size: cover;
	padding: 30px 0;
	max-width: 1140px;
	margin: 0 auto 0;
}

#custom-header.header-image:after {
	content: "";
	background: rgba(42, 45, 45, 0.44);
	top: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	display: block;
	left: 0;
	z-index: 1;
}

#custom-header.header-image .page-title {
	color: #fff;
	margin: 0;
}

.custom-header-content {
	position: relative;
	z-index: 9;
	text-align: center;
}

#custom-header img {
	vertical-align: middle;
}

/*BreadCrumb*/
#custom-header.header-image-disabled  #breadcrumb li a {
	color: #b49543;
}

#custom-header.header-image-disabled  #breadcrumb li a:hover {
	color: #111;
}

#custom-header.header-image-disabled  #breadcrumb li {
	color: #888;
}

#breadcrumb li {
	display: inline-block;
	list-style: outside none none;
	padding-right: 10px;
	color: #fff;
}

#breadcrumb {
	margin-top: 10px;
	margin-bottom: 3px;
}

#breadcrumb li a {
	color: #eee;
}

#breadcrumb li a:hover {
	color: #fff;
}

#breadcrumb li.trail-item.trail-end:after {
	display: none;
}

#breadcrumb ul {
	margin: 0;
	padding: 0;
}

#breadcrumb li:after {
	content: "\f105";
	margin-left: 10px;
	font-family: FontAwesome;
	font-size: 13px;
	display: inline-block;
}

#breadcrumb li:last-child:after {
	content: "";
}

#breadcrumb .trail-items {
	margin: 0;
	padding: 0;
}
.breadcrumb{background: none; padding: 0;}



.single .entry-header {
    margin-top: 30px;
}
.entry-meta {
    display: inline-block;
    position: relative;
    margin-bottom: 15px;
}
.entry-header .entry-meta .posted-on:before, .entry-footer .entry-meta .posted-on:before {
    content: "\f017";
}
.entry-footer > span:before,
.entry-header .entry-meta > span:before {
	display: inline-block;
	font-family: FontAwesome;
	margin-right: 6px;
	font-size: 11px;
	font-style: normal;
	color: #888;
}
.entry-header .entry-meta > span {
	margin: 0 15px 0 0;
	color: #888;
	font-size: 13px;
	letter-spacing: 0.5px;
}
.entry-footer  .cat-links:before,
.entry-header  .cat-links:before {
	content: "\f115";
}
.entry-footer .comments-link:before,
.entry-header .comments-link:before {
	content: "\f0e6";
}
.single .entry-content{padding: 10px 0;}

.social-sharing.ss-social-sharing a {
	border: medium none;
	display: inline-block;
	height: 38px;
	line-height: 1.7;
	margin-right: 0;
	padding: 0;
	text-align: center;
	vertical-align: middle;
	width: 38px;
	background-image: none;
	text-indent: 999px;
	overflow: hidden;
}

.social-sharing span {
	display: inline-block;
	font-size: 16px;
	font-style: italic;
	margin: 5px 15px;
}


.social-sharing.ss-social-sharing a:before {
	color: #222;
	content: "\f0c1";
	display: block;
	font-family: FontAwesome;
	font-weight: 400;
	line-height: 2.8;
	font-size: 14px;
	text-indent: 0;
}

.social-sharing.ss-social-sharing a:hover {
	background-color: #cacad8;
}

.social-sharing.ss-social-sharing a:hover:before {
	color: #fff;
}

.social-sharing.ss-social-sharing a[href*="facebook.com"]:before {
	content: "\f09a";
}

.social-sharing.ss-social-sharing a[href*="twitter.com"]:before {
	content: "\f099";
}

.social-sharing.ss-social-sharing a[href*="linkedin.com"]:before {
	content: "\f0e1";
}

.social-sharing.ss-social-sharing a[href*="plus.google.com"]:before {
	content: "\f0d5";
}

.social-sharing.ss-social-sharing a[href*="pinterest.com"]:before {
	content: "\f0d2";
}

.social-sharing.ss-social-sharing a[href*="reddit.com"]:before {
	content: "\f1a1";
}

.social-sharing.ss-social-sharing a[href*="xing.com"]:before {
	content: "\f168";
}

/* Social Links Hover Effect */

.social-sharing.ss-social-sharing a[href*="facebook.com"]:hover {
	background-color: #3b5998;
}

.social-sharing.ss-social-sharing a[href*="twitter.com"]:hover {
	background-color: #00aced;
}

.social-sharing.ss-social-sharing a[href*="plus.google.com"]:hover {
	background-color: #dd4b39;
}

.social-sharing.ss-social-sharing a[href*="linkedin.com"]:hover {
	background-color: #007bb6;
}

.social-sharing.ss-social-sharing a[href*="youtube.com"]:hover {
	background-color: #b00;
}

.social-sharing.ss-social-sharing a[href*="reddit.com"]:hover {
	background-color: #ff4500;
}

.social-sharing.ss-social-sharing a[href*="xing.com"]:hover {
	background-color: #b0d400;
}

.social-sharing.ss-social-sharing a[href*="pinterest.com"]:hover {
	background-color: #cb2027;
}
.authorbox {
    display: block;
    margin: 30px 0 0;
    background: #fbfbfb;
    padding: 30px;
}
.authorbox:after, .authorbox:before {
    clear: both;
    content: "";
    display: block;
}
.author-avatar {
    float: left;
    margin-right: 30px;
    max-width: 80px;
}
.author-info {
    display: table;
}
.author-info h4 {
    margin-bottom: 5px;
}
footer.entry-footer{background: none; padding: 0;}

.tagcloud a {
    padding: 3px 10px;
    background: #353535;
    margin-bottom: 5px;
    display: inline-block;
    font-size: 13px !important;
    border: 1px solid #505050;
    margin-right: 2px;
    color: #bbb;
}
.gallery-main a{margin-bottom: 20px;}


/*--------------------------------------------------------------
4. Forms
--------------------------------------------------------------*/

button,
a.custom-button,
a.custom-button:visited,
a.button,
a.button:visited,
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	background: #111;
	border: medium none;
	color: #fff;
	font-size: 15px;
	line-height: 1.5;
	padding: 10px 20px;
}

a.custom-button:hover,
a.custom-button:active,
a.custom-button:focus,
a.button:hover,
a.button:active,
a.button:focus,
button:hover,
button:active,
button:focus,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	background-color: #b49543;
	color: #fff;
	outline: none;
}


input[type="text"],
input[type="email"],
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 #f7f5f5;
	padding: 5px 20px;
}

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,
select:focus {
	color: #111;
	outline: none;
}

.form-control{box-shadow: none; border: 1px solid #f7f5f5;}
label{font: 400 14px 'Barlow', sans-serif; color: #484848; line-height: 1.7;}


.hovereffect {
  width: 100%;
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
}

.hovereffect .overlay {
  position: absolute;
  overflow: hidden;
  width: 80%;
  height: 80%;
  left: 10%;
  top: 10%;
  border-bottom: 1px solid #FFF;
  border-top: 1px solid #FFF;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(0,1);
  -ms-transform: scale(0,1);
  transform: scale(0,1);
}

.hovereffect:hover .overlay {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transition: all 0.35s;
  transition: all 0.35s;
}

.hovereffect:hover img {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="0.6" /><feFuncG type="linear" slope="0.6" /><feFuncB type="linear" slope="0.6" /></feComponentTransfer></filter></svg>#filter');
  filter: brightness(0.6);
  -webkit-filter: brightness(0.6);
}

.hovereffect h2 {
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: 17px;
  background-color: transparent;
  color: #FFF;
  padding-top:25%;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,-100%,0);
  transform: translate3d(0,-100%,0);
}

.hovereffect a, .hovereffect p {
  color: #FFF;
  padding:0;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0,100%,0);
  transform: translate3d(0,100%,0);
}

.hovereffect:hover a, .hovereffect:hover p, .hovereffect:hover h2 {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0);
}

.dropdown-menu{min-width: 220px;}
ul.dropdown-menu li a{color: #111 !important; padding:10px; border-bottom: 1px solid #f7f7f7;}
ul.dropdown-menu li a:nth-last-child(1){border-bottom: none;}
.dropdown-menu>li>a:focus, .dropdown-menu>li>a:hover{background: #bc9a00; color: #fff !important;}
ul.features{margin-left: 25px;}


@media only screen and (max-width: 479px) {

  header .top-bar .welcome-msg{float: none; text-align: center;}
  header .top-bar .social{float: none; text-align: center; margin-top: 10px;}

  .carousel-caption h4 a {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.carousel-caption {
		padding: 10px;
		width: 74%;
		left: 13%;
		bottom: 15%;
		border-width: 3px;
	}
}
