/*
Theme Name: Icarus
Theme URI: https://topdesign.gr/demo/icarus/intro
Author: TDGR
Author URI: http://themeforest.net/user/tdgr
Description: Icarus is a clean and minimalistic Personal Blog WP Theme for all kind of bloggers. Icarus is fully responsive and looks great on any mobile device.
Version: 1.0
License: Regular / Extended Themeforest
License URI: http://themeforest.net/licenses
Tags: custom-background, custom-colors, featured-images, microformats, post-formats
Text Domain: icarus

*/

/**
 * Table of Contents
 *
 * 1.0 - Features
 *	1.2 - Owl carousel
 *	1.3 - Back to top button
 * 2.0 - Layout
 *	2.1 - Navigation
 *		2.1.1 - Default - Style 1
 *		2.1.2 - Default - Style 2
 *		2.1.3 - Default - Style 3
 *	2.2 - Footer
 *	2.3 - Bottom
 *  2.4 - Breadcrumbs
 * 3.0 - Typography
 *	3.1 - General typography
 *	3.2 - Buttons
 * 4.0 - Elements
 * 5.0 - WP Content
 *	5.1 - Widgets
 *	5.2 - Post formats
 *	5.3 - Comments
 *	5.4 - Portfolio posts
 * 6.0 - Versions
 *  6.1 - Portfolio left sidebar
 *
 */


/**
 *	1.0 Features
 *----------------------------------------------------------
 */

#wrapper {
	overflow:hidden;
}

/* 1.2 Owl carousel */

.owl-carousel .animated {
	-webkit-animation-duration:1000ms;
	animation-duration:1000ms;
	-webkit-animation-fill-mode:both;
	animation-fill-mode:both;
}

.owl-carousel .owl-animated-in {
	z-index:0;
}

.owl-carousel .owl-animated-out {
	z-index:1;
}

.owl-carousel .fadeOut {
	-webkit-animation-name:fadeOut;
	animation-name:fadeOut;
}

@-webkit-keyframes fadeOut {

	0% {
		opacity:1;
	}

	100% {
		opacity:0;
	}

}

@keyframes fadeOut {

	0% {
		opacity:1;
	}

	100% {
		opacity:0;
	}

}

.owl-height {
	-webkit-transition:height 500ms ease-in-out;
	-moz-transition:height 500ms ease-in-out;
	-ms-transition:height 500ms ease-in-out;
	-o-transition:height 500ms ease-in-out;
	transition:height 500ms ease-in-out;
}

.owl-carousel {
	display:none;
	width:100%;
	-webkit-tap-highlight-color:transparent;
	position:relative;
	z-index:1;
}

.owl-carousel .owl-stage {
	position:relative;
	-ms-touch-action:pan-Y;
}

.owl-carousel .owl-stage:after {
	content:".";
	display:block;
	clear:both;
	visibility:hidden;
	line-height:0;
	height:0;
}

.owl-carousel .owl-stage-outer {
	position:relative;
	overflow:hidden;
	-webkit-transform:translate3d(0px,0,0);
}

.owl-carousel .owl-controls .owl-dot,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-nav .owl-prev {
	cursor:pointer;
	cursor:hand;
	-webkit-user-select:none;
	-khtml-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

.owl-carousel.owl-loaded {
	display:block;
}

.owl-carousel.owl-loading {
	opacity:0;
	display:block;
}

.owl-carousel.owl-hidden {
	opacity:0;
}

.owl-carousel .owl-refresh .owl-item {
	display:none;
}

.owl-carousel .owl-item {
	position:relative;
	min-height:1px;
	float:left;
	-webkit-backface-visibility:hidden;
	-webkit-tap-highlight-color:transparent;
	-webkit-touch-callout:none;
	-webkit-user-select:none;
	-moz-user-select:none;
	-ms-user-select:none;
	user-select:none;
}

.owl-carousel .owl-item img {
	display:block;
	width:100%;
	-webkit-transform-style:preserve-3d;
}

.owl-carousel.owl-text-select-on .owl-item {
	-webkit-user-select:auto;
	-moz-user-select:auto;
	-ms-user-select:auto;
	user-select:auto;
}

.owl-carousel .owl-grab {
	cursor:move;
	cursor:-webkit-grab;
	cursor:-o-grab;
	cursor:-ms-grab;
	cursor:grab;
}

.owl-carousel .owl-rtl {
	direction:rtl;
}

.owl-carousel .owl-rtl .owl-item {
	float:right;
}

.no-js .owl-carousel {
	display:block;
}

.owl-carousel .owl-item .owl-lazy {
	opacity:0;
	-webkit-transition:opacity 400ms ease;
	-moz-transition:opacity 400ms ease;
	-ms-transition:opacity 400ms ease;
	-o-transition:opacity 400ms ease;
	transition:opacity 400ms ease;
}

.owl-carousel .owl-item img {
	transform-style:preserve-3d;
}

.owl-carousel .owl-video-wrapper {
	position:relative;
	height:100%;
	background:#000;
}

.owl-carousel .owl-video-play-icon {
	position:absolute;
	height:80px;
	width:80px;
	left:50%;
	top:50%;
	margin-left:-40px;
	margin-top:-40px;
	cursor:pointer;
	z-index:1;
	-webkit-backface-visibility:hidden;
	-webkit-transition:scale 100ms ease;
	-moz-transition:scale 100ms ease;
	-ms-transition:scale 100ms ease;
	-o-transition:scale 100ms ease;
	transition:scale 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
	-webkit-transition:scale(1.3,1.3);
	-moz-transition:scale(1.3,1.3);
	-ms-transition:scale(1.3,1.3);
	-o-transition:scale(1.3,1.3);
	transition:scale(1.3,1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
	display:none;
}

.owl-carousel .owl-video-tn {
	opacity:0;
	height:100%;
	background-position:center center;
	background-repeat:no-repeat;
	-webkit-background-size:contain;
	-moz-background-size:contain;
	-o-background-size:contain;
	background-size:contain;
	-webkit-transition:opacity 400ms ease;
	-moz-transition:opacity 400ms ease;
	-ms-transition:opacity 400ms ease;
	-o-transition:opacity 400ms ease;
	transition:opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
	position:relative;
	z-index:1;
}

.owl-dots {
	text-align: center;
	display: block;
	position: absolute;
	background: rgba(255,255,255,.01);
	width: 100%;
	bottom: 0px;
	padding: 20px;
}

.owl-dot {
	display: inline-block;

}

.owl-dot > span {
	display:block;
	width: 7px;
	height: 7px;
	filter: Alpha(Opacity=50);
	opacity: 0.5;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: none;
	margin: 2px 7px;
	background-color:#fff;
}

.owl-dot > span:hover {
	display:block;
	width: 7px;
	height: 7px;
	filter: Alpha(Opacity=100);
	opacity: 1;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	border: none;
	background-color:#fff;
}

.owl-dot.active > span {
	display:block;
	width: 12px;
	height: 12px;
	filter: Alpha(Opacity=100);
	opacity: 1;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	margin:0px 7px;
}

.post .owl-controls {
	margin-top:-60px;
}

.owl-dots > .active > span {
	background: #fff;
	border: 1x solid #fff;
}

@media (max-width:991px) {

	.owl-dots,
	.owl-nav {
		display:none;
	}

	.navbar-nav #search {
		display:none;
	}

}

#preloader {
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  background-color:#fff; /* change if the mask should have another color then white */
  z-index:99999; /* makes sure it stays on top */
}

