/*
Theme Name: Newstation
Theme URI: https://themepalace.com/downloads/newstation
Author: Theme Palace
Author URI: https://themepalace.com
Description: Newstation, Clean and elegantly designed multipurpose WordPress theme. It is ideal for magazines, blogs, and especially news-related websites. It is the most flexible theme you will ever find to create almost any website imaginable. Newstation is a cleanly coded WordPress theme that offers enough design freedom to fit any website while not losing the design aesthetic and coherent user experience. The theme is simple to install, and anyone with little or no programming experience may create a professional-looking website. In addition to this, Newstation is fully compatible with WooCommerce plugins to start an online store. It includes ad spots to display ads on the website. It is also browser compatible, responsive, mobile-optimized, and prioritizes performance.
Version: 1.0.4
Requires PHP: 5.6
Requires at least: 5.0
Tested up to: 6.7
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: newstation
Tags: translation-ready, custom-background, theme-options, custom-menu, threaded-comments, featured-images, footer-widgets, editor-style, right-sidebar, full-width-template, two-columns, grid-layout, custom-colors, custom-header, custom-logo, featured-image-header, portfolio, news, entertainment

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Newstation is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Preloader
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Layouts and Titles
# Media
	## Captions
	## Galleries
# Social Icons
# Breadcrumb List
# Sections
	## Featured Slider 
# Footer
# Responsive

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#loader {
	overflow-x: hidden;
	overflow-y: hidden;
	vertical-align: middle;
	background-color: #fff;
	position:fixed;
	display: table;
	width: 100%;
	top:0;
	height: 100%;
	min-height: 100%;
	z-index:9999;
}

.loader-container {
	position: relative;
	display: table-cell;
	vertical-align: middle;
	z-index: 12;
	text-align:center;
	text-transform: uppercase;
}

.loader-container svg {
	width: 70px;
	height: 70px;
	fill: #e6432a;
	-webkit-animation: rotating 2s linear infinite;
	-moz-animation: rotating 2s linear infinite;
	-ms-animation: rotating 2s linear infinite;
	-o-animation: rotating 2s linear infinite;
	animation: rotating 2s linear infinite;
}

@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.blog-loader {
    text-align: center;
    margin-top: 50px;
}
.blog-loader svg {
    width: 30px;
    height: 30px;
}
#LBloadmore svg.latest-posts-loader,
.blog-loader svg {
    margin-left: 15px;
    animation: infinitepreloader 1.5s  infinite ease-in-out;
}
@keyframes infinitepreloader {
	100%{transform: rotate(180deg);}
}

#preloader {
	position:relative;
	margin:auto;
	width:100px;
}

#preloader span {
	display:block;
	bottom:0px;
	width: 9px;
	height: 5px;
	background:#fff;
	position:absolute;
	animation: preloader 1.5s  infinite ease-in-out;
}
 
#preloader span:nth-child(2) {
	left:11px;
	animation-delay: .2s;
}
#preloader span:nth-child(3) {
	left:22px;
	animation-delay: .4s;
}
#preloader span:nth-child(4) {
	left:33px;
	animation-delay: .6s;
}
#preloader span:nth-child(5) {
	left:44px;
	animation-delay: .8s;
}

@keyframes preloader {
    0% {height:5px;transform:translateY(0px);background: #e6432a;}
    25% {height:30px;transform:translateY(15px);background: #e6432a;}
    50% {height:5px;transform:translateY(0px);background: #e6432a;}
    100% {height:5px;transform:translateY(0px);background: #e6432a;}
}

.backtotop {
    background-color: #e6432a;
    z-index: 300;
    width: 40px;
    height: 40px;
    line-height: 36px;
    font-size: 18px;
    text-align: center;
    position: fixed;
    bottom: -100px;
    right: 25px;
    cursor: pointer;
    -webkit-transition: all .7s ease-in-out;
    -moz-transition: all .7s ease-in-out;
    -o-transition: all .7s ease-in-out;
    -ms-transition: all .7s ease-in-out;
    transition: all .7s ease-in-out;
    color: #fff;
}
.backtotop:hover {
	background-color: #333;
}
.backtotop svg {
    display: inline-block;
    vertical-align: middle;
    fill: #fff;
}

@-webkit-keyframes colorchange {
	0%   {border-color: #e30048;}
	25%  {border-color: #e6432a;}
	50%  {border-color: #9acf0b;}
	75%  {border-color: #a93d7b;}
	100% {border-color: #f1ad02;}
}

@keyframes colorchange {
	0%   {border-color: #e30048;}
	25%  {border-color: #e6432a;}
	50%  {border-color: #9acf0b;}
	75%  {border-color: #a93d7b;}
	100% {border-color: #f1ad02;}
}
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}

#page {
    position: relative;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
    color: #7b7b7b;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 52px;
}

h2 {
	font-size: 42px;
}

h3 {
	font-size: 26px;
}

h4 {
	font-size: 20px;
}

h5 {
	font-size: 18px;
}

h6 {
	font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	color: #000;
	margin: 16px 0;
	line-height: 1.4;
	font-weight: 400;
    font-family: 'Philosopher', sans-serif;
}

mark {
	background: #ff0;
	color: #333;
}

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;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}
tbody {
    text-align: left;
}
tr {
    border: 1px solid #ccc;
}
td,
th {
	padding: 10px 25px;
    font-weight: 400;
}

th {
	color: #fff;
}

td#next {
    text-align: right;
}
/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	color: #838383;
	font-size: 16px;
	font-size: 1rem;
	line-height: 28px;
    word-wrap: break-word;
}
p {
	margin: 0 0 1em;
}
dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #fff;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
	overflow-x: hidden; 
}
blockquote {
    padding: 21px 25px;
    margin: 30px 0;
    font-size: 22px;
    line-height: 1.5;
}
blockquote.alignright {
    padding-right: 0;
    margin-bottom: 14px;
}
blockquote p:before,
blockquote p:after {
    content: "“";
    display: inline-block;
}
blockquote p:after {
    content: "”";
}
blockquote p {
    margin: 0;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0;
    padding-left: 1.5em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 0.5em;
}

dt {
	font-weight: bold;
    margin-bottom: 1em;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
	vertical-align: middle;
}

figure {
	margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
    display: inline-block;
    overflow: auto;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	outline: thin dotted;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	width: 100%;
	color: #666;
	border: 1px solid #e0e0e0;
	border-radius: 0;
	padding: 10px;
	background-color: #eaedf3;
    border: 1px solid #eaedf3;
}

select {
	border: 1px solid #e0e0e0;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
	outline: thin dotted;
}

textarea {
    width: 100%;
}
p.form-submit {
    clear: both;
    display: inline-block;
    position: relative;
}
.comment-notes {
    font-size: 14px;
    font-style: italic;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 20px;
}
#respond label {
    margin-bottom: 11px;
    display: inline-block;
}
#commentform p {    
    margin-bottom: 21px;
}
#commentform p.comment-form-comment {
    margin-bottom: 0;
}
#commentform p.form-submit {
	margin: 21px 0 0;
	text-align: center;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #e6432a;
	text-decoration: underline;
}

a:hover,
a:focus,
a:active {
	color: #000;
}
.entry-title a,
.site-title a,
.cat-links a,
.tag-links a,
.btn,
.posted-on a,
.testimonial-name a {
	text-decoration: none;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#masthead {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3000;
    background-color: transparent;
    -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;
}
#masthead .social-icons {
    margin: 10px 0 0;
}
.site-branding-container {
    position: relative;
}
.site-branding-container .wrapper {
    position: relative;
    z-index: 1;
}
.site-branding {
    text-align: center;
}
.site-branding + .site-advertisement {
    margin-top: 20px;
}
/*.site-branding-wrapper {
    padding: 40px 0;
}*/
#top-navigation .site-branding-wrapper {
	display: none;
}
.site-logo + #site-identity {
    margin-top: 15px;
}
.site-logo {
    margin-right: 20px;
}
.site-logo {
    max-height: 60px;
    width: auto;
}
.site-title {
    margin: 0;
    line-height: 1.3;
    font-family: 'Lato', sans-serif;
    font-size: 32px;
    text-transform: uppercase;
    -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;
}
.site-title a {
    color: #fff;
}
.site-title a:hover,
.site-title a:focus {
	opacity: 0.8;
}
.site-description {
    margin: 0;
    line-height: 1.3;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Lato', sans-serif;
}
.main-navigation {
	display: block;
    position: relative;
}
#site-navigation a {
	font-weight: 400;
    display: block;
    text-decoration: none;
    color: #000;
    position: relative;
    font-family: 'Lato', sans-serif;
}
.main-navigation ul.nav-menu li.current-menu-item > a {
	font-weight: 500;
}
.main-navigation ul.nav-menu li.current-menu-item > a,
.main-navigation ul.nav-menu li:hover > a {
    color: #e6432a;
}
.main-navigation ul.nav-menu li:hover > svg,
.main-navigation li.menu-item-has-children:hover > a > svg,
.main-navigation li.menu-item-has-children > a:hover > svg,
.main-navigation ul.nav-menu > li.current-menu-item > a > svg {
    fill: #e6432a;
}
.main-navigation ul ul {
    background-color: #fff;
    text-align: left;
    padding: 0;
}
.main-navigation ul.sub-menu li a {
    padding: 8px 15px;
    color: #333;
    border-bottom: 1px solid #eee;
    text-transform: capitalize !important;
}
.main-navigation ul.sub-menu a:after {
	float: right;
}
.main-navigation ul {
	list-style: none;
	margin: 0;
	padding-left: 0;
}
.main-navigation .social-menu-item ul {
    display: block;
    border: none;
}
.main-navigation .social-menu-item ul li a {
	width: 40px;
    border: 1px solid #d6d6d6;
}
.main-navigation .social-menu-item ul li a:hover,
.main-navigation .social-menu-item ul li a:focus {
	opacity: 0.8;
}
.main-navigation .social-menu-item .social-icons {
    margin: 0;
    padding: 20px 15px 20px 25px;
}
.main-navigation + .social-icons {
	display: none;
}
.main-navigation li {
	position: relative;
}
.main-navigation ul.nav-menu > li > a {
    padding: 18px 12px;
    color: #333;
}
.main-navigation ul.nav-menu > li > a.search:hover svg.icon-search,
.main-navigation ul.nav-menu > li > a.search:focus svg.icon-search,
.main-navigation li.search-menu a:hover svg,
.main-navigation li.search-menu a:focus svg,
.main-navigation li.search-menu a.search-active svg {
	fill: #e6432a;
}
.main-navigation a:hover,
.main-navigation ul.nav-menu > li > a:hover,
#site-navigation.main-navigation a:hover,
#site-navigation.main-navigation ul.nav-menu > li > a:hover,
#masthead .main-navigation ul ul li .sub-menu li a:hover, 
#masthead .main-navigation ul li .sub-menu li a:hover, 
#masthead .main-navigation ul ul li.menu-item-has-children > a:hover,
#masthead .main-navigation ul ul li .sub-menu li a:focus, 
#masthead .main-navigation ul li .sub-menu li a:focus, 
#masthead .main-navigation ul ul li.menu-item-has-children > a:focus,
#masthead .main-navigation ul li.focus a  {
    color: #e6432a;
}
.main-navigation a {
    font-weight: 600;
	display: block;
    text-decoration: none;
	color: #333;
}
.main-navigation ul ul {
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}
.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}
.main-navigation ul ul a {
	width: 225px;
}
.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
	color: #333;
}
form.search-form {
    width: 100%;
    max-width: 100%;
    position: relative;
}
/*.main-navigation form.search-form {
    min-width: 320px;
}
*/#masthead .home-icon > a svg.icon-home {
    width: 24px;
    height: 24px;
    margin-top: -3px;
}
input.search-field {
    height: 50px;
    border-radius: 0;
    padding: 0 50px 0 15px;
    width: 100%;
}
.main-navigation svg.icon-close {
    display: none;
}
#search.hidden-small form.search-form {
    position: absolute;
    left: 0;
    right: 0;
}
svg {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: middle;
}
.search-menu svg.icon-search {
    fill: #949494;
}
svg.icon-search,
svg.icon-close {
    width: 15px;
    height: 15px;
    fill: #fff;
}
svg.icon-close {
    width: 20px;
    height: 20px;
}
.search-submit svg.icon-search {
    fill: #adadad;
    opacity: 1;
}
.main-navigation svg.icon-down {
    width: 14px;
    height: 14px;
    margin-left: 5px;
    fill: #7b7b7b;
}
.main-navigation .sub-menu svg {
    width: 12px;
    height: 12px;
    fill: #7b7b7b;
    position: absolute;
    right: 15px;
    top: 17px;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
#site-menu #search {
    display: none;
}
#search-menu {
	display: none;
}
#search-menu .icon-close,
#search-menu.active .icon-search,
.search-menu .icon-close,
.search-menu.active .icon-search {
    display: none;
}
#search-menu.active .icon-close,
.search-menu.active .icon-close {
	display: inline-block;
}
#search-menu button .icon-search,
.search-menu button .icon-search,
#search-menu.active button .icon-search,
.search-menu.active button .icon-search {
	display: inline-block;
}
#search-menu input[type="search"] {
	padding-left: 40px;
    border-radius: 4px;
    min-height: 40px;
    height: auto;
    background-color: #efefef;
    border-color: #efefef;
    padding: 5px 15px 0px 40px;
}
#search-menu form.search-form button.search-submit {
	min-height: 40px;
	height: auto;
}
.menu-toggle{
    border-radius: 0;
    min-height: 50px;
    line-height: 50px;
    display: block;
    position: relative;
    background-color: #171616;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    z-index: 111;
}
.secondary-menu-toggle {
	position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
}
.secondary-menu-toggle svg {
    width: 20px;
    height: 20px;
    margin-left: auto;
    margin-right: auto;
}
.menu-toggle:focus {
    outline: dotted #a09f9f;
}
.secondary-menu-toggle svg.icon-close {
    display: none;
    fill: #000;
    width: 16px;
    height: 16px;
}
.secondary-menu-toggle.active svg.icon-menu-bar {
	display: none;
}
.secondary-menu-toggle.active svg.icon-close {
	display: block;
}
#site-menu .menu-toggle.active svg {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
}
.menu-label {
    text-transform: uppercase;
    color: #fff;
    padding: 3px 0 0 10px;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
}
#top-navigation .main-navigation:before, div#top-navigation .main-navigation:after {
    content: "";
    display: table;
    clear: both;
}
#top-navigation .main-navigation li {
    color: #fff;
}
#top-navigation .main-navigation ul.nav-menu > li > a {
    text-transform: none;
}
svg.icon-user {
    margin-right: 5px;
    vertical-align: middle;
}
#top-navigation .menu-label {
    color: #fff;
}
#top-navigation .menu-toggle svg {
	fill: #fff;
}
.main-navigation form.search-form button.search-submit:focus {
	outline: thin dotted #fff;
}
svg.icon-menu {
    fill: #fff;
    vertical-align: baseline;
    width: 30px;
    height: 30px;
}
svg.icon-close,
.menu-toggle.active svg.icon-menu {
    display: none;
}
.menu-toggle.active svg.icon-close {
	display: block;
}
button.dropdown-toggle {
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
    background-color: transparent;
    border: none;
    width: 45px;
    height: 57px;
    line-height: 62px;
}
.main-navigation .dropdown-toggle.active > svg {
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
.menu-overlay {
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -ms-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
}
.menu-overlay.active {
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    z-index: 3;
}
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
	position: relative;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
	position: relative;
}
.navigation.post-navigation, 
.navigation.posts-navigation {
    margin-top: 30px;
    padding: 23px 20px;
    background-color: #eaedf3;
    border: 1px solid #eaedf3;
}
.post-navigation a, 
.posts-navigation a {
    font-weight: 500;
    color: #171616;
}
.post-navigation a:hover, 
.posts-navigation a:hover,
.post-navigation a:focus, 
.posts-navigation a:focus {
	color: #e6432a;
}
.post-navigation, 
.posts-navigation {
    padding: 0;
    position: relative;
}
.pagination .page-numbers {
    border: 1px solid #ddd;
    text-decoration: none;
}
.pagination .page-numbers,
.pagination .page-numbers.dots:hover,
.pagination .page-numbers.dots:focus {
    text-align: center;
    line-height: 35px;
    width: 35px;
    height: 35px;
    display: inline-block;
    margin-right: 5px;
    color: #171616;
    background-color: #fff;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.pagination .page-numbers:focus {
    color: #fff;
    background-color: #e6432a;
    border-color: #e6432a;
}
.pagination .prev.page-numbers svg,
.pagination .next.page-numbers svg {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    width: 12px;
    height: 12px;
}
.pagination .next.page-numbers svg {
	-webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.prev.page-numbers svg,
.next.page-numbers svg {
    fill: #cecece;
}
.nav-previous span {
    padding-left: 38px;
    float: left;
    text-align: left;
}
.nav-next span {
    padding-right: 38px;
    float: right;
    text-align: right;
}
.navigation .nav-previous svg {
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    position: absolute;
    top: 3px;
    left: 0;
}
.navigation .nav-next svg {
    position: absolute;
    top: 3px;
    right: 0;
}
.post-navigation span,
.posts-navigation span {
    display: table;
}
/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after,
.footer-widgets-area:before,
.footer-widgets-area:after,
.wrapper:before,
.wrapper:after,
.widget:before,
.widget:after,
.widget_popular_news > ul > li:before,
.widget_popular_news > ul > li:after,
.widget_posts_filter .tab-content > ul > li:before,
.widget_posts_filter .tab-content > ul > li:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after,
.footer-widgets-area:before,
.footer-widgets-area:after,
.wrapper:before,
.wrapper:after,
.widget:before,
.widget:after,
.widget_popular_news > ul > li:before,
.widget_popular_news > ul > li:after,
.widget_posts_filter .tab-content > ul > li:before,
.widget_posts_filter .tab-content > ul > li:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 20px;
}
.widget:last-child {
    margin-bottom: 0;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
    background-color: #efefef;
    padding: 10px;
    border: none;
    width: 100%;
    max-width: 300px;
}
select:focus {
    outline: thin dotted;
}

.widget input {
    height: 40px;
    border-radius: 0;
    padding: 0 15px;
    border: none;
}

form.search-form button.search-submit {
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
}
.widget_search form.search-form .search-submit {
    width: auto;
    color: #fff;
    background-color: #171616;
    left: auto;
    right: 0;
    font-size: 14px;
    height: 40px;
    width: 40px;
    line-height: 10px;
}
.widget_search form.search-form .search-submit:hover,
.widget_search form.search-form .search-submit:focus {
	background-color: #e6432a;
	color: #fff;
}
.widget_search form.search-form .search-submit svg {
	fill: #fff;
	width: 14px;
    height: 14px;
}
.widget_search form.search-form .search-submit:hover svg,
.widget_search form.search-form .search-submit:focus svg {
	fill: #fff;
}
.widget_search form.search-form input {
	border: none;
}
.widget_search form.search-form input {
    padding: 0 55px 0 15px;
    height: 40px;
    background-color: #eaedf3;
}
form.search-form {
    position: relative;
}

form.search-form input {
    width: 100%;
    padding: 0 40px 0 15px;
    font-weight: 300;
}

#wp-calendar tbody td {
    text-align: center;
}

#wp-calendar caption {
    margin-bottom: 15px;
}

.widget-title {
    font-size: 22px;
    margin: 0 0 16px;
}

.widget li:not(:last-child),
#trending-news li:not(:last-child) {
    margin-bottom: 15px;
}

