/*
Theme Name: Evasion
Theme URI: http://themeforest.net/user/everislabs
Author: EverisLabs
Author URI: http://everislabs.com
Description: Magazine & Blogging WordPress Theme
Version: 1.0
Tags: responsive-layout, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, full-width-template, microformats, post-formats, sticky-post, theme-options, translation-ready, accessibility-ready
Text Domain: er
License:
License URI:
*/

/* Table of Contents
-------------------------------------------------------------- 

	01 General
		- Body
		- Heading
		- Link
		- Form
		- Button
		- Placeholder Text
	02	Header
		- General Menu
		- Site Menu
		- Full Logo Top
		- Full Logo Site Menu
		- Full Menu Top
		- Full Menu Site Menu
		- Fixed  Header
		- Sf Menu
		- Top Bar
		- Top Bar Color
		- Header Search
	03	Footer
	04 	Elements
		- Highlight
		- Heading Line
		- News Box Item
		- News Short Info
		- Feature Box
		- Editor News
		- Video Posts
		- Lists Posts
		- News Posts
		- Form
		- Small Title
		- Shadow
		- Section
		- Background
		- Heading Title
		- Ads Box
		- Hover Effect
	05 Content Layout
	06 Portfolio
	07 Shortcodes
		- Tabs
		- Tour
		- Accordion
		- Toggle
		- Lists
		- Table
		- Dropcap
		- Highlight
		- Divider
		- Video
		- Slider
		- Button
		- Custom Images
		- Progress
		- Icon
		- Contact Form 7
	08	Single Post
		- Entry Meta
		- Author Box
		- Share Box
		- Enter Breadcrumbs
		- Blog Item
		- Page Navigations
		- Relate Posts
		- Menu Posts
	09 Comments
		- Comment List
		- Comment Form
	10 Sidebar & Widgets
		- General Style
		- Tags
		- Search
		- Flickr
		- Contact Widget
		- Top Posts
		- Latest Posts
		- Portfolio
		- Twitter
		- Social
		- Widget Reset
	11 Social Color & Background
	12 Mobile Menu
	13 WordPress
	14 Responsive Media
	
/* =General
-------------------------------------------------------------- */
html {
	font-size: 100%;
	-webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-y: hidden;
}
body {
	font-family: "Open Sans", Helvetica Nue, Arial;
	font-size: 14px;
	line-height: 23.2px;
	background-color: #f7f7f7;
	color: #444;
	overflow-x: hidden;
	font-weight: 400;
    text-rendering: optimizelegibility;
}

/* Heading */
h1,h2,h3,h4,h5,h6 {
	line-height: inherit;
	color: #232323;
	margin: 0 0 15px;
	font-family: "Roboto Slab", Helvetica Nue;
	font-weight: 400;
}
h1.large,h2.large,h3.large,h4.large,h5.large,h6.large {
	font-weight: 800;
}
h1.thin,h2.thin,h3.thin,h4.thin,h5.thin,h6.thin {
	font-weight: 400
}
h1.normal,h2.normal,h3.normal,h4.normal,h5.normal,h6.normal {
	font-weight: normal;
}
h1, h2.entry-title {
	font-size: 22px;
	line-height: 28px;
}
h1.large {
	font-size: 33px;
	line-height: 44px;
}
h2 {
	font-size: 20px;
	line-height: 26px;
}
h2.large {
	font-size: 30px;
	line-height: 39px;
}
h3 {
	font-size: 18px;
	line-height: 24px;
}
h3.large {
	font-size: 27px;
	line-height: 36px;
}
h4 {
	font-size: 16px;
	line-height: 22px;
}
h4.large {
	font-size: 24px;
	line-height: 33px;
}
h5 {
	font-size: 14px;
	line-height: 20px;
}
h5.large {
	font-size: 22px;
	line-height: 40px;
}
h6 {
	font-size: 12px
}
h6.large {
	font-size: 18px;
	line-height: 21px;
}
.heading-fonts {
	font-family: 'Roboto Slab';
}

/* Link */
a,
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
	color: #232323;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
h1 a:focus,
h2 a:focus,
h3 a:focus,
h4 a:focus,
h5 a:focus,
h6 a:focus,
a:focus {
	outline: 0;
	text-decoration: none;
	color: inherit;
}
h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover,
a:hover {
	color: #e74c3c;
	text-decoration: none
}

/* Form fields, general styles first. */
.button,
button {
	border: 0;
	margin-bottom: 2px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
input,
select,
textarea {
	color: #999;
	padding: 9px 15px 10px;
	border: 1px solid #f1f1f1;
	font-family: inherit;
	margin-bottom: 5px;
	background: transparent;
	position: relative;
	font-weight: 300;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
}
input:focus,
select:focus,
textarea:focus {
	border-color: #ddd;
	color: #bbb;
	outline: 0;
}
select {
	padding: 8px 15px 9px;
}
input[type=file] {
	padding: 8px 15px;
}
input.white,
select.white,
textarea.white {
	background-color: #fff;
}

/* Buttons */
.button,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	display: inline-block;
	padding: 10px 25px 10px;
	background: #e74c3c;
	color: #fff;
	text-decoration: none;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	font-weight: normal;
	border: 0;
}
.button:hover,
.button:focus,
button:hover,
button:focus,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:focus,
input[type="button"]:focus,
input[type="reset"]:focus {
	outline: none;
	cursor: pointer;
	background: #272727;
	color: #fff
}
.button.medium {
	font-size: 11px;
}
.button.form {
	padding: 10px 30px 11px;
}
.button.block {
	display: block;
	text-align: center;
}

/* Placeholder text color -- selectors need to be separate to work. */
::-webkit-input-placeholder {
	color: #888;
}
:-moz-placeholder {
	color: #888;
}
::-moz-placeholder {
	color: #888;
}
:-ms-input-placeholder {
	color: #555;
}

/* =Header
-------------------------------------------------------------- */
#header .main-header.default .logo-wrap {
	position: relative;
}
#header .main-header.default .logo-area {
	background-color: #555555;
	text-align: center;
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
	padding: 10px 0;
}
#header .main-header.default .logo-area h1 {
	margin: 0
}
#header .main-header.default .logo-area .site-title-display {
	display: block;
	text-indent: -9999999px;
	position: absolute;
	top: 0;
	left: -999999px;
}
#header .main-header.default .logo-area a {
	display: inline-block;
}
#header .main-header.default .header-menu {
	background-color: #fff;
}

/* General Menu */
#header .main-header .site-menu li .sf-mega {
	width: 100%;
}
#header .main-header .site-menu li .sf-mega .sf-mega-content {
	padding: 10px 30px;
	background-color: #fff;
	border-top: 3px solid #E74C3C;
	margin-top: -3px;
	-webkit-box-shadow: 0px 2px 2px 0px rgba(50, 50, 50, 0.15);
	-moz-box-shadow:    0px 2px 2px 0px rgba(50, 50, 50, 0.15);
	box-shadow:         0px 2px 2px 0px rgba(50, 50, 50, 0.15);
}
#header .main-header .site-menu li .sf-mega .sf-mega-content ul {
	background-color: transparent;
}
#header .main-header .site-menu li .sf-mega .sf-mega-content ul:before {
	display: none;
}
#header .main-header .site-menu li .sf-mega .sf-mega-content ul li a {
	padding-left: 0;
	padding-right: 0;
	border-color: #f1f1f1;
	color: #4e4e4e;
}
#header .main-header .site-menu li .sf-mega .sf-mega-content ul li a:hover {
	color: #E74C3C;
}
#header .main-header .site-menu li .sf-mega .sf-mega-content .tabNavigation {
	text-align: right;
}
#header .main-header .site-menu li .sf-mega .sf-mega-content .tabNavigation li.active a {
	color: #E74C3C;
}
#header .main-header .site-menu li .sf-mega .sf-mega-content .tabs-content {
	text-align: left;
	padding: 15px 0 0;
}

/* Site Menu */
#header.default {
	margin-bottom: -40px;
}
#header .main-header.default .site-menu .menu-notice,
#header .main-header.default .site-menu li a {
	display: block;
	padding: 20px 25px;
	text-transform: uppercase;
	color: #222;
	font-weight: bold;
}
#header .main-header.default .site-menu li a:hover,
#header .main-header.default .site-menu li.current-menu-item > a,
#header .main-header.default .site-menu li.sfHover > a {
	color: #E74C3C;
}
#header .main-header.default .site-menu ul ul {
	background-color: #E74C3C;
	width: 180px;
	color: #fff;
}
#header .main-header.default .site-menu ul ul:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent #E74C3C transparent;
	content: '';
	position: absolute;
	top: -5px;
	left: 25px;
}
#header .main-header.default .site-menu ul ul ul {
	margin-top: 0;
}
#header .main-header.default .site-menu ul ul ul:before {
	display: none;
}
#header .main-header.default .site-menu ul ul li a {
	text-transform: none;
	color: #fff;
	padding: 15px 25px;
	border-bottom: 1px solid #ed5748;
	font-weight: normal;
}
#header .main-header.default .site-menu ul ul li.sfHover > a,
#header .main-header.default .site-menu ul ul li.current-menu-item > a,
#header .main-header.default .site-menu ul ul li a:hover {
	color: #fff;
}
#header .main-header.default .site-menu ul ul li a.sf-with-ul:after {
	content: '\f105';
	font-family: 'FontAwesome';
	float: right;
	color: #ed5748;
}
#header .main-header.default .site-menu ul ul li:last-child > a {
	border-bottom: 0;
}
#header  .main-header.default .header-info {
	padding: 22px 0 18px;
}
#header  .main-header.default .header-info.black {
	background-color: #282828;
}
#header .main-header.default .header-social {
	text-align: right;
	margin: -5px 0;
}
#header .main-header.default .header-social ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#header .main-header.default .header-social ul li {
	display: inline-block;
}
#header .main-header.default .header-social ul li a {
	display: block;
	padding: 3px 10px;
	background: #fff;
}
#header .main-header.default .header-social ul li a:hover {
	color: #fff;
}
#header  .main-header.default .header-info.black .header-social ul li a {
	background-color: #333;
}
#header .main-header.default .header-info .latestnews {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	height: 26px;
}
#header .main-header.default .header-info .latestnews span {
	display: inline-block;
	margin-right: 5px;
	padding: 2px 10px;
	font-size: 11px;
	background-color: #E74C3C;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}
#header .main-header.default .header-info .latestnews span a {
	color: #fff;
}

/* Full Logo */
#header .main-header.full-logo .logo-wrap {
	position: relative;
}
#header .main-header.full-logo .logo-area {
	padding: 25px 0;
}
#header .main-header.full-logo .logo-area h1 {
	margin: 0
}
#header .main-header.full-logo .logo-area .site-title-display {
	display: block;
	text-indent: -9999999px;
	position: absolute;
	top: 0;
	left: -999999px;
}
#header .main-header.full-logo .logo-area a {
	display: inline-block;
}
#header .main-header.full-logo .header-menu {
	background-color: #fff;
}
#header .main-header.full-logo .header-info {
	padding: 10px 0;
	background-color: #666;
}
#header .main-header.full-logo .header-info .latestnews {
	list-style: none;
	padding: 0;
	margin: 0;
	color: #fff;
}
#header .main-header.full-logo .header-info .latestnews li {
	line-height: 2;
}
#header .main-header.full-logo .header-info .latestnews span {
	display: inline-block;
	margin-right: 5px;
	padding: 2px 10px;
	font-size: 11px;
	background-color: #E74C3C;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}