#status {
  width:200px;
  height:200px;
  position:absolute;
  left:50%; /* centers the loading animation horizontally one the screen */
  top:50%; /* centers the loading animation vertically one the screen */
  background-image:url(inc/images/preloader.gif); /* path to your loading animation */
  background-repeat:no-repeat;
  background-position:center;
  margin:-100px 0 0 -100px; /* is width and height divided by two */
}


/* 1.3 Back to top */

#back-to-top {
  display: block;
  z-index: 500;
  width: 40px;
  height: 40px;
  line-height: 35px;
  text-align: center;
  font-size: 20px;
  position: fixed;
  bottom: -40px;
  right: 20px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
  background-color: #25272a;
  text-decoration: none;
}

#back-to-top i {
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
	line-height:40px;
}

#back-to-top a {
  width: 40px;
  height: 40px;
  display: block;
  color: #c2cbcd;
}

#back-to-top.show {
  bottom: 20px;
}

#back-to-top:hover i {
  color: #fff;
}


/**
 *	2.0 Layout
 *----------------------------------------------------------
 */


html {
	-ms-text-size-adjust:100%;
	-webkit-text-size-adjust:100%;
	height:100%;
	font-size:62.5%;
	-webkit-tap-highlight-color:rgba(0,0,0,0);
}

body {
	color:#8c8c8c;
	line-height:30px;
	font-size:16px;
	font-family:'Josefin Sans', sans-serif;
	font-weight:400;
	margin:0;
	padding:0;
	-webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing: grayscale;
	height:100%;
	background:#fff;
}

.boxed-wrap {
	max-width:1280px;
	margin:0 auto;
	-webkit-box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.5);
	box-shadow: 0px 0px 10px -4px rgba(0,0,0,0.5);
}

.td-main {
	background:#fafafa;
}

a.site-title {
	color:#45464b;
}

.td-footer .logo-light {
	display:block;
	margin:0 auto;
}

/*-------------------------------------------------------*/
/* Hero Unit
/*-------------------------------------------------------*/

#hero-unit {
	background:#000;
	display:block;
	position:relative;
	padding:0;
	margin:0px 0 0 0;
}

/*-------------------------------------------------------*/
/* Navigation
/*-------------------------------------------------------*/

.navbar-default {
  background: none;
}

.navigation {
  background: #fff;
  width: 100%;
  z-index: 500;
  line-height: 0;
}

.logo {
  padding: 20px 0;
}

span.site-title {
	margin:10px 0;
	display:block;
}

.navbar-nav {
  margin: 0;
}

.navbar-collapse.in {
  overflow-y: auto;
}

.navbar-nav > li > a {
  font-family: 'Dosis', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #45464b;
  font-size: 12px;
}

.navigation.overlay .navbar-nav > li > a {
  font-family: 'Dosis', Helvetica, Arial, sans-serif;
  text-transform: uppercase;
  color: #fff;
  font-size: 12px;
}

.navigation.overlay.sticky .navbar-nav > li > a {
  color: #45464b;
}

/*DropDown*/

.dropdown-menu {
  margin: 0;
  padding: 0;
  border-left: none;
  border-right: none;
  border-bottom: none;
  min-width:220px;
}

.navbar-nav .dropdown-menu {
  border-radius: 0;
}

.dropdown-menu>li>a:focus,
.dropdown-menu>li>a:hover {
  background-color: #fafafa;
}

.navbar .sub-menu:before {
  border-bottom: 7px solid transparent;
  border-left: none;
  border-right: 7px solid rgba(0, 0, 0, 0.2);
  border-top: 7px solid transparent;
  left: -7px;
  top: 10px;
}

.navbar .sub-menu:after {
  border-top: 6px solid transparent;
  border-left: none;
  border-right: 6px solid #fff;
  border-bottom: 6px solid transparent;
  left: 10px;
  top: 11px;
  left: -6px;
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
  background-color: transparent;
}

.navbar-default .navbar-collapse {
  border-color: #ecf0f1;
}


/*Search*/

#search {
  padding: 50px 15px;
}

.navigation.sticky #search {
  padding: 20px 15px 21px;
}

#search i {
  font-size: 20px;
  color: #45464b;
}

.search-wrap {
  padding: 20px 8px;
}

.search-bar {
  width: 100%;
  overflow: hidden;
  display: none;
  position: relative;
	background-color: #fff;
}

.search-bar label {
	width:100%;
}

.search-trigger {
  cursor: pointer;
  z-index: 999;
}

.search-bar .search-wrap:after {
  display: none;
}

.search-bar .form-group {
  margin-bottom: 0;
}

.search-bar input:focus {
	outline:none;
}

.search-bar button {
  position: absolute;
  right: 8px;
  top: 8px;
  width: 50px;
  height: 50px;
  border: 0;
  cursor: pointer;
}

.search-bar input {
	padding: 15px 5px;
	font-size: 22px;
	font-weight: 400;
	color: #aaa;
	background-color: transparent;
	border-left: none;
	border-right: none;
	border-top: none;
	border-bottom: 2px solid #ecf0f1;
	border-radius: 0;
	outline: 0;
}




/*Navigation Toggle*/

.navbar-toggle {
  margin-top: 13px;
  border: none;
}

.navbar-default .navbar-toggle .icon-bar {
  background-color: #45464b;
  width: 18px;
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
  background-color: #ecf0f1;
}