.widget_instagram ul {
    list-style: none;
    margin: 0 -5px;
    padding: 0;
}
.widget_instagram li {
	margin: 0;
	padding: 0 5px;
}
.widget.widget_instagram li:not(:last-child),
#colophon .footer-widgets-area .widget.widget_instagram li:not(:last-child) {
    margin-bottom: 10px;
}
.widget_instagram .col-1 li {
	width: 100%;
	float: none;
}
.widget_instagram .col-2 li {
	width: 50%;
	float: left;
}
.widget_instagram .col-3 li {
	width: 33.33%;
	float: left;
}
.widget_instagram .col-4 li {
	width: 25%;
	float: left;
}
.widget_instagram .col-5 li {
	width: 20%;
	float: left;
}
.widget_instagram .col-6 li {
	width: 16.66%;
	float: left;
}
.widget_instagram li img {
	width: 100%;
}
.widget.widget_archive li {
	text-align: right;
}
.widget.widget_archive li a {
	float: left;
}
#secondary .widget,
#secondary-sidebar .widget {
    margin-bottom: 30px;
}
input[type="submit"] {
    padding: 10px 30px;
    font-size: 14px;
    line-height: 26px;
    display: inline-block;
    text-transform: uppercase;
    border: none;
    background-color: #e6432a;
    color: #fff;
    position: relative;
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    letter-spacing: 0.05em;
    -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;
}
input[type="submit"]:hover,
input[type="submit"]:focus {
	background-color: #171616;
    color: #fff;
}
.jetpack_subscription_widget form {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
}
.jetpack_subscription_widget input[type="email"] {
    width: 100%;
    min-height: 50px;
    padding: 2px 60px 0 10px;
    background-color: #fff;
    border: none;
    color: #000;
    border: 1px solid #ccc;
}
.jetpack_subscription_widget button[type="submit"] {
    background-color: #e6432a;
    padding: 15px;
    border-radius: 0;
    color: #e6432a;
}
.jetpack_subscription_widget #subscribe-submit svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}
.jetpack_subscription_widget button[type="submit"]:hover,
.jetpack_subscription_widget button[type="submit"]:focus {
	background-color: #000;
}
.jetpack_subscription_widget #subscribe-text {
    display: inline-block;
    margin-bottom: 10px;
}
.jetpack_subscription_widget #subscribe-text p {
    margin-top: 0;
    line-height: 25px;
}
.jetpack_subscription_widget #subscribe-submit {
    display: inline-block;
    margin: 0;
    position: absolute;
    bottom: 0;
    right: 0;
}
.jetpack_subscription_widget .widget-title {
    margin-bottom: 5px;
}
#subscribe-email label {
    margin-bottom: 7px;
    display: inline-block;
    width: 100%;
}
.widget_popular_post ul,
.widget_latest_post ul,
.widget_featured_post ul {
    padding: 0;
    margin: 0;
    list-style: none;
    clear: both;
    display: table;
}
.widget.widget_popular_post ul li,
.widget.widget_latest_post ul li,
.widget.widget_featured_post ul li {
    clear: both;
    margin-bottom: 20px;
    display: inline-block;
    width: 100%;
}
.widget.widget_popular_post ul li:last-child,
.widget.widget_latest_post ul li:last-child,
.widget.widget_featured_post ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}
.widget_popular_post h3,
.widget_latest_post h3,
.widget_featured_post h3 {
    font-size: 16px;
    line-height: 1.5;
    display: table-row;
    letter-spacing: 0.01em;
}
.widget_popular_post h3 a,
.widget_latest_post h3 a,
.widget_featured_post h3 a {
	display: block;
}
#secondary .widget_popular_post h3 a,
#secondary .widget_latest_post h3 a,
#secondary .widget_featured_post h3 a {
	font-weight: 600;
}
.widget_popular_post time,
.widget_latest_post time,
.widget_featured_post time {
    display: table-row;
    font-weight: 500;
}
.widget_popular_post h3 a,
.widget_popular_post a:hover time,
.widget_popular_post a:focus time,
.widget_latest_post h3 a,
.widget_latest_post a:hover time,
.widget_latest_post a:focus time,
.widget_featured_post h3 a,
.widget_featured_post a:hover time,
.widget_featured_post a:focus time {
    color: #333;
}
.widget_popular_post h3 a:hover,
.widget_popular_post h3 a:focus,
.widget_popular_post a:hover time,
.widget_popular_post a:focus time,
.widget_latest_post h3 a:hover,
.widget_latest_post h3 a:focus,
.widget_latest_post a:hover time,
.widget_latest_post a:focus time,
.widget_featured_post h3 a:hover,
.widget_featured_post h3 a:focus,
.widget_featured_post a:hover time,
.widget_featured_post a:focus time {
	color: #e6432a;
}
.widget_popular_post a time,
.widget_popular_post time,
.widget_latest_post a time,
.widget_latest_post time,
.widget_featured_post a time,
.widget_featured_post time {
    color: #e6432a;
    font-family: 'Lato', sans-serif;
}
.widget_popular_post img,
.widget_latest_post img,
.widget_featured_post img {
    max-width: 95px;
    width: 95px;
    height: 95px;
    float: left;
    margin-right: 14px;
}
.textwidget img {
    margin-bottom: 15px;
    display: block;
}
.widget.widget_text .btn {
	margin-top: 20px;
}
.textwidget a {
    line-height: 1.5;
    display: inline-block;
    font-weight: 500;
}
#secondary .jetpack_subscription_widget input[type="email"] {
    height: 50px;
    min-height: auto;
    background-color: #fff;
    border-color: #fff;
    padding: 15px 18px;
}
#secondary .jetpack_subscription_widget input[type="submit"] {
    position: relative;
    margin: auto;
    min-height: 50px;
    border-radius: 0;
    background-color: #333;
    min-width: 151px;
    margin: 0;
    text-transform: uppercase;
}
#secondary .jetpack_subscription_widget input[type="submit"]:hover,
#secondary .jetpack_subscription_widget input[type="submit"]:focus {
	background-color: #e6432a;
}
#secondary p#subscribe-email {
    margin-top: 0;
}
#secondary .widget .social-icons {
    text-align: center;
    margin-top: -10px;
}
#secondary .widget .social-icons li a:hover svg,
#secondary .widget .social-icons li a:focus svg {
	fill: #fff;
}
#secondary .widget ul,
#secondary-sidebar .widget ul,
#left-sidebar .widget ul,
#trending-news ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.widget svg {
	fill: #e6432a;
}
#secondary a,
#secondary li,
#secondary-sidebar a,
#secondary-sidebar li {
    color: #000;
}
ul li a,
.tagcloud a {
    text-decoration: none;
}
#secondary a:hover,
#secondary a:focus,
#secondary-sidebar a:hover,
#secondary-sidebar a:focus {
    color: #e6432a;
}

.widget_popular_news .post-number {
    float: left;
    margin-right: 20px;
    position: relative;
    font-size: 24px;
    color: #000;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
}
.widget.widget_popular_news > ul > li {
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.widget_popular_news ul li .entry-container,
.widget_posts_filter ul li .entry-container {
    display: table-row;
}
.widget_popular_news .entry-title,
.widget_posts_filter .entry-title {
	font-size: 16px;
	margin-bottom: 0;
}
.right-sidebar .widget_popular_news .entry-title {
	font-size: 17px;
}
#secondary .posted-on a,
#secondary-sidebar .post-categories a {
    color: #e6432a;
}
#secondary .posted-on a:hover,
#secondary-sidebar .post-categories a:hover,
#secondary .posted-on a:focus,
#secondary-sidebar .post-categories a:focus {
	color: #000;
}
.widget.widget_posts_filter ul.tabs li {
    display: inline-block;
    margin: 0 -1px 30px;
}
#secondary .widget.widget_posts_filter ul.tabs li.active a {
    background-color: #e6432a;
}
#secondary .widget.widget_posts_filter ul.tabs li a {
    background-color: #000;
    color: #fff;
    padding: 1px 10px;
    margin: 0;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}
.widget_posts_filter > ul > li:not(:last-child) {
	margin-bottom: 30px;
}
.widget_recent_news .entry-meta {
	margin-bottom: 0;
}
.tab-content {
	display: none;
}
.tab-content.active {
	display: block;
}
.entry-meta a {
	text-decoration: none;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}
.hentry {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 0;
}
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
nav.navigation.pagination {
    margin-top: 50px;
    clear: both;
    display: inline-block;
    width: 100%;
    text-align: left;
}
.navigation.pagination svg {
    fill: #171616;
    width: 16px;
    height: 16px;
    position: relative;
    top: -2px;
}
.navigation.pagination a:hover svg,
.navigation.pagination a:focus svg {
	fill: #fff;
}
.navigation.posts-navigation svg, 
.navigation.post-navigation svg {
    width: 20px;
    height: 20px;
    fill: #171616;
    display: inline-block;
    vertical-align: middle;
}
.navigation.posts-navigation a:hover svg, 
.navigation.post-navigation a:hover svg,
.navigation.posts-navigation a:focus svg, 
.navigation.post-navigation a:focus svg {
	fill: #e6432a;
}
.navigation.posts-navigation svg.icon-left, 
.navigation.post-navigation svg.icon-left {
	margin-right: 20px;
}
.navigation.posts-navigation svg.icon-right, 
.navigation.post-navigation svg.icon-right {
	margin-left: 20px;
}
.single-post .site-main .comment-navigation, 
.single-post .site-main .posts-navigation, 
.single-post .site-main .post-navigation {
	margin-bottom: 0;
}
.post-navigation .previous-article span span,
.posts-navigation .previous-article span span,
.post-navigation .next-article span span,
.posts-navigation .next-article span span {
    display: block;
}
.post-navigation span.previous-article b,
.post-navigations span.previous-article b,
.post-navigation span.next-article b,
.post-navigations span.next-article b {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    display: inline-block;
    width: 100%;
}
.post-navigation span.previous-article,
.post-navigations span.previous-article {
    display: table;
}
.no-sidebar-content #inner-content-wrapper {
    max-width: 900px;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

#reply-title,
.comments-title {
    font-size: 42px;
    margin: 0;
}
.comments-title,
#reply-title {
	margin-bottom: 43px;
	font-size: 42px;
	font-weight: 600;
}
.post-categories {
    list-style: none;
    padding-left: 0;
    display: inline-block;
}
.post-categories li {
    display: inline-block;
    vertical-align: middle;
}
.post-categories li:last-child {
	margin-right: 0;
}
.post-categories a,
.posted-on a {
    color: #e6432a;
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
}
.posted-on a {
	color: #808080;
    font-weight: 400;
	text-transform: unset;
	font-size: 18px;
}
.post-categories a:hover,
.post-categories a:focus {
	color: #171616;
}
.posted-on a:hover,
.posted-on a:focus {
    color: #e6432a;
}
ol.comment-list {
    padding: 0;
    margin: 0 0 10px;
    list-style: none;
}
#comments ol {
    list-style: none;
    margin-left: 0;
    padding: 0;
}
#comments ol.comment-list {
	position: relative;
    overflow: hidden;
}
#comments ol.children {
    margin-left: 90px;
}
.says {
    display: none;
}
.comment-meta img {
    width: 60px;
    height: 60px;
    float: left;
    border-radius: 50%;
    margin-right: 20px;
}
#comments time:before {
    display: none;
}
.comment-body {
    position: relative;
}
.reply {
    padding-left: 80px;
    display: inline-block;
    margin-top: 3px;
}
#comments article {
    margin-bottom: 30px;
    clear: both;
}
.comment-meta .fn {
    margin-left: 20px;
    margin-top: 18px;
}
.comment-content {
    margin-bottom: 13px;
    margin-top: -45px;
    margin-left: 80px;
    padding: 55px 20px 20px;
    background-color: #eaedf3;
    border: 1px solid #eaedf3;
}
#comments ol.comment-list > li:last-child article:last-child,
#comments ol.comment-list > li:last-child {
	border-bottom: none;
}
#comments ol.comment-list > li:first-child {
    padding-top: 0;
}
#comments ol.comment-list > li {
    margin-bottom: 30px;
}
#comments ol.comment-list > li article:last-child .reply {
	border-bottom: none;
    padding-bottom: 0;
}
.reply a {
    display: inline-block;
    border-radius: 0;
    color: #fff;
    position: relative;
    font-size: 16px;
    background-color: #e6432a;
    padding: 5px 20px;
    -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;
    text-decoration: none;
}
.reply a:hover,
.reply a:focus {
	background-color: #171616;
    color: #fff;
}
.comment-meta .url,
.comment-meta .fn {
    display: inline-block;
    color: #171616;
    font-size: 16px;
    margin-right: 5px;
    font-weight: bold;
    text-decoration: none;
}
.comment-meta .fn:after {
    content: "|";
    color: #72757a;
    margin: 0 3px;
}
.comment-meta .url:hover,
.comment-meta .url:focus,
.comment-metadata a,
.comment-metadata a time {
	color: #e6432a;
}
.comment-metadata a,
.comment-metadata a time {
    color: #171616;
    text-decoration: none;
}
.comment-metadata a:hover,
.comment-metadata a:focus,
.comment-metadata a:hover time,
.comment-metadata a:focus time {
	color: #e6432a;
}
.comment-metadata {
    display: inline-block;
    margin-left: -5px;
}
.comment-content p {
    margin-bottom: 0;
}
#comments {
    margin-top: 40px;
}
.comment-wrap {
    background-color: #fff;
    padding: 20px;
    margin-left: 80px;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Layouts and titles
--------------------------------------------------------------*/
section {
	position: relative;
}
.relative {
	display: block;
	position: relative;
}
.relative:before,
.relative:after {
	content: "";
	display: table;
	clear: both;
}
.page-section {
	padding: 50px 0;
}
.entry-content {
	margin-top: 0;
}
.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.entry-title {
    font-size: 18px;
    font-weight: 400;
    margin: 0 0 16px;
    color: #000;
    word-wrap: break-word;
}
.archive .entry-title,
.search .entry-title,
.blog .entry-title{
	font-size: 22px;
	margin: 0 0 0 0;
}
.entry-title a {
	color: #000;
	font-weight: 700;
}
.entry-title a:hover,
.entry-title a:focus {
	color: #e6432a;
}
.section-header,
.widget-header {
    position: relative;
    overflow: hidden;
}
.section-title,
.widget-title,
.widgettitle,
.widget.widget_block h1,
.widget.widget_block h2,
.widget.widget_block h3,
.widget.widget_block h4 {
    font-size: 15px;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 0;
    font-family: 'Lato', sans-serif;
}
.post-thumbnail-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.overlay {
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
}
.align-left {
    text-align: left;
}
.align-center {
    text-align: center;
}
.align-right {
    text-align: right;
}
.btn {
	padding: 14px 30px;
	font-size: 14px;
	line-height: 26px;
	min-height: 55px;
	display: inline-block;
	text-transform: uppercase;
	min-width: 161px;
	border: none;
	background-color: #e6432a;
	color: #fff;
	position: relative;
	text-align: center;
	font-family: 'Lato', sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	-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;
	font-weight: 700;
}
.btn:hover,
.btn:focus {
	background-color: #171616;
    color: #fff;
}
#infinite-handle {
    text-align: center;
    margin-bottom: 30px;
}
/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}
/*--------------------------------------------------------------
## Social Icons
--------------------------------------------------------------*/
.social-icons li {
    display: inline-block;
    height: auto;
    text-align: center;
    position: relative;
    list-style: none;
}
.footer-widgets-area .widget .social-icons li {
	display: inline-block;
    width: auto;
}
.social-icons,
.social-icons ul {
    margin: 0;
    padding: 0;
}
.social-icons li a {
    background-color: transparent;
    width: 30px;
    height: 30px;
    line-height: 25px;
    display: block;
    border-radius: 50%;
}
#masthead .social-icons li a {
	line-height: 30px;
}
.social-icons li a:hover svg,
.social-icons li a:focus svg {
	fill: #fff;
}
.social-icons li a:hover svg,
.social-icons li a:focus svg {
	fill: #fff;
}
.social-icons li a svg {
    fill: #000;
}
/*--------------------------------------------------------------
## Social Icons Hover Color
--------------------------------------------------------------*/
.social-icons li a[href*="facebook.com"]:hover,
.social-icons li a[href*="facebook.com"]:focus,
.social-icons li a[href*="fb.com"]:hover {
 	background-color: #3c5798;
}
.social-icons li a[href*="twitter.com"]:hover,
.social-icons li a[href*="twitter.com"]:focus {
 	background-color: #1ea0f1;
}
.social-icons li a[href*="linkedin.com"]:hover,
.social-icons li a[href*="linkedin.com"]:focus {
 	background-color: #0077B5;
}
.social-icons li a[href*="plus.google.com"]:hover,
.social-icons li a[href*="plus.google.com"]:focus {
 	background-color: #ec7161;
}

.social-icons li a[href*="youtube.com"]:hover,
.social-icons li a[href*="youtube.com"]:focus {
 	background-color: #cc181e;
}

.social-icons li a[href*="dribbble.com"]:hover,
.social-icons li a[href*="dribbble.com"]:focus {
 	background-color: #f4a09c;
}

.social-icons li a[href*="pinterest.com"]:hover,
.social-icons li a[href*="pinterest.com"]:focus {
 	background-color: #E6001C;
}

.social-icons li a[href*="bitbucket.org"]:hover,
.social-icons li a[href*="bitbucket.org"]:focus {
 	background-color: #205081;
}

.social-icons li a[href*="github.com"]:hover,
.social-icons li a[href*="github.com"]:focus {
 	background-color: #323131;
}

.social-icons li a[href*="codepen.io"]:hover {
 	background-color: #333;
}

.social-icons li a[href*="flickr.com"] {
 	background-color: #025FDF;
}

.social-icons li a[href$="/feed/"]:hover {
 	background-color: #089DE3;
}

.social-icons li a[href*="foursquare.com"]:hover {
 	background-color: #F94877;
}

.social-icons li a[href*="instagram.com"]:hover,
.social-icons li a[href*="instagram.com"]:focus {
 	background-color: #9A26C9;
}

.social-icons li a[href*="tumblr.com"]:hover {
 	background-color: #56BC8A;
}

.social-icons li a[href*="reddit.com"]:hover {
 	background-color: #FF4500;
}

.social-icons li a[href*="vimeo.com"] {
 	background-color: #00ADEF;
}

.social-icons li a[href*="digg.com"] {
 	background-color: #00ADEF;
}

.social-icons li a[href*="twitch.tv"] {
 	background-color: #0E9DD9;
}

.social-icons li a[href*="stumbleupon.com"] {
 	background-color: #EB4924;
}

.social-icons li a[href*="delicious.com"] {
 	background-color: #0076E8;
}

.social-icons li a[href*="mailto:"] {
 	background-color: #4169E1;
}
.social-icons li a[href*="soundcloud.com"] {
 	background-color: #FF5500;
}
.social-icons li a[href*="wordpress.org"] {
 	background-color: #0073AA;
}
.social-icons li a[href*="wordpress.com"] {
 	background-color: #00AADC;
}

.social-icons li a[href*="jsfiddle.net"] {
 	background-color: #396AB1;
}

.social-icons li a[href*="tripadvisor.com"] {
 	background-color: #FFE090;
}

.social-icons li a[href*="angel.co"] {
 	background-color: #333;
}

.social-icons li a[href*="slack.com"] {
 	background-color: #E60264;
}
/*--------------------------------------------------------------
#  Page Site Header
--------------------------------------------------------------*/
#page-site-header {
    padding: 50px 0;
    text-align: center;
    background-color: #333;
    color: #fff;
}
#page-site-header .page-title {
	font-size: 36px;
	color: #fff;
}
/*--------------------------------------------------------------
#  Breadcrumb List
--------------------------------------------------------------*/
.trail-items {
    margin: 0;
    padding: 0;
    list-style: none;
}
.trail-items li {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
}
.trail-items li a {
	color: rgba(255, 255, 255, 0.60);
	text-decoration: none;
}
.trail-items li a:hover,
.trail-items li a:focus {
	color: #fff;
}
.trail-items li:not(:last-child):after {
	content: "/";
    color: rgba(255, 255, 255, 0.60);
    padding-left: 4px;
    padding-right: 2px;
}
/*--------------------------------------------------------------
#  Slick Slider
--------------------------------------------------------------*/
.slick-prev {
    left: -50px;
}
.slick-next {
    right: -50px;
}
.slick-prev, 
.slick-next {
    background-color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 0;
    opacity: 1;
    z-index: 1;
    -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;
    border: 1px solid #000;
}
.slick-prev:before, 
.slick-next:before {
    content: "";
    background-image: url('assets/images/down-arrow.svg');
    width: 16px;
    height: 16px;
    display: inline-block;
    opacity: 1;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.slick-prev:before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
}
.slick-prev:hover, 
.slick-next:hover,
.slick-prev:focus, 
.slick-next:focus {
	background-color: #E73819;
}	
.slick-prev:hover:before, 
.slick-next:hover:before,
.slick-prev:focus:before, 
.slick-next:focus:before {
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
    -o-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

/*--------------------------------------------------------------
#  Page Site Header
--------------------------------------------------------------*/
#page-site-header {
    padding: 298px 0;
    text-align: center;
    position: relative;
    background-color: #333;
    background-size: cover;
    background-position: 50%;
}
#page-site-header .wrapper {
    position: relative;
    text-align: center;
}
#page-site-header .page-title {
	font-size: 32px;
	color: #fff;
    margin: 0;
    line-height: 1.5;
}


.featured-image {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    position: relative;
}


.tab-wrapper {
    text-align: right;
}
.tab {
    width: 100%;
    display: block;
    padding-left: 0;
    margin-top: 20px;
}

.video-button {
	position: absolute;
	bottom: 0;
	padding: 15px;
}
.video-button a {
    color: #fff;
    border: 1px solid #fff;
    padding: 1px 5px;
    vertical-align: middle;
    display: inline-block;
}
.same-background {
	padding-top: 0;
}

#left-sidebar .widget,
#business-news,
#secondary.right-sidebar .widget,
#trending-news,
#primary-ad-1,
#primary-ad-2,
#primary-ad-3,
#world-news {
    margin-bottom: 32px;
}
.widget_posts_slider .entry-container {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    text-align: center;
    padding: 0 30px;
}
.widget_posts_slider .entry-title {
	margin-bottom: 12px;
}
.widget_posts_slider .slick-prev,
#posts-slider .slick-prev,
#recipe-slider .slick-prev  {
	left: 0;
}
.widget_posts_slider .slick-next,
#posts-slider .slick-next,
#recipe-slider .slick-next {
	right: 0;
}
#posts-slider .featured-slider .featured-image,
.featured-news {
    width: 100%;
    display: block;
}
#posts-slider .featured-slider .entry-container {
    width: 100%;
    display: table-cell;
    padding: 50px 30px;
    background-color: #f8f8f8;
}
#posts-slider .featured-slider .entry-title {
    margin-bottom: 3px;
    font-size: 24px;
}
#posts-slider .featured-slider .entry-content p {
    margin: 15px 0;
}
.author-wrapper {
    display: flex;
    margin-top: 20px;
}
.author-details h3 {
    margin: 0;
    font-size: 16px;
}
.author-details span {
    color: #e6432a;
}
.author-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-right: 15px;
    border-radius: 60px;
}
.slider-related-posts.widget_recent_news.col-2 > ul > li {
    margin-bottom: 30px;
}
#related-posts {
    margin-bottom: 43px;
}
#related-posts .col-4 {
	margin: 0 -15px;
}
#related-posts .col-4 article {
	padding: 0 15px;
	margin-bottom: 50px;
}
#related-posts .col-4 article:last-child {
	margin-bottom: 0;
}
#related-posts .featured-image {
    padding: 115px 0;
}
#media-posts {
    margin-bottom: 43px;
}
#media-posts .half-width,
.media-posts-wrapper.col-2 {
    margin-bottom: 30px;
}
#media-posts .half-width:last-child,
.media-posts-wrapper.col-2:last-child {
    margin-bottom: 0;
}
#media-posts .overlay {
    opacity: 0.5;
}
#media-posts .video-button {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.video-button svg {
    width: 20px;
    height: 20px;
    fill: #fff;
}
.widget_posts_slider .slick-arrow,
#posts-slider .slick-arrow,
#recipe-slider .slick-arrow {
    top: -45px;
}
.widget_posts_slider .slick-prev,
#posts-slider .slick-prev,
#recipe-slider .slick-prev {
	left: auto;
	right: 40px;
}
#secondary .read-more,
#secondary-sidebar .read-more {
	color: #e6432a;
}
#secondary .read-more:hover,
#secondary-sidebar .read-more:hover,
#secondary .read-more:focus,
#secondary-sidebar .read-more:focus {
	color: #171616;
}