#header .main-header.full-logo .header-social {
	text-align: right;
}
#header .main-header.full-logo .header-social ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#header .main-header.full-logo .header-social ul li {
	display: inline-block;
}
#header .main-header.full-logo .header-social ul li a {
	display: block;
	padding: 3px 10px;
	background: #5e5e5e;
	color: #fff;
}
/* Site Menu */
#header .main-header.full-logo .site-menu {
	margin-top: 10px;
}
#header .main-header.full-logo .site-menu li a,
#header .main-header.full-logo .site-menu .menu-notice {
	display: block;
	padding: 20px 25px;
	text-transform: uppercase;
	color: #222;
	font-weight: bold;
}
#header .main-header.full-logo .site-menu li > a.sf-with-ul:after {
	content: '\f107';
	font-family: 'FontAwesome';
	display: inline-block;
	margin-left: 10px;
}
#header .main-header.full-logo .site-menu li a:hover,
#header .main-header.full-logo .site-menu li.current-menu-item > a,
#header .main-header.full-logo .site-menu li.sfHover > a {
	color: #E74C3C;
}
#header .main-header.full-logo .site-menu ul ul {
	background-color: #E74C3C;
	width: 180px;
	color: #fff;
}
#header .main-header.full-logo .site-menu ul ul:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent #E74C3C transparent;
	content: '';
	position: absolute;
	top: -5px;
	left: 25px;
}
#header .main-header.full-logo .site-menu ul ul ul {
	margin-top: 0;
}
#header .main-header.full-logo .site-menu ul ul ul:before {
	display: none;
}
#header .main-header.full-logo .site-menu ul ul li a {
	text-transform: none;
	color: #fff;
	padding: 15px 25px;
	border-bottom: 1px solid #ed5748;
	font-weight: normal;
}
#header .main-header.full-logo .site-menu ul ul li.sfHover > a,
#header .main-header.full-logo .site-menu ul ul li.current-menu-item > a,
#header .main-header.full-logo .site-menu ul ul li a:hover {
	color: #fff;
}
#header .main-header.full-logo .site-menu ul ul li a.sf-with-ul:after {
	content: '\f105';
	font-family: 'FontAwesome';
	float: right;
	color: #ed5748;
}
#header .main-header.full-logo .site-menu ul ul li:last-child a {
	border-bottom: 0;
}
#header .main-header.full-logo .header-info .latestnews {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	height: 27px;
	color: #fff;
}
#header .main-header.full-logo .header-info .latestnews span {
	display: inline-block;
	margin-right: 5px;
	padding: 2px 10px;
	font-size: 11px;
	background-color: #E74C3C;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}
#header .main-header.full-logo .header-info .latestnews a,
#header .main-header.full-logo .header-info .latestnews span a {
	color: #fff;
}

/* Full Menu */
#header .main-header.full-menu {
	margin-bottom: -1px;
}
#header .main-header.full-menu .logo-wrap {
	position: relative;
}
#header .main-header.full-menu .logo-area {
	padding: 25px 0;
}
#header .main-header.full-menu .logo-area h1 {
	margin: 0
}
#header .main-header.full-menu .logo-area .site-title-display {
	display: block;
	text-indent: -9999999px;
	position: absolute;
	top: 0;
	left: -999999px;
}
#header .main-header.full-menu .logo-area a {
	display: inline-block;
}
#header .main-header.full-menu .header-menu {
	background-color: #fff;
}
#header .main-header.full-menu .header-info {
	padding: 10px 0;
	background-color: #666;
}
#header .main-header.full-menu .header-info .latestnews {
	list-style: none;
	padding: 0;
	margin: 0;
	overflow: hidden;
	height: 27px;
	color: #fff;
}
#header .main-header.full-menu .header-info .latestnews li {
	overflow: hidden;
	height: 27px;
	line-height: 27px;
}
#header .main-header.full-menu .header-info .latestnews span {
	display: inline-block;
	margin-right: 5px;
	padding: 2px 10px;
	font-size: 11px;
	background-color: #E74C3C;
	text-transform: uppercase;
	font-weight: bold;
	color: #fff;
	-webkit-border-radius: 2px;
	   -moz-border-radius: 2px;
			border-radius: 2px;
}
#header .main-header.full-menu .header-info .latestnews span a {
	color: #fff;
}
#header .main-header.full-menu .header-social {
	text-align: right;
}
#header .main-header.full-menu .header-social ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
#header .main-header.full-menu .header-social ul li {
	display: inline-block;
}
#header .main-header.full-menu .header-social ul li a {
	display: block;
	padding: 3px 10px;
	background: #5e5e5e;
	color: #fff;
}
/* Site Menu */
#header .main-header.full-menu .header-full-menu {
	border-top: 2px solid #f1f1f1;
	border-bottom: 1px solid #f1f1f1;
}
#header .main-header.full-menu .site-menu li {
	float: none;
	display: inline-block;
}
#header .main-header.full-menu .site-menu li li {
	display: block;
}
#header .main-header.full-menu .site-menu li a,
#header .main-header.full-menu .site-menu .menu-notice {
	display: block;
	padding: 20px 25px 18px;
	text-transform: uppercase;
	color: #222;
	font-weight: bold;
}
#header .main-header.full-menu .site-menu li > a.sf-with-ul:after {
	content: '\f107';
	font-family: 'FontAwesome';
	display: inline-block;
	margin-left: 10px;
}
#header .main-header.full-menu .site-menu li a:hover,
#header .main-header.full-menu .site-menu li.current-menu-item > a,
#header .main-header.full-menu .site-menu li.sfHover > a {
	color: #E74C3C;
}
#header .main-header.full-menu .site-menu ul ul {
	background-color: #E74C3C;
	width: 180px;
	color: #fff;
	text-align: left;
}
#header .main-header.full-menu .site-menu ul ul:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent #E74C3C transparent;
	content: '';
	position: absolute;
	top: -5px;
	left: 25px;
}
#header .main-header.full-menu .site-menu ul ul ul {
	margin-top: 0;
}
#header .main-header.full-menu .site-menu ul ul ul:before {
	display: none;
}
#header .main-header.full-menu .site-menu ul ul li a {
	text-transform: none;
	color: #fff;
	padding: 15px 25px;
	border-bottom: 1px solid #ed5748;
	font-weight: normal;
}
#header .main-header.full-menu .site-menu ul ul li.sfHover > a,
#header .main-header.full-menu .site-menu ul ul li.current-menu-item > a,
#header .main-header.full-menu .site-menu ul ul li a:hover {
	color: #fff;
}
#header .main-header.full-menu .site-menu ul ul li a.sf-with-ul:after {
	content: '\f105';
	font-family: 'FontAwesome';
	float: right;
	color: #ed5748;
}
#header .main-header.full-menu .site-menu ul ul li:last-child a {
	border-bottom: 0;
}
#header .main-header.full-menu .mobile-menu-area .menu-title {
	display: block !important;
}

/* Fixed Header */
#header .fixed-header {
	left: 0;
	top: -300px;
	width: 100%;
	z-index: 999;
	position: fixed;
	-webkit-transition: all 0.4s ease-in-out;
	   -moz-transition: all 0.4s ease-in-out;
		-ms-transition: all 0.4s ease-in-out;
		 -o-transition: all 0.4s ease-in-out;
			transition: all 0.4s ease-in-out;
}
#header .fixed-header.affix {
	top: 0;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(50, 50, 50, 0.15);
	-moz-box-shadow:    0px 1px 2px 0px rgba(50, 50, 50, 0.15);
	box-shadow:         0px 1px 2px 0px rgba(50, 50, 50, 0.15);
}
#header .fixed-header .main-header {
	background-color: #000;
}

.logo-inner.text .site-title {
	margin-bottom: 0;
}
.logo-inner.text .site-title span {
	font-size: 32px;
	line-height: 32px;
	text-transform: uppercase;
	font-weight: bold;
}

/* Sf Menu */
.sf-menu{
	margin: 0;
	padding: 0;
	list-style: none;
	position: relative;
}
.sf-menu ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-menu li{
	position: relative;
	vertical-align: top;
}
.sf-menu ul {
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
}
.sf-menu > li {
	float: left;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}
.sf-menu > li > a {
  display: block;
  position: relative;
}
.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
	left: 100%;
}
.sf-menu .megamenu {
	position: static;
}
.sf-menu .sf-mega{
	position: absolute;
	display: none;
	top: 100%;
	left: 0;
	z-index: 99;
	box-sizing: border-box;
	width: 100%;
}
.sf-menu .sf-mega ul {
	display: block;
}
.sf-menu .sf-mega ul li {
	display: block;
	float: none;
}
.sf-menu .sf-mega ul {
	width: 100% !important;
    position: static !important;
}

/* Top Bar */
.topbar {
	background-color: #373737;
	color: #999;
	padding: 10px 0;
	font-size: 12px;
	text-transform: uppercase;
}
.topbar a {
	color: #999;
}
.topbar .top-bar-menu {
	float: right;
}
.topbar .top-bar-menu li {
	margin: -10px 0;
}
.topbar .top-bar-menu li > a {
	padding: 10px 15px;
	display: block;
	border-left: 1px solid #444;
}
.topbar .top-bar-menu li > a.sf-with-ul:after {
	content: '\f107';
	font-family: 'FontAwesome';
	display: inline-block;
	margin-left: 10px;
}
.topbar .top-bar-menu li:last-child > a {
	border-right: 1px solid #444;
}
.topbar .top-bar-menu li > a:hover,
.topbar .top-bar-menu li.sfHover > a {
	background-color: #999;
	color: #fff;
}
.topbar .top-bar-menu ul ul {
	width: 190px;
	background-color: #999999;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(50, 50, 50, 0.05);
	-moz-box-shadow:    0px 1px 3px 0px rgba(50, 50, 50, 0.05);
	box-shadow:         0px 1px 3px 0px rgba(50, 50, 50, 0.05);
}
.topbar .top-bar-menu ul ul li {
	margin: 0;
	border-bottom: 1px solid #919191;
}
.topbar .top-bar-menu ul ul li:last-child {
	border-bottom: 0;
}
.topbar .top-bar-menu ul ul a,
.topbar .top-bar-menu ul ul li:last-child a {
	border: 0;
	color: #fff;
}
.topbar .top-bar-menu ul ul a:hover {
	background-color: transparent;
}

/* Topbar Color */
.topbar.color {
	background-color: #E74C3C;
	color: #fff;
}
.topbar.color a {
	color: #fff;
}
.topbar.color .top-bar-menu li > a,
.topbar.color .top-bar-menu li:last-child > a {
	border-color: #eb5545;
}
.topbar.color .top-bar-menu ul ul,
.topbar.color .top-bar-menu li > a:hover,
.topbar.color .top-bar-menu li.sfHover > a {
	background-color: #eb5545;
}
.topbar.color .top-bar-menu ul ul li {
	border-color: #E74C3C;
}
.topbar.color .header-social a:hover {
	color: #fff;
}
.topbar .header-social ul {
	list-style: none;
	padding: 0;
	margin: -10px 0;
}
.topbar .header-social ul li {
	display: inline-block;
}
.topbar .header-social ul li a {
	display: block;
	padding: 10px 15px;
}
.topbar .header-social ul li a:hover {
	background-color: #fff;
	color: #E74C3C;
}