/* 2.2 Footer */

.td-footer {
	display:block;
	padding:80px 0;
	position:relative;
	z-index:51;
	background:#fff;
	text-align:center;
}

.footer-social a {
  color: #444341;
  line-height: 60px;
  font-size: 17px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  margin:10px;

}

.footer-info {
	font-size: 14px;
	text-transform: capitalize;
	letter-spacing: 0.1em;
	color: #444341;
}

.widget_recent_entries img.post-thumb {
	margin-bottom:10px;
}

.widget_recent_entries span.post-date,
.widget_recent_entries span.post-author {
	display:inline-block;
	color: #777;
	font-size: 12px;
	font-style: italic;
	text-transform:capitalize;
	padding-right:5px
}

li.rc-img-bg {
	display:block;
	width:100%;
	height:275px;
	background-position: center center !important;
	background-size: cover !important;
}

.rc-entries li {
	display:inline-block;
}

.rc-entries li img {
	border-radius:0;
}

/* Icarus Recent Posts Carousel */

#owl-rc-posts .owl-nav {
	margin-top:10px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
	border: 1px solid #dce4e6;
	display: inline-block;
	padding: 3px 10px;
	font-size: 17px;
	line-height: 11px;
	margin-right: 3px;
	-webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

#owl-rc-posts h5 {
	display: block;
	position: absolute;
	top: 40%;
	text-align: center;
	padding:20px;
	opacity:0;
	z-index:2;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

#owl-rc-posts .rc-img-bg:hover h5 {
	top: 30%;
	opacity:1;
}

#owl-rc-posts .rc-img-bg:hover .rc-posts-mask {
	opacity:0.9;
}

#owl-rc-posts .rc-posts-mask {
	background:rgba(255,255,255,1);
	width: auto;
	height: auto;
	position: absolute;
	z-index:1
	display: block;
	opacity:0;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
	top:10px;
	bottom:10px;
	right:10px;
	left:10px;
}

#owl-rc-posts .rc-img-bg {
	padding:0;
	height:250px;
}

/* Hero */

.rc-img-bg {
	display:block;
	width:100%;
	height:60vh;
	background-position: center center !important;
	background-size: cover !important;
}

#owl-hero-posts .rc-img-bg:hover h5 {
	top: 30%;
	opacity:1;
}

#owl-hero-posts .rc-img-bg:hover .rc-posts-mask {
	opacity:.9;
	background: rgba(255,255,255,.9);
}

#owl-hero-posts .rc-posts-mask {
	background: rgba(255,255,255,.9);
	max-width: 600px;
	height: auto;
	margin:10px;
	padding: 40px;
	position: relative;
	opacity:.9;
	z-index: 1;
 	display: inline-block;
 	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

#owl-hero-posts .rc-posts-mask-border {
	border:solid 2px;
	border-color:rgba(255,255,255,.7);
	display: inline-block;
	margin: 170px 0;
}

/* Hero Carousel */

#owl-carousel-posts .rc-img-bg:hover h5 {
	opacity:1;
}

#owl-carousel-posts .rc-img-bg:hover .rc-posts-mask {
	opacity:.9;
	background: rgba(255,255,255,.9);
}

#owl-carousel-posts .rc-posts-mask {
	background: rgba(255,255,255,.9);
	height: auto;
	margin: 0px;
	padding: 40px;
	bottom: -200px;
	position: absolute;
	width: 100%;
	opacity: .9;
	z-index: 1;
	display: block;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

#owl-carousel-posts .rc-img-bg:hover .rc-posts-mask {
	background: rgba(255,255,255,.9);
	height: auto;
	margin: 0px;
	padding: 40px;
	bottom: 0;
	position: absolute;
	width: 100%;
	opacity: .9;
	z-index: 1;
	display: block;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
	transition: all .4s ease;
}

/* Icarus Recent Comments */

.rc-cm > li {
	display: inline-block;
}

.w20 {
	display:inline-block;
	width:30%;
	float:left;
}

.w20 img {
	border-radius: 100%;
}

.w80 {
	display:inline-block;
	width:70%;
	float:left;
	padding-left: 10px;
}


/* 2.4 Breadcrumbs */

.blog-header > .mask {
	padding:80px 0;
}

.blog-header {
	margin:120px 0 0 0;
	padding:60px 0;
  	background-position: center center;
	line-height:40px;
}

.blog-header h1 {
	font-size:40px;
	margin:0;
}

#breadcrumbs{
  list-style:none;
  margin:0 0 40px 0;
	padding:0;
  overflow:hidden;
	text-align:center;
	font-size: 14px;
  letter-spacing: 0.05em;
}

#breadcrumbs li{
    display:inline-block;
    vertical-align:middle;
    margin-right:15px;
}

#breadcrumbs li:before {
  content:"/";
	padding-right: 15px;
}

#breadcrumbs li:first-child:before {
    content: '';
}

#breadcrumbs li a,
#breadcrumbs li .bread-current,
#breadcrumbs li.blog-bread {
	color:#45464b;
	font-weight:inherit;
	font-size:inherit;
}


/**
 *	3.0 Typography
 *----------------------------------------------------------
 */


/* 3.1 General Typography */

.dropcaps:first-child:first-letter {

  float: left;
  color: #45464b;
  font-size: 53px;
  line-height: 50px;
  padding-top: 4px;
  padding-right: 10px;
}

.dropcaps2:first-child:first-letter {
  float: left;
  color: #fff;
  text-align: center;
  width: 38px;
  height: 38px;
  font-size: 24px;
  line-height: 40px;
  margin: 10px 10px 0 0;
  border-radius: 4px;
  padding:0 10px;
}

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

.post.format-standard header {
	padding-bottom:20px;
}

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

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

[hidden],
template {
	display:none;
}

a {
	background:transparent;
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

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

a:hover,
a:focus {
	-webkit-transition: all 200ms ease-in-out;
	-moz-transition: all 200ms ease-in-out;
	-ms-transition: all 200ms ease-in-out;
	-o-transition: all 200ms ease-in-out;
	transition: all 200ms ease-in-out;
}

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

b,
strong {
	font-weight:bold;
}

dfn {
	font-style:italic;
}

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:0;
}

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

pre {
	overflow:auto;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}

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-appearance:textfield;
	-moz-box-sizing:content-box;
	-webkit-box-sizing:content-box;
	box-sizing:content-box;
}

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