/*--------------------------------------------------------------
#  Archive / Blog
--------------------------------------------------------------*/
.entry-meta {
    margin-bottom: 3px;
    padding: 0;
}
.entry-meta > span {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    font-size: 18px;
}
.post-categories :not(:last-child):after {
	content: ",";
	padding: 0 8px;
}
.entry-meta > span:not(:last-child) {
	padding-right: 20px;
}
/*.entry-meta > span:not(:first-child):before {
    content: ".";
    margin: 0;
    color: #808080;
    position: absolute;
    left: -13px;
    bottom: 5px;
}*/
.entry-meta>span:last-child:after {
	content: unset;
}
.byline,
.byline a {
	font-size: 16px;
    color: #171616;
    text-decoration: none;
}
.byline a:hover,
.byline a:focus {
	color: #e6432a;
}
.archive-blog-wrapper article:not(:last-child) {
    margin-bottom: 30px;
}
/*--------------------------------------------------------------
#  Single Post
--------------------------------------------------------------*/
.single .featured-image {
    margin-bottom: 30px;
    position: relative;
}
.single #primary article .entry-title {
    font-size: 28px;
    margin: 14px 0;
}
.no-sidebar .archive-blog-wrapper .col-3 {
	margin: 0 -15px;
}
.no-sidebar .archive-blog-wrapper article {
    display: block;
}
.no-sidebar .archive-blog-wrapper article .featured-image {
    width: 100%;
    position: relative;
    padding: 200px 0;
    display: block;
    height: auto;
}
.no-sidebar .archive-blog-wrapper article .entry-container {
    padding: 43px 0px;
    width: 100%;
    display: block;
}
.related-slider .featured-image {
    margin-bottom: 20px;
}
.related-slider article {
    padding: 0 15px;
}
#realted-post {
    padding-top: 50px;
}
.related-slider {
    margin: 0 -15px;
}
.single #primary .related-slider article .entry-title {
    font-size: 18px;
    margin: 0;
}
.related-slider .slick-prev, 
.related-slider .slick-next {
	top: -40px;
}
.related-slider .slick-prev {
    left: auto;
    right: 55px;
}
.related-slider .slick-next {
    right: 15px;
}
.wp-block-latest-comments a {
	box-shadow: none;
}
em.comment-awaiting-moderation {
    display: none;
}
/*--------------------------------------------------------------
# 					Footer
--------------------------------------------------------------*/
#colophon {
    background-color: #211c1b;
    color: #fff;
}
#colophon ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.custom-menu ul li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 25px;
}
.custom-menu ul li:last-child {
	margin-right: 0;
}
.widget_featured_post ul li .entry-title {
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
}
#colophon ul li,
#colophon ul li a {
	color: #fff;
}
#colophon ul li a {
	text-decoration: none;
}
#colophon .cat-links li {
	margin-bottom: 0;
	margin-right: 3px;
    width: auto;
}
#colophon .widget-header {
	border-color: #383332;
}
#colophon .cat-links a,
#colophon .widget-title, 
#colophon .widgettitle,
#colophon .textwidget p,
#colophon .widget.widget_block h1,
#colophon .widget.widget_block h2,
#colophon .widget.widget_block h3,
#colophon .widget.widget_block h4 {
	color: #fff;
}
#colophon .textwidget p {
	margin: 0;
	font-size: 24px;
}
#colophon .site-info a {
	color: #fff;
	text-decoration: none;
}
#colophon .site-info a:hover,
#colophon .site-info a:focus {
	color: #e6432a;
}
#colophon ul li .entry-meta a:hover {
	color: #fff;
}
#colophon ul li .posted-on a,
#colophon .jetpack_subscription_widget p {
    color: #808080;
}
#colophon .jetpack_subscription_widget input[type="email"] {
    width: 100%;
    min-height: 50px;
    padding: 2px 60px 0 10px;
    background-color: #383332;
    border: none;
    color: #fff;
    border: 1px solid #383332;
}
#colophon .jetpack_subscription_widget button[type="submit"] {
	background-color: #fff;
}
#colophon .jetpack_subscription_widget button[type="submit"]:hover,
#colophon .jetpack_subscription_widget button[type="submit"]:focus {
	background-color: #000;
}
#colophon .jetpack_subscription_widget #subscribe-submit svg {
    fill: #e6432a;
}
#colophon ul li .posted-on a:hover,
#colophon ul li .posted-on a:focus,
#colophon ul li .tag-links a,
.dark-version #colophon ul li .tag-links a,
.dark-version .tag-links a {
    color: #e6432a;
}
#colophon .cat-links a {
    color: #e6432a;
}
.footer-widgets-area.page-section {
    padding-bottom: 0;
}
#colophon .widget_text .textwidget {
    color: rgba(255, 255, 255, 0.60);
}
#colophon ul li a:hover,
#colophon ul li a:focus {
	color: #e6432a;
}
#colophon .cat-links a:hover,
#colophon .cat-links a:focus {
	opacity: 1;
}
.footer-widgets-area .wrapper {
    border-bottom: 1px solid #383332;
}

.footer-widgets-area .entry-title {
    font-size: 15px;
}
#colophon  .widget_hot_topic .entry-title {
    margin-bottom: 0;
}
.widget_hot_topic .hot-topic-wrapper {
    display: table;
    position: relative;
    align-items: center;
    width: 100%;
}
#colophon  .widget_hot_topic .featured-image {
    width: 30%;
    position: absolute;
    display: table-cell;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
#colophon  .widget_hot_topic .entry-container {
    text-align: unset;
    width: 70%;
    display: table-cell;
    padding: 0 10px;
}
#colophon  .widget_featured_post .entry-container {
    padding: 5px 0;
    display: table-cell;
    text-align: left;
    padding-left: 120px;
}
.widget_categories li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#colophon .widget_categories li {
    margin-bottom: 8px;
}
#colophon .widget_categories li:last-child {
    margin-bottom: 0;
}
#colophon .footer-widgets-area .widget.widget_featured_post > ul > li {
    margin-bottom: 7px;
}
.footer-widgets-area ul li {
    font-weight: 500;
}
#colophon .footer-widgets-area .widget > ul > li:last-child,
#colophon .footer-widgets-area .widget.widget_featured_post > ul > li:last-child {
	margin-bottom: 0;
}
#colophon .widget_recent_entries ul li span {
    display: block;
    font-size: 16px;
}
#colophon .widget_recent_entries ul li span:before {
	content: "";
    background-image: url('assets/images/clock.svg');
    background-position: 50%;
    background-size: contain;
    display: inline-block;
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 10px;
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
    -o-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.site-info .social-icons {
    display: inline-block;
}
#colophon .site-info-wrapper ul.social-icons {
    padding: 22px 0;
}
.site-info {
    text-align: center;
    position: relative;
}
.site-info-wrapper {
    padding: 50px 0;
}
.site-info span {
	display: inline-block;
	text-align: center;
    color: #808080;
}
.site-info span > span {
	color: #e6432a;
}
.site-info span:last-child {
    margin-bottom: 0;
}
.site-info .wrapper {
	padding: 15px 0;
}
.custom-menu {
    margin-bottom: 15px;
}
.footer-widgets-area .widget ul li:last-child,
.footer-widgets-area .widget .social-icons li {
	margin-bottom: 0;
}
.footer-widgets-area .hentry {
	margin-bottom: 45px;
}
.footer-widgets-area.col-1 .hentry {
    text-align: center;
}
.footer-widgets-area.col-1 .hentry:last-child {
	margin-bottom: 0;
}
.footer-widgets-area.col-1 .textwidget img {
    margin-left: auto;
    margin-right: auto;
}
.footer-widgets-area.col-1 {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}
.widget li:before, .widget li:after,
.tab li:before, .tab li:after {
    content: "";
    clear: both;
    display: table;
}
#colophon .social-icons li a svg {
	fill: #908e8d;
}
#colophon .social-icons li a:hover svg,
#colophon .social-icons li a:focus svg {
	fill: #fff;
}
.site-logo img {
	-webkit-filter: brightness() invert(1);
    -moz-filter: brightness() invert(1);
    -ms-filter: brightness() invert(1);
    -o-filter: brightness() invert(1);
    filter: brightness() invert(1);
}

/*--------------------------------------------------------------
#  woocommerce
--------------------------------------------------------------*/
.product-filtering {
    margin-top: -15px;
}
ul.product-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    text-align: center;
    display: inline-block;
}
ul.product-nav li {
    text-align: center;
    float: left;
}
ul.product-nav li a {
    display: block;
    color: #000;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
}

.woocommerce ul.products li.product .onsale,
.woocommerce span.onsale {
    right: auto;
    left: 25px;
    top: 10px;
    margin: 0;
    min-width: auto;
    min-height: auto;
    padding: 0;
    background-color: #dd9c1e;
    border-radius: 0;
    line-height: 1.3;
    padding: 4px 11px;
    font-weight: 400;
}
.product_meta a {
    color: #797973;
    text-transform: uppercase;
}
.product_meta a:hover,
.product_meta a:focus,
.woocommerce div.product p.price, 
.woocommerce div.product span.price {
    color: #fff;
}
.woocommerce div.product p.price del {
	color: #797973;
    margin-right: 5px;
}
.woocommerce div.product .product_meta > span {
    display: block;
}
.woocommerce ul.products li.product .woocommerce-loop-category__title, 
.woocommerce ul.products li.product .woocommerce-loop-product__title, 
.woocommerce ul.products li.product h3 {
    font-weight: 600;
    font-size: 16px;
}
.woocommerce ul.products li.product .price {
    color: #fff;
}
.woocommerce ul.products li.product .price {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}
.woocommerce ul.products li.product .price del {
    color: #797973;
    opacity: 1;
    font-weight: 400;
    margin-right: 3px;
}
.woocommerce ul.products li.product a img {
    margin-bottom: 20px;
}
.woocommerce ul.products li.product .button {
    margin-top: 5px;
}
.woocommerce #respond input#submit, 
.woocommerce a.button, 
.woocommerce button.button, 
.woocommerce input.button {
    padding: 8px 30px;
    font-weight: 500;
    line-height: 28px;
    display: inline-block;
    position: relative;
    text-align: center;
    border: 1px solid #010101;
    background-color: transparent;
    color: #010101;
    text-transform: uppercase;
    border-radius: 0;
    -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;
}
.woocommerce #respond input#submit:hover, 
.woocommerce a.button:hover, 
.woocommerce button.button:hover, 
.woocommerce input.button:hover {
	border-color: #393d46;
	background-color: #393d46;
	color: #fff;
}
.woocommerce #popular-products ul.products li.first, 
.woocommerce-page #popular-products ul.products li.first {
	clear: none;
}
.woocommerce #popular-products ul.products, 
.woocommerce-page #popular-products ul.products {
	margin: 0 -15px;
}
.woocommerce #popular-products ul.products li.product, 
.woocommerce-page #popular-products ul.products li.product {
	margin: 0;
	padding: 0 15px;
}
.woocommerce ul.products li.product, 
.woocommerce-page ul.products li.product {
	margin: 0;
	margin-bottom: 40px;
	padding: 0 15px;
	width: 100%;
}
@media screen and (min-width: 567px)  {
	.woocommerce ul.products li.product, 
	.woocommerce-page ul.products li.product {
		width: 50%;
	}
	.comment-metadata {
		margin-top: -30px;
	}
}
@media screen and (min-width: 767px)  {
	.woocommerce ul.products li.product, 
	.woocommerce-page ul.products li.product {
		width: 33.33%;
	}
}


@media screen and (min-width: 1200px)  {
	.woocommerce ul.products li.product, 
	.woocommerce-page ul.products li.product {
		width: 25%;
	}
}

.logged-in-as a {
    text-decoration: none;
}
/*--------------------------------------------------------------
# 					RESPONSIVE
--------------------------------------------------------------*/
@media screen and (min-width: 567px) {
	.col-2,
	.col-3,
	.col-4,
	.col-5,
	.col-6 {
		margin: 0 -15px;
	}
	.col-2 article,
	.col-3 article,
	.col-4 article,
	.col-5 article,
	.col-6 article {
		padding: 0 15px;
		float: left;
		width: 50%;
		margin-bottom: 30px;
	}
	.col-2 article:nth-child(2n+1),
	.col-3 article:nth-child(2n+1),
	.col-4 article:nth-child(2n+1),
	.col-5 article:nth-child(2n+1),
	.col-6 article:nth-child(2n+1) {
		clear: left;
	}
	.col-2 article:nth-last-child(-n+2),
	.col-3 article:nth-last-child(-n+2),
	.col-4 article:nth-last-child(-n+2),
	.col-5 article:nth-last-child(-n+2),
	.col-6 article:nth-last-child(-n+2) {
		margin-bottom: 0;
	}
	.site-logo img {
	    max-height: 65px;
	    width: auto;
	}
	#single-column-news article,
	.archive-blog-wrapper article {
	    display: table;
	    width: 100%;
	    position: relative;
	}
	#single-column-news article .featured-image,
	.archive-blog-wrapper article .featured-image {
	    width: 47.85%;
	    margin-bottom: 0;
	    padding: 0;
	    height: 100%;
	    position: absolute;
	    top: 0;
	    left: 0;
	    display: table-cell;
	}
	#single-column-news article .entry-container,
	.archive-blog-wrapper article .entry-container {
	    width: 52.15%;
	    display: table-cell;
	    padding: 25px 0 25px 20px;
	}
	#media-posts .media-posts-wrapper.col-2 {
	    margin-bottom: 30px;
	}
	#media-posts .media-posts-wrapper.col-2:last-child {
		margin-bottom: 0;
	}
	#media-news .grid article:nth-child(1n),
	#media-news .grid article:nth-child(3n),
	#media-news .grid article:nth-child(4n),
	#media-news .grid article:nth-child(5n) {
	    width: 50%;
	}
	#most-viewed-posts .col-2 {
	    margin: 0 -15px;
	}
	#most-viewed-posts .col-2 article,
	#related-posts .col-2 article,
	#related-posts .col-3 article,
	#related-posts .col-4 article {
	    width: 50%;
	    float: left;
	    padding: 0 15px;
	}
	#most-viewed-posts .col-2 article:nth-child(2n+1),
	#related-posts .col-2 article:nth-child(2n+1),
	#related-posts .col-3 article:nth-child(2n+1),
	#related-posts .col-4 article:nth-child(2n+1) {
		clear: left;
	}
	#related-posts .col-2 article:nth-last-child(-n+2),
	#related-posts .col-3 article:nth-last-child(-n+2),
	#related-posts .col-4 article:nth-last-child(-n+2) {
		margin-bottom: 0;
	}
	.footer-widgets-area.col-2 .hentry,
	.footer-widgets-area.col-4 .hentry {
		width: 50%;
		float: left;
	}
	.footer-widgets-area.col-2 .hentry:nth-child(2n+1),
	.footer-widgets-area.col-4 .hentry:nth-child(2n+1) {
		clear: left;
	}
	.footer-widgets-area.col-2 .hentry:nth-child(odd),
	.footer-widgets-area.col-4 .hentry:nth-child(odd) {
		padding-right: 34px;
	}
	.footer-widgets-area.col-2 .hentry:nth-last-child(-n+2),
	.footer-widgets-area.col-4 .hentry:nth-last-child(-n+2) {
		margin-bottom: 0;
	}
}
@media screen and (min-width: 767px) {
	.col-1 .hentry {
        width: 100%;
    }
    .col-2 .hentry {
        width: 50%;
        float: left;
    }
    .col-3 .hentry {
        width: 33.33%;
        float: left;
    }
    .col-4 .hentry {
        width: 50%;
        float: left;
    }
    .col-5 .hentry {
        width: 20%;
        float: left;
    }
    .col-6 .hentry {
        width: 16.66%;
        float: left;
    }
	.col-5 article,
	.col-6 article {
		width: 33.33%;
	}
	.col-5 article:nth-child(2n+1),
	.col-6 article:nth-child(2n+1) {
		clear: none;
	}
	.col-5 article:nth-child(3n+1),
	.col-6 article:nth-child(3n+1) {
		clear: left;
	}
	.col-5 article:nth-last-child(-n+3),
	.col-6 article:nth-last-child(-n+3) {
		margin-bottom: 0;
	}
	.site-branding + .site-advertisement {
	    margin-top: 0;
	}
	#featured-posts .featured-post-wrapper {
	    padding: 215px 0;
	}
	#latest-posts .half-width {
	    width: 33.6%;
	}
	#latest-posts .full-width {
	    width: 66.4%;
	}
	.full-width.grid-layout .entry-title {
	    font-size: 28px;
	}
	.no-sidebar .archive-blog-wrapper.col-3 article {
	    width: 33.33%;
	    float: left;
	    padding: 0 15px;
	}
	#popular-posts article .entry-container {
	    padding: 47px 0 47px 30px;
	}
	.slider-related-posts.widget_recent_news.col-2 > ul {
		margin: 0 -15px;
	}
	.slider-related-posts.widget_recent_news.col-2 > ul > li {
	    width: 50%;
	    float: left;
	    padding: 0 15px;
	}
	.thumbnail-wrapper.col-4 article {
	    width: 50%;
	    float: left;
	    margin-bottom: 0;
	}
	.slider-related-posts.widget_recent_news.col-2 > ul > li:nth-child(2n+1) {
		clear: left;
	}
	#posts-slider .featured-slider .featured-image,
	.featured-news {
	    width: 47%;
	    display: table-cell;
	}
	#posts-slider .featured-slider .entry-container {
	    width: 53%;
	    display: table-cell;
	}
	.tab {
		width: 53%;
		display: table-cell;
		padding-left: 30px;
		margin-top: 0;
	}
	#media-posts .col-2 {
		margin: 0 -15px;
	}
	#media-posts .col-2 .half-width {
	    width: 50%;
	    float: left;
	    padding: 0 15px;
	}
	#media-posts .media-posts-wrapper.col-2 {
	    margin-bottom: 30px;
	}
	#media-posts .media-posts-wrapper.col-2:last-child {
		margin-bottom: 0;
	}
	.comment-navigation .nav-previous, 
	.posts-navigation .nav-previous, 
	.post-navigation .nav-previous {
	    padding-right: 25px;
	}
	.comment-navigation .nav-next, 
	.posts-navigation .nav-next, 
	.post-navigation .nav-next {
		padding-left: 25px;
	}
	.footer-widgets-area.col-3 .hentry {
		margin-bottom: 0;
		width: 33.33%;
		float: left;
	}
	.footer-widgets-area.col-3 .hentry:not(:last-child) {
		padding-right: 40px;
	}
}
@media screen and (min-width: 992px) {
	.col-4 .hentry  {
        width: 25%;
        float: left;
    }
    .col-5 .hentry {
        width: 20%;
        float: left;
    }
    .col-4 article {
		width: 25%;
	}
	.col-5 article {
		width: 20%;
	}
	.col-6 article {
		width: 16.66%;
	}
    .col-4 article:nth-child(2n+1),
	.col-5 article:nth-child(3n+1),
	.col-6 article:nth-child(3n+1) {
		clear: none;
	}
	.col-4 article:nth-child(4n+1),
	.col-5 article:nth-child(5n+1),
	.col-6 article:nth-child(6n+1) {
		clear: left;
	}
	.col-5 article:nth-last-child(-n+5),
	.col-6 article:nth-last-child(-n+6) {
		margin-bottom: 0;
	}
	.archive-blog-wrapper article .archive-post-wrapper .entry-container {
		padding: 43px 50px;
	}
	.archive-blog-wrapper article .featured-image {
		width: 40.6%;
	}
	.archive-blog-wrapper article .entry-container {
		padding: 43px 50px;
		width: 59.4%;
	}
	.no-sidebar .comment-form-author, 
	.no-sidebar .comment-form-email, 
	.no-sidebar .comment-form-url {
	    width: 33.33%;
	    float: left;
	}
	.no-sidebar .comment-form-author input, 
	.no-sidebar .comment-form-email input {
	    max-width: 93%;
	}
	.site-info.col-2 span {
	    width: 50%;
	    float: left;
	    text-align: left;
	    margin-bottom: 0;
	}
	.site-info.col-2 span:nth-child(2) {
	    width: 50%;
	    float: right;
	    text-align: right;
	}
}
@media screen and (min-width: 1025px) {
	.col-3 article{
		width: 33.33%;
	}
	.col-3 article:nth-child(2n+1) {
		clear: none;
	}
	.col-3 article:nth-child(3n+1) {
		clear: left;
	}
	.col-3 article:nth-last-child(-n+3) {
		margin-bottom: 0;
	}
	#top-navigation .main-navigation ul {
	    float: left;
	}
	#top-navigation .main-navigation .social-icons ul.menu {
		float: right;
	}
	.main-menu {
		position: relative;
	    z-index: 111;
	    left: 0;
	    right: 0;
	    top: 0;
	    background: black;
	}
	.page-template-default .main-menu{
		position: absolute;
	    z-index: 111;
	    left: 0;
	    right: 0;
	    top: 0;
	    background: transparent;
	}

	#top-navigation {
    	padding: 30px 0;
	}
	.icon-wrapper {
	    float: right;
	}
	.icon-wrapper {
	    float: right;
	    padding: 10px 0;
	    width: 33.33%;
	}
	.icon-wrapper .social-icons,
	.icon-wrapper .contact-info {
	    float: left;
	}
	.site-title {
		font-size: 42px;
	}
	#masthead .social-icons li:not(:last-child) {
	    margin-right: 15px;
	}
	#masthead .social-icons {
	    margin: 0;
	}
	.menu-overlay.active {
		display: none;
	}
	#site-navigation {
		text-align: center;
	}
	#site-navigation.main-navigation {
	    border-top: 1px solid #6a6a6a;
	    border-bottom: 1px solid #6a6a6a;
	}
	.second-design #site-navigation.main-navigation {
	    border-top: unset;
	    border-bottom: unset;
	}
	.site-logo img {
		-webkit-filter: brightness(0) invert(1);
		-moz-filter: brightness(0) invert(1);
		-ms-filter: brightness(0) invert(1);
		-o-filter: brightness(0) invert(1);
		filter: brightness(0) invert(1);
	}
/*	.site-branding-wrapper {
	    clear: both;
	    width: 100%;
	    display: flex;
	    align-items: center;
	}*/