/* Header Search */
.header-search {
	position: relative;
	float: right;
	width: 43px;
	height: 43px;
	margin: 10px 0;
	z-index: 999;
}
.header-search-input-wrap {
	position: absolute;
	right: 43px;
	height: 43px;
	width: 0;
	overflow: hidden;
	-webkit-transition: width 200ms;
	-moz-transition: width 200ms;
	transition: width 200ms;
}
.header-search.header-search-open .header-search-input-wrap {
	width: 280px;
}
.header-icon-search,
.header-search input[type="submit"].header-search-submit {
	width: 43px;
	height: 43px;
	display: block;
	position: absolute;
	right: 0;
	top: 0;
	border: 0;
	text-align: center;
	cursor: pointer;
	text-align: center;
}
.header-icon-search {
	color: #222;
	background: #fff;
	z-index: 99;
}
.header-icon-search i {
	margin-top: 16px;
}
.header-icon-search:hover {
	background: #fff;
	color: #777;
}
.header-search.header-search-open .header-icon-search {
	background: #E74C3C;
	color: #fff;
	z-index: 1;
	pointer-events: none;
}
.header-search input[type="submit"].header-search-submit {
	background: transparent;
	color: transparent;
	box-shadow: none;
	border: none;
	padding: 0;
	border-radius: 0;
	outline: none;
	z-index: -1;
}
.header-search.header-search.header-search-open input[type="submit"].header-search-submit {
	z-index: 90;
}
.header-search input[type="text"].header-search-input{
	border: none;
	outline: none;
	opacity: 0;
	background: #fff;
	width: 280px;
	height: 43px;
	margin: 0;
	padding: 4px 25px 2px;
	border-radius: 0;
	color: #777;
	font-style: italic;
}
.inline-block.header-search-form.hidden-xs.hidden-sm {
    margin: 0 0 -45px;
}
.header-search.header-search-open input[type="text"].header-search-input {
	opacity: 1;
}
.header-search ::-webkit-input-placeholder{
	color: #777
}
.header-search :-moz-placeholder{
	color: #777 
}
.header-search ::-moz-placeholder{
	color: #777 
}
.header-search :-ms-input-placeholder{
	color: #777
}

/* =Footer
-------------------------------------------------------------- */
#footer {
	background-color: #282828;
	border-top: 5px solid #E74C3C;
}
#footer a {
	color: #888;
}
#footer a:hover {
	color: #E74C3C;
}
#footer.white {
	background-color: #fff;
	border-top-color: transparent;
}
#footer .widget-area {
	padding: 20px 0;
	color: #888;
}
#footer .widget-area .widget {
	margin-bottom: 30px;
}
#footer .widget-area .widget:last-child {
	margin-bottom: 0;
}
#footer .widget-area .widget .widget-title {
	color: #f5f5f5;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	line-height: 27px;
	border-bottom: 1px solid #313131;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
#footer.white .widget-area .widget .widget-title {
	border-bottom-color: #f7f7f7;
	color: #4e4e4e;
}
#footer .widget-area .widget .widget-title strong {
	color: #E74C3C;
}
#footer .credits {
	background-color: #292929;
	padding: 15px 0;
	color: #595959;
}
#footer.white .credits {
	background-color: #f7f7f7;
	color: #888;
}
#footer .footer-menus {
	text-align: right;
}
#footer .footer-menus ul {
	margin-bottom: 0;
}
#footer .footer-menus ul li {
	display: inline-block;
}
#footer .footer-menus ul li:before {
	content: '/';
	display: inline-block;
	margin: 0 10px;
}
#footer .footer-menus ul li:first-child:before {
	display: none;
}

/* =Elements
-------------------------------------------------------------- */
.highlight {
	position: relative;
}
.highlight .hl-bg {
	position: absolute;
	width: 100%;
	background-color: #fff;
	bottom: 0;
	left: 0;
	z-index: -1;
}
.highlight .hl-bg:before {
	width: 99999px;
	height: 100%;
	content: '';
	background-color: #fff;
	left: -99999px;
	top: 0;
	position: absolute;
}
.highlight .hl-bg:after {
	width: 99999px;
	height: 100%;
	content: '';
	background-color: #fff;
	right: -99999px;
	top: 0;
	position: absolute;
}
.highlight-item.featured .hl-content {
	background: #E74C3C;
	padding: 25px 25px 25px 0;
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
}
.highlight-item.featured .hl-content .entry-title a {
	color: #fff;
}
.highlight-item.featured .hl-content:before {
	width: 100%;
	height: 100%;
	left: -100%;
	background-color: #E74C3C;
	content: '';
	position: absolute;
	top: 0;
}
.highlight-item.normal {
	position: relative;
}
.highlight-item.normal .hl-content {
	position: absolute;
	width: 100%;
	height: auto;
	left: 0;
	bottom: 0;
	padding: 25px;
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.26) 40%, rgba(0,0,0,0.65) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(40%,rgba(0,0,0,0.26)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.26) 40%,rgba(0,0,0,0.65) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.26) 40%,rgba(0,0,0,0.65) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.26) 40%,rgba(0,0,0,0.65) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.26) 40%,rgba(0,0,0,0.65) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-8 */	
}
.highlight-item.normal:hover .hl-content {
	background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 40%, rgba(0,0,0,0.85) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(40%,rgba(0,0,0,0.86)), color-stop(100%,rgba(0,0,0,0.85))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 40%,rgba(0,0,0,0.85) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 40%,rgba(0,0,0,0.85) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 40%,rgba(0,0,0,0.85) 100%); /* IE10+ */
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 40%,rgba(0,0,0,0.85) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-8 */
}
.highlight-item.normal .hl-content a {
	color: #fff;
}

/* Heading Line */
.heading-line {
	border-bottom: 1px solid #fff;
	padding: 22px 0 18px;
}
.heading-line.top {
	border-top: 1px solid #fff;
}
.heading-line.no-bot {
	border-bottom: 0;
}
.heading-line .heading {
	text-transform: uppercase;
	margin-bottom: 0;
	font-weight: bold;
}
.heading-line .heading:before {
	border-left: 2px solid #E74C3C;
	padding-right: 10px;
	content: '';
}
.heading-line.white .heading {
	color: #fff;
}
.heading-line.no-border {
	border: 0;
}
.heading-line.gray {
	border-color: #e9e9e9;
}

/* News Box Item */
.news-box-item {
	padding-bottom: 30px;
	padding-top: 30px;
	border-bottom: 1px solid #fff;
}
.news-box-item.last {
	border-bottom: 0;
}
.news-box-item .news-box-item-img {
	width: 220px;
	float: left;
}
.news-box-item .news-box-item-ct {
	padding-left: 240px;
	padding-right: 30px;
}
.news-box-item.vertical {
	border-left: 1px solid #fff;
	border-bottom: 0;
	padding: 30px;
}
.news-box-item.vertical.last {
	border-right: 1px solid #fff;
}
.news-box-item.vertical .news-box-item-img {
	float: none;
	width: 100%;
	height: auto;
}
.news-box-item.vertical .news-box-item-ct {
	padding-left: 0;
	padding-top: 30px;
}
.news-box-item.vertical.noborder {
	border: 0;
	padding: 0;
}

/* News short info */
.news-short-info {
	font-size: 12px;
	color: #b7b7b7;
	text-transform: uppercase;
}
.news-short-info.small {
	font-size: 11px;
	font-weight: 700;
}
.news-short-info i {
	margin-right: 5px;
	color: #777;
}
.news-short-info span {
	margin-right: 10px;
}
.news-short-info a {
	color: inherit;
}
.news-short-info.white i {
	color: #fff;
}
.news-short-info em {
	font-style: normal;
}
.news-short-info.white span {
	color: #fff;
}

/* Feature Box */
.feature-news-box {
	position: relative;
}
.feature-news-box .feature-news-box-ct {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 25px;
	z-index: 4;
	width: 100%;
}
.feature-news-box .feature-news-box-ct a {
	color: #fff;
}
.feature-news-box .feature-news-box-dt {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 25px;
	opacity: 0;
	z-index: 4;
}
.feature-news-box .feature-news-box-cm {
	position: absolute;
	z-index: 2;
	top: 20px;
	left: 20px;
	color: #fff;
}
.feature-news-box .feature-news-box-cm span {
	margin-right: 20px;
	font-weight: 700;
	font-size: 12px;
}
.feature-news-box .feature-news-box-cm i {
	margin-right: 10px;
}
.feature-news-box .feature-news-box-cm a {
	color: #fff;
}
.feature-news-box .feature-news-box-img img {
	width: 100%;
	height: auto;
}
.feature-news-box .feature-news-box-img-mark {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index: 0;
	background-color: rgba(0,0,0,0.5);
	top: 0;
	left: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.feature-news-box:hover .feature-news-box-img-mark {
	background-color: rgba(0,0,0,0.8);
}

/* Editor News */
.editor-news .editor-news-ct-wrap {
	position: relative;
}
.editor-news .editor-news-ct-wrap .editor-news-ct {
	padding: 30px 30px 0;
}

/* Video Posts */
.video-post {
	background-color: #353535;
}
.video-post .video-post-ct-wrap {
	position: relative;
	height: 100%;
}
.video-post .video-post-ct {
	padding: 50px 30px 0;
}
.video-post .video-post-ct p {
	color: #888;
}
.video-post .entry-title a {
	color: #fff;
}

/* List Posts */
.list-posts {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 14px;
	line-height: 24px;
	border-top: 1px solid #e9e9e9;
	padding-top: 10px;
	margin-top: 10px;
}
.list-posts li {
	border-bottom: 1px solid #e9e9e9;
	padding-bottom: 10px;
	margin-bottom: 10px;
}
.list-posts li:last-child {
	border-bottom: 0;
}

/* News Box */
.news-box {
	position: relative;
	overflow: hidden;
}
.news-box .readmore {
	text-transform: uppercase;
	font-size: 11px;
	font-weight: 700;
	color: #fff;
	display: inline-block;
}
.news-box .readmore:after {
	content: '\f105';
	font-family: 'FontAwesome';
	display: inline-block;
	margin-left: 5px;
}

/* Form */
.form .field input {
	width: 100%;
}
.form .field {
	position: relative;
}
.form .field .icon {
	position: absolute;
	top: 10px;
	left: 30px;
	z-index: 3;
}
.form .field.icon-field input {
	padding-left: 40px;
}
.form .field textarea {
	width: 100%;
	min-height: 120px;
}

/* Small Title */
.small-title {
	display: inline-block;
	padding: 5px 15px;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 12px;
	color: #9e9e9e;
}

/* Shadow */
.shadow {
	-webkit-box-shadow: 0px 2px 2px 0px rgba(50, 50, 50, 0.05);
	-moz-box-shadow:    0px 2px 2px 0px rgba(50, 50, 50, 0.05);
	box-shadow:         0px 2px 2px 0px rgba(50, 50, 50, 0.05);
}

/* Section Area */
.section {
	position: relative;
}
.section .section-bgwrap {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}
.section .container {
	z-index: 2;
	position: relative;
}
.full-section {
	z-index: 2;
	position: relative;
}
.section.bg {
	background-size: contain
}

/* Background Settings */
.cover {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment:fixed;
}
.fullcover {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	background-attachment:fixed;
}
.bottom-bg {
	background-position: bottom;
}

/* Heading Title */
.heading-title {
	padding: 30px;
}

/* Ads Box */
.above-header-ads .container-inner {
	padding: 10px 0;
	border: 1px solid #fff;
	margin-top: 40px;
}
.above-footer-ads .container-inner {
	margin: 0 0 30px;
}
.above-footer-ads {
	border-top: 1px solid #fff;
	padding-top: 10px;
	margin-bottom: -20px;
}
.above-header-ads img,
.above-header-ads iframe,
.above-footer-ads img,
.above-footer-ads iframe,
.adsbox img {
	max-width: 100%;
	height: auto;
}

/* Hover Effect */
.img-hover {
	display: block;
	overflow: hidden;
	position: relative;
	z-index: 0;
}
.img-hover .hover-mark {
	position: absolute;
	background: url(assets/images/plus.png) no-repeat scroll center center / 100% 100% #222222;
	width: 100%;
	height: 100%;
	z-index: 199;
	-webkit-background-origin: padding-box, padding-box;
	-moz-background-origin: padding-box, padding-box;
	-ms-background-origin: padding-box, padding-box;
	-o-background-origin: padding-box, padding-box;
	background-origin: padding-box, padding-box;
	background-position: center center;
	background-repeat: no-repeat;
	-webkit-background-size: 10px 10px, 100% 100%;
	-moz-background-size: 10px 10px, 100% 100%;
	-ms-background-size: 10px 10px, 100% 100%;
	-o-background-size: 10px 10px, 100% 100%;
	background-size: 10px 10px, 100% 100%;
	opacity: 0;
	top: 0;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	-ms-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
	display: block;
}
.img-hover:hover .hover-mark {
	opacity: .6;
	-webkit-background-size: 60px 60px, 100% 100%;
	-moz-background-size: 60px 60px, 100% 100%;
	-ms-background-size: 60px 60px, 100% 100%;
	-o-background-size: 60px 60px, 100% 100%;
	background-size: 60px 60px, 100% 100%;
	visibility: visible;
}

/* 404 */
.fof{
	font-size: 140px;
	line-height: 140px;
	font-weight: 800;
	display: block;
	margin-bottom: 30px;
	color: #272727
}

/* =Content Layout
-------------------------------------------------------------- */
#sidebar-content #content {
	float: right;
}
.blog-layout-masonry.header-layout-default .archive-page {
	margin-top: 40px;
}