article table,
article th,
article td {
	border: 1px solid #eaeaea;
	border: 1px solid rgba(51, 51, 51, 0.1);
}

article table {
	border-collapse: separate;
	border-spacing: 0;
	border-width: 1px 0 0 1px;
	margin: 0 0 1.6em;
	table-layout: fixed; /* Prevents HTML tables from becoming too wide */
	width: 100%;
}

article caption,
article th,
article td {
	font-weight: normal;
	text-align: left;
}

article th {
	border-width: 0 1px 1px 0;
	font-weight: 700;
}

article td {
	border-width: 0 1px 1px 0;
}

article th, article td {
	padding: 0.4em;
}

article p {
	margin-bottom:30px;
}


*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

*:before,
*:after {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
}

input,
button,
select,
textarea {
	font-family:inherit;
	font-size:inherit;
	line-height:inherit;
}

a {
	color:#428bca;
	text-decoration:none;
}

a:hover,
a:focus {
	color:#2a6496;
	text-decoration:none;
}

a:focus {
	outline:none;
}

img {
	vertical-align:middle;
}

/*
 * Responsive images
 *
 * Fluid images for posts, comments, and widgets
 */
.entry-content img,
.entry-summary img,
.comment-content img,
.widget img,
.wp-caption {
	max-width: 100%;
}

/* Make sure images with WordPress-added height and width attributes are scaled correctly. */
.entry-content img,
.entry-summary img,
.comment-content img[height],
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto;
}

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

.attachment img[class*="attachment-"] {
	margin:60px auto 20px auto;
}

.attachment .entry-footer {
	text-align:center;
}

.attachment .blog-content {
	padding:60px 0;
}

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

iframe {
	width:100%;
	border:none;
	min-height:450px;
}

article img,
article figure,
figure img,
.img-responsive,
.wp-post-image {
	display:block;
	max-width:100%;
	height:auto;
}

.img-rounded {
	border-radius:6px;
}

.img-thumbnail {
	padding:4px;
	line-height:1.42857143;
	background-color:#fff;
	border:1px solid #ddd;
	border-radius:4px;
	-webkit-transition:all .2s ease-in-out;
	transition:all .2s ease-in-out;
	display:inline-block;
	max-width:100%;
	height:auto;
}

.img-circle {
	border-radius:50%;
}


/* Images */

.alignleft {
	float: left;
}

.alignright {
	float: right;
}

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

figure.wp-caption.alignleft,
img.alignleft {
	margin: 5px 20px 5px 0;
}

.wp-caption.alignleft {
	margin: 5px 10px 5px 0;
}

figure.wp-caption.alignright,
img.alignright {
	margin: 5px 0 5px 20px;
}

.wp-caption.alignright {
	margin: 5px 0 5px 10px;
}

img.aligncenter {
	margin: 5px auto;
}

img.alignnone {
	margin: 5px 0;
}

.wp-caption .wp-caption-text,
.entry-caption,
.gallery-caption {
	color: #220e10;
	font-size: 18px;
	font-style: italic;
	font-weight: 300;
	margin: 0 0 24px;
}

div.wp-caption.alignright img[class*="wp-image-"] {
	float: right;
}

div.wp-caption.alignright .wp-caption-text {
	padding-left: 10px;
}

img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 20px;
	margin-top: 0;
	padding: 0;
}

.wp-caption.alignleft + ul,
.wp-caption.alignleft + ol {
	list-style-position: inside;
}

blockquote {
	font-size: 24px;
  line-height: 34px;
	padding: 40px;
	font-style:italic;
	background:#fafafa;
	border:none;
	color:#444340;
}

blockquote.blockquote2 {
	font-size: 18px;
	line-height:27px;
	padding: 40px;
	font-style:italic;
	background:#fff;
	border:none;
}


blockquote p {
	margin-bottom: 20px;
}

blockquote cite,
blockquote small {
	font-size: 15px;
	font-style:normal;
	display:block;
	margin:15px 0 20px 0;
	color:#8c8c8c;
}

ul.bullets, ul.arrows, ul.checks, ul.numbers {
	list-style:none;
	padding-left:0;
}

.bullets li, .arrows li, .checks li, .numbers li {
  margin-bottom: 20px;
  color: #8c8c8c;
}

.bullets li:before {
  content: "• ";
  font-size: 14px;
  padding-right: 0.5em;
}

.checks i {
  font-size: 12px;
  margin-right: 7px;
}

.arrows i {
  margin-right: 5px;
}

.format-quote-url blockquote {
	background:#fff;
	padding:0;
}

hr {
	margin-top:20px;
	margin-bottom:20px;
	border:0;
	border-top:1px solid #eee;
}

.sr-only {
	position:absolute;
	width:1px;
	height:1px;
	margin:-1px;
	padding:0;
	overflow:hidden;
	clip:rect(0, 0, 0, 0);
	border:0;
}

h1, h2, h3, h4, h5, h6 {
	color:#45464b;
	-webkit-font-smoothing:antialiased;
	font-weight:400;
	line-height:1.1;
	letter-spacing: 0.02em;
}

h1 {
	font-size:36px;
}

h2 {
	font-size:32px;
}

h3 {
	font-size:24px;
}

h4 {
	font-size:20px;
}

h5 {
	font-size:18px;
}

h6,
.wpb_heading,
.widgettitle {
	font-size: 18px;
}

.subheading {
	font-size: 18px;
	line-height: 30px;
	margin-bottom: 20px;
	font-style:italic;
	color: rgb( 152, 162, 164 );
}

.wpb_column h1.wpb_heading {
	font-size:32px;
}

.wpb_column h1.wpb_heading:after
{
	content:"";
	height:2px;
	width:36px;
	display:block;
	margin:18px 0 40px 0;
}

.wpb_column h2.wpb_heading {
	font-size:24px;
}

.wpb_column h2.wpb_heading:after
{
	content:"";
	height:2px;
	width:36px;
	display:block;
	margin:18px 0 40px 0;
}

.primary {
	margin-top:0px;
}

.dark h1,
.dark h2,
.dark h3,
.dark h4,
.dark h5,
.dark h6 {
	color:#fff;
}


/* 3.2 Buttons */

.form-submit input#submit,
input.wpcf7-submit,
a.btn-style1,
a.btn-style2,
a.btn-style3,
a.btn-style4,
a.btn-style5,
a.btn-style6,
a.btn-style7,
a.btn-style8,
a.btn-style9,
α.btn-style10,
a.btn-style11,
α.btn-white,
a.btn-white2,
a.more-link,
.search-wrap .search-submit {
	display: inline-block;
	margin-top:30px;
	margin-bottom: 0;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
  -webkit-transition: all 0.4s cubic-bezier(0.000, 0.000, 0.580, 1.000);
}