/*	.site-branding {
	    width: 25%;
		float: left;
	    text-align: left;
	    margin: 21px 0;
	}*/
	#top-navigation .site-branding-wrapper {
		display: flex;
		align-items: center;
		margin: 0 auto;
		text-align: center;
		float: none;
	}
	.site-branding-wrapper {
		float: left;
	}
	#masthead .site-branding-wrapper {
		display: none;
	}
	.second-design #masthead .site-branding-wrapper
	.third-design #masthead .site-branding-wrapper
	.fourth-design #masthead .site-branding-wrapper {
		display: block;
	}
	.mid-advertisement {
	    width: 25%;
	    padding: 0 25px;
	}
	.site-advertisement {
	    width: 50%;
	    float: right;
    	text-align: right;
	}
	#top-navigation .posted-on a {
		font-size: 16px;
	}
	#top-navigation .main-navigation .nav-menu li:not(:first-child):after {
	    content: "";
	    background-color: #6a6a6a;
	    position: absolute;
	    width: 1px;
	    height: 20px;
	    top: 17px;
	}
	.icon-wrapper .entry-meta:after {
	    content: "";
	    background-color: #6a6a6a;
	    position: absolute;
	    width: 1px;
	    height: 20px;
	    top: 8px;
	    right: -36px;
	}
	.icon-wrapper .contact-info {
		position: relative;
		float: right
	}
	.icon-wrapper .entry-meta:after {
		margin: 0 18px;
	}
	#top-navigation .main-navigation ul.nav-menu li .entry-meta a {
        padding-right: 30px;
	}
	.main-navigation .social-menu-item ul {
	    position: relative;
	    top: 0;
	    left: 0;
	    z-index: 1;
	    float: none;
	    background-color: transparent;
	    box-shadow: none;
	}
	.main-navigation .social-icons {
		padding-left: 28px;
		float: right;
	}
	.main-navigation .social-menu-item ul li:not(:last-child),
	.main-navigation .social-menu-item ul li a {
	    border: none;
	}
	.main-navigation .social-menu-item .social-icons {
		padding: 5px 0;
	}
	.main-navigation li.social-menu-item {
	    float: right;
	}
	.main-navigation .nav-menu > li > a > svg.icon-down {
		fill: #fff;
	}
	#top-navigation .main-navigation ul.nav-menu > li > a {
		color: #fff;
		padding: 11px 16px;
		position: relative;
	}

	#top-navigation .main-navigation ul.nav-menu > li.contact-info > a {
	    color: #fff;
	}
	#top-navigation .main-navigation ul.nav-menu > li:nth-last-child(-n+2) > a:after {
		display: none;
	}
	#site-menu .search-menu {
		display: none;
	}
	#search-menu a svg {
	    fill: #949494;
	}
	.main-navigation {
        display: block !important;
	}
	.main-navigation a,
	.main-navigation ul.nav-menu > li > a,
	#site-navigation a {
		color: #fff;
	}
	#top-navigation .social-icons li a svg {
		fill: #fff;
	}
	.main-navigation li.menu-item-has-children:hover > a > svg, 
	.main-navigation li.menu-item-has-children > a:hover > svg {
		fill: #000;
	}
	#masthead .main-navigation ul.nav-menu li.current-menu-item > a,
	#masthead .main-navigation ul.nav-menu > li > a:hover,
	.main-navigation ul.nav-menu li:hover > a {
		color: #e6432a;
	}
	.main-navigation ul.nav-menu > li:hover > a > svg,
	.main-navigation ul.nav-menu > li.current-menu-item > a > svg {
		fill: #e6432a;
	 }
	.main-navigation ul.nav-menu,
	.main-navigation {
		display: flex !important;
		align-items: center;
	    height: auto !important;
	}
	#masthead .main-navigation ul.nav-menu,
	#masthead .main-navigation {
		display: block !important;
	    height: auto !important;
	}
	.main-navigation ul li:hover > ul,
	.main-navigation ul li.focus > ul {
		left: 0;
		right: auto;
	}
	.main-navigation ul ul li:hover > ul,
	.main-navigation ul ul li.focus > ul {
		left: 100%;
		right: auto;
	}
	.main-navigation ul.sub-menu li a {
		border-bottom: none;
	}
	.main-navigation ul ul li:not(:last-child) {
	    border-bottom: 1px solid #000;
	}
	.main-navigation ul ul {
	    border: 1px solid #000;
	}
	.main-navigation ul.sub-menu li:hover > a,
	.main-navigation ul.sub-menu li:focus > a {
		color: #e6432a;
	}
	.main-navigation ul.sub-menu > li:last-child > a {
		border-bottom: none;
	}
	.main-navigation li.search-menu {
		display: none;
	}
	#masthead .social-icons li a svg {
		fill: #fff;
	}
	.main-navigation .search-active .icon-search {
		display: none;
	}
	.main-navigation .search-active .icon-close {
		display: inline-block;
	}
	#masthead .main-navigation ul ul li .sub-menu li a,
	#masthead .main-navigation ul li .sub-menu li a,
	#masthead .main-navigation ul ul li.menu-item-has-children > a {
	    padding-right: 35px;
	    color: #000;
	}
	#masthead .main-navigation ul ul li a svg {
	    display: inline-block;
	    top: 17px;
	    -webkit-transform: rotate(-90deg);
	    -moz-transform: rotate(-90deg);
	    -ms-transform: rotate(-90deg);
	    -o-transform: rotate(-90deg);
	    transform: rotate(-90deg);
	}
	.main-navigation ul.nav-menu ul li.current-menu-item > a,
	.main-navigation ul.nav-menu ul li:hover > a,
	.main-navigation ul.nav-menu ul li:focus > a {
	    color: #e6432a;
	}
	.main-navigation ul ul li.menu-item-has-children:hover > a > svg, 
	.main-navigation ul ul li.menu-item-has-children > a:hover > svg {
		fill: #e6432a;
	}
	button.dropdown-toggle,
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
	.main-navigation li {
	    display: inline-block;
	}
	.main-navigation ul.nav-menu > li.menu-item-has-children:hover > a:before {
	    content: "";
	    border-left: 10px solid transparent;
	    border-right: 10px solid transparent;
	    border-bottom: 10px solid #fff;
	    position: absolute;
	    bottom: 0px;
	    left: 0;
	    right: 0;
	    width: 10px;
	    height: 10px;
	    margin: auto;
	}
	.main-navigation .left-menu {
	    padding-left: 50px;
	}
	.main-navigation ul.nav-menu > li.left-menu > a,
	.main-navigation ul.nav-menu > li.right-menu > a {
		padding-left: 5px;
		padding-right: 5px;
	}
	.main-navigation li.left-menu + li.right-menu:before {
	    content: "/";
	    position: absolute;
	    top: 50%;
	    margin-left: -6px;
	    color: #fff;
	    margin-top: -1px;
	    -webkit-transform: translateY(-50%);
	    -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	    -o-transform: translateY(-50%);
	    transform: translateY(-50%);
	}
	.main-navigation .main-navigation-search {
	    float: right;
	    padding: 12px 0;
	}
	.main-navigation form.search-form input {
	    border: none;
	    color: #000;
	    padding: 0 30px;
	    height: 30px;
	    border-radius: 0px;
	    background-color: transparent;
	    box-shadow: none;
	    outline: none;
	    max-width: 359px;
	    padding-left: 30px;
	}
	.main-navigation form.search-form svg.icon-search {
		fill: #000;
	}
	.menu-sticky .nav-shrink #site-navigation {
	    position: fixed;
	    top: 0;
	    left: 0;
	    right: 0;
	    background-color: #1a1a1a;
	}
	.menu-sticky .site-content {
		z-index: -111;
	}
	.customize-support.menu-sticky .nav-shrink #site-navigation {
		top: 20px;
	}
	.nav-shrink .main-navigation {
		padding: 10px 0;
	}
	#top-navigation .main-navigation ul.nav-menu li a {
		font-weight: 400;
	}
	#top-navigation .main-navigation ul.nav-menu > li.current-menu-item > a,
	#top-navigation .main-navigation ul.nav-menu > li > a:hover,
	#top-navigation .main-navigation ul.nav-menu > li:hover > a,
	#top-navigation .main-navigation ul.nav-menu > li > a:focus, 
	#top-navigation .main-navigation ul.nav-menu > li:focus > a {
		color: #e6432a;
	}
	#top-navigation .main-navigation ul.nav-menu > li.current-menu-item > a svg,
	#top-navigation .main-navigation ul.nav-menu > li > a:hover svg,
	#top-navigation .main-navigation ul.nav-menu > li:hover > a svg {
		fill: #e6432a;
	}
	#masthead .main-navigation ul.nav-menu > li.main-navigation-search:before {
		display: none;
	}
	.main-navigation form.search-form ::-webkit-input-placeholder {
		color: #fff;
	}
	#page-site-header .wrapper {
	    position: absolute;
	    left: 0;
	    right: 0;
	    text-align: center;
	    width: 90%;
	    top: 50%;
	    -webkit-transform: translateY(-50%);
	    -moz-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	    -o-transform: translateY(-50%);
	    transform: translateY(-50%);
	}
	#page-site-header .page-title {
		font-size: 54px;
	}
	.no-sidebar nav.navigation.pagination {
	    text-align: center;
	}
	.inner-wrapper-sticky {
	    padding-bottom: 50px;
	    display: block;
	}
	.right-sidebar #primary,
	.left-sidebar #primary {
    	width: 75%;
    	float: left;
	    padding-right: 30px;
    }
    .right-sidebar #secondary,
    .left-sidebar #secondary {
    	width: 25%;
    	float: left;
    }
    .right-sidebar #secondary {
    	padding-left: 15px;
    }
 	.left-sidebar #secondary {
    	padding-right: 15px;
    }
	.left-sidebar #primary {
		padding-left: 30px;
		padding-right: 0;
		float: right;
	}
    .no-sidebar #primary {
    	width: 100%;
    	float: none;
    	padding-right: 0;
    }
    .boxed-layout,
    .frame-layout {
	    background-image: url('assets/images/pattern.png');
	}
    .boxed-layout #page,
    .frame-layout #page {
	    max-width: 1200px;
	    width: 90%;
	    margin-left: auto;
	    margin-right: auto;
	    background-color: #fff;
	}
	.frame-layout #page {
		margin: 50px auto;
	}
	#main-post-wrapper #left-sidebar {
	    width: 25%;
	    float: left;
	    padding-right: 15px;
	}
	#main-post-wrapper #primary {
	    width: 50%;
	    float: left;
	    padding: 0 15px;
	}
	#main-post-wrapper .right-sidebar {
	    width: 25%;
	    float: left;
	    padding-left: 15px;
	}
} 
@media screen and (min-width: 1200px) {
	.page-section {
		padding: 65px 0;
	}
	.thumbnail-wrapper.col-4 article {
	    width: 25%;
	}
	.full-width.grid-layout .featured-image {
	    padding: 250px 0;
	}

	.footer-widgets-area.col-4 .hentry {
	    width: 25%;
		padding-right: 35px;
	}
	.footer-widgets-area.col-5 .hentry {
		width: 20%;
		float: left;
	}
	.footer-widgets-area.col-4 .hentry:last-child {
		padding-right: 0;
	}
	.footer-widgets-area.col-4 .hentry:nth-child(2n+1) {
	    clear: none;
	}
	.footer-widgets-area.col-4 .hentry:nth-child(4n+1),
	.footer-widgets-area.col-5 .hentry:nth-child(5n+1) {
	    clear: left;
	}
	.site-info.col-3 span, 
	.site-info.col-3 .social-icons {
	    width: 20%;
	    float: left;
	}
	.site-info.col-3 span {
	    text-align: left;
	}
	.site-info.col-3 .custom-menu {
	    width: 60%;
	    float: left;
	    text-align: center;
	}
	.site-info.col-3 .social-icons {
	    float: right;
	    text-align: right;
	}
	#masthead #primary-menu {
		padding: 10px 0;
	}
}
@media screen and (min-width: 1900px) {
	.page-section {
		padding: 85px 0;
	}
	p {
		font-size: 18px;
	}
	.wrapper {
	    max-width: 1440px;
	}
	#masthead #primary-menu {
		padding: 15px 0;
	}
	.mid-advertisement {
	    padding: 0;
	}
	#top-navigation .posted-on a {
		font-size: 18px;
	}
	#site-navigation a,
	#secondary-navigation a {
		font-size: 18px;
	}
	#top-navigation .main-navigation ul.nav-menu > li > a {
		padding: 11px 18px;
	}
	.main-navigation ul.nav-menu > li > a {
	    padding: 13px 22px;
	}
	.boxed-layout #page,
	.frame-layout #page {
	    max-width: 1600px;
	}
	.site-info:before {
		max-width: 1410px;
	}
	.site-info.col-3 span, 
	.site-info.col-3 .social-icons {
	    width: 15%;
	}
	.site-info.col-3 .custom-menu {
	    width: 70%;
	}
	#colophon ul li a {
		font-size: 20px;
	}
}
@media screen and (max-width: 1024px) {
	#top-navigation {
	    background-color: #171616;
	}
	#top-navigation .contact-info a {
	    width: 100%;
	    border-bottom: none;
	    color: #000;
	}
	#top-navigation .contact-info .entry-meta {
	    border-bottom: 1px solid #eee;
	}
	.main-navigation a {
	    border-bottom: 1px solid #eee;
	}
	.main-navigation .wrapper {
	    width: 100%;
	    padding: 0;
	}
	.main-navigation ul ul a {
	    width: 100%;
	}
	.main-navigation ul ul,
	.main-navigation ul ul ul {
	    box-shadow: none;
	    float: none;
	    position: relative;
	    top: 0;
	    left: 0;
	    margin-bottom: 0;
	    display: none;
	}
	.main-navigation li.social-icons {
		padding: 10px 15px;
	}
	.main-navigation ul.sub-menu li {
	    padding-right: 0;
	}
	.main-navigation .menu-item-has-children > a:before {
	    content: "";
	    float: right;
	    position: relative;
	    right: 25px;
	    background-color: #ccc;
	    width: 1px;
	    height: 25px;
	}
	.main-navigation .menu-item-has-children > a:after {
	    padding-top: 3px;
	}
	.main-navigation ul.nav-menu > li > a,
	.main-navigation ul.sub-menu li a,
	#top-navigation .contact-info a,
	#top-navigation .icon-wrapper {
	    padding: 15px 15px 15px 25px;
	}
	.main-navigation ul.sub-menu li a {
		padding-left: 50px;
	}
	.main-navigation ul.sub-menu ul li a {
		padding-left: 75px;
	}
	.main-navigation ul.sub-menu ul ul li a {
		padding-left: 100px;
	}
	.main-navigation ul.sub-menu ul ul ul li a {
		padding-left: 125px;
	}
	.main-navigation .menu-item-has-children a svg {
		display: none;
	}
	.main-navigation ul.sub-menu li a {
		border-left: none;
	}
	.main-navigation ul.nav-menu {
	    margin-right: 0;
	    background-color: #fff;
	    border-top: 1px solid #eee;
	}
	.main-navigation {
		position: static;
	}
	.main-navigation a {
		color: #333;
	}
	.main-navigation svg.icon-search,
	.main-navigation svg.icon-down {
		fill: #333;
	    margin-top: -5px;
	}
	.main-navigation ul.sub-menu {
		border: none;
	}
	.main-navigation {
	    margin-top: 0;
	    position: absolute;
	    background-color: #fff;
	    z-index: 30000;
	    max-width: 100%;
	    top: 100%;
	    left: auto;
	    right: 0;
	    width: 100%;
	    display: none;
	}
	#top-navigation .main-navigation {
		display: none;
	}
	.main-navigation .search-menu a {
	    display: none;
	}
	.main-navigation form.search-form input {
	    background-color: #fff;
	    border: none;
	    min-height: 55px;
	}
	.main-navigation form.search-form button.search-submit {
		height: 59px;
	}
	.main-navigation form.search-form input {
		padding-left: 40px;
	}
	.main-navigation .sub-menu svg {
		-webkit-transform: rotate(0);
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		transform: rotate(0);
	    top: 28px;
	}
	#page-site-header {
		padding: 150px 0;
	}
	#secondary {
	    margin-top: 30px;
	}
	body.home:not(.blog) #secondary {
	    margin-top: 0;
	}
	.mid-advertisement {
	    margin: 30px 0;
	}
	.site-branding-container {
	    text-align: center;
	    background: #383838;
	}
	.site-branding-wrapper {
		padding: 10px 0;
	}
}

@media screen and (max-width: 992px) {
	.comments-title, 
	#reply-title {
	    font-size: 28px;
	}
}
@media screen and (max-width: 767px) {
	#masthead.site-header .main-navigation ul.nav-menu {
		max-width: 100%;
	}
	.section-header-wrapper {
	    display: block;
	}
	.comment-navigation .nav-previous, 
	.posts-navigation .nav-previous, 
	.post-navigation .nav-previous,
	.comment-navigation .nav-next, 
	.posts-navigation .nav-next, 
	.post-navigation .nav-next {
		width: 100%;
    	margin: 15px 0;
	}
	.post-navigation span.previous-article b, 
	.post-navigations span.previous-article b, 
	.post-navigation span.next-article b, 
	.post-navigations span.next-article b {
		font-size: 18px;
	}
	.comment-wrap {
	    margin-left: 0;
	}
	#commentform p.comment-form-comment,
	#commentform p.form-submit {
		margin-top: 21px;
	}
	.comments-title, 
	#reply-title {
	    font-size: 26px;
	}
	#comments {
	    margin-top: 40px;
	}
}
@media screen and (max-width: 567px) {
	.site-branding {
	    display: block;
	}
	.site-logo {
	    margin-right: 0;
	}
	.site-logo + #site-identity {
	    margin-top: 20px;
	}
	.pagination .page-numbers.prev, 
	.pagination .page-numbers.next {
		top: 0;
	}
	.pagination .prev.page-numbers:before, 
	.pagination .next.page-numbers:before {
		width: 35px;
		height: 10px;
	}
	.pagination .page-numbers.prev, 
	.pagination .page-numbers.next {
		margin-left: 0;
		margin-right: 0;
	}
	.comment-content {
		margin-left: 0;
	    background-color: #fff;
	    margin-top: 25px;
	    padding: 15px 20px;
	}
	.reply {
		padding-left: 0;
	}
	#comments ol.children {
	    margin-left: 25px;
	}
	.comment-meta .fn {
	    margin-left: 0;
	    margin-top: 10px;
	}
	.footer-widgets-area .hentry:last-child,
	.footer-widgets-area.col-3 .hentry:last-child {
		margin-bottom: 0;
	    padding-right: 0;
	}
}










#top-navigation .social-icons li:not(:last-child) {
    margin-right: 10px;
}
#top-navigation .main-navigation form.search-form {
    min-width: auto;
}
.icon-wrapper .social-icons:after {
    margin: 0 20px;
}
.section-header,
.widget-header {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 25px;
}



/*--------------------------------------------------------------
# 				Second Design
--------------------------------------------------------------*/
.second-design #masthead .wrapper {
	padding: 15px 0;
}
.second-design .site-branding {
    margin-top: 10px;
    float: left;
}
.second-design .site-branding-wrapper {
	float: left;
}
.second-design .menu-toggle {
	width: unset;
	float: right;
}
.second-design #newstation_our_service_section .icon-container a,
.second-design .entry-title a:hover, 
.second-design .entry-title a:focus,
.second-design #newstation_team_section span.team-position,
.second-design .posted-on a:hover, 
.second-design .posted-on a:focus,
.second-design .testimonial-name a,
.second-design #colophon ul li a:hover, 
.second-design #colophon ul li a:focus,
.second-design #colophon ul li .tag-links a,
.second-design .site-info span > span,
.second-design #colophon .site-info a:hover, 
.second-design #colophon .site-info a:focus,
.second-design .main-navigation ul.nav-menu li.current-menu-item > a, 
.second-design .main-navigation ul.nav-menu li:hover > a,
.second-design #site-navigation a:hover,
.second-design #site-navigation a:focus,
.second-design #masthead .main-navigation ul.nav-menu li.current-menu-item > a {
	color: #0056fb;
}
.second-design .backtotop,
.second-design input[type="submit"] {
	background-color: #0056fb;
}
.second-design #colophon .jetpack_subscription_widget #subscribe-submit svg {
	fill: #0056fb;
}
.second-design #newstation_testimonial_section .wrapper {
	border-color: #0056fb;
}
.second-design .btn {
	background-color: #0056fb;
	border: 1px solid #0056fb;
}
.second-design .btn:hover,.second-design .btn:focus {
	background-color: transparent;
	color: #0056fb;
}
.second-design .section-subtitle {
	margin-bottom: 10px;
	font-size: 18px;
}
.second-design .section-header {
	border-bottom: unset;
	margin-bottom: 0;
	margin: 0 auto;
	text-align: center;
	max-width: 700px;
}
.second-design .section-title {
	font-size: 32px;
}
.second-design .testimonial-name a:hover,
.second-design .testimonial-name a:focus {
	color: #000;
}
.second-design input[type="submit"]:hover,
.second-design input[type="submit"]:focus {
	background-color: #333;
}
.second-design #colophon ul li .tag-links a:hover,
.second-design #colophon ul li .tag-links a:focus {
	color: #fff;
}
::placeholder {
	color: #b2afaf !important;
	opacity: 1;
	padding-left: 5px;
	font-size: 15px;
}
@media screen and (min-width: 1025px) {
	.second-design .section-title {
		font-size: 38px;
	}
	.second-design #masthead .wrapper {
		padding: 5px 0;
	}
	.second-design .main-navigation a, 
	.second-design .main-navigation ul.nav-menu > li > a, 
	.second-design #site-navigation a,
	.second-design #masthead .main-navigation ul li .sub-menu li:hover ul a, 
	.second-design #masthead .main-navigation ul li .sub-menu li:focus ul a {
		color: #000;
	}
	.second-design .main-navigation .nav-menu > li > a > svg.icon-down {
    	fill: #000;
	}
	.second-design .main-navigation ul.nav-menu {
		float: right;
	}
	.second-design #masthead .main-navigation ul.nav-menu li.current-menu-item > a, 
	.second-design #masthead .main-navigation ul.nav-menu > li > a:hover, 
	.second-design .main-navigation ul.nav-menu li:hover > a,
	.second-design .main-navigation ul.sub-menu li:hover > a, 
	.second-design .main-navigation ul.sub-menu li:focus > a,
	.second-design #masthead .main-navigation ul li .sub-menu li:hover a, 
	.second-design #masthead .main-navigation ul li .sub-menu li:focus a,
	.second-design #masthead .main-navigation ul li .sub-menu li ul li:hover a, 
	.second-design #masthead .main-navigation ul li .sub-menu li ul li:focus a {
		color: #0056fb;
	}
	.second-design #masthead .main-navigation ul.nav-menu li.current-menu-item > a > svg,
	.second-design .main-navigation ul ul li.menu-item-has-children:hover > a > svg, 
	.second-design .main-navigation ul ul li.menu-item-has-children > a:hover > svg {
		fill: #0056fb;
	}
}

@media screen and (min-width: 1200px) {
	.second-design .section-title {
		font-size: 42px;
	}
}
@media screen and (min-width: 1900px) {
	.second-design .section-title {
		font-size: 48px;
	}
}

/*=================Top Bar===========================*/