/* =Portfolio
-------------------------------------------------------------- */
.portfolio-item {
	position: relative;
}
.portfolio-item .portfolio-content {
	position: absolute;
	width: 100%;
	height: 100%;
	padding-top: 50%;
	padding-bottom: 50%;
	text-align: center;
	left: 0;
	top: 0;
	background-color: rgba(231,76,60,0.9);
	color: #fff;
	opacity: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.portfolio-item .portfolio-content .portfolio-title {
	position: absolute;
	top: 30px;
	left: 0;
	width: 100%;
	height: auto;
	text-align: center;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.portfolio-item .portfolio-content .portfolio-subtitle {
	bottom: 30px;
	left: 0;
	position: absolute;
	width: 100%;
	height: auto;
	text-align: center;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.portfolio-item .portfolio-content h4 {
	margin: 20px 0 0;
	font-size: 22px;
	line-height: 28px;
}
.portfolio-item .portfolio-content a,
.portfolio-item .portfolio-content h4 a {
	color: #fff;
}
.portfolio-item:hover .portfolio-content {
	opacity: 1;
}
.portfolio-item:hover .portfolio-content .portfolio-title {
	top: 50%;
	bottom: 50%;
}
.portfolio-item:hover .portfolio-content .portfolio-subtitle {
	bottom: 50%;
	top: 50%;
}
.portfolio-filter-area {
	text-align: center;
	margin-bottom: 40px;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 20px 0;
}
.portfolio-filter-area ul {
	margin-bottom: 0;
}
.portfolio-filter-area ul li {
	display: inline-block;
}
.portfolio-filter-area ul li a {
	display: block;
	text-transform: uppercase;
	font-weight: bold;
}
.portfolio-filter-area ul li a:after {
	content: '\f111';
	font-family: 'FontAwesome';
	margin: 0 20px;
	display: inline-block;
	color: #fff;
}
.portfolio-filter-area ul li:last-child a:after {
	display: none;
}
.portfolio-filter-area ul li a.selected {
	color: #E74C3C;
}

/* =Shortcodes
-------------------------------------------------------------- */
/* Tabs */
.tabs .tabs-container {
	display: none;
}
.tabs .tabs-container.active {
	display: block;
}
.tabs .tabs-container {
	display: none;
}
.tabs .tabs-container.active {
	display: block;
}
.tabs.main .tabNavigation {
	border-bottom: 2px solid #f1f1f1;
	margin-bottom: 15px;
}
.tabs.main .tabNavigation li {
	display: inline-block;
	margin-right: 20px;
}
.tabs.main .tabNavigation li a {
	padding: 0 0 15px;
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: normal;
	color: #777;
	position: relative;
}
.tabs.main .tabNavigation li a:after {
	position: absolute;
	content: '';
	width: 0;
	height: 2px;
	background-color: #000;
	bottom: -2px;
	left: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.tabs.main .tabNavigation li.ui-tabs-active a {
	color: #222;
}
.tabs.main .tabNavigation li a:hover:after,
.tabs.main .tabNavigation li.ui-tabs-active a:after {
	background-color: #e74c3c;
	width: 100%;
}
.tabs.center {
	text-align: center;
}
.tabs.center .tabNavigation {
	border-bottom: 2px solid #f1f1f1;
	margin-bottom: 15px;
}
.tabs.center .tabNavigation li {
	display: inline-block;
	margin-right: 20px;
}
.tabs.center .tabNavigation li a {
	padding: 0 0 15px;
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: normal;
	color: #777;
	position: relative;
}
.tabs.center .tabNavigation li a:after {
	position: absolute;
	content: '';
	width: 0;
	height: 2px;
	background-color: #000;
	bottom: -2px;
	left: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.tabs.center .tabNavigation li.ui-tabs-active a {
	color: #222;
}
.tabs.center .tabNavigation li a:hover:after,
.tabs.center .tabNavigation li.ui-tabs-active a:after {
	background-color: #e74c3c;
	width: 100%;
}

/* Tour */
.wpb_tour .wpb_tour_next_prev_nav {
	display: none;
}
.wpb_tour .tabNavigation {
	width: 200px;
	float: left;
}
.wpb_tour .wpb_tab {
	margin-left: 201px;
	background-color: #f1f1f1;
	padding: 20px;
}
.wpb_tour .tabNavigation li {
	display: block;
	margin-bottom: 1px;
}
.wpb_tour .tabNavigation li a {
	padding: 15px 20px;
	display: block;
	font-size: 16px;
	line-height: 24px;
	font-weight: normal;
	color: #777;
	background-color: #f1f1f1;
	position: relative;
}
.wpb_tour .tabNavigation li a:before {
	width: 2px;
	height: 0;
	background-color: transparent;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.wpb_tour .tabNavigation li.ui-tabs-active a {
	background-color: #f1f1f1;
	height: 100%;
}
.wpb_tour .tabNavigation li.ui-tabs-active a:before {
	background-color: #e74c3c;
	height: 100%;
}
.wpb_tour .right .tabNavigation {
	float: right;
	text-align: right;
}
.wpb_tour .right .wpb_tab {
	margin-left: 0;
	margin-right: 201px;
	text-align: right;
}
.wpb_tour .right .tabNavigation li a:before {
	left: auto;
	right: 0;
}

/* Accordion */
.accordion .accordion-item {
	margin-bottom: 15px;
}
.accordion .accordion-item .wpb_accordion_header {
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 15px;
	margin-bottom: 0;
	font-size: 16px;
	line-height: 22px;
}
.accordion .accordion-item .wpb_accordion_header a {
	position: relative;
	display: block;
	color: #222;
}
.accordion .wpb_accordion_content {
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 15px;
	padding-top: 15px;
}
.accordion .accordion-item .wpb_accordion_header a:after {
	position: absolute;
	content: '\f055';
	font-family: 'FontAwesome';
	right: 0;
	top: 0;
	font-size: 16px;
	color: #777;
}
.accordion .accordion-item .wpb_accordion_header a {
	color: #222;
}
.accordion .accordion-item .wpb_accordion_header.ui-accordion-header-active a:after {
	content: '\f056';
	color: #222;
}
.accordion .accordion-item:last-child .wpb_accordion_header {
	border-bottom: 0;
	margin-bottom: 0;
}
.accordion .accordion-item:last-child .wpb_accordion_content {
	border-bottom: 0;
	margin-bottom: 0;
	border-top: 2px solid #f1f1f1;
	padding-top: 15px;
}

/* Toggle */
.accordion.toggle {
	margin-bottom: 15px;
}
.accordion.toggle .accordion-heading {
	margin-bottom: 0;
	border-bottom: 2px solid #f1f1f1;
	padding-bottom: 15px;
	color: #777;
}
.accordion.toggle .accordion-heading.wpb_toggle_title_active {
	color: #222;
}
.accordion.toggle .accordion-body {
	background-color: #f1f1f1;
	padding: 20px;
	margin-bottom: 0;
	display: none;
}
.accordion.toggle .wpb_toggle_open {
	display: block;
}
.accordion.toggle .accordion-heading a:after {
	display: none;
}
.container .accordion.toggle:last-child .accordion-heading {
	border-bottom: 0;
}

/* List */
ul.highlight {
	list-style: none;
	padding: 0;
	margin: 0;
	background-color: transparent;
	display: block;
}
ul.highlight li span {
	border-bottom: 1px solid #fff;
	display: inline-block;
	padding-bottom: 5px;
	margin-bottom: 5px;
	color: #222;
	font-weight: normal;
}
ul.highlight li span i {
	margin-right: 10px;
	display: inline-block;
}
ul.highlight li:last-child span {
	border-bottom: 0
}
ul.highlight.gray li span {
	border-bottom-color: #f1f1f1;
	color: #777;
}
ul.features-list {
	list-style: none;
	padding: 0;
	margin: 0;
}
ul.features-list li i {
	margin-right: 10px;
}

/* Table */
table {
  border-top: 3px solid #E74C3C;
  border-left: 0;
  border-right: 0;
}

table > thead > tr > th,
table > tbody > tr > th {
  color: #333333;
}

/* Dropcap */
.dropcap{
	font-size: 64px;
	line-height: 0.7;
	display: inline-block;
	float: left;
	text-align: left;
	margin: 8px 10px 0 0;
	width: 40px;
	height: 40px;
	color: #666;
}
.dropcap.square{
	color: #fff;
	font-size: 32px;
	line-height: 1;
	padding: 6px 12px;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	text-align: center;
	width: 50px;
	height: 50px;
	background-color: #E74C3C;
}
.dropcap.round{
	border: 0;
	font-size: 32px;
	line-height: 1;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	color: #fff;
	text-align: center;
	width: 50px;
	height: 50px;
	padding: 6px 12px;
	background-color: #E74C3C;
}

/* Highlight */
.highlight{
	background: #333;
	display: inline-block;
	color: #fff;
	padding:0 10px;
}
.highlight.blue{
	background-color: #055db5;
}
.highlight.yellow{
	background-color: #e2b71f;
}
.highlight.red{
	background-color: #c20000;
}
.highlight.green{
	background-color: #348806;
}
.highlight.color{
	background-color: #C73831;
}

/* Divider */
.divider {
	margin-left: -30px;
	margin-right: -30px;
	height: 5px;
	background-color: #f7f7f7;
}

/* Video */
.wpb_video_wrapper {
	margin: 0 -30px;
}
.wpb_video_wrapper iframe {
	width: 100%;
	min-height: 550px;
}

/* Slider */
.slider_top_box img {
	max-width: 100%;
	height: auto;
}
.slider_top_box .slider_top-item {
	position: relative;
}
.slider_top_box .slider_top-content {
	position: absolute;
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 30%;
	left: 0;
	padding: 20px 0;
	text-align: center;
	z-index: 1;
}
.slider_top_box .slider_top-content a {
	color: #fff;
	text-shadow: 0px 1px 1px rgba(0,0,0,1);
}
.slider_top_box .slider-mark {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 0;
}
.slider_top_box .owl-controls .owl-prev,
.slider_top_box .owl-controls .owl-next {
	position: absolute;
	top: 50%;
	bottom: 50%;
	left: 20px;
	width: 50px;
	height: 50px;
	background-color: #000;
	color: #fff;
	text-align: center;
	font-size: 22px;
	padding: 12px 0 0;
}
.slider_top_box .owl-controls .owl-next {
	left: auto;
	right: 20px;
}
.slider_top_box .owl-controls .owl-next:hover,
.slider_top_box .owl-controls .owl-prev:hover {
	background-color: #E74C3C;
	cursor: pointer;
	color: #fff;
}
.imagesslides img {
	max-width: 100%;
	height: auto;
}
.imagesslides .slider_top-item {
	position: relative;
}
.imagesslides .slider_top-content {
	position: absolute;
	width: 100%;
	height: auto;
	position: absolute;
	bottom: 30%;
	left: 0;
	padding: 20px 0;
	text-align: center;
	z-index: 1;
}
.imagesslides .slider_top-content a {
	color: #fff;
	text-shadow: 0px 1px 1px rgba(0,0,0,1);
}
.imagesslides .slider-mark {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 0;
}
.imagesslides .owl-controls .owl-prev,
.imagesslides .owl-controls .owl-next {
	position: absolute;
	top: 50%;
	bottom: 50%;
	left: 20px;
	width: 35px;
	height: 35px;
	background-color: #000;
	color: #fff;
	text-align: center;
	font-size: 16px;
	padding: 6px 0 0;
}
.imagesslides .owl-controls .owl-next {
	left: auto;
	right: 20px;
}
.imagesslides .owl-controls .owl-next:hover,
.imagesslides .owl-controls .owl-prev:hover {
	background-color: #E74C3C;
	cursor: pointer;
	color: #fff;
}

/* Button */
.button {
	position: relative;
	overflow: hidden;
}
.button.icon i {
	position: absolute;
	right: -20px;
	top: 15px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.button.icon span i {
	right: -40px;
	top: 3px;
}
.button.icon:hover span i {
	right: -25px;
}
.button.icon:hover i {
	right: 10px;
}
.button.icon:hover {
	padding-left: 15px;
	padding-right: 35px;
}
.button.hover:before {
	position: absolute;
	width: 0;
	height: 100%;
	background-color: #c0392b;
	z-index: 1;
	-webkit-transition: width 0.2s ease-in-out;
	-moz-transition: width 0.2s ease-in-out;
	-ms-transition: width 0.2s ease-in-out;
	-o-transition: width 0.2s ease-in-out;
	transition: width 0.2s ease-in-out;
	content: '';
	top: 0;
	left: 0;
}
.button.hover:hover{
	background-color: #E74C3C;
}
.button.hover span {
	z-index: 2;
	position: relative;
}
.button.hover:hover:before {
	width: 100%;
}
.button.stroke {
	background-color: transparent;
	border: 2px solid #E74C3C;
	color: #E74C3C;
	padding-top: 8px;
	padding-bottom: 8px;
}
.button.stroke:hover {
	color: #fff;
}
.button.stroke:before {
	position: absolute;
	width: 100%;
	height: 0;
	background-color: #c0392b;
	z-index: 1;
	-webkit-transition: height 0.2s ease-in-out;
	-moz-transition: height 0.2s ease-in-out;
	-ms-transition: height 0.2s ease-in-out;
	-o-transition: height 0.2s ease-in-out;
	transition: height 0.2s ease-in-out;
	content: '';
	bottom: 0;
	left: 0;
}
.button.stroke:hover:before {
	height: 100%;
}
.button.stroke span {
	position: relative;
	z-index: 3;
}
.button.green,
.button.green.hover:hover {
	background-color: #2ecc71;
}
.button.green:hover,
.button.hover.green:before {
	background-color: #27ae60;
}
.button.yellow,
.button.hover.yellow:hover {
	background-color: #f1c40f;
}
.button.yellow:hover,
.button.yellow.hover:before {
	background-color: #f39c12;
}
.button.orange,
.button.hover.orange:hover {
	background-color: #e67e22;
}
.button.orange:hover,
.button.hover.orange:before {
	background-color: #d35400;
}
.button.red,
.button.hover.red:hover {
	background-color: #e74c3c;
}
.button.red:hover,
.button.hover.red:before {
	background-color: #c0392b;
}
.button.blue,
.button.hover.blue:hover {
	background-color: #3498db;
}
.button.blue:hover,
.button.hover.blue:before {
	background-color: #2980b9;
}
.button.black,
.button.hover.black:hover {
	background-color: #000;
}
.button.black:hover,
.button.hover.black:before {
	background-color: #222;
}
.button.stroke.blue {
	background-color: transparent;
	border-color: #3498db;
	color: #3498db;
}
.button.stroke.blue:before {
	background-color: #3498db;
}
.button.stroke.green {
	background-color: transparent;
	border-color: #2ecc71;
	color: #2ecc71;
}
.button.stroke.green:before {
	background-color: #2ecc71;
}
.button.stroke.yellow {
	background-color: transparent;
	border-color: #f1c40f;
	color: #f1c40f;
}
.button.stroke.yellow:before {
	background-color: #f1c40f;
}
.button.stroke.orange {
	background-color: transparent;
	border-color: #e67e22;
	color: #e67e22;
}
.button.stroke.orange:before {
	background-color: #e67e22;
}
.button.stroke.black {
	background-color: transparent;
	border-color: #000;
	color: #000;
}
.button.stroke.black:before {
	background-color: #000;
}
.button.stroke.red {
	background-color: transparent;
	border-color: #e74c3c;
	color: #e74c3c;
}
.button.stroke.red:before {
	background-color: #e74c3c;
}
.button.stroke:hover {
	color: #fff;
	background-color: transparent
}

/* Custom */
.full-img {
	margin: -30px -30px 40px;
}

/* Progress */
.progress {
	background: #f0f0f0;
}
.prgress-small-title {
	display: block;
	color: #222;
	font-weight: normal;
	margin: 0 0 5px;
}
.progress .progress-bar {
	color: #fff;
	padding: 0 10px;
	font-weight: bold;
	background: #e5e5e5;
	position: relative;
	height: 100%;
}
.progress .progress-bar .percent {
	position: absolute;
	padding: 1px 10px;
	display: inline-block;
	top: -25px;
	right: -22px;
	background: rgba(0,0,0,0.8);
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	font-weight: 300;
	font-size: 12px;
	z-index: 5;
}
.progress .progress-bar .percent:after {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 5px 0 5px;
	border-color: rgba(0,0,0,0.8) transparent transparent transparent;
	content: '';
	bottom: -3px;
	left: 50%;
	right: 50%;
	margin: 0 -5px;
	position: absolute;
}

/* Icon */
.iconbox.square {
	width: 70px;
	height: 70px;
	display: inline-block;
	background-color: #E74C3C;
	text-align: center;
	color: #fff;
	font-size: 24px;
	padding: 24px 0 0;
}
.iconbox.circle {
	width: 70px;
	height: 70px;
	display: inline-block;
	background-color: #E74C3C;
	text-align: center;
	color: #fff;
	font-size: 24px;
	padding: 24px 0 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
}
.iconbox.default {
	display: inline-block;
	color: #fff;
	font-size: 24px;
}

/* Contact Form 7 */
.wpcf7-form p {
	font-weight: bold;
	text-transform: uppercase;
	font-size: 12px;
}
.wpcf7-form span {
	margin-top: 10px;
	display: block;
	font-size: 13.8px;
}
.wpcf7-form textarea {
	width: 100%;
}

/* =Single Posts
-------------------------------------------------------------- */
.content-box {
	padding: 30px;
	background-color: #fff;
}
.content-box .entry-header-title {
	margin-bottom: 30px;
	margin-top: 10px;
	text-align: center;
}
.content-box .entry-header-title .entry-title {
	margin-bottom: 0;
}
.content-box .entry-header-title .entry-info {
	color: #ababab;
}
.content-box .entry-header-title .avatar {
	display: inline-block;
	overflow: hidden;
	margin: 0 10px 0 0;
	vertical-align: middle;
	-webkit-border-radius: 	50%;
	-moz-border-radius: 	50%;
	border-radius: 			50%;
}
.content-box .entry-header-title .avatar img {
	max-width: 100%;
	height: auto;
}
.content-box .entry-header-title .entry-info a {
	color: #E74C3C;
	border-bottom: 1px solid #E74C3C;
}
.content-box .entry-media-header {
	margin: 0 -30px;
	position: relative;
}
.content-box .entry-media-header .divider-nomedia {
	width: 100%;
	height: 1px;
	background-color: #f7f7f7;
}
.content-box .entry-media-header iframe {
	border: 0;
	width: 100%;
	height: 100%;
	min-height: 550px;
}
.content-box.trans {
	background-color: transparent;
}
.content-box.border {
	border-bottom: 1px solid #fff;
}

/* Entry Meta */
.entry-meta {
	margin: 30px -30px -30px;
	padding: 10px 30px;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 400;
	background-color: #f7f7f7;
	border-bottom: 1px solid #fff;
	color: #9e9e9e;
}
.entry-meta i {
	color: #444;
	margin-right: 5px;
}
.entry-meta a {
	color: inherit;
}

/* Author Box */
.authorbox {
	margin-top: 5px;
}
.authorbox .title {
	display: block;
	padding: 4px 10px;
	background-color: #E74C3C;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	font-size: 10px;
	position: relative;
	font-weight: 700;
}
.authorbox .avatar img {
	overflow: hidden;
	max-width: 100%;
	height: auto;
}
.authorbox .title:before {
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 5px 5px 5px;
	border-color: transparent transparent #E74C3C transparent;
	top: -5px;
	left: 50%;
	right: 50%;
	margin-left: -5px;
	content: '';
	position: absolute;
}

/* Share Box */
.sharebox .title {
	display: block;
	padding: 10px 0;
	background-color: #3B3B3B;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	color: #fff;
}
.sharebox .social-share ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sharebox .social-share ul li {
	float: left;
	width: 50%;
}
.sharebox .social-share ul li a {
	width: 100%;
	height: 50px;
	padding-top: 15px;
	font-size: 14px;
	text-align: center;
	display: block;
	color: #fff;
}

/* Entry Breadcrumbs */
.entry-breadcrumbs {
	padding: 15px 0;
	background-color: #fff;
}
.entry-breadcrumbs ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.entry-breadcrumbs ul li {
	display: inline-block;
	color: #a6a6a6;
}
.entry-breadcrumbs ul li a {
	color: inherit;
}
.entry-breadcrumbs ul li a:hover {
	color: #E74C3C;
}
.entry-breadcrumbs ul li a:hover:after {
	color: #a6a6a6;
}
.entry-breadcrumbs ul li a:after {
	content: '\f105';
	font-family: 'FontAwesome';
	margin: 0 10px;
	color: #a6a6a6;
}
.content-box.section .entry-breadcrumbs {
	background-color: transparent;
}
.entry-breadcrumbs.nospace {
	padding: 0;
	margin: 0;
}

/* Blog Item */
.blog-item {
	background-color: #fff;
	overflow: hidden;
	position: relative;
}
.blog-item.sticky .sticky-flag {
	position: absolute;
	width: 30px;
	height: 30px;
	background-color: #E74C3C;
	display: inline-block;
	top: 0;
	right: 30px;
	z-index: 9;
}
.blog-item.sticky .sticky-flag:before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 15px 15px 0;
	border-color: transparent #E74C3C transparent transparent;
	bottom: -15px;
	right: 0;
	position: absolute;
}
.blog-item.sticky .sticky-flag:after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 15px 0 0;
	border-color: #E74C3C transparent transparent transparent;
	bottom: -15px;
	left: 0;
	position: absolute;
}
.blog-item .blog-item-content {
	padding-top: 30px;
	padding-right: 30px;
	padding-bottom: 30px;
	position: relative;
}
.blog-item .blog-item-content .entry-title {
	margin-bottom: 20px;
}
.blog-item.vertical .blog-item-content {
	padding: 30px;
}
.blog-item .blog-item-media img {
	width: 100%;
	height: auto;
}
.item.heading-info,
.blog-item.heading-info {
	background-color: #E74C3C;
	color: #fff;
}
.item.heading-info h2,
.blog-item.heading-info h2 {
	color: inherit;
}
.blog-item .blog-item-media iframe {
	border: 0;
	margin: 0 0 -6px;
	padding: 0;
	max-width: 100%;
	min-height: 300px;
	height: auto;
}
.blog-item.format-quote,
.blog-item.vertical.format-quote {
	background-color: #282828;
	color: #fff;
}
.blog-item.format-quote h2 a {
	color: #fff;
}
.blog-item.vertical.format-quote .entry-title a {
	color: #fff;
}
.blog-item.format-quote h2 a:hover,
.blog-item.vertical.format-quote .entry-title a:hover {
	color: #E74C3C;
}
.blog-item .both-side,
.entry-content.both-side {
	padding: 0 60px;
}
.blog-item .blog-item-media {
	position: relative;
}
.blog-item .review-score {
	position: absolute;
	top: 20px;
	left: 20px;
}
.blog-item .review-score span {
	width: 50px;
	height: 50px;
	background-color: #E74C3C;
	text-align: center;
	display: inline-block;
	color: #fff;
	font-size: 18px;
	line-height: 23px;
	padding: 13px 0 0;
	font-weight: 800;
}

/* Page Navigations */
.pagenavi ul {
	list-style: none;
	padding: 0;
	margin: 0;
	font-size: 0;
}
.pagenavi ul li {
	display: inline-block;
	margin-left: 5px;
}
.pagenavi ul li a,
.pagenavi ul li span {
	display: block;
	min-width: 40px;
	min-height: 40px;
	padding: 8px 0 0;
	background-color: #fff;
	font-size: 13.8px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
}
.pagenavi ul li span {
	background-color: #E74C3C;
	color: #fff;
}
.pagenavi ul li a:hover {
	background-color: #282828;
	color: #fff;
}
.pagenavi span.expand {
	background-color: transparent;
	color: #232323;
}

/* Relate Posts */
.big-title h3,
.relate-posts .relate-posts-title h3 {
	margin-bottom: 0;
	font-size: 28px;
	text-transform: uppercase;
	line-height: 0.9;
}
.big-title h3 span,
.relate-posts .relate-posts-title h3 span {
	display: block;
	font-size: 13.8px;
}
.relate-posts .previous-post {
	border-right: 1px solid #fff;
}
.relate-posts .next-post {
	border-left: 1px solid #fff;
	margin-left: -1px;
	padding-left: 1px;
}
.relate-posts .previous-post,
.relate-posts .next-post {
	padding: 30px;
}
.relate-posts {
	background-color: rgba(255,255,255,0.96);
}

/* Menu Posts */
#header .main-header .site-menu li .menu-post-media a {
	padding: 0;
	margin: 0;
}
#header .main-header .site-menu li .menu-post .entry-title {
	margin-bottom: 0;
}
#header .main-header .site-menu li .menu-post .entry-title a {
	padding: 0;
	margin: 0;
	text-transform: none;
}
#header .main-header .site-menu li .menu-post .menu-post-media {
	position: relative;
}
#header .main-header .site-menu li .menu-post .category a {
	display: inline-block;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 12px;
	padding: 0;
	margin: 5px 0;
	color: #b7b7b7;
}