a.more-link {
	margin:0 auto;
	display:table;
}

a.btn-style1,
.form-submit input#submit,
.search-wrap .search-submit,
input.wpcf7-submit {
	color:#fff;
}

.form-submit input#submit,
.search-wrap .search-submit {
	margin-top:0px;
}

.search-wrap .search-submit {
	display:none;
}

.search-bar input {
	width:100%;
}

.search-wrap:after {
	content:"\f002";
	font-family:'FontAwesome';
	position: absolute;
	right: -10px;
	top: 0;
	width: 50px;
	line-height: 70px;
	border: 0;
	cursor: pointer;
	background-color: transparent;
}


a.btn-style1:hover,
a.btn-style1:focus {
  background-color: transparent;
}

.form-submit input#submit:hover,
.search-wrap .search-submit:hover {
	background:none;
}

input.wpcf7-submit:hover {
	background:#eee;
}

a.btn-style2 {
	border:1px solid #f05135;
	background-color: #f05135;
  	color: #fff;
}

a.btn-style2:hover,
a.btn-style2:active  {
	border:1px solid #f05135;
	background-color: transparent;
  	color: #f05135;
}

a.btn-style4 {
	border:1px solid #7248f5;
	background-color: #7248f5;
  	color: #fff;
}

a.btn-style4:hover,
a.btn-style4:active  {
	border:1px solid #7248f5;
	background-color: transparent;
  	color: #7248f5;
}

a.btn-style5 {
	border:1px solid #ffc63e;
	background-color: #ffc63e;
  	color: #fff;
}

a.btn-style5:hover,
a.btn-style5:active  {
	border:1px solid #ffc63e;
	background-color: transparent;
  	color: #ffc63e;
}

a.btn-style6 {
	border:1px solid #92d11d;
	background-color: #92d11d;
  	color: #fff;
}

a.btn-style6:hover,
a.btn-style6:active  {
	border:1px solid #92d11d;
	background-color: transparent;
  	color: #92d11d;
}

a.btn-style7 {
	border:1px solid #30c3ff;
	background-color: #30c3ff;
  	color: #fff;
}

a.btn-style7:hover,
a.btn-style7:active  {
	border:1px solid #30c3ff;
	background-color: transparent;
  	color: #30c3ff;
}

a.btn-style8 {
	border:1px solid #ef6393;
	background-color: #ef6393;
  	color: #fff;
}

a.btn-style8:hover,
a.btn-style8:active  {
	border:1px solid #ef6393;
	background-color: transparent;
  	color: #ef6393;
}

a.btn-style9 {
	border:1px solid #fff;
	background-color: transparent;
  	color: #fff;
}

a.btn-style9:hover,
a.btn-style9:active  {
	border:1px solid #fff;
	background-color: #fff;
	color:#9148f5;
}

a.btn-style10 {
	border:1px solid #fff;
	background-color: transparent;
  	color: #fff;
}

a.btn-style10:hover,
a.btn-style10:active  {
	color: #fff;
}

a.btn-style11 {
	color:#fff;
}

a.btn-style11:hover,
a.btn-style11:active  {
	color: #fff;
	border:1px solid #121212;
	background:#121212;
}

a.btn-white {
	border:1px solid #fff;
	background-color: #fff;
 	margin-top:0;
	margin-right:5px;
}

a.btn-white:hover,
a.btn-white:active  {
	border:1px solid #fff;
	background-color: transparent;
	color:#fff;
}

a.btn-white2 {
	border:1px solid #fff;
	background-color: transparent;
	color:#fff;
	margin-top:0;
	margin-left:5px;
}

a.btn-white2:hover,
a.btn-white2:active  {
	border:1px solid #fff;
	background-color: #fff;
	color:#fff;
}

a.btn-style3,
a.more-link {
	border:1px solid #dce4e6;
	border-radius: 20px;
	background:#fff;
	color:#45464b;
}

a.btn-style3:hover,
a.more-link:hover {
	color:#fff;
}

a.large {
	padding: 11px 45px;
	font-size: 18px;
}

a.medium,
.form-submit input#submit,
.search-wrap .search-submit {
	padding: 9px 30px;
	font-size: 15px;
}

a.small,
a.more-link {
	padding: 7px 20px;
	font-size: 14px;
	letter-spacing: 0.1em;
}

a.fa:before {
	margin:5px;
}


/**
 *	4.0 Elements
 *----------------------------------------------------------
 */


/* 4.7 Contact form */

.wpcf7-form input {
	box-shadow: none;
	padding: 12px 18px;
	border: 2px solid #ecf0f1;
	background-color: #fafcfc;
	height: 50px;
	width:100%;
	border-radius: 0;
	outline:0;
}

.wpcf7-form textarea {
	font-size:16px;
	padding:12px 18px;
	display:block;
	border: 2px solid #ecf0f1;
	background-color: #fafcfc;
	outline:0;
	height:164px;
	min-height:164px;
	max-height:164px;
	width:100%;
	min-width:100%;
	max-width:100%;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

input.wpcf7-submit {
	text-align:center;
	display:block;
	font-size:16px;
	border-radius:25px;
}

input.wpcf7-submit:hover,
input.wpcf7-submit:focus {
	text-align:center;
	display:block;
	border: 2px solid #ecf0f1;
	color:#414145;
	background:none;
}

/* 4.14 Owl carousel */

#owlslider .owl-nav {
	display: block;
	position:absolute;
	top:47%;
	width: 100%;
}

#owlslider .owl-nav > div {
	-webkit-transition:all 400ms ease;
	-moz-transition:all 400ms ease;
	-ms-transition:all 400ms ease;
	-o-transition:all 400ms ease;
	transition:all 400ms ease;
	display: inline-block;
	border:2px solid #6e6e76;
	border-radius:100%;
	width:42px;
	height:42px;
	line-height:36px;
	color:#a6a6af;
	margin:0px 40px;
	font-size:18px;
	text-align: center;
}

#owlslider .owl-prev {
	float:left;
}

#owlslider .owl-next {
	float:right;
}

#owlslider .owl-nav > div:hover {
	border:2px solid #e4e4e4;
	color:#a6a6af;
}