#top-bar {
    background-color: #000;
    color: #fff;
    padding: 0;
    min-height: 50px;
    z-index: 3;
}
#top-bar .contact-info {
	list-style: none;
	margin: 0;
    padding: 10px 0;
}
#top-bar .contact-info li a:not(:last-child):after {
    content: ",";
}
#top-bar .contact-info a {
	color: #fff;
    font-size: 16px;
}
#top-bar .contact-info a:hover,
#top-bar .contact-info a:focus {
    opacity: 0.9;
}
#top-bar .contact-info a:hover svg,
#top-bar .contact-info a:focus svg {
    fill: #fff;
}
#top-bar .contact-info svg {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}
#top-bar .contact-info span {
	display: inline-block;
	vertical-align: middle;
}
#top-bar svg.icon-up,
#top-bar svg.icon-down {
    margin: auto;
    display: block;
    cursor: pointer;
    fill: #fff;
}
#top-bar ul {
    padding: 0;
    margin: 0;
}
#top-bar svg.icon-up,
#top-bar.top-menu-active svg.icon-down {
    display: none;
}
#top-bar.top-menu-active svg.icon-up {
    display: block;
}
.secondary-menu {
    float: right;
}
#top-bar ul li {
    float: left;
    list-style: none;
    font-size: 16px;
    font-family: 'Open Sans', sans-serif;
}
#top-bar .col-1 .hentry {
    text-align: center;
}
#top-bar .col-1 ul li {
	float: none;
	display: inline-block;
}
#top-bar .col-1 .secondary-menu {
	float: none;
}
.secondary-menu a {
    color: #738f9d;
}
#top-bar svg {
	fill: #fff;
}
#top-bar .social-icons li a svg {
    width: 18px;
    height: 18px;
}
#top-bar ul.social-icons li {
	margin-right: 15px;
}
#top-bar ul.social-icons li:last-child {
	margin-right: 0;
}
#top-bar ul.social-icons li a:hover svg,
#top-bar ul.social-icons li a:focus svg {
	fill: #fff;
}
#top-bar .wrapper {
    display: none;
    padding-top: 15px;
    margin-top: 8px;
}
#top-bar {
    cursor: pointer;
    min-height: auto;
    padding: 10px;
    background-color: #000;
}
#top-bar ul li {
    float: none;
    text-align: center;
}
#top-bar .col-2 .hentry {
    width: 100%;
}
#top-bar .secondary-menu {
    float: none;
    text-align: center;
    padding: 10px 0;
}
#top-bar.top-menu-active:before {
    content: "";
    background-color: #fff;
    opacity: 0.4;
    position: absolute;
    top: 35px;
    width: 100%;
    left: 0;
    height: 1px;
}

@media screen and (min-width: 1025px) {
    #top-bar.top-menu-active:before {
        content: unset;
    }
    #top-bar {
        padding: 0;
    }
    #top-bar svg.dropdown-icon {
        display: none !important;
    }
    #top-bar .col-2 .hentry {
        width: 50%;
        float: left;
    }
    #top-bar .wrapper {
        display: block !important;
        height: auto !important;
        padding-top: unset;
        margin-top: unset;
    }
    #top-bar ul li {
        float: left;
    }
    #top-bar .contact-info li:not(:last-child) {
        margin-right: 50px;
    }
    #top-bar .secondary-menu {
        float: right;
    }
}

/*=================Hero Banner===========================*/

#newstation_hero_banner_section .hero-banner-wrapper-post article {
	padding: 300px 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	position: relative;
}
#newstation_hero_banner_section .wrapper {
	position: relative;
	padding-top: 250px;
}
#newstation_hero_banner_section .post-categories a {
	color: #fff;
	background-color: #e6432a;
	padding: 5px 12px;
	font-size: 14px;
	font-weight: 400;
	border-radius: 25px;
}
#newstation_hero_banner_section .post-categories a:hover,
#newstation_hero_banner_section .post-categories a :focus {
	background-color: #fff;
	color: #e6432a;
}
#newstation_hero_banner_section .hero-banner-wrapper-post .entry-title a {
	font-weight: 700;
	color: #fff;
	font-size: 36px;
}
#newstation_hero_banner_section ul.post-categories {
    margin-bottom: 8px;
}
#newstation_hero_banner_section .hero-banner-wrapper-post .posted-on a,
#newstation_hero_banner_section .hero-banner-wrapper-post span.min-read,
#newstation_hero_banner_section .hero-banner-wrapper-post span.tag-links a:hover,
#newstation_hero_banner_section .hero-banner-wrapper-post span.tag-links a:focus {
	color: #fff;
}
#newstation_hero_banner_section .hero-banner-wrapper-post .posted-on a:hover,
#newstation_hero_banner_section .hero-banner-wrapper-post .posted-on a:focus,
#newstation_hero_banner_section .hero-banner-wrapper-post .entry-title a:hover,
#newstation_hero_banner_section .hero-banner-wrapper-post .entry-title a:focus {
	color: #e6432a;
}
#newstation_hero_banner_section .entry-meta span {
	position: relative;
}
#newstation_hero_banner_section .entry-meta > span:not(:last-child) {
	padding-right: 15px;
}
#newstation_hero_banner_section .entry-meta > span:not(:first-child):before {
	margin: 0 5px;
	color: #fff;
	position: absolute;
    bottom: 3px;
    left: -15px;
}
#newstation_hero_banner_section  ul.tabs.hero-banner-post li {
	margin-bottom: 50px;
}
#newstation_hero_banner_section  ul.tabs.hero-banner-post .post-categories li {
	margin-bottom: 0;
}
#newstation_hero_banner_section ul.tabs.hero-banner-post:before {
	content: "";
	background-color: #e6432a;
	position: absolute;
	height: 100px;
    width: 3px;
    top: 0;
    right: 0;
    z-index: 1;
}
#newstation_hero_banner_section ul.tabs.hero-banner-post {
	padding: 0;
	position: relative;
	max-width: 320px;
}
#newstation_hero_banner_section ul.tabs.hero-banner-post li.active {
	opacity: 1;
	display: none;
}
#newstation_hero_banner_section .hero-banner-wrapper .entry-title {
    font-size: 18px;
    color: #fff;
    margin: 0 0 2px 0;
    letter-spacing: 0.035em;
    font-weight: bold;
    line-height: 1.5;
    font-family: 'Philosopher', sans-serif;
}
#newstation_hero_banner_section ul.tabs.hero-banner-post li:before {
    content: "";
    position: absolute;
    height: 175px;
    width: 3px;
    background-color: #fff;
    right: 0px;
    top: 0px;
}
#newstation_hero_banner_section ul.tabs.hero-banner-post .post-categories li:before {
	content: unset;
}
#newstation_hero_banner_section .slick-dots li.slick-active:before {
	display: none;
}
#newstation_hero_banner_section  ul.tabs.hero-banner-post li {
	list-style: none;
	position: relative;
	padding-right: 18px;
}
#newstation_hero_banner_section  ul.tabs.hero-banner-post li .entry-title a {
	color: #fff;
}
#newstation_hero_banner_section  ul.tabs.hero-banner-post li .post-categories a {
	font-size: 13px;
	font-weight: 700;
	text-transform: uppercase;
	font-family: 'Lato', sans-serif;
	margin-bottom: 0px;
	background-color: unset;
	padding: 0;
}
#newstation_hero_banner_section  ul.tabs.hero-banner-post li .posted-on a,
#newstation_hero_banner_section  ul.tabs.hero-banner-post li span.min-read,
#newstation_hero_banner_section  ul.tabs.hero-banner-post li span.tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	font-family: 'Lato', sans-serif;
	color: #fff;
}
#newstation_hero_banner_section .hero-banner-wrapper {
	text-align: left;
	position: absolute;
	right: 0;
	top: 3%;
	transform: translate(-10%, -50%);
	z-index: 1111;
}
#newstation_hero_banner_section .hero-banner-wrapper-post .hero-full-width {
	text-align: center;
	max-width: 600px;
	margin: 0 auto;
}
#newstation_hero_banner_section ul.tabs.hero-banner-post {
	width: 320px;
}
#newstation_hero_banner_section ul.tabs.hero-banner-post li {
	padding-right: 18px;
	width: 320px;
}
#newstation_hero_banner_section ul.tabs.hero-banner-post li.active {
	width: unset;
}
#newstation_hero_banner_section ul.tabs.hero-banner-post li .post-categories li {
	width: unset;
}
.featured-news-sidebar ul.post-categories {
	margin-bottom: unset;
	display: inline-flex;
    vertical-align: bottom;
}

@media screen and (min-width: 992px) {
	#newstation_hero_banner_section .wrapper {
		padding-top: 170px;
	}
}
@media screen and (min-width: 1025px) {
	#newstation_hero_banner_section .hero-banner-wrapper-post article {
        padding: 300px 0;
    }
    #newstation_hero_banner_section .hero-banner-wrapper-post .hero-full-width {
    	text-align: left;
    	margin: 0;
    	max-width: 450px;
    }
    #newstation_hero_banner_section .hero-banner-wrapper {
    	right: 0%;
    }
    #newstation_hero_banner_section ul.tabs.hero-banner-post {
    	width: 320px;
    }
    #newstation_hero_banner_section ul.tabs.hero-banner-post li {
		padding-right: 18px;
		width: 320px;
	}
	#newstation_hero_banner_section ul.tabs.hero-banner-post li.active {
		width: unset;
	}
 	#newstation_hero_banner_section ul.tabs.hero-banner-post li .post-categories li {
		width: unset;
	}
	#newstation_hero_banner_section .hero-banner-wrapper {
		text-align: left;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translate(-50%, -50%);
		z-index: 1;
	}
}
@media screen and (min-width: 1200px) {
	#newstation_hero_banner_section .hero-banner-wrapper-post .entry-title a {
		font-size: 48px;
	}
	#newstation_hero_banner_section .hero-banner-wrapper-post article {
        padding: 350px 0;
    }
	#newstation_hero_banner_section .slick-dots li,
	#newstation_hero_banner_section .slick-dots:before {
    	display: block;
    }
    #newstation_hero_banner_section .hero-banner-wrapper-post .hero-full-width {
    	max-width: 600px;
    }
    #newstation_hero_banner_section .wrapper {
		padding-top: 0;
	}
}
@media screen and (min-width: 1900px) {
	#newstation_hero_banner_section .hero-banner-wrapper-post .entry-title a {
		font-size: 52px;
	}
	#newstation_hero_banner_section  .hero-banner-wrapper-post .hero-full-width {
		width: 620px;
	}
	#newstation_hero_banner_section .hero-banner-wrapper-post article {
		background-position: top;
	}
	#newstation_hero_banner_section .hero-banner-wrapper .entry-title {
		font-size: 20px;
	}
	#newstation_hero_banner_section  ul.tabs.hero-banner-post li .posted-on a,
	#newstation_hero_banner_section  ul.tabs.hero-banner-post li span.min-read {
		font-size: 18px;
	}
	#newstation_hero_banner_section  ul.tabs.hero-banner-post li .post-categories a {
		font-size: 15px;
	}
	#newstation_hero_banner_section ul.tabs.hero-banner-post li:before {
		height: 250px;
	}
	#newstation_hero_banner_section .hero-banner-wrapper {
		right: 8%;
	}
	#newstation_hero_banner_section ul.tabs.hero-banner-post li {
		padding-right: 42px;
	}
	#newstation_hero_banner_section ul.tabs.hero-banner-post {
    	width: 360px;
    }
}

/*================breaking news====================*/

#newstation_breakingnews_section .news-title {
    font-size: 14px;
    background-color: #e6432a;
    color: #fff;
    display: inline-block;
    padding: 12px 16px;
    text-transform: uppercase;
    position: relative;
    margin: 0 45px 0 0;
    font-weight: 700;
    line-height: 1;
    font-family: 'Lato', sans-serif;
}
.breaking-news-item-wrapper {
    background-color: #fff;
}
#newstation_breakingnews_section .breaking-news-wrapper {
    display: table;
    position: relative;
    align-items: center;
    width: 100%;
}
#newstation_breakingnews_section .featured-image {
    width: 30%;
    position: absolute;
    display: table-cell;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
#newstation_breakingnews_section .entry-container {
    text-align: unset;
    width: 70%;
    display: table-cell;
    padding: 0 15px;
}
.breaking-news-slider article {
    margin-top: 0px;
    padding: 0 10px;
}
.breaking-news-slider {
    padding: 15px;
}
#newstation_breakingnews_section .entry-title a {
    font-size: 16px;
}



@media screen and (min-width: 1025px) {
    #newstation_hero_banner_section {
        position: relative;
    }
    #newstation_breakingnews_section {
        padding: 0;
    }
    #newstation_breakingnews_section .wrapper {
        position: absolute;
        bottom: 40px;
        left: 0;
        right: 0;
    }
    .breaking-news-slider {
        background-color: #fff;
    }
}
@media screen and (min-width: 1900px) {
    #newstation_breakingnews_section .entry-title a {
        font-size: 20px;
    }
}

/*============featured news===================*/

.featured-news-post .entry-meta {
    margin-bottom: 15px;
}
.featured-news-post .tab-content {
    display: none;
}
.featured-news-post .tab-content.active {
    display: block;
}
.featured-news-side-post ul {
    margin: 0;
    padding: 0;
    list-style: none;
    margin-bottom: 6px;
}
.featured-news-side-post > ul > li:not(:last-child) {
    margin-bottom: 25px;
}
.featured-news-side-post > ul > li:before, 
.featured-news-side-post > ul > li:after {
    display: table;
    content: "";
    clear: both;
}
.same-background {
	padding-top: 0;
}
.featured-news-post .cat-links,
.featured-news-side-post .tag-links {
	display: none;
}
.featured-news-post article {
	padding: 310px 0;
	position: relative;
	background-size: cover;
	background-position: 50%;
	background-repeat: no-repeat;
}
.featured-news-side-post > ul > li:not(:last-child) {
    margin-bottom: 25px;
}
.featured-news-side-post article {
	padding: 0 15px 0 0;
}
#newstation_featured_news_section .entry-title {
	margin-bottom: 7px;
}
.featured-news-post .entry-title a {
    color: #fff;
    font-size: 32px;
    text-align: center;
}
.featured-news-post .entry-container {
	position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    color: #fff;
    padding: 150px 35px 30px 35px;
    background: linear-gradient(to top,rgb(0 0 0 / 55%) 0,rgba(0,0,0,0) 100%);
}
#newstation_featured_news_section .featured-news-post .posted-on a,
#newstation_featured_news_section .featured-news-post span.min-read,
#newstation_featured_news_section .featured-news-post span.tag-links a:hover,
#newstation_featured_news_section .featured-news-post span.tag-links a:focus,
#newstation_featured_news_section .featured-news-post .entry-meta > span:not(:first-child):before {
	color: #fff;
}
#newstation_featured_news_section .posted-on a:hover,
#newstation_featured_news_section .posted-on a:focus,
.featured-news-post .entry-title a:hover,
.featured-news-post .entry-title a:focus {
	color: #e6432a;
}
.featured-news-post {
	position: relative;
	margin-top: 30px;
}
.featured-news-sidebar ul {
	margin: 0;
	padding: 0;
}
.featured-news-sidebar ul.section-header {
	margin: 0;
	padding: 0;
	margin-bottom: 30px !important;
}
.featured-news-sidebar ul li {
	padding: 0;
	margin: 0;
	display: inline-block;
}
.featured-news-sidebar ul li:not(:last-child) {
	padding-right: 25px;
}
.featured-news-sidebar ul.post-categories li {
	padding-right: unset;
	float: left;
}
#newstation_featured_news_section .featured-news-sidebar .sidebar-post-wrapper {
    display: table;
    position: relative;
    align-items: center;
    width: 100%;
}
#newstation_featured_news_section .featured-news-sidebar .featured-image {
    width: 30%;
    position: absolute;
    display: table-cell;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
#newstation_featured_news_section .featured-news-sidebar .entry-container {
    text-align: unset;
    width: 70%;
    display: table-cell;
    padding: 0 15px;
}
#newstation_featured_news_section .featured-news-sidebar article:not(:last-child) {
    margin-bottom: 25px;
}
.featured-news-sidebar ul li {
	position: relative;
}
.featured-news-sidebar {
	margin-top: 30px;
}
.featured-news-sidebar ul li.active:after {
    content: "";
    background-color: #e6432a;
    width: 65px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.featured-news-sidebar .sidebar-tab li .section-title {
	color: #808080;
	cursor: pointer;
}
.featured-news-sidebar .sidebar-tab li.active .section-title {
	color: #000;
}
@media screen and (min-width: 767px) {
	.featured-news-side-post > ul > li {
		width: 50%;
		float: left;
	}
	.featured-news-side-post > ul > li:nth-child(2n+1) {
    	clear: left;
	}
}
@media screen and (min-width: 1025px) {
	.featured-news-wrapper {
    	width: 75%;
    	float: left;
    	padding-right: 15px;
	}
	#newstation_featured_news_section .featured-news-post {
    	width: 65%;
    	float: right;
    	padding-left: 15px;
	}
	#newstation_featured_news_section .featured-news-side-post {
    	float: left;
    	width: 35%;
    	padding-right: 15px;
    	margin-bottom: 0px;
	}
}
@media screen and (min-width: 1200px) {
	.featured-news-side-post > ul > li {
		width: 100%;
		float: none;
	}
	.featured-news-side-post .entry-title a,
	.featured-news-sidebar .entry-title {
		font-size: 15px;
	}
	.featured-news-side-post .post-categories a {
		font-size: 15px;
	}
	.featured-news-side-post > ul > li:not(:last-child) {
		margin-bottom: 20px;
	}
	
	.featured-news-post,
	.featured-news-sidebar {
		margin-top: 0;
	}
	#newstation_featured_news_section .featured-news-sidebar .entry-title {
		margin-bottom: 0;
	}
}
@media screen and (min-width: 1900px) {
	.featured-news-side-post .entry-title a,
	.featured-news-sidebar .entry-title a {
		font-size: 20px;
	}
	.featured-news-side-post .post-categories a {
		font-size: 15px;
	}
	.featured-news-post article {
		padding: 320px 0;
	}
	#newstation_featured_news_section .featured-news-sidebar article:not(:last-child) {
    	margin-bottom: 20px;
	}
	.featured-news-sidebar ul li:not(:last-child) {
		padding-right: 35px;
	}
	.featured-news-post .entry-container {
		padding: 150px 60px 30px 60px;
	}
}

/*====================top politician========================*/

#newstation_top_politician_section .top-politician-wrapper {
    display: table;
    position: relative;
    align-items: center;
    width: 100%;
}
#newstation_top_politician_section .featured-image {
    width: 40%;
    position: absolute;
    display: table-cell;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.same-background {
    padding-top: 0;
}
#newstation_top_politician_section .entry-container {
    text-align: unset;
    width: 60%;
    display: table-cell;
    padding: 0 20px;
}
#newstation_top_politician_section .entry-title {
    padding: 0 48px 0 0;
}
#newstation_top_politician_section .btn {
    background-color: unset;
    border: unset;
    border-radius: unset;
    color: #000;
    text-transform: uppercase;
    padding: 0;
    line-height: unset;
    min-height: unset;
    min-width: unset;
    font-size: 15px;
}
#newstation_top_politician_section .btn:hover,
#newstation_top_politician_section .btn:focus {
    color: #e6432a;
}
#newstation_top_politician_section .section-header .btn {
    float: right;
}
.top-politician-wrapper .know-more {
    margin: 4px 0 12px 0;
}
#newstation_top_politician_section .btn svg {
    fill: #e6432a;
    margin-left: 8px;
}
#newstation_top_politician_section .entry-title a {
    font-size: 28px;
}

@media screen and (min-width: 1900px) {
    #newstation_top_politician_section .entry-title a {
        font-size: 32px;
    }
    #newstation_top_politician_section .entry-title {
        padding: 0 65px 0 0;
    }
}

/*======================testimonial==================*/

#newstation_testimonial_section {
	text-align: center;
}
#newstation_testimonial_section .wrapper {
	border: 8px solid #e6432a;
	position: relative;
}
#newstation_testimonial_section .section-header {
	border-bottom: unset;
	text-align: center;
	text-align: center;
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
}
.same-background {
	padding-top: 0;
}
#newstation_testimonial_section .section-title {
	background-color: #fff;
	padding: 5px 20px;
}
#newstation_testimonial_section .entry-title {
	font-size: 38px;
}
#newstation_testimonial_section svg {
	fill: #d9d9d9;
	width: 75px;
	height: 75px;
	transform: rotate(180deg);
	position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    z-index: -1;
    margin: 0 auto;
}
#newstation_testimonial_section .entry-container {
    padding: 50px 80px;
}
.second-design #newstation_testimonial_section .section-title,
.fourth-design #newstation_testimonial_section .section-title,
.third-design #newstation_testimonial_section .section-title {
	font-size: 18px;
}


@media screen and (min-width: 1200px) {
 	#newstation_testimonial_section .entry-title {
 		font-size: 46px;
 	}
}
@media screen and (min-width: 1900px) {
	#newstation_testimonial_section .entry-title {
 		font-size: 52px;
 	}
 	#newstation_testimonial_section .entry-container {
    	padding: 60px 110px;
	}
}

#newstation_testimonial_section article {
    position: relative;
}

.widget_about_us .featured-image {
	margin-bottom: 10px;
}
.widget_about_us .featured-image img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
}
.widget_about_us .entry-container {
	text-align: center;
}
.widget_about_us .entry-container .entry-title {
	margin-bottom: 8px;
}


.widget_video_news .featured-image {
	padding: 90px 0;
	position: relative;
	margin-bottom: 10px;
}
.widget_video_news .video-button {
	top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
}
.widget_video_news .video-button a {
    width: 50px;
    height: 50px;
    border-radius: 60px;
    line-height: 47px;
    color: #fff;
    border: unset;
    background-color: #0000005e;
    display: inline-block;
    padding-left: 6px;
    text-align: center;
}


.widget_most_read li:not(:last-child),
.widget_keep_reading li:not(:last-child) {
	margin-bottom: 20px;
}
.widget_most_read .entry-title {
    margin: 8px 0;
}

.widget_left_side_ad .featured-image img {
	width: 100%;
	height: 330px;
	object-fit: cover;
}



.widget_keep_reading .featured-image {
	padding: 100px 0;
	margin-bottom: 10px;
}
.widget_keep_reading .entry-title {
	margin-bottom: 5px;
}

@media screen and (min-width: 1900px) {
	.widget-area .widget_video_news .entry-title a,
	.widget-area .widget_keep_reading .entry-title a {
		font-size: 20px;
	}
}
@media screen and (min-width: 1900px) {
	.widget-area .widget .entry-title a {
		font-size: 20px;
	}
	.widget-area .widget_video_news .entry-title a,
	.widget-area .widget_keep_reading .entry-title a {
		font-size: 24px;
	}
}