/* =Comments
-------------------------------------------------------------- */
/* Comment List */
.comment-list .comment-heading {
	padding: 10px 30px;
	background-color: #333;
	color: #fff;
	text-transform: uppercase;
}
.comment-list .comment-heading h5 {
	margin-bottom: 0;
	color: inherit;
}
.comment-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.comment{
	margin-bottom: 1px;
}
.comment:last-child{
	border-bottom: 0;
	margin-bottom: 0;
}
.comment ul{
	margin: 1px 0 0 0;
	padding: 0 0 0 70px;
}
.comment ul .comment:last-child{
	padding-bottom: 0
}
.comment .comment-body {
	padding: 20px 30px;
	background-color: #fff;
}
.comment .comment .comment-body {
	background-color: #fafafa;
}
.comment .avatar{
	float: left;
	width: 70px;
	position: relative;
}
.comment .comment-text{
	margin: 2px 0 0 90px;
	position: relative;
}
.comment .comment-text p:last-child{
	margin-bottom: 0
}
.comment .comment-text .author{
	margin-bottom: 5px
}
.comment .comment-text .author span{
	font-weight: normal;
	display: block;
	line-height: 0.6;
	margin-bottom: 5px;
	color: #666
}
.comment .comment-text .author span a{
	color: inherit;
}
.comment .comment-text .author time,
.comment .comment-text .author time a{
	font-size: 12px;
	color: #bebebe
}
.comment .comment-text .author a{
	color: #bebebe;
	font-size: 14px;
}
.comment .comment-text .author time a:before{
	content: "\2022";
	margin: 0 5px;
	color: #bebebe !important;
}
.comment .comment-text .author a.url:before{
	display: none
}
.comment .comment-text .author a.url{
	color: #999;
}
.comment .comment-text .author a:hover{
	color: #666;
}