/**
 *	5.0 WP Content
 *----------------------------------------------------------
 */


/* General */

a.page-numbers,
span.page-numbers {
	background-color: #fff;
	color:inherit;
	padding: 9px 16px;
	margin-bottom:40px;
	font-size: 14px;
	display: inline-block;
}

.blog-pagination {
	margin-top:-60px;
}

a.next:before{
	font-size:14px;
	color:inherit;
}

a.prev:before{
	font-size:14px;
	color:inherit;
}

.blog-pagination .current:hover,
a.page-numbers:hover {
	background:none;
}

.page-links {
	margin:40px 0;
}

.page-links a {
	padding:8px 15px;
	margin:0px 3px;
	border:1px solid #e2e2e2;
	color:#414145;
}

.page-links > span {
	padding:8px 15px;
	margin:0px 3px;
	border:1px solid #e2e2e2;
	background:#fafafa;
	color:#414145;
}

.port-navigation {
	display: block;
	text-align: left;
	width: 100%;
	margin-top:0px;
	margin-bottom:40px;
}

.portfolio-navigation {
    display: block;
    text-align: right;
    width: 100%;
    margin-top: auto;
}

.port-navigation > div,
.portfolio-navigation > div {
	display: inline-block;
}

.port-navigation > div > a > i {
	-webkit-transition:all 400ms ease;
	-moz-transition:all 400ms ease;
	-ms-transition:all 400ms ease;
	-o-transition:all 400ms ease;
	transition:all 400ms ease;
	color:#a6a6af;
	border:2px solid #fff;
	background:#fff;
	font-size:18px;
	border-radius:0;
	width:42px;
	height:42px;
	line-height:36px;
	margin:0px 2px;
	text-align:center;
}

.portfolio-navigation > div > a > i {
	-webkit-transition:all 400ms ease;
	-moz-transition:all 400ms ease;
	-ms-transition:all 400ms ease;
	-o-transition:all 400ms ease;
	transition:all 400ms ease;
	color:#a6a6af;
	background:none;
	font-size:36px;
	border-radius:0;
	width:42px;
	height:42px;
	line-height:42px;
	margin:0px;
	text-align:center;
}

.portfolio-navigation > div > a > i:hover {
	color:#fff;
}


/* 5.1 Widgets */

.wpb_heading,
.widgettitle {
	position:relative;
}

.wpb_heading:before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    width: 100%;
    border-bottom: 1px solid #f2f2f2;
}

.wpb_heading:after {
    content: "";
    display: block;
    width: 35px;
    border-bottom: 1px solid #7a7a7a;
    margin: 19px auto 24px 0;
    z-index: 1;
    position: relative;
}

.widget {
	background-color: rgba(255, 255, 255, 1);
	padding:30px;
	font-size: inherit;
	-webkit-hyphens: auto;
	-moz-hyphens:    auto;
	-ms-hyphens:     auto;
	hyphens:         auto;
	margin: 0 0 40px;
	word-wrap: break-word;
	font-size:16px;
}

.widget h6 {
	margin: 0px 0 30px 0;
}