#world-news {
	position: relative;
}
#world-news .world-news-slider {
	position: unset;
	margin-bottom: 15px;
}
#world-news .world-news-slider .featured-image {
	padding: 100px 0;
	margin-bottom: 10px;
}
#world-news .world-news-slider article {
	padding: 0 15px;
}
.world-news-slider button {
	position: absolute;
	top: 20px;
	background-color: transparent;
	border-radius: 0;
}
.world-news-slider .slick-next {
    right: 0px;
}
.world-news-slider .slick-prev {
	left: auto;
    right: 31px;
}
.world-news-slider .slick-prev:hover, 
.world-news-slider .slick-next:hover, 
.world-news-slider .slick-prev:focus, 
.world-news-slider .slick-next:focus {
    background-color: unset;
}
.world-news-slider .slick-prev:hover:before, 
.world-news-slider .slick-next:hover:before, 
.world-news-slider .slick-prev:focus:before, 
.world-news-slider .slick-next:focus:before {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
}
.world-news-slider .entry-title {
	margin-bottom: 5px;
}
.world-news-post .world-news-wrapper,
.tech-news-sidebar .tech-news-wrapper {
    display: table;
    position: relative;
    align-items: center;
    width: 100%;
}
.world-news-post .featured-image,
.tech-news-sidebar .featured-image {
    width: 30%;
    position: absolute;
    display: table-cell;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.world-news-post .entry-container,
.tech-news-sidebar .entry-container {
    text-align: unset;
    width: 70%;
    display: table-cell;
    padding: 0 10px;
}
.world-news-post .entry-title {
	margin-bottom: 0;
}
.world-news-post article {
	margin-bottom: 25px;
}

#primary-ad-1 .featured-image img, 
#primary-ad-2 .featured-image img, 
#primary-ad-3 .featured-image img {
	width: 100%;
	object-fit: cover;
}


#business-news .btn,
#sports-news .btn,
#tech-news .btn {
    background-color: unset;
    border: unset;
    border-radius: unset;
    color: #000;
    text-transform: uppercase;
    padding: 0;
    line-height: unset;
    min-height: unset;
    min-width: unset;
    font-size: 15px;
}
#business-news .btn:hover,
#business-news .btn:focus,
#sports-news .btn:hover,
#sports-news .btn:focus,
#tech-news .btn:hover,
#tech-news .btn:focus {
    color: #e6432a;
}
#business-news .section-header .btn,
#sports-news .section-header .btn,
#tech-news .section-header .btn {
    float: right;
}
#business-news .btn svg,
#sports-news .btn svg,
#tech-news .btn svg {
    fill: #e6432a;
    margin-left: 8px;
}
#business-news .entry-title {
	margin-bottom: 4px;
}
.business-news-full-width {
	margin-bottom: 32px;
}
.business-news-full-width .featured-image {
	padding: 190px 0;
	margin-bottom: 10px;
}
.business-news-sub-width .featured-image {
	padding: 100px 0;
	margin-bottom: 10px;
}
.business-news-sub-width article {
	margin-bottom: 15px;
}



.tech-news-post .featured-image {
	padding: 90px 0;
	margin-bottom: 10px;
}
#tech-news .entry-title {
	margin-bottom: 0;
}
#tech-news article {
	margin-bottom: 15px;
}
.tech-news-1,
#tech-news {
	margin-bottom: 16px;
}

.sports-news-post .featured-image {
	padding: 80px 0;
	margin-bottom: 10px;
}
.sports-news-post .entry-title {
	margin-bottom: 4px;
}
.sports-news-post article:not(:last-child) {
	margin-bottom: 20px;
}
.business-news-full-width .entry-title a {
	font-size: 20px;
}
#newstation_primary_post .entry-title {
	margin-bottom: 0;
	font-size: 20px;
}
#newstation_primary_post .view-all {
	margin-top: 42px;
	margin-left: 42px;
}

@media screen and (min-width: 767px) {
	.world-news-post article,
	.business-news-sub-width article {
		width: 50%;
		float: left;
	}
	.business-news-sub-width article {
		padding: 0 10px;
	}
	.tech-news-post,
	.tech-news-sidebar {
		width: 50%;
		float: left;
	}
	.tech-news-2 .tech-news-post,
	.tech-news-1 .tech-news-sidebar {
		padding-left: 10px;
	}
	.tech-news-1 .tech-news-post,
	.tech-news-2 .tech-news-sidebar {
		padding-right: 10px;
	}
	.sports-news-post .sports-news-wrapper {
		display: table;
		position: relative;
		align-items: center;
		width: 100%;
	}
	.sports-news-post .featured-image {
		width: 40%;
		position: absolute;
		display: table-cell;
		left: 0;
		bottom: 0;
		right: 0;
		top: 0;
		padding: 0;
		padding-bottom: 0;
		margin-bottom: 0;
	}
	.sports-news-post .entry-container {
		text-align: unset;
		width: 60%;
		display: table-cell;
	    padding: 8px 10px 8px 20px;
	}
	#newstation_primary_post .primary-post-wrapper {
		display: flex;
		align-items: center;
		width: 100%;
	}
	#newstation_primary_post .entry-container {
		text-align: unset;
		width: 60%;
		padding: 0px 40px;
	}
	#newstation_primary_post .featured-image {
		width: 40%;
		padding: 0;
		position: relative;
	}
}
@media screen and (min-width: 1025px) {
	#content-wrapper #primary {
		width: 75%;
		float: left;
		padding: 0 15px;
	}
}
@media screen and (min-width: 1200px) {
	.world-news-slider .entry-title a,
	.tech-news-post .entry-title a,
	.sports-news-post .entry-title a,
	.business-news-sub-width .entry-title a {
		font-size: 20px;
	}
	.business-news-full-width .entry-title a {
		font-size: 24px;
	}
}
@media screen and (min-width: 1900px) {
	.world-news-slider .entry-title a,
	.tech-news-post .entry-title a,
	.sports-news-post .entry-title a,
	.business-news-sub-width .entry-title a {
		font-size: 24px;
	}
	.world-news-post .entry-title a,
	.tech-news-sidebar .entry-title a {
		font-size: 20px;
	}
	.business-news-full-width .entry-title a {
		font-size: 32px;
	}
}

#secondary .posted-on a {
    color: #808080;
}
#secondary .tag-links a {
    color: #e6432a;
}
#secondary .tag-links a:hover,
#secondary .tag-links a:focus {
    color: #000;
}
#secondary .posted-on a:hover, 
#secondary .posted-on a:focus {
    color: #e6432a;
}
.widget_recent_news .recent-news-wrapper {
    display: table;
    position: relative;
    align-items: center;
    width: 100%;
}
.widget_recent_news .featured-image {
    width: 30%;
    position: absolute;
    display: table-cell;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.widget_recent_news .entry-container {
    text-align: unset;
    width: 70%;
    display: table-cell;
    padding: 0 15px;
}
.widget_recent_news .entry-title,
.widget_slidder_news .entry-title {
    margin-bottom: 0;
}

.widget_slidder_news li {
    padding: 110px 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}
.widget_slidder_news li .entry-container {
    text-align: center;
    position: relative;
    padding: 0 20px;
} 
#secondary .widget_slidder_news li .entry-title a,
#secondary .widget_slidder_news li .posted-on a,
#secondary .widget_slidder_news li .tag-links a:hover, 
#secondary .widget_slidder_news li .tag-links a:focus,
#secondary .widget_slidder_news li .entry-meta > span:not(:first-child):before {
    color: #fff;
} 
#secondary .widget_slidder_news li .entry-title a:hover,
#secondary .widget_slidder_news li .posted-on a:hover,
#secondary .widget_slidder_news li .entry-title a:focus,
#secondary .widget_slidder_news li .posted-on a:focus {
    color: #e6432a;
}
#slidder-news {
    position: relative;
}
.widget_slidder_news button {
    position: absolute;
    top: -52px;
    background-color: transparent;
    border-radius: 0;
}
.widget_slidder_news .slick-next {
    right: 0px;
}
.widget_slidder_news .slick-prev {
    left: auto;
    right: 31px
}
.widget_slidder_news .slick-prev:hover, 
.widget_slidder_news .slick-next:hover, 
.widget_slidder_news .slick-prev:focus, 
.widget_slidder_news .slick-next:focus {
    background-color: unset;
}
.widget_slidder_news .slick-prev:hover:before, 
.widget_slidder_news .slick-next:hover:before, 
.widget_slidder_news .slick-prev:focus:before, 
.widget_slidder_news .slick-next:focus:before {
    -webkit-filter: none;
    -moz-filter: none;
    -ms-filter: none;
    -o-filter: none;
    filter: none;
}

.widget_editors_choice .entry-title {
    margin-bottom: 5px;
}
.widget_editors_choice .editors-choice-full-post .featured-image {
    padding: 90px 0;
    margin-bottom: 10px;
}
.widget_editors_choice .editors-choice-sub-post .entry-title,
.widget_hot_topic .entry-title {
    margin-bottom: 0;
}
.widget_editors_choice .editors-choice-sub-post .editors-choice-wrapper,
.widget_hot_topic .hot-topic-wrapper {
    display: table;
    position: relative;
    align-items: center;
    width: 100%;
}
.widget_editors_choice .editors-choice-sub-post .featured-image,
.widget_hot_topic .featured-image {
    width: 30%;
    position: absolute;
    display: table-cell;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.widget_editors_choice .editors-choice-sub-post .entry-container,
.widget_hot_topic .entry-container {
    text-align: unset;
    width: 70%;
    display: table-cell;
    padding: 0 10px;
}
.widget_right_sidebar_ad img {
    width: 100%;
}
.featured-post-wrapper {
    display: inline-block;
    width: 100%;
}
.widget_featured_items .featured-post-wrapper {
    display: table;
    position: relative;
    align-items: center;
    width: 100%;
}
.widget_featured_items .featured-image {
    width: 30%;
    position: absolute;
    display: table-cell;
    left: 0;
    bottom: 0;
    right: 0;
    top: 0;
    padding: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.widget_featured_items .entry-container {
    text-align: unset;
    width: 70%;
    display: table-cell;
    padding: 0px 10px;
}
.widget_featured_items .entry-meta {
    margin-bottom: 0;
}
.widget_featured_items .entry-title {
    margin-bottom: 2px;
}


@media screen and (min-width: 1025px) {
    #content-wrapper #secondary {
        width: 25%;
        float: left;
        padding: 0 15px;
    }
}
@media screen and (min-width: 1200px) {
    .widget_editors_choice .editors-choice-full-post .entry-title a {
        font-size: 20px;
    }
}
@media screen and (min-width: 1900px) {
    .widget-area .widget .entry-title a {
        font-size: 20px;
    }
    .widget_editors_choice .editors-choice-full-post .entry-title a {
        font-size: 24px;
    }
}

/*================you may missed=================*/

#newstation_you_may_have_missed_section .btn {
    background-color: unset;
    border: unset;
    border-radius: unset;
    color: #000;
    text-transform: uppercase;
    padding: 0;
    line-height: unset;
    min-height: unset;
    min-width: unset;
    font-size: 15px;
}
#newstation_you_may_have_missed_section .btn:hover,
#newstation_you_may_have_missed_section .btn:focus {
    color: #e6432a;
}
#newstation_you_may_have_missed_section .section-header .btn {
    float: right;
}
#newstation_you_may_have_missed_section .btn svg {
    fill: #e6432a;
    margin-left: 8px;
}
#newstation_you_may_have_missed_section .entry-title {
    margin-bottom: 0px;
}
.you-may-have-missed-wrapper .featured-image {
    padding: 100px 0;
    margin-bottom: 15px;
}

@media screen and (min-width: 567px) {
    #newstation_you_may_have_missed_section .col-4 article {
        width: 50%;
        float: left;
        padding: 0 15px;
    }
    #newstation_you_may_have_missed_section .col-4 article:nth-last-child(-n+2) {
        margin-bottom: 0;
    }
}

@media screen and (min-width: 1200px) {
    #newstation_you_may_have_missed_section .col-4 article {
        width: 25%;
    }
    .you-may-have-missed-wrapper .entry-title a {
        font-size: 20px;
    }
}

@media screen and (min-width: 1900px) {
    .you-may-have-missed-wrapper .entry-title a {
        font-size: 24px;
    }
}

/*====================About Us=============================*/
#newstation_about_us_section .featured-image {
    background-size: cover;
    background-position: 50%;
    padding-bottom: 100%;
    margin-bottom: 30px;
}
#newstation_about_us_section .entry-container {
    max-width: 800px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

#newstation_about_us_section .entry-content {
    margin-bottom: 30px;
}

@media screen and (min-width: 767px) {
    #newstation_about_us_section .section-header {
        text-align: left;
    }
    #newstation_about_us_section article {
        display: table;
        width: 100%;
        position: relative;
    }
    #newstation_about_us_section article .featured-image {
        width: 45%;
        display: table-cell;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        padding-bottom: 0;
        margin-bottom: 0;
    }
    #newstation_about_us_section article .entry-container {
        width: 55%;
        display: table-cell;
        padding: 75px;
        text-align: left;
        float: right;
    }
    #newstation_about_us_section .section-title {
        margin-bottom: 20px;
        font-size: 26px;
    }
}

@media screen and (min-width: 992px) {
    #newstation_about_us_section .section-title {
        font-size: 32px;
    }
}
@media screen and (min-width: 1200px) {
    #newstation_about_us_section .section-title {
        font-size: 38px;
        margin-bottom: 25px;
    }
}
@media screen and (min-width: 1900px) {
    #newstation_about_us_section .section-title {
        font-size: 42px;
    }
}

/*==================Counter=============================*/

#newstation_counter_section {
    position: relative;
    background-size: cover;
    background-position: 50%;
    padding: 120px 0;
}
#newstation_counter_section .overlay {
    opacity: 0.6;
}
#newstation_counter_section .wrapper {
	position: relative;
}
#newstation_counter_section .section-title,
#newstation_counter_section .section-subtitle {
	color: #fff;
}
#newstation_counter_section .counter-item {
	text-align: center;
	position: relative;
	z-index: 1;
}
#newstation_counter_section .counter-icon {
    font-size: 36px;
    color: #fff;
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 100%;
    background-color: rgb(255 255 255 / 20%);
    margin: 0 auto 15px;
}
#newstation_counter_section .counter-value,
#newstation_counter_section .counter-title {
    font-size: 62px;
    color: #fff;
    margin: 0 0 10px;
    font-weight: 600;
}
#newstation_counter_section .counter-title {
    font-size: 18px;
    color: #fff;
    margin: 0;
    font-weight: 400;
}

/*====================featured slider===================*/

#newstation_featured_slider_section article {
	background-color: #000;
    background-size: cover;
    background-position: 50%;
    padding: 280px 0;
    position: relative;
}
#newstation_featured_slider_section .wrapper {
    position: relative;
}
.featured-content-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    max-width: 690px;
    margin: 0 auto;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.featured-content-wrapper .entry-title {
    color: #fff;
    font-size: 32px;
    margin: 0 0 22px;
    font-weight: 600;
    line-height: 1.25;
}
.featured-content-wrapper .entry-title a {
	color: #fff;
}
.featured-content-wrapper .entry-title a:hover,
.featured-content-wrapper .entry-title a:focus {
	opacity: 0.8;
}
.featured-content-wrapper .entry-content {
    color: #fff;
    margin: 0 0 35px;
}
.featured-content-wrapper .btn {
	margin: 5px;
}
.featured-content-wrapper .btn:not(:first-child) {
    background-color: #fff;
    border-color: #fff;
    color: #1d70c9;
}
.featured-content-wrapper .btn:hover,
.featured-content-wrapper .btn:focus,
.featured-content-wrapper .btn:not(:first-child):hover,
.featured-content-wrapper .btn:not(:first-child):focus {
	background-color: #000;
	border-color: #000;
    color: #fff;
}
.featured-content-wrapper .btn:hover .more-icon, 
.featured-content-wrapper .btn:focus .more-icon {
	background-color: #fff;
}
.featured-content-wrapper .btn:hover .more-icon svg, 
.featured-content-wrapper .btn:focus .more-icon svg {
	fill: #1d70c9;
}
.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.slick-slide {
    outline: none;
}
.slick-prev:before, 
.slick-next:before {
    content: "";
	background-image: url('assets/images/down-arrow.svg');
    width: 16px;
    height: 16px;
    display: inline-block;
    opacity: 1;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
}
.slick-prev:before {
	-webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
}
.slick-prev,
.slick-next {
	background-color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 0;
    opacity: 1;
    z-index: 1;
    -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;
}
.slick-arrow {
	background-color: #1d70c9;
	border-radius: 10px;
}
.slick-prev {
	left: 25px;
}
.slick-next {
	right: 25px;
}
#newstation_featured_slider_section .slick-prev {
	left: 25px;
}
#newstation_featured_slider_section .slick-next {
	right: 25px;
}
#newstation_featured_slider_section .slick-arrow {
	opacity: 0;
	visibility: hidden;
	background-color: #fff;
	border-radius: 0;
}
#newstation_featured_slider_section:hover .slick-arrow,
#newstation_featured_slider_section:focus .slick-arrow {
	opacity: 1;
	visibility: visible;
}
#newstation_featured_slider_section .slick-arrow:hover,
#newstation_featured_slider_section .slick-arrow:focus {
	background-color: #1d70c9;
}

#newstation_featured_slider_section ul.slick-dots {
    bottom: 25px;
}
#newstation_featured_slider_section ul.slick-dots li {
	margin: 0 10px;
}
#newstation_featured_slider_section ul.slick-dots li button:before {
	display: none;
}
#newstation_featured_slider_section ul.slick-dots li button {
	border: 1px solid #fff;
	width: 30px;
	height: 10px;
	border-radius: 0;
}
#newstation_featured_slider_section ul.slick-dots li.slick-active button {
	background-color: #fff;
}


@media screen and (min-width: 1024px) {
    #newstation_featured_slider_section article {
        padding: 315px 0;
    }
}
@media screen and (min-width: 1200px) {
    #newstation_featured_slider_section article {
        padding: 375px 0;
    }
    .featured-content-wrapper .entry-title {
        font-size: 42px;
    }
}

/*==================================Gallery==========================*/

#newstation_gallery_section .featured-image {
    background-size: cover;
    background-position: 50%;
    padding: 200px 0;
    position: relative;
    overflow: hidden;
}
#newstation_gallery_section .entry-header {
    background-color: #0056fbd1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -o-transform: translateY(-100%);
    transform: translateY(-100%);
    -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;
}
#newstation_gallery_section .featured-image:hover .entry-header {
	-webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}
#newstation_gallery_section .entry-title {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
#newstation_gallery_section .entry-title a {
	color: #fff;
}
#newstation_gallery_section .entry-title a:hover,
#newstation_gallery_section .entry-title a:focus {
	color: #000;
}

.third-design #newstation_gallery_section .view-all {
    text-align: center;
    margin-top: 42px;
}

/*==================Latest Posts=========================*/

#newstation_latest_post_section .post-wrapper {
    box-shadow: 0px 0px 65px 0px rgb(0 0 0 / 6%);
}
#newstation_latest_post_section .entry-container {
    padding: 30px;
    text-align: center;
}
#newstation_latest_post_section .featured-image img {
	width: 100%;
	height: 350px;
	object-fit: cover;
}
#newstation_latest_post_section .entry-title {
	font-size: 20px;
}

/*==================our service=========================*/

#newstation_our_service_section article {
    border: 1px solid rgb(0 0 0 / 10%);
    margin-bottom: 0;
}
#newstation_our_service_section .service-item-wrapper {
    text-align: center;
    padding: 60px 30px;
}
#newstation_our_service_section .icon-container {
	margin-bottom: 15px;
}
#newstation_our_service_section .icon-container a {
    font-size: 52px;
}
#newstation_our_service_section .entry-title {
    font-size: 22px;
    font-weight: 600;
}

/*==================our story=========================*/
#newstation_our_story_section .featured-image {
	margin-bottom: 10px;
}
#newstation_our_story_section .featured-image img {
	width: 100%;
	height: 320px;
	object-fit: cover;
}
#newstation_our_story_section .section-header {
	max-width: unset;
	text-align: unset;
}
#newstation_our_story_section .section-title {
	margin-bottom: 15px;
}

@media screen and (min-width: 567px) {
	#newstation_our_story_section .featured-image img {
		width: 50%;
		float: left;
		padding: 0 5px;
	}
}
@media screen and (min-width: 767px) {
	#newstation_our_story_section .our-story-wrapper {
		display: flex;
		align-items: center;
	}
	#newstation_our_story_section .featured-image,
	#newstation_our_story_section .entry-container {
		width: 50%;
		margin-bottom: unset;
	}
	#newstation_our_story_section .featured-image img {
		height: 360px;
	}
	#newstation_our_story_section .entry-container {
		padding: 20px 30px;
	}
}

@media screen and (min-width: 1025px) {
	#newstation_our_story_section {
		padding-top: 0;
	}
	#newstation_our_story_section .section-title {
		font-size: 38px;
	}
	#newstation_our_story_section .wrapper {
		background-color: #fff;
		margin-top: -100px;
		position: relative;
		z-index: 300;
		padding: 10px 5px;
	}
}

@media screen and (min-width: 1200px) {
	#newstation_our_story_section .entry-container {
		padding: 20px 85px;
	}
}
@media screen and (min-width: 1200px) {
	#newstation_our_story_section .entry-container {
		padding: 20px 100px;
	}
}

/*======================popular product===================*/

#newstation_popular_products_section .featured-post-item {
    position: relative;
}
#newstation_popular_products_section .featured-image {
    position: relative;
    background-size: cover;
    background-position: 50%;
    padding: 150px 0;
}
#newstation_popular_products_section .featured-image a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.2;
}
#newstation_popular_products_section .featured-image a:after {
    position: absolute;
    content: "";
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    border: 1px solid rgba(255,255,255,.95);
    box-shadow: 0 0 0 15px rgb(255 255 255 / 10%);
    will-change: opacity;
    transition: opacity .6s,transform .4s cubic-bezier(.25,.46,.45,.94);
    pointer-events: none;
}
#newstation_popular_products_section .entry-title {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
#newstation_popular_products_section .entry-title a {
    background-color: #fff;
    display: inline-block;
    padding: 9px 20px;
}

/*===============Restaurant Slider=============*/