/* Comment Form */
.comment-form .comment-heading {
	padding: 10px 30px;
	background-color: #333333;
	color: #fff;
	text-transform: uppercase;
}
.comment-form .comment-heading h5 {
	margin-bottom: 0;
	color: inherit;
}
.comment-form .form {
	background-color: #fff;
	padding: 30px;
}
.comment-form .form-input{
	margin-bottom: 15px;
}
.comment-form textarea,
.comment-form .field input{
	width: 100%;
	background-color: transparent;
	border: 1px solid #f1f1f1;
}
.comment-form .form textarea {
	padding: 20px;
}
.comment-form .form-submit {

}
.comment-form .form-submit input {
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
}
li .comment-respond {
	padding: 30px;
	background-color: #fff;
	border-top: 1px solid #f7f7f7;
}
li .comment-respond .form-submit {
	margin-bottom: 0;
}
li .comment-reply-title {
	text-transform: uppercase;
}
#comment-form .comment-reply-title {
	display: none;
}

/* =Sidebar
-------------------------------------------------------------- */
.widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget ul ul {
	margin-top: 0;
}
.widget ul ul {
    padding-left: 10px;
    border-top: 1px solid #fff;
    margin-top: 10px;
}
.widget ul li {
    padding: 10px 0;
    border-bottom: 1px solid #fff;
}
.widget ul li:first-child {
    padding-top: 0;
}
.widget ul li li:first-child {
    padding-top: 10px;
}
.widget ul li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.widget:last-child{
    border-bottom: none;
}
#footer .widget ul ul,
#footer .widget ul li {
	border-color: #313131;
}

/* Page Sidebar */
#sidebar .widget {
	border: 1px solid #f1f1f1;
	margin-bottom: 30px;
	background-color: #f7f7f7;
}
#sidebar .widget:last-child {
	margin-bottom: 0;
}
#sidebar .widget .widget-wrap {
	border: 3px solid #fff;
	padding: 30px;
}
#sidebar .widget .widget-title {
	font-size: 14px;
	line-height: 27px;
	font-weight: 700;
	text-transform: uppercase;
	padding: 0 30px 20px;
	margin: 0 -30px 20px;
	position: relative;
}
#sidebar .widget .widget-title span:after {
	content: '';
	width: 30px;
	height: 2px;
	background-color: #E74C3C;
	position: absolute;
	bottom: -2px;
	left: 30px;
}

/* Tags */
.widget_tag_cloud a,
#footer .widget_tag_cloud a {
	display: inline-block;
	padding: 5px 10px;
	background-color: #E74C3C;
	color: #fff;
	margin: 0 3px 5px 0;
	text-transform: uppercase;
	font-weight: 700;
	font-size: 11px;
}
.widget_tag_cloud a:hover,
#footer .widget_tag_cloud a:hover {
	background-color: #fff;
	color: #E74C3C;
}

/* Search */
.widget.widget_search .widget-wrap {
	text-align: center;
}
.widget.widget_search .screen-reader-text {
	display: none;
}
.widget.widget_search input {
	width: 100%;
}
.widget.widget_search label {
	display: block;
}
.widget.widget_search .search-field {
	background-color: #fff;
	text-align: center;
}
.widget.widget_search .search-submit {
	display: block;
}

/* Flickr */
.widget.flickr .flickr_badge_image{
	float: left;
	width: 50%;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	overflow: hidden;
	position: relative;
}
.widget.flickr .flickr_badge_image img{
	width: 100%;
	height: 100%;
	padding: 0.5px;
	display: block;
}
.widget.flickr .flickr_badge_image a:before{
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: rgba(255,255,255,0.3);
	content: '\f055';
	font-family: 'FontAwesome';
	padding-top: 40%;
	color: #fff;
	text-align: center;
	z-index: 4;
	position: absolute;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	opacity: 0;
}
.widget.flickr .flickr_badge_image a:hover:before{
	background: rgba(0,0,0,0.3);
	opacity: 1;
}

/* Contact */
.widget.contact_widget ul li i{
	display: inline-block;
	min-width: 20px;
}