.widget ul,
.widget ol {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.widget li {
	padding: 10px 0;
	border-bottom:1px solid #ecf0f1;
	line-height:24px;
}

.widget a {
	color:inherit;
}

.widget li:last-child,
.children li {
	border:none;
}

.widget_categories li a:after,
.widget_pages li a:after,
.widget_archive li a:after,
.widget_meta li a:after  {
  font-family: "FontAwesome";
  position: absolute;
  content: "\f105";
  right: 45px;
  color: #8c8c8c;
  margin-top:4px;
}

.widget_categories li a,
.widget_pages li a,
.widget_archive li a,
.widget_meta li a  {
  padding-right:10px;
}

.widget .children li:last-child {
	padding-bottom: 0;
}

.widget li > ul,
.widget li > ol {
	margin-left: 20px;
}

.widget img {
	display:block;
	max-width:100%;
	height:auto;
}

.widget select {
	width:100%;
	border:1px solid #e7e7ed;
	padding:10px;
	border-radius:0;
	outline:none;
}

.widget select option {
	border:1px solid #e7e7ed;
}

/* Search widget */

.widget_search .search-submit,
.error404 .search-submit,
.not-found .search-submit {
	display:none;
}

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

.widget_search {
	position:relative;
}

.widget_search .wpb_heading {
	display:none;
}

.widget_search {
	padding:0px;
	border: 2px solid #ecf0f1;
	margin:0 0 40px 0;
}

.error404 .search-form,
.not-found .search-form {
	padding:0px;
	border: 2px solid #ecf0f1;
	margin:30px 0 0 0;
	background:#fff;
}

.widget_search label,
.error404 label,
.not-found label {
	width:100%;
	margin-bottom:0;
}

.widget_search input,
.error404 input,
.not-found input {
	box-shadow: none;
	padding: 0px 18px;
	border:none;
	background-color: transparent;
	height: 50px;
	max-height: 50px;
	border-radius: 0;
	font-size: 17px;
	color: #8c8c8c;
	width:70%;
	font-weight:normal;
}

.widget_search input:focus,
.error404 input:focus,
.not-found input:focus {
	outline:none;
}

::-webkit-input-placeholder {
    color:    inherit;
}
:-moz-placeholder {
   color:    inherit;
   opacity:  1;
}
::-moz-placeholder {
   color:    inherit;
   opacity:  1;
}
:-ms-input-placeholder {
   color:    inherit;
}

.widget_search:after {
	content:"\e618";
	font-family:'Pe-icon-7-stroke';
	font-size:17px;
	position: absolute;
	padding-left: 10px;
	top: 0;
	right:0;
	width: 50px;
	line-height: 50px;
	border: 0;
	background-color: transparent;
}

/* RSS Widget */

.widget_rss a {
	color:#414145;
}

.widget_rss .rss-date {
	display: block;
}

.widget_rss .rss-date,
.widget_rss li > cite {
	color: #a2a2a2;
	font-size: 12px;
	font-style: italic;
	margin: 10px 0;
}

/* Calendar Widget */

.widget_calendar table,
.widget_calendar td {
	border: 0;
	border-collapse: separate;
	width: 100%;
	border-spacing: 10px;
	background:#fafafa;
}

.widget_calendar caption {
	display:none;
}

.widget_calendar th,
.widget_calendar td {
	padding: 0;
	text-align: center;
}

.widget_calendar a {
	display: block;
	font-style:italic;
}

.widget_calendar a:hover {
	background-color: #fafafa;
}

.widget_calendar tbody td {
	background-color: rgba(255, 255, 255, 0.5);
}

.widget_calendar tbody .pad {
	background-color: transparent;
}

.widget_calendar tfoot {
	display:none;
}

/* Widget Nav Menu */

.widget_nav_menu ul.sub-menu{
	display:none;
}

/* Recent Posts Widget */

.widget_recent_entries a,
.widget_pages a,
.widget_archive a,
.widget_meta a,
.widget_recent_comments a,
.widget_categories a {
	color:inherit;
	text-decoration:none;
	line-height:1.1;
}

/* Tag Cloud */

.tagcloud a {
	background: #fff;
  border: 1px solid #e4e4e4;
  color: inherit;
  padding: 7px 12px 5px 12px;
  margin: 3px 1px;
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  border-radius: 70px;
  font-size: 14px !important;
  text-transform: capitalize;
	color: #45464b;
}

.tagcloud a:hover {
	color:#fff;
}



/**
 * 5.2 Post Formats
 * ----------------------------------------------------------------------------
 */

 .entry-header {
	 text-align:center;
 }

 /* Post Meta */

.entry-meta span,
.entry-meta div,
.entry-meta a,
.entry-meta a,
.entry-comments a,
span.entry-date  {
	text-transform:capitalize;
	font-size:14px;
	color:#bbb;
}

.entry-meta div {
	display:inline;
}

.entry-meta i {
	margin-right:7px;
}

.entry-meta a {
	color:inherit;
}

.entry-author,
.entry-date {
	margin-right:7px;
}

.entry-author:before,
.entry-category:before,
.entry-comments:before {
	  content: '/';
  	margin-right: 7px;
}

.entry-category ul {
	display:inline;
	list-style:none;
	padding:0;
	margin:0 7px 0 0;
}

.entry-category ul li {
	display:inline;
}

.gray-bg {
	background:#fff;
	padding:8%;
}

.blog .gray-bg,
.archive .gray-bg,
.search .gray-bg {
	background:#fff;
	padding:40px 40px 20px 40px;
}

.sticky .gray-bg {
	background:#fff;
}

.bypostauthor {
}

/* Post Footer */

.post-tags {
	display:inline-block;
}

.post-tags h6 {
	display:inline-block;
}

.post-share-buttons {
	display:inline-block;
	position:relative;
	text-align:right;
}

.post-share-buttons h6 {
	display:inline-block;
}

.post-share-buttons a {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #fafafa;
	color: #8c8c8c;
	line-height: 32px;
	text-align: center;
	font-size: 14px;
	-webkit-transition: all .3s ease;
	-o-transition: all .3s ease;
	transition: all .3s ease;
	display:inline-block;
	margin-left:10px;
}

.post-author-card {
	padding: 30px;
	border: 1px solid #ecf0f1;
	display:inline-block;
	margin:50px 15px 10px 15px;
	width:100%;
	background:#fafafa;
}

.post-author-card h6 {
	margin-right:10px;
	margin-bottom:10px;
}

.post-author-card img {
	border-radius:100%;
}

.post-tags a {
	font-size:14px;
	color:inherit;
	margin-left:5px;
	font-style:italic;
}

.author-email,
.author-website a {
	font-size:14px;
	margin-right:10px;
	margin-top:10px;
	display:inline-block;
	color:#45464b;
}

.author-email i,
.author-website i {
    vertical-align: text-bottom;
		color:#45464b;
		font-size:16px;
	}

/* Link */

.format-link {
	background:#fafafa;
	margin-bottom: 40px;
	-webkit-transition:all 200ms ease-in;
	-moz-transition:all 200ms ease-in;
	-ms-transition:all 200ms ease-in;
	-o-transition:all 200ms ease-in;
	transition:all 200ms ease-in;
}

.format-link-url {
	display:inline-block;
	position:relative;
	padding:40px 30px 30px 30px;
	background:#f8f8fb;
	width:100%;
}

.format-link p {
	margin:0;
}

.format-link .entry-content {
	font-size:16px;
	font-style:italic;
	color:#888893;
}

.format-link .entry-header {
	margin:0 0 10px 0;
	font-size:28px;
}

.format-link:hover {
	opacity:.9;
}

/* Quote */


.format-quote blockquote {
	margin:0px;
}

.format-quote-url {
	display:inline-block;
	position:relative;
	padding:0px;
	background:#fff;
	width:100%;
}

.format-quote p {
	margin:0;
}

.format-quote .entry-content,
.format-quote-url .entry-content {
	font-size:28px;
	line-height:42px;
	font-style:italic;
	color:inherit;
}

.format-quote-author {
	display:none;
}

/* Video - Gallery */

.format-video,
.format-gallery,
.format-aside,
.format-audio,
.format-status,
.format-chat,
.format-standard,
.format-image,
.format-quote  {
	margin-bottom:40px;
}

h3.entry-title a,
.format-video h3.entry-title a,
.format-image h3.entry-title a,
.format-standard h3.entry-title a,
.format-gallery h3.entry-title a {
	color:#444341;
	margin:0px 0 10px 0;
	font-size:32px;
}

.format-video h3.entry-title,
.format-image h3.entry-title,
h3.entry-title,
.format-standard h3.entry-title,
.format-gallery h3.entry-title {
	font-size:36px;
	margin:0px 0 10px 0;
}

.format-video .entry-header,
.format-image .entry-header,
.format-gallery .entry-header {
	margin-bottom:40px;
}

.format-video > p {
	margin:0;
}

.format-video iframe {
	margin-bottom:-10px;
}

/* Image */

.format-image {
	margin-bottom:40px;
}


/* Standard */

.format-standard {
	margin-bottom:40px;
	background:#fff;
}

.format-standard .wp-post-image {
	margin:0 auto;
}

/* Galleries */

.gallery {
	margin-bottom: 1.6em;
}

.gallery-item {
	display: inline-block;
	padding: 1.79104477%;
	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-icon img {
	margin: 0 auto;
}

.gallery-caption {
	color: #414145;
	display: block;
	font-size: 13px;
	font-size: 1.2rem;
	line-height: 1.5;
	padding: 0.5em 0;
}

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


/* 5.3 Comments */

#respond {
	background:#fafafa;
	margin:50px auto 0 auto;
	padding:10%;
}

#respond h3 {
	margin-top:0px;
	margin-bottom:30px;
}