#newstation_restaurant_slider_section article {
	background-color: #000;
    background-size: cover;
    background-position: 50%;
    padding: 280px 0;
    position: relative;
}
#newstation_restaurant_slider_section .wrapper {
    position: relative;
}
.restaurant-content-wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    max-width: 580px;
    text-align: left;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.restaurant-content-wrapper .entry-title {
    color: #fff;
    font-size: 32px;
    margin: 0 0 22px;
    font-weight: 600;
    line-height: 1.25;
}
.restaurant-content-wrapper .entry-title a {
	color: #fff;
}
.restaurant-content-wrapper .entry-title a:hover,
.restaurant-content-wrapper .entry-title a:focus {
	opacity: 0.8;
}
.restaurant-content-wrapper .entry-content {
    color: #fff;
    margin: 0 0 35px;
}
.restaurant-content-wrapper .btn {
	margin: 5px;
}
.restaurant-content-wrapper .btn:not(:first-child) {
    background-color: #fff;
    border-color: #fff;
    color: #f44240;
}
.restaurant-content-wrapper .btn:hover,
.restaurant-content-wrapper .btn:focus,
.restaurant-content-wrapper .btn:not(:first-child):hover,
.restaurant-content-wrapper .btn:not(:first-child):focus {
	background-color: #000;
	border-color: #000;
    color: #fff;
}
.restaurant-content-wrapper .btn:hover .more-icon, 
.restaurant-content-wrapper .btn:focus .more-icon {
	background-color: #fff;
}
.restaurant-content-wrapper .btn:hover .more-icon svg, 
.restaurant-content-wrapper .btn:focus .more-icon svg {
	fill: #1d70c9;
}
.slick-dotted.slick-slider {
	margin-bottom: 0;
}
.slick-slide {
    outline: none;
}
#newstation_restaurant_slider_section ul.slick-dots {
    bottom: 25px;
}
#newstation_restaurant_slider_section ul.slick-dots li {
	margin: 0 10px;
}
#newstation_restaurant_slider_section ul.slick-dots li button:before {
	display: none;
}
#newstation_restaurant_slider_section ul.slick-dots li button {
	border: 1px solid #fff;
	width: 30px;
	height: 10px;
	border-radius: 0;
}
#newstation_restaurant_slider_section ul.slick-dots li.slick-active button {
	background-color: #fff;
}

.fourth-design .restaurant-content-wrapper {
    right: 0;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}


@media screen and (min-width: 767px) {
    #newstation_restaurant_slider_section ul.slick-dots {
        top: 50%;
        right: 10px;
        width: unset;
    }
    #newstation_restaurant_slider_section ul.slick-dots li {
        display: block;
    }
}
@media screen and (min-width: 1024px) {
    #newstation_restaurant_slider_section article {
        padding: 315px 0;
    }
}
@media screen and (min-width: 1200px) {
    #newstation_restaurant_slider_section article {
        padding: 375px 0;
    }
    .restaurant-content-wrapper .entry-title {
        font-size: 42px;
    }
}

/*====================Special Offer==================*/

#newstation_special_offer_section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}
#newstation_special_offer_section .wrapper {
	position: relative;
}
#newstation_special_offer_section .section-title {
	color: #fff;
}
#newstation_special_offer_section .entry-title {
	margin-bottom: 4px;
	font-size: 20px;
}
#newstation_special_offer_section .entry-container {
	padding: 20px 25px;
}
#newstation_special_offer_section .special-offer-wrapper {
	background-color: #fff;
	text-align: center;
}
#newstation_special_offer_section .special-offer-wrapper img {
	height: 300px;
	object-fit: cover;
}
#newstation_special_offer_section .entry-meta a {
	color: #808080;
}
#newstation_special_offer_section .view-all {
	text-align: center;
	margin-top: 42px;
}
@media screen and (min-width: 1900px) {
	#newstation_special_offer_section .special-offer-wrapper img {
		height: 320px;
	}	
}

/*=================Sponsor=========================*/

#newstation_sponsor_section article {
    text-align: center;
    margin-bottom: 20px;
}
#newstation_sponsor_section img {
    max-height: 120px;
}

@media screen and (min-width: 1025px) {
	#newstation_sponsor_section article {
		margin-bottom: 0;
	}
}

/*========================Team===================*/

#newstation_team_section {
	text-align: center;
}
#newstation_team_section .section-header {
	margin: 0 auto;
	margin-bottom: 42px;
}
#newstation_team_section .featured-image {
	padding: 280px 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
}
#newstation_team_section span.team-position {
	color: #336aed;
	font-family: 'Lato', sans-serif;
	font-size: 18px;
}
#newstation_team_section .social-icons {
	margin-top: 10px;
}
#newstation_team_section .social-icons svg {
	fill: #000;
}
#newstation_team_section .social-icons a:hover svg,
#newstation_team_section .social-icons a:focus svg {
	fill: #fff;
}
#newstation_team_section .entry-title {
	margin: 0;
}
#newstation_team_section .entry-container {
    margin-top: 25px;
}


@media screen and (min-width: 1025px) {
	#newstation_team_section .section-header {
		width: 850px;
	}
	#newstation_team_section .team-wrapper:hover .featured-image {
		padding: 210px 0;
		border: 2px solid #0056fb;
	}
}
@media screen and (min-width: 1200px) {

}

/*====================Weekly Special========================*/
#newstation_weekly_special_section {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
}
#newstation_weekly_special_section .overlay {
    opacity: 0.7;
}
#newstation_weekly_special_section .wrapper {
    position: relative;
}
#newstation_weekly_special_section .section-header {
    margin-bottom: 20px;
}
#newstation_weekly_special_section .section-title,
#newstation_weekly_special_section .entry-title a,
#newstation_weekly_special_section .entry-content {
    color: #fff;
}
#newstation_weekly_special_section article .menu-item-wrapper {
    border-bottom: 1px solid rgba(255, 255, 255, 0.30);
    padding-bottom: 25px;
    position: relative;
}

#newstation_weekly_special_section .featured-image {
    width: 90px;
    height: 90px;
    border-radius: 90px;
    margin-bottom: 25px;
}

#newstation_weekly_special_section .entry-title {
    margin-bottom: 7px;
    font-size: 22px;
}

#newstation_weekly_special_section .price {
    font-size: 24px;
    font-weight: 800;
}

#newstation_weekly_special_section .entry-content {
    margin-bottom: 20px;
}
#newstation_weekly_special_section .view-all {
    text-align: center;
    margin-top: 42px;
}

@media screen and (min-width: 992px) {
    #newstation_weekly_special_section .featured-image {
        float: left;
        margin-right: 30px;
    }
    #newstation_weekly_special_section .entry-container {
        display: table-cell;
    }
}
@media screen and (min-width: 1200px) {
    #newstation_weekly_special_section article .menu-item-wrapper {
        padding-bottom: 7px;
    }
    #newstation_weekly_special_section .entry-container {
        padding-right: 100px;
    }
    #newstation_weekly_special_section .price {
        position: absolute;
        top: 35px;
        right: 0;
    }
}
@media screen and (min-width: 1900px) {
    #newstation_weekly_special_section .view-all {
        margin-top: 50px;
    }
}

/*===================contact=========================*/

#newstation_contact_section .contact-information {
    display: block;
    margin-bottom: 40px;
}
#newstation_contact_section .contact-information ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
#newstation_contact_section .contact-information li {
	font-size: 20px;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}
#newstation_contact_section .contact-information i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    background-color: #eee;
    font-size: 30px;
    margin-right: 20px;
}
#newstation_contact_section textarea {
    height: 150px;
}
#newstation_contact_section input[type="text"], 
#newstation_contact_section input[type="email"], 
#newstation_contact_section input[type="url"], 
#newstation_contact_section input[type="password"], 
#newstation_contact_section input[type="search"], 
#newstation_contact_section input[type="number"], 
#newstation_contact_section input[type="tel"], 
#newstation_contact_section input[type="range"], 
#newstation_contact_section input[type="date"], 
#newstation_contact_section input[type="month"], 
#newstation_contact_section input[type="week"], 
#newstation_contact_section input[type="time"], 
#newstation_contact_section input[type="datetime"], 
#newstation_contact_section input[type="datetime-local"], 
#newstation_contact_section input[type="color"], 
#newstation_contact_section textarea {
    background: #eee;
    border: none;
    border-radius: 5px;
}


@media screen and (min-width: 767px) {
    #newstation_contact_section .section-header-wrapper,
    #newstation_contact_section .section-content {
        width: 50%;
        float: left;
    }
    #newstation_contact_section .section-header {
        text-align: left;
    }
    #newstation_contact_section .section-content {
        padding-left: 50px;
    }
}
@media screen and (min-width: 1025px) {
    #newstation_contact_section form {
        margin: 0 -10px;
    }
    #newstation_contact_section form p {
        padding: 0 10px;
        margin-bottom: 20px;
    }
    #newstation_contact_section form p:nth-child(2),
    #newstation_contact_section form p:nth-child(3),
    #newstation_contact_section form p:nth-child(4) {
        width: 33.33%;
        float: left;
    }
}

/*===========================Menu============================*/

#newstation_menu_section .product-filtering,
#newstation_menu_section .section-header {
    text-align: center;
}
#newstation_menu_section .featured-image {
	padding: 160px 0;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: 50%;
	position: relative;
}
#newstation_menu_section .product-nav li {
    margin-bottom: 20px;
    text-align: center;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}
#newstation_menu_section .product-nav li a {
    text-decoration: none;
    font-size: 18px;
    display: block;
    color: #000;
    padding: 10px;
}
#newstation_menu_section .product-button {
    display: inline-flex;
    align-items: center;
    position: absolute;
    bottom: 8%;
    left: 40px;
}
#newstation_menu_section h2.woocommerce-loop-product__title {
	position: absolute;
	top: 20px;
	left: 40px;
	color: #fff;
    font-size: 24px;
    padding-right: 30px;
    max-width: 220px;
}
.woocommerce #newstation_menu_section ul.products li.product .price ins {
    font-size: 24px;
}
#newstation_menu_section .product_meta {
    position: absolute;
    bottom: 25%;
    left: 40px;
}
.woocommerce #newstation_menu_section a.button {
	border-color: #fff;
	color: #fff;
    font-size: 16px;
}
#newstation_menu_section .cart-icon svg,
#newstation_menu_section .favourite svg {
	fill: #fff;
	width: 25px;
	height: 25px;
}
.woocommerce #newstation_menu_section a.button {
	padding: 16px 20px;
}
#newstation_menu_section .product-button div {
    padding-right: 20px;
}
#newstation_menu_section .favourite .fa {
	color: #fff;
	font-size: 24px;
}
.woocommerce #newstation_menu_section .all-product-button .button {
	background-color: transparent;
    border-color: #000;
    color: #000;
}
#newstation_menu_section .all-product-button {
    text-align: center;
}
#newstation_menu_section .overlay,
#newstation_menu_section h2.woocommerce-loop-product__title,
#newstation_menu_section .product_meta,
#newstation_menu_section .product-button {
	visibility: hidden;
}
#newstation_menu_section li.product.featured-products:hover .featured-image > .overlay,
#newstation_menu_section li.product.featured-products:hover h2.woocommerce-loop-product__title,
#newstation_menu_section li.product.featured-products:hover .product_meta,
#newstation_menu_section li.product.featured-products:hover .product-button,
#newstation_menu_section li.product.featured-products:focus .featured-image > .overlay,
#newstation_menu_section li.product.featured-products:focus h2.woocommerce-loop-product__title,
#newstation_menu_section li.product.featured-products:focus .product_meta,
#newstation_menu_section li.product.featured-products:focus .product-button {
	visibility: visible;
}
#newstation_menu_section .section-header {
	margin-bottom: 20px;
}



@media screen and (min-width: 567px)  {
	#newstation_menu_section .product-nav li {
		display: inline-block;
		padding-right: 15px;
	}
}

@media screen and (min-width: 767px)  {
	.woocommerce #newstation_menu_section a.button {
		font-size: 10px;
	}
}


@media screen and (min-width: 1200px)  {
	.woocommerce #newstation_menu_section a.button {
		font-size: 15px;
	}
}

/*--------------------------------------------------------------
# 				Third Design
--------------------------------------------------------------*/
.third-design #masthead .wrapper {
	padding: 15px 0;
}
.third-design .site-branding {
    margin-top: 10px;
    float: left;
}
.third-design .site-branding-wrapper {
	float: left;
}
.third-design .menu-toggle {
	width: unset;
	float: right;
}
.third-design .section-header {
	border-bottom: unset;
	margin-bottom: 0;
	margin: 0 auto;
	text-align: center;
	max-width: 700px;
}
.third-design .section-title {
	font-size: 32px;
}
.third-design .testimonial-name a:hover,
.third-design .testimonial-name a:focus {
	color: #000;
}
.third-design input[type="submit"]:hover,
.third-design input[type="submit"]:focus {
	background-color: #333;
}
.third-design .entry-title a:hover, 
.third-design .entry-title a:focus,
.third-design .posted-on a:hover, 
.third-design .posted-on a:focus,
.third-design .section-subtitle,
.third-design .testimonial-name a,
.third-design #colophon ul li a:hover, 
.third-design #colophon ul li a:focus,
.third-design #colophon ul li .tag-links a,
.third-design .site-info span > span,
.third-design #colophon .site-info a:hover, 
.third-design #colophon .site-info a:focus,
.third-design .main-navigation ul.nav-menu li.current-menu-item > a, 
.third-design .main-navigation ul.nav-menu li:hover > a,
.third-design #site-navigation a:hover,
.third-design #site-navigation a:focus,
.third-design #masthead .main-navigation ul.nav-menu li.current-menu-item > a,
.third-design #top-bar .contact-info li:hover a,
.third-design #top-bar .contact-info li:focus a,
.third-design .main-navigation .button ul .cart a:hover,
.third-design .main-navigation .button ul .cart a:focus,
.third-design #newstation_weekly_special_section .price,
.third-design #newstation_menu_section ul.product-nav li.active a, 
.third-design #newstation_menu_section ul.product-nav li a:hover, 
.third-design #newstation_menu_section ul.product-nav li a:focus,
.third-design #newstation_menu_section .favourite .fa:hover,
.third-design #newstation_menu_section .favourite .fa:focus,
.third-design #newstation_menu_section h2.woocommerce-loop-product__title:hover,
.third-design #newstation_menu_section h2.woocommerce-loop-product__title:focus,
.third-design.woocommerce #newstation_menu_section .all-product-button .button:hover,
.third-design.woocommerce #newstation_menu_section .all-product-button .button:focus,
.third-design #newstation_weekly_special_section .entry-title a:hover, 
.third-design #newstation_weekly_special_section .entry-title a:focus,
.third-design #newstation_our_service_section .icon-container a {
	color: #f44240;
}
.third-design .backtotop,
.third-design input[type="submit"],
.third-design.woocommerce #newstation_menu_section .buy-now a.button:hover, 
.third-design.woocommerce #newstation_menu_section .buy-now a.button:focus,
.third-design #newstation_gallery_section .entry-header {
	background-color: #f44240;
}
.third-design #colophon .jetpack_subscription_widget #subscribe-submit svg,
.third-design #top-bar .contact-info li:hover svg,
.third-design #top-bar .contact-info li:focus svg,
.third-design .main-navigation .button ul .cart a:hover svg,
.third-design .main-navigation .button ul .cart a:focus svg,
.third-design #newstation_menu_section .cart-icon svg:hover,
.third-design #newstation_menu_section .cart-icon svg:focus,
.third-design #newstation_menu_section .favourite svg:hover,
.third-design #newstation_menu_section .favourite svg:focus {
	fill: #f44240;
}
.third-design #newstation_testimonial_section .wrapper,
.third-design.woocommerce #newstation_menu_section .all-product-button .button:hover, 
.third-design.woocommerce #newstation_menu_section .all-product-button .button:focus {
	border-color: #f44240;
}
.third-design .btn {
	background-color: #f44240;
	border: 1px solid #f44240;
}
.third-design .btn:hover,.third-design .btn:focus,
#newstation_menu_section .all-product-button .button:hover, 
.third-design.woocommerce #newstation_menu_section .all-product-button .button:focus {
	background-color: transparent;
	color: #f44240;
}
.third-design .section-subtitle {
	margin-bottom: 10px;
	font-size: 18px;
}
.third-design .main-navigation .button ul {
    position: relative;
    float: none;
    left: 0;
    background-color: transparent;
    display: inline-block;
    border: unset;
}
.third-design .main-navigation .button {
    padding: 0 0px 0 20px;
}
.third-design .main-navigation .button ul .cart {
    border-bottom: unset;
    float: left;
}
.third-design .main-navigation .button ul li a {
    width: auto;
}
.third-design #masthead .main-navigation .button ul li a svg {
    transform: none;
}
.third-design .main-navigation .count span {
    background-color: #f44240;
    position: absolute;
    top: 0px;
    right: -7px;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    font-size: 10px;
    line-height: 15px;
    color: #fff;
    text-align: center;
}


@media screen and (min-width: 1025px) {
	.third-design .main-navigation .search-active .icon-search {
		display: none;
	}
	.third-design .main-navigation .search-active .icon-close {
		display: inline-block;
	}
	.third-design #site-navigation.main-navigation {
		border-top: unset;
		border-bottom: unset;
	}
	.third-design #masthead .wrapper {
		padding: 5px 0;
	}
	.third-design .main-navigation a, 
	.third-design .main-navigation ul.nav-menu > li > a, 
	.third-design #site-navigation a,
	.third-design #masthead .main-navigation ul li .sub-menu li:hover ul a, 
	.third-design #masthead .main-navigation ul li .sub-menu li:focus ul a {
		color: #000;
	}
	.third-design .main-navigation .nav-menu > li > a > svg.icon-down {
    	fill: #000;
	}
	.third-design .main-navigation ul.nav-menu {
		float: right;
	}
	.third-design #masthead .main-navigation ul.nav-menu li.current-menu-item > a, 
	.third-design #masthead .main-navigation ul.nav-menu > li > a:hover, 
	.third-design .main-navigation ul.nav-menu li:hover > a,
	.third-design .main-navigation ul.sub-menu li:hover > a, 
	.third-design .main-navigation ul.sub-menu li:focus > a,
	.third-design #masthead .main-navigation ul li .sub-menu li:hover a, 
	.third-design #masthead .main-navigation ul li .sub-menu li:focus a,
	.third-design #masthead .main-navigation ul li .sub-menu li ul li:hover a, 
	.third-design #masthead .main-navigation ul li .sub-menu li ul li:focus a {
		color: #f44240;
	}
	.third-design #masthead .main-navigation ul.nav-menu li.current-menu-item > a > svg,
	.third-design .main-navigation ul ul li.menu-item-has-children:hover > a > svg, 
	.third-design .main-navigation ul ul li.menu-item-has-children > a:hover > svg {
		fill: #f44240;
	}
	.third-design .main-navigation .button li.search {
		padding-left: 15px;
	}
}

@media screen and (min-width: 1200px) {
	.third-design .section-title {
		font-size: 42px;
	}
}
@media screen and (min-width: 1900px) {
	.third-design .section-title {
		font-size: 48px;
	}
}



/*--------------------------------------------------------------
# 				Fourth Design
--------------------------------------------------------------*/
.fourth-design #masthead .wrapper {
	padding: 15px 0;
}
.fourth-design .site-branding {
    margin-top: 10px;
    float: left;
}
.fourth-design .site-branding-wrapper {
	float: left;
}
.fourth-design .menu-toggle {
	width: unset;
	float: right;
}
.fourth-design .section-header {
	border-bottom: unset;
	margin: 0 auto;
	margin-bottom: 25px;
	text-align: center;
	max-width: 700px;
}
.fourth-design .section-title {
	font-size: 32px;
	margin-bottom: 15px;
	border-bottom: 2px solid #1ab407;
}
.fourth-design .testimonial-name a:hover,
.fourth-design .testimonial-name a:focus,
.fourth-design .post-categories a:hover,
.fourth-design .post-categories a:focus {
	color: #000;
}
.fourth-design input[type="submit"]:hover,
.fourth-design input[type="submit"]:focus {
	background-color: #333;
}
.fourth-design .entry-title a:hover, 
.fourth-design .entry-title a:focus,
.fourth-design .posted-on a:hover, 
.fourth-design .posted-on a:focus,
.fourth-design .section-subtitle,
.fourth-design .testimonial-name a,
.fourth-design #colophon ul li a:hover, 
.fourth-design #colophon ul li a:focus,
.fourth-design #colophon ul li .tag-links a,
.fourth-design .site-info span > span,
.fourth-design #colophon .site-info a:hover, 
.fourth-design #colophon .site-info a:focus,
.fourth-design .main-navigation ul.nav-menu li.current-menu-item > a, 
.fourth-design .main-navigation ul.nav-menu li:hover > a,
.fourth-design #site-navigation a:hover,
.fourth-design #site-navigation a:focus,
.fourth-design #masthead .main-navigation ul.nav-menu li.current-menu-item > a,
.fourth-design #top-bar .contact-info li:hover a,
.fourth-design #top-bar .contact-info li:focus a,
.fourth-design .main-navigation .button ul .cart a:hover,
.fourth-design .main-navigation .button ul .cart a:focus,
#newstation_special_offer_section .entry-meta a:hover,
#newstation_special_offer_section .entry-meta a:focus,
.fourth-design .post-categories a,
#secondary .widget_featured_items .post-categories a,
.fourth-design .restaurant-content-wrapper .btn:not(:first-child),
.fourth-design .byline a:hover, 
.fourth-design .byline a:focus,
.fourth-design #secondary a:hover, 
.fourth-design #secondary a:focus, 
.fourth-design #secondary-sidebar a:hover, 
.fourth-design #secondary-sidebar a:focus {
	color: #1ab407;
}
.fourth-design .backtotop,
.fourth-design input[type="submit"] {
	background-color: #1ab407;
}
.fourth-design #colophon .jetpack_subscription_widget #subscribe-submit svg,
.fourth-design #top-bar .contact-info li:hover svg,
.fourth-design #top-bar .contact-info li:focus svg,
.fourth-design .main-navigation .button ul .cart a:hover svg,
.fourth-design .main-navigation .button ul .cart a:focus svg {
	fill: #1ab407;
}
.fourth-design #newstation_testimonial_section .wrapper {
	border-color: #1ab407;
}
.fourth-design .btn {
	background-color: #1ab407;
	border: 1px solid #1ab407;
}
.fourth-design .btn:hover,
.fourth-design .btn:focus
 {
	background-color: transparent;
	color: #1ab407;
}
.fourth-design .section-subtitle {
	margin-bottom: 10px;
	font-size: 18px;
}
.fourth-design .main-navigation .button ul {
    position: relative;
    float: none;
    left: 0;
    background-color: transparent;
    display: inline-block;
    border: unset;
}
.fourth-design .main-navigation .button {
    padding: 0 0px 0 20px;
}
.fourth-design .main-navigation .button ul .cart {
    border-bottom: unset;
}
.fourth-design .main-navigation .button ul li a {
    width: auto;
}
.fourth-design #masthead .main-navigation .button ul li a svg {
    transform: none;
}
.fourth-design .main-navigation .count span {
    background-color: #1ab407;
    position: absolute;
    top: 0px;
    right: -7px;
    width: 15px;
    height: 15px;
    border-radius: 15px;
    font-size: 10px;
    line-height: 15px;
    color: #fff;
    text-align: center;
}
.fourth-design #newstation_testimonial_section .section-title,
.fourth-design #newstation_contact_section .section-title {
	border-bottom: unset;
}