/* Top Post */
.widget.top-post ul {
	margin-top: -20px;
}
.widget.top-post ul li {
	text-align: center;
	padding-bottom: 0;
	margin-bottom: 0;
	border: 0;
}
.widget.top-post ul li .img-wrap {
	margin: 0 -30px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
#footer .widget.top-post ul li .img-wrap {
	margin: 0;
}
.widget.top-post ul li .img-wrap img {
	width: 100%;
	height: auto;
}
.widget.top-post ul li .img-wrap .entry-info {
	position: absolute;
	width: 100%;
	height: auto;
	bottom: 0;
	background-color: #E74C3C;
	padding: 10px 20px;
	color: #fff;
	z-index: 3;
	font-weight: 600;
	font-size: 12px;
	text-transform: uppercase;
}
.widget.top-post ul li .img-wrap .entry-info span {
	margin: 0 5px;
}
.widget.top-post ul li .img-wrap .entry-info span i {
	margin-right: 5px;
}
.widget.top-post ul li .img-wrap .entry-info span a {
	color: inherit;
}
.widget.top-post ul li:last-child h4 {
	margin-bottom: 0;
	padding-bottom: 0;
}
#footer .widget.top-post ul li h4 a {
	color: #fff;
}

/* Latest Posts */
.widget.latest-posts li {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
}

/* Portfolio */
.widget.recent-portfolio li {
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
}

/* Twitter */
.widget.twitter li {
	position: relative;
}
.widget.twitter li .tweets_txt {
	position: relative;
}
.widget.twitter li .tweets_txt a {
	float: none;
	width: auto;
	margin: 0;
	color: inherit;
	display: block;
}
.widget.twitter li .tweets_txt a:hover {
	color: #E74C3C;
}
.widget.twitter li .tweets_txt span {
	display: block;
	text-transform: uppercase;
	font-size: 11.3px;
	font-weight: 600;
}

/* Social */
.widget.social .social-info span {
	display: inline-block;
	width: 50%;
	text-align: center;
	color: #fff;
	padding: 20px 0;
}
.widget.social .social-info span:before {
	font-family: 'FontAwesome';
	display: block;
	font-size: 32px;
	line-height: 32px;
}
.widget.social .social-info span.share-facebook {
	background-color: #45619D;
}
.widget.social .social-info span.share-facebook:before {
	content: '\f09a';
}
.widget.social .social-info span.share-linkedin {
	background-color: #0076AD;
}
.widget.social .social-info span.share-linkedin:before {
	content: '\f0e1';
}
.widget.social .social-info span.share-pinterest {
	background-color: #C82229;
}
.widget.social .social-info span.share-pinterest:before {
	content: '\f0d2';
}
.widget.social .social-info span.share-buffer {
	background-color: #252424;
}
.widget.social .social-info span.share-buffer:before {
	content: '\f09a';
}

/* Widget Style */
.widget img {
	max-width: 100%;
	height: auto;
}
.widget select,
.widget form,
.widget input {
	max-width: 100%;
	height: auto;
}

/* Widget Calendar */
.widget.widget_calendar table {
	width: 100%;
	text-align: center;
}
.widget.widget_calendar table caption {
	text-align: center;
}
.widget.widget_calendar table thead tr th {
	text-align: center;
	background-color: #E74C3C;
	color: #fff;
}
.widget.widget_calendar table thead tr {
	border: 1px solid #E74C3C;
	color: #fff;
}
.widget.widget_calendar table tr,
.widget.widget_calendar table tr td {
	border: 1px solid #fff;
}
#sidebar .widget.widget_calendar #calendar_wrap {
	margin: 0 -30px -30px;
	text-align: center;
}

/* =Social
-------------------------------------------------------------- */
/* Social Media Background Color */
.social.bg.color .facebook a,
.social.bg .facebook a:hover {
	background: #3B559F !important
}
.social.bg.color .twitter a,
.social.bg .twitter a:hover {
	background: #32CCFE !important
}
.social.bg.color .googleplus a,
.social.bg .googleplus a:hover {
	background: #d15033 !important
}
.social.bg.color .pinterest a,
.social.bg .pinterest a:hover {
	background: #C9212E !important
}
.social.bg.color .youtube a,
.social.bg .youtube a:hover {
	background: #D82624 !important
}
.social.bg.color .linkedin a,
.social.bg .linkedin a:hover {
	background: #0073B2 !important
}
.social.bg.color .flickr a,
.social.bg .flickr a:hover {
	background: #FF0084 !important
}
.social.bg.color .xing a,
.social.bg .xing a:hover {
	background: #015A60 !important
}
.social.bg.color .skype a,
.social.bg .skype a:hover {
	background: #1AB9F1 !important
}
.social.bg.color .tumblr a,
.social.bg .tumblr a:hover {
	background: #2B4661 !important
}
.social.bg.color .bitbucket a,
.social.bg .bitbucket a:hover {
	background: #013567 !important
}
.social.bg.color .dropbox a,
.social.bg .dropbox a:hover {
	background: #018BD3 !important
}
.social.bg.color .instagram a,
.social.bg .instagram a:hover {
	background: #AD8263 !important
}
.social.bg.color .vimeo a,
.social.bg .vimeo a:hover {
	background: #1BB6EC !important
}
.social.bg.color .dribbble a,
.social.bg .dribbble a:hover {
	background: #F96599 !important
}
.social.bg.color .dribbble a,
.social.bg .dribbble a:hover {
	background: #F96599 !important
}
.social.bg.color .foursquare a,
.social.bg .foursquare a:hover {
	background: #00ADEF !important
}
.social.bg.color .dribbble a,
.social.bg .dribbble a:hover {
	background: #F96599 !important
}
.social.bg.color .github a,
.social.bg .github a:hover {
	background: #B4B4B4 !important
}
.social.bg.color .vk a,
.social.bg .vk a:hover {
	background: #416692 !important
}
.social.bg.color .maxcdn a,
.social.bg .maxcdn a:hover {
	background: #FF960E !important
}
.social.bg.color .weibo a,
.social.bg .weibo a:hover {
	background: #D52B2B !important
}
.social.bg.color .trello a,
.social.bg .trello a:hover {
	background: #226784 !important
}
.social.bg.color .phone a,
.social.bg .phone a:hover {
	background: #222 !important
}
.social.bg.color .rss a,
.social.bg .rss a:hover {
	background: #FE9900 !important
}

/* Social Media Text Color */
.social.textcolor .facebook.active i,
.social.text-hover .facebook a,
.social.textcolor .facebook a:hover {
	color: #3B559F !important
}
.social.textcolor .twitter.active i,
.social.text-hover .twitter a,
.social.textcolor .twitter a:hover {
	color: #32CCFE !important
}
.social.textcolor .googleplus.active i,
.social.text-hover .googleplus a,
.social.textcolor .googleplus a:hover {
	color: #d15033 !important
}
.social.textcolor .pinterest.active i,
.social.text-hover .pinterest a,
.social.textcolor .pinterest a:hover {
	color: #C9212E !important
}
.social.textcolor .youtube.active i,
.social.text-hover .youtube a,
.social.textcolor .youtube a:hover {
	color: #D82624 !important
}
.social.textcolor .linkedin.active i,
.social.text-hover .linkedin a,
.social.textcolor .linkedin a:hover {
	color: #0073B2 !important
}
.social.textcolor .flickr.active i,
.social.text-hover .flickr a,
.social.textcolor .flickr a:hover {
	color: #FF0084 !important
}
.social.textcolor .xing.active i,
.social.text-hover .xing a,
.social.textcolor .xing a:hover {
	color: #015A60 !important
}
.social.textcolor .skype.active i,
.social.text-hover .skype a,
.social.textcolor .skype a:hover {
	color: #1AB9F1 !important
}
.social.textcolor .tumblr.active i,
.social.text-hover .tumblr a,
.social.textcolor .tumblr a:hover {
	color: #2B4661 !important
}
.social.textcolor .bitbucket.active i,
.social.text-hover .bitbucket a,
.social.textcolor .bitbucket a:hover {
	color: #013567 !important
}
.social.textcolor .dropbox.active i,
.social.text-hover .dropbox a,
.social.textcolor .dropbox a:hover {
	color: #018BD3 !important
}
.social.textcolor .instagram.active i,
.social.text-hover .instagram a,
.social.textcolor .instagram a:hover {
	color: #AD8263 !important
}
.social.textcolor .vimeo.active i,
.social.text-hover .vimeo a,
.social.textcolor .vimeo a:hover {
	color: #1BB6EC !important
}
.social.textcolor .dribbble.active i,
.social.text-hover .dribbble a,
.social.textcolor .dribbble a:hover {
	color: #F96599 !important
}
.social.textcolor .foursquare.active i,
.social.text-hover .foursquare a,
.social.textcolor .foursquare a:hover {
	color: #00ADEF !important
}
.social.textcolor .github.active i,
.social.text-hover .github a,
.social.textcolor .github a:hover {
	color: #B4B4B4 !important
}
.social.textcolor .vk.active i,
.social.text-hover .vk a,
.social.textcolor .vk a:hover {
	color: #416692 !important
}
.social.textcolor .maxcdn.active i,
.social.text-hover .maxcdn a,
.social.textcolor .maxcdn a:hover {
	color: #FF960E !important
}
.social.textcolor .weibo.active i,
.social.text-hover .weibo a,
.social.textcolor .weibo a:hover {
	color: #D52B2B !important
}
.social.textcolor .trello.active i,
.social.text-hover .trello a,
.social.textcolor .trello a:hover {
	color: #226784 !important
}
.social.textcolor .mail.active i,
.social.text-hover .mail a,
.social.textcolor .mail a:hover {
	color: #EF4A43 !important
}
.social.textcolor .rss.active i,
.social.text-hover .rss a,
.social.textcolor .rss a:hover {
	color: #FE9900 !important
}

/* Mobile Navigation
-------------------------------------------------------------- */
.menu-title {
	background-color: #fff;
	border-top: 1px solid #f1f1f1;
	padding: 12px 0;
	text-transform: uppercase;
	display: block;
	text-align: center;
}
.menu-title.noborder {
	border: 0;
}
.menu-title:after {
	content: '\f0c9';
	font-family: 'FontAwesome';
	display: inline-block;
	margin-left: 10px;
}
.menu-title.active:after {
	content: '\f00d';
}
.menu-title:hover {
	cursor: pointer;
}
.menu-title i {
	margin: 0; 
	font-size: 18px;
}
.mobile-menu {
	display: none;
}
ul.mobile-menu,
ul.mobile-menu ul {
	margin: 0;
	padding: 0;
}
.mobile-menu li {
	display: block;
	position: relative;
}
.mobile-menu li .open-child {
	position: absolute;
	right: 0;
	top: 0;
	display: block;
	text-align: center;
	font-size: 20px;
	padding: 12px 18px;
	color: #232323;
	background: #f5f5f5;
	cursor: pointer;
}
.mobile-menu li .open-child i {
	margin: 0;
}
.mobile-menu li .open-child:hover {
	-webkit-transition: background-color .3s ease;
	-moz-transition: background-color .3s ease;
	-ms-transition: background-color .3s ease;
	-o-transition: background-color .3s ease;
	transition: background-color .3s ease;
}
.mobile-menu > li.megamenu > .open-child {
	display: none;
}
.mobile-menu li i {
	margin:0 10px 0 0;
}
.mobile-menu li > a {
	display: block;
	line-height: 45px;
	background: #fff;
	border-top: 1px solid #f1f1f1;
	padding-left: 20px; 
}
.mobile-menu > li:last-child {
	border-bottom: 1px solid #f1f1f1;
} 
.mobile-menu > li > ul {
	border-top: 0!important;
}
.mobile-menu > li ul {
	display: none;
}
.mobile-menu > li > ul li {
	display: block;
	position: relative;
}
.mobile-menu > li > ul > li a:before {
	content: '\f105';
	font-family: 'FontAwesome';
	margin-right: 10px;
}
.mobile-menu > li > ul > li a {
	padding-left: 40px;
	display: block;
}
.mobile-menu > li > ul > li li a {
	padding-left: 60px;
}
.mobile-menu > li > ul > li li li a {
	padding-left: 80px;
}