#respond input,
#respond textarea {
	width:100%;
}

#respond label,
.comment-notes,
.form-allowed-tags,
.comment .says {
	display:none;
}

#respond input {
	font-size: 16px;
	color: #8c8c8c;
	margin-bottom: 10px;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 12px 18px;
	border: 2px solid #ecf0f1;
	height: 50px;
	border-radius: 0;
}

#respond textarea {
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 12px 18px;
  border: 2px solid #ecf0f1;
  background-color: #fff;
  height: 164px;
  min-height:164px;
  border-radius: 0;
  font-size: 16px;
  color: #8c8c8c;
  margin-bottom:20px;
}

#respond p {
	margin-bottom:0;
}

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

#respond .comment-reply-title {
	text-align:center;
}

.comment-content,
.comment .reply,
.comment b.fn,
.comment-metadata {
	float: right;
	width: 80%;
	display: inline-block;
	margin-bottom: 0px;
	position: relative;
}

b.fn a,
b.fn {
	color:#45464b;
	display:inline;
	font-size:14px;
}

.comment-metadata a{
  font-size: 13px;
  color: #bbb;
  font-style: italic;
  margin-bottom:10px;
}

.comment img {
	border-radius:100%;
	float:left;
	display:inline-block;
}

.comment article {
	padding: 30px;
	border: 1px solid #ecf0f1;
	display:inline-block;
	margin-bottom:15px;
	width:100%;
}

ol.comment-list,
ol.children {
	list-style:none;
}

ol.comment-list {
	padding-left:0;
}

h2.comments-title {
	font-size: 24px;
	margin-bottom:30px;
	margin-top: 60px;
}

.page h2.comments-title {
  font-size: 24px;
  margin-bottom: 30px;
  text-align: center;
  margin-top: 80px;
}

.page #comments.comments-area {
	width:80%;
	margin:0 auto;
}

.page #respond {

}

/* Media Queries */

@media (max-width: 767px) {

ol.comment-list, ol.children {
	padding: 0;
}

.comment-content, .comment .reply, .comment b.fn, .comment-metadata {
	width:100%;
}

.comment b.fn {
	margin-top:20px;
}

.post-author-card .pull-right {
	float:left !important;
}

.post-author-card img {
	margin-bottom:20px;
}

.navigation .logo-light {
	height:60px;
}

.navigation .logo {
  padding: 3px 20px 0 20px;
}

img.logo-center {
	margin:0 auto;
}

.navbar-header {
  height: 60px;
}

header .navbar .navbar-collapse.in .navbar-nav li a, .nav>li>a {
  padding: 17px 0; border-bottom: 1px solid #ecf0f1;
}

header .navbar .navbar-collapse.in .navbar-nav li.dropdown a:after {
  font-family: "FontAwesome";
  position: absolute;
  content: "\f107";
  right: 0;
  top: 17px;
  color: #45464b;
}

.logo {
  padding: 20px;
}

.navigation .logo-light {
  display: none;
}

.navigation.sticky .logo-dark,
.navigation .logo-dark {
  display: block !important;
}

.navigation.sticky .logo-dark {
  display: block !important;
  margin-left:20px;
}

.navigation {
  background: #fff !important;
}

.navbar-default .navbar-nav .open .dropdown-menu>li>a {
  color: #8c8c8c;
  margin-left: 10px;
}

.search-bar {
  display: none !important;
}

.pull-right.section-info {
	float:left !important;
}

.navigation ul.one-menu.navbar-nav > li > a {
  color: #45464b;
}

.tparrows {
	display:none !important;
}

.portfolio-navigation {
    text-align: left;
    margin-top: 40px;
}

.breadcrumbs {
	display:none;
}

h1.section-title {
	font-size:26px;
	margin:0;
}

.blog-header {
    padding: 60px 0 40px 0;
}

}

@media (min-width: 767px) {

.navbar-right .dropdown-menu {
  left: 0;
}

.navigation.sticky .navbar-nav > li > a {
  padding: 20px 20px 21px !important;
}

header .navbar .navbar-collapse .navbar-nav li ul.dropdown-menu li a {
  padding: 15px 20px;
  border-bottom: 1px solid #ecf0f1;
}

}

/* 6.1 Portfolio White */

@media (min-width: 768px) {

#header {
  position: fixed;
  width: 260px;
  height: 100%;
  background-color: #fff;
  z-index: 20;
  top: 0;
  left: 0;
}

}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover,
.nav>li>a:focus,
.nav>li>a:hover {
  background-color: transparent;
  border-color: transparent;
  text-decoration: none;
}


.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover,
.nav>li>a:focus,
.nav>li>a:hover {
  background-color: transparent;
  border-color: transparent;
  text-decoration: none;
}

.social-icons.light {
  margin-top: 0;
  display: inline-block;
}

.social-icons.light i {
  background-color: #fafafa;
  color: #8c8c8c;
}

.social-icons.light i {
    width: 32px;
    height: 32px;
	margin: 3px 3px 0px 0px;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.social-icons.dark {
  margin-top: 0;
  display: inline-block;
}

.social-icons.dark i {
  background-color: #16171a;
  color: #8c8c8c;
}

.social-icons.dark i {
    width: 32px;
    height: 32px;
	margin: 3px 3px 0px 0px;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.post-password-form input[type="submit"] {
	border: none;
	background: none;
	color: #000;
	font-size: 15px;
}

.post-password-form input[type="submit"]:hover {
	border: none;
	background: none;
	color: #000;
	font-size: 15px;
}

.error404 {
	text-align:center;
}

.error404 .td-main {
	padding:120px 0;
}

.error404 h1.page-title {
	margin-top:0;
}

header.nav-center .navbar .navbar-right {
    display: inline-block !important;
    float: none !important;
}

header.nav-center .navbar .navbar-collapse {
    text-align: center !important;
}

header.nav-center .navbar-header {
	width:100%;
}

header.nav-center .logo {
	padding:60px 0 0 0;
}

.navbar {
	margin:0;
	border:none;
}

	@media (max-width: 767px) {

	header.nav-center .logo {
		padding:0 15px 0 15px;
		float:left;
	}

	.entry-header {
	    text-align: center;
	    font-size: 24px;
	    margin-bottom: 40px;
	    margin-top: -10px;
	}

	header.nav-center .navbar .navbar-right {
    display: block !important;
    float: none !important;
    text-align: left;
	}

}