@media screen and (min-width: 1025px) {
	.fourth-design .main-navigation .search-active .icon-search {
		display: none;
	}
	.fourth-design .main-navigation .search-active .icon-close {
		display: inline-block;
	}
	.fourth-design #site-navigation.main-navigation {
		border-top: unset;
		border-bottom: unset;
	}
	.fourth-design #masthead .wrapper {
		padding: 5px 0;
	}
	.fourth-design .main-navigation a, 
	.fourth-design .main-navigation ul.nav-menu > li > a, 
	.fourth-design #site-navigation a,
	.fourth-design #masthead .main-navigation ul li .sub-menu li:hover ul a, 
	.fourth-design #masthead .main-navigation ul li .sub-menu li:focus ul a {
		color: #000;
	}
	.fourth-design .main-navigation .nav-menu > li > a > svg.icon-down {
    	fill: #000;
	}
	.fourth-design .main-navigation ul.nav-menu {
		float: right;
	}
	.fourth-design #masthead .main-navigation ul.nav-menu li.current-menu-item > a, 
	.fourth-design #masthead .main-navigation ul.nav-menu > li > a:hover, 
	.fourth-design .main-navigation ul.nav-menu li:hover > a,
	.fourth-design .main-navigation ul.sub-menu li:hover > a, 
	.fourth-design .main-navigation ul.sub-menu li:focus > a,
	.fourth-design #masthead .main-navigation ul li .sub-menu li:hover a, 
	.fourth-design #masthead .main-navigation ul li .sub-menu li:focus a,
	.fourth-design #masthead .main-navigation ul li .sub-menu li ul li:hover a, 
	.fourth-design #masthead .main-navigation ul li .sub-menu li ul li:focus a {
		color: #1ab407;
	}
	.fourth-design #masthead .main-navigation ul.nav-menu li.current-menu-item > a > svg,
	.fourth-design .main-navigation ul ul li.menu-item-has-children:hover > a > svg, 
	.fourth-design .main-navigation ul ul li.menu-item-has-children > a:hover > svg {
		fill: #1ab407;
	}
	.fourth-design .main-navigation .button li.search {
		padding-left: 15px;
	}
}

@media screen and (min-width: 1200px) {
	.fourth-design .section-title {
		font-size: 38px;
	}
}
@media screen and (min-width: 1900px) {
}

.grid-layout article:not(:last-child), 
.list-layout article:not(:last-child) {
	margin-bottom: 30px;
}

/*--------------------------------------------------------------
# 				Dark Version
--------------------------------------------------------------*/
.dark-version {
    background-color: #000;
}

.dark-version .archive-blog-wrapper .post-wrapper,
.dark-version .pagination .page-numbers, 
.dark-version .pagination .page-numbers.prev, 
.dark-version .pagination .page-numbers.next,
.dark-version #featured-posts-section .entry-title a,
.dark-version .navigation.post-navigation, 
.dark-version .navigation.posts-navigation,
.dark-version .comment-content,
.dark-version input[type="text"], 
.dark-version input[type="email"], 
.dark-version input[type="url"], 
.dark-version input[type="password"], 
.dark-version input[type="search"], 
.dark-version input[type="number"], 
.dark-version input[type="tel"], 
.dark-version input[type="range"], 
.dark-version input[type="date"], 
.dark-version input[type="month"], 
.dark-version input[type="week"], 
.dark-version input[type="time"], 
.dark-version input[type="datetime"], 
.dark-version input[type="datetime-local"], 
.dark-version input[type="color"], 
.dark-version textarea,
.dark-version #top-bar {
	background-color: #111;
}

.dark-version .pagination .page-numbers.current, 
.dark-version .pagination .page-numbers:hover, 
.dark-version .pagination .page-numbers:focus {
	background-color: #e6432a;
    border-color: #e6432a;
}

.dark-version,
.dark-version h1,
.dark-version h2,
.dark-version h3,
.dark-version h4,
.dark-version h5,
.dark-version h6,
.dark-version p,
.dark-version a,
.dark-version figcaption,
.dark-version cite,
.dark-version blockquote,
.dark-version pre,
.dark-version .pagination .page-numbers, 
.dark-version .pagination .page-numbers.dots:hover, 
.dark-version .pagination .page-numbers.dots:focus, 
.dark-version .pagination .page-numbers.prev, 
.dark-version .pagination .page-numbers.next,
.dark-version ul.post-categories li a,
.dark-version #secondary ul li a,
.dark-version #respond label,
.dark-version .navigation.post-navigation a, 
.dark-version .navigation.posts-navigation a,
.dark-version .comment-meta .url, 
.dark-version .comment-meta .fn,
.dark-version input[type="text"], 
.dark-version input[type="email"], 
.dark-version input[type="url"], 
.dark-version input[type="password"], 
.dark-version input[type="search"], 
.dark-version input[type="number"], 
.dark-version input[type="tel"], 
.dark-version input[type="range"], 
.dark-version input[type="date"], 
.dark-version input[type="month"], 
.dark-version input[type="week"], 
.dark-version input[type="time"], 
.dark-version input[type="datetime"], 
.dark-version input[type="datetime-local"], 
.dark-version input[type="color"], 
.dark-version textarea,
.dark-version .tag-links a:hover,
.dark-version .tag-links a:focus,
.dark-version .featured-news-sidebar .sidebar-tab li.active .section-title,
.dark-version ul.post-categories li a:hover,
.dark-version ul.post-categories li a:focus,
.dark-version .posted-on a,
.dark-version #newstation_top_politician_section .btn,
.dark-version .testimonial-name a:hover,
.dark-version .testimonial-name a:focus,
.dark-version #secondary .tag-links a:hover,
.dark-version #secondary .tag-links a:focus,
.dark-version #secondary span.min-read,
.dark-version .comment-metadata a, 
.dark-version .comment-metadata a time,
.dark-version.second-design .testimonial-name a:hover,
.dark-version.second-design .testimonial-name a:focus,
.dark-version.third-design .testimonial-name a:hover,
.dark-version.third-design .testimonial-name a:focus,
.dark-version.fourth-design .testimonial-name a:hover,
.dark-version.fourth-design .testimonial-name a:focus,
.dark-version .byline,
.dark-version #newstation_menu_section .product-nav li a {
    color: #fff;
}
.dark-version .posted-on a:hover,
.dark-version .posted-on a:focus,
.dark-version ul.post-categories li a,
.dark-version .testimonial-name a,
.dark-version #secondary ul li a:hover,
.dark-version #secondary ul li a:focus,
.dark-version #secondary .tag-links a,
.dark-version .post-navigation a:hover, 
.dark-version .posts-navigation a:hover, 
.dark-version .post-navigation a:focus, 
.dark-version .posts-navigation a:focus,
.dark-version .comment-meta .url:hover, 
.dark-version .comment-meta .url:focus, 
.dark-version .comment-metadata a:hover, 
.dark-version .comment-metadata a time:hover,
.dark-version .comment-metadata a:focus, 
.dark-version .comment-metadata a time:focus {
	color: #e6432a;
}
.dark-version .navigation.posts-navigation a:hover svg, 
.dark-version .navigation.post-navigation a:hover svg, 
.dark-version .navigation.posts-navigation a:focus svg, 
.dark-version .navigation.post-navigation a:focus svg {
	fill: #e6432a;
}
.dark-version #newstation_testimonial_section .section-title,
.dark-version input[type="search"] {
	color: #000;
}
.dark-version #newstation_testimonial_section svg {
	fill: #d9d9d978;
}
.dark-version #top-navigation .social-icons li a svg {
	fill: #000;
}
 
.dark-version .navigation.pagination svg,
.dark-version .navigation.posts-navigation svg, 
.dark-version .navigation.post-navigation svg,
.dark-version .navigation.posts-navigation a:focus svg,
.dark-version .social-icons li a svg,
.dark-version #newstation_team_section .social-icons svg {
	fill: #fff;
}

.dark-version .pagination .page-numbers, 
.dark-version .pagination .page-numbers.dots:hover, 
.dark-version .pagination .page-numbers.dots:focus, 
.dark-version .pagination .page-numbers.prev, 
.dark-version .pagination .page-numbers.next,
.dark-version input[type="text"], 
.dark-version input[type="email"], 
.dark-version input[type="url"], 
.dark-version input[type="password"], 
.dark-version input[type="search"], 
.dark-version input[type="number"], 
.dark-version input[type="tel"], 
.dark-version input[type="range"], 
.dark-version input[type="date"], 
.dark-version input[type="month"], 
.dark-version input[type="week"], 
.dark-version input[type="time"], 
.dark-version input[type="datetime"], 
.dark-version input[type="datetime-local"], 
.dark-version input[type="color"], 
.dark-version textarea {
	border-color: #111;
}

.dark-version .comment-content:before {
	border-right-color: #111;
}

.dark-version .site-logo img,
.dark-version #newstation_sponsor_section img {
    -webkit-filter: brightness(0) invert(1);
    -moz-filter: brightness(0) invert(1);
    -ms-filter: brightness(0) invert(1);
    -o-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
.dark-version.default-design #secondary .widget {
	background-color: unset;
}
.dark-version #newstation_our_service_section article {
	border: 1px solid rgb(221 221 221 / 9%);
}
.dark-version #newstation_contact_section input[type="text"], 
.dark-version #newstation_contact_section input[type="email"], 
.dark-version #newstation_contact_section input[type="search"], 
.dark-version #newstation_contact_section textarea,
.dark-version #newstation_contact_section .contact-information i,
.dark-version #newstation_popular_products_section .entry-title a,
.dark-version #newstation_special_offer_section .entry-title a  {
	color: #000;
}
.dark-version.second-design .posted-on a:hover,
.dark-version.second-design .posted-on a:focus,
.dark-version.second-design .testimonial-name a,
.dark-version.second-design #secondary ul li a:hover, 
.dark-version.second-design #secondary ul li a:focus,
.dark-version.second-design ul.post-categories li a {
	color: #0056fb;
}
.dark-version.third-design .posted-on a:hover,
.dark-version.third-design .posted-on a:focus,
.dark-version.third-design .testimonial-name a,
.dark-version.third-design #secondary ul li a:hover, 
.dark-version.third-design #secondary ul li a:focus,
.dark-version.third-design ul.post-categories li a {
	color: #f44240;
}
.dark-version #newstation_popular_products_section .entry-title a:hover,
.dark-version #newstation_popular_products_section .entry-title a:focus,
.dark-version #newstation_special_offer_section .entry-title a:hover,
.dark-version #newstation_special_offer_section .entry-title a:focus,
.dark-version.fourth-design ul.post-categories li a,
.dark-version.fourth-design #secondary ul li a:hover, 
.dark-version.fourth-design #secondary ul li a:focus,
.dark-version.fourth-design .posted-on a:hover,
.dark-version.fourth-design .posted-on a:focus,
.dark-version.fourth-design .testimonial-name a {
	color: #1ab407;
}


@media screen and (min-width: 1025px) {
	.dark-version #newstation_breakingnews_section .entry-title a,
	.dark-version #newstation_breakingnews_section .tag-links a:hover,
	.dark-version #newstation_breakingnews_section .tag-links a:focus,
	.dark-version #newstation_breakingnews_section .posted-on a, 
	.dark-version.second-design #masthead .main-navigation ul li .sub-menu li:hover ul a, 
	.dark-version.second-design #masthead .main-navigation ul li .sub-menu li:focus ul a,
	.dark-version.third-design #masthead .main-navigation ul li .sub-menu li:hover ul a, 
	.dark-version.third-design #masthead .main-navigation ul li .sub-menu li:focus ul a,
	.dark-version.fourth-design #masthead .main-navigation ul li .sub-menu li:hover ul a, 
	.dark-version.fourth-design #masthead .main-navigation ul li .sub-menu li:focus ul a {
		color: #000;
	}   
	.dark-version #newstation_breakingnews_section .posted-on a:hover,
	.dark-version #newstation_breakingnews_section .posted-on a:focus,
	.dark-version #newstation_breakingnews_section .entry-title a:hover,
	.dark-version #newstation_breakingnews_section .entry-title a:focus,
	.dark-version #top-navigation .main-navigation ul.nav-menu > li.current-menu-item > a,
 	.dark-version #top-navigation .main-navigation ul.nav-menu > li > a:hover, 
 	.dark-version #top-navigation .main-navigation ul.nav-menu > li:hover > a,
 	.dark-version.blog #top-navigation .main-navigation ul.nav-menu > li > a:hover, 
	.dark-version.single #top-navigation .main-navigation ul.nav-menu > li > a:hover, 
	.dark-version.archive #top-navigation .main-navigation ul.nav-menu > li > a:hover, 
	.dark-version.blog .main-navigation a:hover, 
	.dark-version.blog .main-navigation ul.nav-menu > li > a:hover, 
	.dark-version.blog #site-navigation a:hover, 
	.dark-version.single .main-navigation a:hover, 
	.dark-version.single .main-navigation ul.nav-menu > li > a:hover, 
	.dark-version.single #site-navigation a:hover, 
	.dark-version.archive .main-navigation a:hover, 
	.dark-version.archive .main-navigation ul.nav-menu > li > a:hover, 
	.dark-version.archive #site-navigation a:hover,
	.dark-version.blog #top-navigation .main-navigation ul.nav-menu > li > a:focus, 
	.dark-version.single #top-navigation .main-navigation ul.nav-menu > li > a:focus, 
	.dark-version.archive #top-navigation .main-navigation ul.nav-menu > li > a:focus, 
	.dark-version.blog .main-navigation a:focus, 
	.dark-version.blog .main-navigation ul.nav-menu > li > a:focus, 
	.dark-version.blog #site-navigation a:focus, 
	.dark-version.single .main-navigation a:focus, 
	.dark-version.single .main-navigation ul.nav-menu > li > a:focus, 
	.dark-version.single #site-navigation a:focus, 
	.dark-version.archive .main-navigation a:focus, 
	.dark-version.archive .main-navigation ul.nav-menu > li > a:focus, 
	.dark-version.archive #site-navigation a:focus {
		color: #e6432a;
	}
	.dark-version #newstation_our_story_section .wrapper {
		background-color: #111;
	}
	.dark-version #top-navigation .social-icons li a svg,
	.dark-version.blog #top-navigation .social-icons li a svg, 
	.dark-version.single #top-navigation .social-icons li a svg, 
	.dark-version.archive #top-navigation .social-icons li a svg, 
	.dark-version.blog .main-navigation .nav-menu > li > a > svg.icon-down, 
	.dark-version.archive .main-navigation .nav-menu > li > a > svg.icon-down, 
	.dark-version.single .main-navigation .nav-menu > li > a > svg.icon-down,
	.dark-version .main-navigation form.search-form svg.icon-search,
	.dark-version.third-design #masthead .main-navigation .button ul li a svg {
		fill: #fff;
	}
	.dark-version.blog #top-navigation .main-navigation ul.nav-menu > li > a, 
	.dark-version.single #top-navigation .main-navigation ul.nav-menu > li > a, 
	.dark-version.archive #top-navigation .main-navigation ul.nav-menu > li > a, 
	.dark-version.blog .main-navigation a, 
	.dark-version.blog .main-navigation ul.nav-menu > li > a, 
	.dark-version.blog #site-navigation a, 
	.dark-version.single .main-navigation a, 
	.dark-version.single .main-navigation ul.nav-menu > li > a, 
	.dark-version.single #site-navigation a, 
	.dark-version.archive .main-navigation a, 
	.dark-version.archive .main-navigation ul.nav-menu > li > a, 
	.dark-version.archive #site-navigation a,
	.dark-version.second-design .main-navigation a, 
	.dark-version.second-design .main-navigation ul.nav-menu > li > a, 
	.dark-version.second-design #site-navigation a, 
	.dark-version.third-design .main-navigation a, 
	.dark-version.third-design .main-navigation ul.nav-menu > li > a, 
	.dark-version.third-design #site-navigation a,
	.dark-version.fourth-design .main-navigation a, 
	.dark-version.fourth-design .main-navigation ul.nav-menu > li > a, 
	.dark-version.fourth-design #site-navigation a {
		color: #fff;
	}
	.dark-version .main-navigation ul.nav-menu > li:hover > a > svg, 
	.dark-version .main-navigation ul.nav-menu > li.current-menu-item > a > svg, 
	.dark-version.blog .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.archive .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.single .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.blog .main-navigation .nav-menu > li > a:focus svg.icon-down, 
	.dark-version.archive .main-navigation .nav-menu > li > a:focus svg.icon-down, 
	.dark-version.single .main-navigation .nav-menu > li > a:focus svg.icon-down {
		fill: #e6432a;
	}
	.dark-version.second-design .main-navigation ul.nav-menu > li:hover > a > svg, 
	.dark-version.second-design .main-navigation ul.nav-menu > li.current-menu-item > a > svg, 
	.dark-version.blog.second-design .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.archive.second-design .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.single.second-design .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.blog.second-design .main-navigation .nav-menu > li > a:focus svg.icon-down, 
	.dark-version.archive.second-design .main-navigation .nav-menu > li > a:focus svg.icon-down, 
	.dark-version.single.second-design .main-navigation .nav-menu > li > a:focus svg.icon-down {
		fill: #0056fb;
	}
	.dark-version.third-design .main-navigation ul.nav-menu > li:hover > a > svg, 
	.dark-version.third-design .main-navigation ul.nav-menu > li.current-menu-item > a > svg, 
	.dark-version.blog.third-design .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.archive.third-design .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.single.third-design .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.blog.third-design .main-navigation .nav-menu > li > a:focus svg.icon-down, 
	.dark-version.archive.third-design .main-navigation .nav-menu > li > a:focus svg.icon-down, 
	.dark-version.single.third-design .main-navigation .nav-menu > li > a:focus svg.icon-down {
		fill: #f44240;
	}
	.dark-version.fourth-design .main-navigation ul.nav-menu > li:hover > a > svg, 
	.dark-version.fourth-design .main-navigation ul.nav-menu > li.current-menu-item > a > svg, 
	.dark-version.blog.fourth-design .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.archive.fourth-design .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.single.fourth-design .main-navigation .nav-menu > li > a:hover svg.icon-down, 
	.dark-version.blog.fourth-design .main-navigation .nav-menu > li > a:focus svg.icon-down, 
	.dark-version.archive.fourth-design .main-navigation .nav-menu > li > a:focus svg.icon-down, 
	.dark-version.single.fourth-design .main-navigation .nav-menu > li > a:focus svg.icon-down {
		fill: #1ab407;
	}
	.dark-version.second-design #masthead .main-navigation ul li .sub-menu li:hover ul li:hover a, 
	.dark-version.second-design #masthead .main-navigation ul li .sub-menu li:focus ul li:focus a {
		color: #0056fb;
	}
	.dark-version.third-design #masthead .main-navigation ul li .sub-menu li:hover ul li:hover a, 
	.dark-version.third-design #masthead .main-navigation ul li .sub-menu li:focus ul li:focus a {
		color: #f44240;
	}
	.dark-version.fourth-design #masthead .main-navigation ul li .sub-menu li:hover ul li:hover a, 
	.dark-version.fourth-design #masthead .main-navigation ul li .sub-menu li:focus ul li:focus a {
		color: #1ab407;
	}

}

#top-navigation .icon-wrapper {
	display: none;
}
.main-navigation ul .social-icons ul.menu {
	display: block;
	width: 100%;
	left: 0;
}
.main-navigation ul .social-icons li a {
	width: 30px;
}
@media screen and (min-width: 1025px) {
	#top-navigation .icon-wrapper {
		display: flex;
		align-items: center;
		float: right;
	}
	.main-navigation ul.nav-menu .contact-info,
	.main-navigation ul.nav-menu .social-icons {
		display: none;
	}
}
.entry-meta>span:after {
	content: unset;
}
ul.tabs li a {
	padding: unset;
	margin-bottom: 0;
}
#newstation_hero_banner_section ul.tabs.hero-banner-post li .post-categories li {
	padding-right: 0;
}
#newstation_hero_banner_section .post-categories :not(:last-child):after {
	color: #fff;
}
.entry-meta a,
#secondary .post-categories a {
	font-size: 18px;
	font-weight: 400;
}
#newstation_hero_banner_section .tab-content.active .post-categories :not(:last-child):after {
	content: unset;
}
#newstation_hero_banner_section .post-categories a {
	text-transform: uppercase;
}
.post-categories a {
	text-transform: none;
}
.entry-meta > span.posted-on {
	position: relative;
}
.entry-meta > span.posted-on:after {
	content: ".";
	position: absolute;
	bottom: 5px;
	right: 5px;
}
#secondary .post-categories li a {
	color: #e6432a;
}
#secondary .post-categories li a:hover,
#secondary .post-categories li a:focus {
	color: #000;
}
#secondary .post-categories li,
.widget .post-categories li {
	margin-bottom: 0;
	display: inline-flex;
}
.comment-meta {
    margin-bottom: -100px;
    display: inline-block;
    width: 100%;
}
.comment-meta .fn {
    position: relative;
    z-index: 1;
    font-weight: 400;
}
.comment-metadata {
    float: right;
    padding-right: 35px;
    position: relative;
    z-index: 1;
}
.reply {
	text-align: right;
}
.comment-meta .fn:after {
	content: "";
}
#secondary .widget_slidder_news .post-categories li {
	padding: 0;
}
.post-categories a:not(:last-child):after,
.tag-links a:not(:last-child):after {
	content: ",";
	padding: 0 5px;
}
.error-404.not-found form.search-form input,
body.search form.search-form input {
	padding: 0 40px 0 60px;
}
.error-404.not-found form.search-form button.search-submit,
body.search form.search-form button.search-submit {
	width: 50px;
	height: 50px;
}
.error-404.not-found {
    position: relative;
    text-align: center;
}


.single .featured-image img{
    width: 100%;
}

#reviews{
    margin-top: 30px;
}

#reviews .reply a{
    margin-top: 30px;
}

.wp-block-latest-comments article{
    margin-bottom: 0px !important;
}

.wp-block-latest-comments{
    padding-left: 0px !important;
}


.widget .wp-block-heading {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 20px;
	width: 100%;
}