/* =WordPress
-------------------------------------------------------------- */
.sticky{
}
.bypostauthor{
}
.alignnone {
  margin: 5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
.alignright {
  float:right;
  margin: 5px 0 20px 20px;
}
.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
.aligncenter {
  display: block;
  margin: 5px auto 5px auto;
}
a img.alignright {
  float: right;
  margin: 5px 0 20px 20px;
}
a img.alignnone {
  margin: 5px 20px 20px 0;
}
a img.alignleft {
  float: left;
  margin: 5px 20px 20px 0;
}
a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto
}
.wp-caption {
  background: #f0f0f0;
  text-align: center;
  max-width: 100%;
}
.wp-caption:hover{
  border-color: #ccc
}
.wp-caption.alignnone {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignleft {
  margin: 5px 20px 20px 0;
}
.wp-caption.alignright {
  margin: 5px 0 20px 20px;
}
.wp-caption img,
.entry-content .wp-caption img {
	width: 100%;
	height: auto;
}
.wp-caption p.wp-caption-text {
  font-size: 12.3px;
  line-height: 17px;
  margin: 0;
  padding: 10px;
}
.wp-caption p.wp-caption-text img {
	max-width: 100%;
	height: auto;
	width: auto;
}
.gallery {
  margin-bottom: 20px;
  margin-left: -4px;
}
.gallery p{
  display: block;
  height: 4px
}
.gallery-item {
  float: left;
  margin: 0 4px 4px 0;
  overflow: hidden;
  position: relative;
}
.gallery-columns-1.gallery-size-medium,
.gallery-columns-1.gallery-size-thumbnail,
.gallery-columns-2.gallery-size-thumbnail,
.gallery-columns-3.gallery-size-thumbnail {
  display: table;
  margin: 0 auto 20px;
}
.gallery-columns-1 .gallery-item,
.gallery-columns-2 .gallery-item,
.gallery-columns-3 .gallery-item {
  text-align: center;
}
.gallery-columns-4 .gallery-item {
  max-width: 23%;
  max-width: -webkit-calc(25% - 4px);
  max-width:         calc(25% - 4px);
}
.gallery-columns-5 .gallery-item {
  max-width: 19%;
  max-width: -webkit-calc(20% - 4px);
  max-width:         calc(20% - 4px);
}
.gallery-columns-6 .gallery-item {
  max-width: 15%;
  max-width: -webkit-calc(16.7% - 4px);
  max-width:         calc(16.7% - 4px);
}
.gallery-columns-7 .gallery-item {
  max-width: 13%;
  max-width: -webkit-calc(14.28% - 4px);
  max-width:         calc(14.28% - 4px);
}
.gallery-columns-8 .gallery-item {
  max-width: 11%;
  max-width: -webkit-calc(12.5% - 4px);
  max-width:         calc(12.5% - 4px);
}
.gallery-columns-9 .gallery-item {
  max-width: 9%;
  max-width: -webkit-calc(11.1% - 4px);
  max-width:         calc(11.1% - 4px);
}
.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
  margin-right: 0;
}
.gallery-caption {
  background-color: rgba(0, 0, 0, 0.7);
  box-sizing: border-box;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
  margin: 0;
  max-height: 50%;
  opacity: 0;
  padding: 2px 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  text-align: left;
  -webkit-transition: opacity 400ms ease;
  transition:         opacity 400ms ease;
  width: 100%;
}
.gallery-caption:before {
  box-shadow: 0 -10px 15px #000 inset;
  content: "";
  height: 100%;
  min-height: 49px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
}
.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
  display: none;
}
.entry-content img{
	max-width: 100%;
	height: auto;
	display: inline-block;
}
.entry-content embed,
.entry-content iframe {
	max-width: 100%;
	height: auto;
}

/* Admin Bar Fixed */
.admin-bar #wpadminbar {
	z-index: 99999999;
}
.admin-bar #header .fixed-header.affix {
	top: 32px;
}

/* =Preload Page
-------------------------------------------------------------- */

/* Animate CSS after page load */
.preload *{
    overflow: hidden;
    -webkit-transition: none !important;
    transition: none !important;
}
#preloader{
    position: fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:99999; /* makes sure it stays on top */
    background-color:#fff; /* change if the mask should have another color then white */
}
.spinner{
    position:absolute;
    top:50%; /* centers the loading animation vertically one the screen */
    left:50%; /* centers the loading animation horizontally one the screen */
    margin:-32px 0 0 -32px; /* is width and height divided by two */
    width: 64px;
    height: 64px;
    background-color: #e74c3c;
    -webkit-animation: rotateplane 1.2s infinite ease-in-out;
    animation: rotateplane 1.2s infinite ease-in-out;
}
/* Hide element before animation */
.animate{
    visibility: hidden;
    -webkit-animation: none;
    -ms-animation: none;
    animation: none;
}
/* Show element after animation */
.animated{
    visibility: visible;
}

@-webkit-keyframes rotateplane {
  0% { -webkit-transform: perspective(120px) }
  50% { -webkit-transform: perspective(120px) rotateY(180deg) }
  100% { -webkit-transform: perspective(120px) rotateY(180deg)  rotateX(180deg) }
}

@keyframes rotateplane {
  0% { 
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg) 
  } 50% { 
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg) 
  } 100% { 
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

/* =Responsive Media
-------------------------------------------------------------- */
@media (max-width: 767px) {
	.bottom-xs-0 { margin-bottom: 0!important }
	.bottom-xs-1 { margin-bottom: 1px!important }
	.bottom-xs-10 { margin-bottom: 10px!important }
	.bottom-xs-20 { margin-bottom: 20px!important }
	.bottom-xs-30 { margin-bottom: 30px!important }
	.bottom-xs-40 { margin-bottom: 40px!important }
	.bottom-xs-50 { margin-bottom: 50px!important }
	.bottom-xs-60 { margin-bottom: 60px!important }
	.top-xs-0 { margin-top: 0!important }
	.top-xs-1 { margin-top: 1px!important }
	.top-xs-10 { margin-top: 10px!important }
	.top-xs-20 { margin-top: 20px!important }
	.top-xs-30 { margin-top: 30px!important }
	.top-xs-40 { margin-top: 40px!important }
	.top-xs-50 { margin-top: 50px!important }
	.top-xs-60 { margin-top: 60px!important }
	.text-xs-center { text-align: center; }
	#footer .widget {
		margin-bottom: 30px;
	}

	#header .main-header.default .logo-area {
		position: relative;
		height: auto !important;
	}
	#header .main-header.default .header-menu .col-md-2 {
		padding: 0;
		margin: 0;
	}
	#header .main-header.default .header-social {
		text-align: center;
		margin-top: 30px;
	}

	.entry-breadcrumbs {
		padding-left: 20px;
		padding-right: 20px;
	}

	.blog-item .blog-item-media img {
		width: 100%;
		height: auto;
	}
	.blog-item .blog-item-content {
		padding: 30px;
	}
	.news-box img,
	.editor-news img,
	.highlight-item img,
	.news-box-item .news-box-item-img img,
	.feature-news-box .feature-news-box-img img {
		width: 100%;
		height: auto;
	}
	.highlight-item.featured .hl-content {
		padding: 25px;
	}
	.editor-news .editor-news-ct-wrap .editor-news-ct {
		padding: 30px 0 0;
	}
	.heading-line {
		border-bottom: 0;
	}
	.news-box-item {
		border-bottom: 0;
		padding-top: 0;
	}
	.news-box-item .news-box-item-img {
		float: none;
		width: 100%;
		margin-bottom: 20px;
	}
	.news-box-item .news-box-item-ct {
		padding-left: 0;
		padding-right: 0;
	}
	.news-box-item.vertical {
		border-left: 0;
		padding: 0;
	}
	.news-box-item.vertical .news-box-item-ct {
		padding: 0;
	}
	.news-box-item.vertical.last {
		border-right: 0;
	}
	.highlight-item.featured .hl-content:before {
		display: none;
	}
	#footer .credits .col-md-6,
	#footer .footer-menus {
		text-align: center;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.bottom-sm-0 { margin-bottom: 0!important }
	.bottom-sm-1 { margin-bottom: 1px!important }
	.bottom-sm-10 { margin-bottom: 10px!important }
	.bottom-sm-20 { margin-bottom: 20px!important }
	.bottom-sm-30 { margin-bottom: 30px!important }
	.bottom-sm-40 { margin-bottom: 40px!important }
	.bottom-sm-50 { margin-bottom: 50px!important }
	.bottom-sm-60 { margin-bottom: 60px!important }
	.top-sm-0 { margin-top: 0!important!important }
	.top-sm-1 { margin-top: 1px!important }
	.top-sm-10 { margin-top: 10px!important }
	.top-sm-20 { margin-top: 20px!important }
	.top-sm-30 { margin-top: 30px!important }
	.top-sm-40 { margin-top: 40px!important }
	.top-sm-50 { margin-top: 50px!important }
	.top-sm-60 { margin-top: 60px!important }
	.text-sm-center { text-align: center; }

	#header .main-header.default .logo-area {
		position: relative;
		height: auto !important;
	}
	#header .main-header.default .header-menu .col-md-2 {
		padding: 0;
		margin: 0;
	}
	#header .main-header.default .header-social {
		text-align: center;
		margin-top: 30px;
	}

	.blog-item .blog-item-media img {
		width: 100%;
		height: auto;
	}
	.blog-item .blog-item-content {
		padding: 30px;
	}
	.news-box img,
	.editor-news img,
	.highlight-item img,
	.news-box-item .news-box-item-img img,
	.feature-news-box .feature-news-box-img img {
		width: 100%;
		height: auto;
	}
	.highlight-item.featured .hl-content {
		padding: 25px 30px;
	}
	.editor-news .editor-news-ct-wrap .editor-news-ct {
		padding: 30px 0 0;
	}	
	.news-box-item.vertical {
		border-top: 1px solid #fff;
	}
	.topbar .top-bar-menu {
		float: none;
	}
	.highlight-item.featured .hl-content:before {
		display: none;
	}
	#footer .credits .col-md-6,
	#footer .footer-menus {
		text-align: center;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#header .main-header.full-logo .site-menu li a, 
	#header .main-header.full-logo .site-menu .menu-notice, 
	#header .main-header.default .site-menu .menu-notice, 
	#header .main-header.default .site-menu li a,
	#header .main-header.full-logo .site-menu li a, 
	#header .main-header.full-logo .site-menu .menu-notice,
	#header .main-header.default .site-menu .menu-notice, 
	#header .main-header.default .site-menu li a {
		padding: 20px 15px;
	}
	#header .main-header.full-logo .site-menu li > a.sf-with-ul:after {
		margin-left: 0;
	}
	#header .main-header.full-menu .site-menu li a, #header .main-header.full-menu .site-menu .menu-notice {
		padding: 20px 10px 18px;
	}
}