/*
Theme Name: Regular News
Theme URI: https://themepalace.com/downloads/regular-news
Author: Theme Palace
Author URI: https://themepalace.com
Description: Regular News is a WordPress theme that perfectly suits your need in creating news sites easily. It is suitable for creating the blog, magazine, news and personal sites. Regular News theme supports all of the post formats available in WordPress to display the post. This theme is easy to use, speed optimized and highly customizable. The responsive layout of the theme gives your website an elegant look on all devices and screen resolutions.
Version: 1.1.3
Requires PHP: 5.6
Tested up to: 6.7
Requires at least: 5.0
License: GNU General Public License v3 or later
License URI: http://www.gnu.org/licenses/gpl-3.0.html
Text Domain: regular-news
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.

Regular News is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Regular News 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: #ff4443;
	-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: #ff4443;}
    25% {height:30px;transform:translateY(15px);background: #ff4443;}
    50% {height:5px;transform:translateY(0px);background: #ff4443;}
    100% {height:5px;transform:translateY(0px);background: #ff4443;}
}

.backtotop {
    background-color: #ff4443;
    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: #ff4443;}
	50%  {border-color: #9acf0b;}
	75%  {border-color: #a93d7b;}
	100% {border-color: #f1ad02;}
}

@keyframes colorchange {
	0%   {border-color: #e30048;}
	25%  {border-color: #ff4443;}
	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;
}

#content {
    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;
}

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: #32363a;
	margin: 16px 0;
	line-height: 1.5;
	font-weight: 500;
    font-family: 'Frank Ruhl Libre', 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: #73747a;
	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: #f2f4f8; /* Fallback for when there is no custom background color defined. */
}
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: 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;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #e0e0e0;
	border-radius: 0;
	padding: 3px;
	background-color: #fff;
    border: 1px solid #eaedf3;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
}

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;
}

textarea {
	width: 100%;
}

textarea,
#respond input,
.wpcf7 input {
    width: 100%;
    border: 1px solid #e9e9e9;
    border-radius: 0;
    padding: 0 15px;
}
#respond textarea {
    height: 200px;
    padding: 15px;
    background-color: #fff;
    border-radius: 0;
}
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
    background-color: #fff;
    border-radius: 0;
    min-height: 50px;
}
#respond input[type="text"]:focus,
#respond input[type="email"]:focus,
#respond input[type="url"]:focus,
#respond textarea:focus {
	border-color: #999;
}
#respond input[type="submit"] {
	padding: 10px 30px;
    font-size: 14px;
    line-height: 26px;
    display: inline-block;
    text-transform: uppercase;
    border: none;
    background-color: #ff4443;
    color: #fff;
    position: relative;
    text-align: center;
    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;
}
#respond input[type="submit"]:hover,
#respond input[type="submit"]:focus {
	background-color: #212121;
    color: #fff;
}
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;
}
#respond .comment-form-cookies-consent input[type="checkbox"], 
.comment-form-cookies-consent input[type="checkbox"] {
    width: auto;
    float: left;
    height: auto;
    min-height: auto;
    margin-right: 10px;
}
#respond .comment-form-cookies-consent label, 
.comment-form-cookies-consent label {
    display: table;
    margin: 0;
    line-height: 1;
}
.comment-form-cookies-consent {
    clear: both;
    margin-top: 15px;
    display: inline-block;
    width: 100%;
}
/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: #ff4443;
	text-decoration: underline;
}

.btn,
.reply a,
.post-category a,
.cat-links a,
.byline a,
.posted-on a,
.entry-title a,
ul li a{
	text-decoration: none;
}

a:hover,
a:focus,
a:active {
	color: #212121;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
#masthead {
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 3000;
    background-color: #fff;
    -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;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
}
#masthead .overlay {
    display: none;
}
#site-navigation {
    background-color: #fff;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
}
#masthead .social-icons {
    margin: 10px 0 0;
}
.site-branding {
    text-align: center;
}
.site-branding + .site-advertisement {
    margin-top: 20px;
}
.site-branding-wrapper {
    padding: 25px 0;
}
.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-size: 32px;
    text-transform: uppercase;
    font-weight: 800;
    -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;
}
.main-navigation {
	display: block;
    position: relative;
}
.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: #ff4443;
}
.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: #ff4443;
}
.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;
}
.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: 45px;
    border: 1px solid #d6d6d6;
}
.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: 23px 8px;
    color: #32363a;
}
.main-navigation form.search-form input {
    background-color: #333;
    border-color: #333;
    color: #333;
    font-weight: 400;
}
.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: #ff4443;
}
.main-navigation a:hover,
.main-navigation ul.nav-menu > li > a:hover {
    color: #ff4443;
}
.main-navigation a {
	font-size: 14px;
    font-weight: 400;
	display: block;
    text-decoration: none;
	color: #333;
	text-transform: uppercase;
}
.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;
}
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: #000;
}
svg.icon-close {
    width: 20px;
    height: 20px;
}
.search-submit svg.icon-search {
    fill: #adadad;
    opacity: 1;
}
.main-navigation svg.icon-down {
    width: 12px;
    height: 12px;
    margin-left: 5px;
    fill: #32363a;
}
.main-navigation .sub-menu svg {
    width: 12px;
    height: 12px;
    fill: #32363a;
    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: #32363a;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}
#masthead .menu-toggle {
    background-color: #fff;
}
#masthead .menu-toggle svg {
    fill: #333;
}
#masthead .menu-label {
    color: #333;
}
.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;
}
.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;
}
#top-navigation {
    background-color: #32353A;
}
#top-navigation .main-navigation ul.nav-menu > li > a {
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
#top-navigation .menu-label {
    color: #fff;
}
#top-navigation .menu-toggle svg {
	fill: #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: #fff;
    border: 1px solid #eaedf3;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
}
.post-navigation a, 
.posts-navigation a {
    font-weight: 500;
    color: #212121;
}
.post-navigation a:hover, 
.posts-navigation a:hover,
.post-navigation a:focus, 
.posts-navigation a:focus {
	color: #ff4443;
}
.post-navigation, 
.posts-navigation {
    padding: 0;
    position: relative;
}
.pagination .page-numbers {
    border: 1px solid #ddd;
}
.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: #212121;
    background-color: #fff;
}
.pagination .page-numbers.current,
.pagination .page-numbers:hover,
.pagination .page-numbers:focus {
    color: #fff;
    background-color: #ff4443;
    border-color: #ff4443;
}
.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,
.post-archive:before,
.post-archive: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,
.post-archive:before,
.post-archive: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;
}

.widget input {
    height: 40px;
    border-radius: 0;
    padding: 0 15px;
    border: none;
}

form.search-form button.search-submit {
    height: 50px;
    position: absolute;
    right: 0;
    bottom: 0;
    background-color: #ff4443;
    border: none;
    width: 50px;
    border-radius: 0;
}
.widget_search form.search-form .search-submit {
    width: auto;
    color: #fff;
    background-color: #212121;
    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: #ff4443;
	color: #fff;
}
.error-404.not-found form.search-form button.search-submit:hover {
	background-color: #212121;
}
.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: #efefef;
}
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) {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

#colophon .widget li:not(:last-child) {
	border-bottom-color: rgba(255, 255, 255, 0.10);
}

.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-title,
.widgettitle {
	margin: 0 0 25px;
    font-weight: 600;
    font-size: 18px;
    color: #212121;
    text-transform: uppercase;
}
#secondary .widget:not(:last-child) {
    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: #ff4443;
    color: #fff;
    position: relative;
    text-align: center;
    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: #212121;
    color: #fff;
}
.jetpack_subscription_widget form {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
}
.jetpack_subscription_widget input[type="email"] {
    width: 100%;
    min-height: 60px;
    padding: 2px 168px 0 30px;
    background-color: #414C57;
    border: none;
    border-radius: 50px;
    color: #fff;
}
.jetpack_subscription_widget input[type="submit"] {
    padding: 13px 23px;
    font-size: 14px;
    line-height: 34px;
    display: inline-block;
    border-radius: 25px;
    min-width: 133px;
    min-height: 60px;
    background-color: #ff4443;
    color: #fff;
    border: none;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    border-radius: 0;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
}
.jetpack_subscription_widget input[type="submit"]:hover,
.jetpack_subscription_widget input[type="submit"]:focus {
	background-color: #ff4443;
}
.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;
    top: 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: 15px;
    padding-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: 500;
}
.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: #ff4443;
}
.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: #ff4443;
}
#colophon .widget_popular_post a time,
#colophon .widget_popular_post time,
#colophon .widget_latest_post a time,
#colophon .widget_latest_post time,
#colophon .widget_featured_post a time,
#colophon .widget_featured_post time {
    color: #fff;
    opacity: 0.8;
}
.widget_popular_post img,
.widget_latest_post img,
.widget_featured_post img {
    max-width: 80px;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    float: left;
    margin-right: 14px;
}
#colophon .widget_media_gallery img, 
#secondary .widget_media_gallery img {
    border-radius: 15px;
}
.textwidget img {
    margin-bottom: 25px;
    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: #ff4443;
}
#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,
.recent-widget-wrapper .widget {
    background-color: #fff;
    overflow: hidden;
    border-radius: 20px;
    padding: 20px;
}
.home.right-sidebar .recent-widget-wrapper .widget {
    margin-bottom: 30px;
}
.widget svg {
	fill: #ff4443;
}
#secondary a,
#secondary li {
    color: #212121;
}
#secondary a:hover,
#secondary a:focus {
    color: #ff4443;
}
.widget_tag_cloud a {
    font-size: 14px !important;
    border: 1px solid #aaa;
    line-height: 1;
    display: inline-block;
    margin: 0 3px 3px 0;
    padding: 3px 8px;
}
.widget ul {
    list-style: none;
    margin: 0;
}
#secondary.widget-area ul,
.recent-widget-wrapper ul {
    padding: 0;
}
#secondary .widget-title, 
#secondary .widgettitle,
.recent-widget-wrapper .widget-title, 
.recent-widget-wrapper .widgettitle {
	margin: -20px -20px 20px;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
#secondary.widget-area ul li a,
.recent-widget-wrapper ul li a {
	color: #333;
}
#secondary.widget-area ul li a:hover,
.recent-widget-wrapper ul li a:hover,
#secondary.widget-area ul li a:focus,
.recent-widget-wrapper ul li a:focus {
	color: #ff4443;
}
.recent-widget-wrapper .social-icons ul li {
	padding-right:0;
}
.widget.widget_media_image img {
    width: 100%;
}
#wp-calendar {
    display: table;
}
#secondary .widget.widget_calendar th {
    color: #000;
}
#wp-calendar td,
#wp-calendar th {
    padding: 5px;
}
.must-read-wrapper {
    margin: 0 -15px;
}
#must-read.page-section {
    padding-top: 0;
}
#must-read article {
   width: 25%;
   float: left;
   padding: 0 15px;
}
#must-read .featured-image {
    padding: 110px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    position: relative;
}
/*--------------------------------------------------------------
# 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: #212121;
    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: #212121;
    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: #ff4443;
}
.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;
}
.post-categories li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 7px;
    margin-bottom: 5px;
}
.post-categories li:last-child {
	margin-right: 0;
}
.post-categories a {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 13px;
    color: #ffb72b;
    border:1px solid #ffb72b;
    display: inline-block;
    padding: 6px 13px;
    line-height: 1.2;
    letter-spacing: 0.01em;
    border-radius: 50px;
}
.post-categories a:hover {
	background-color: #f44040;
	color: #fff;
}
.entry-meta span a {
    font-size: 16px;
    color: #73747a;
    font-weight: 600;
}
.tags-links a {
    border: 1px solid #73747a;
    display: inline-block;
    padding: 5px 10px;
    line-height: 1;
    margin-right: 10px;
}
.tags-links a:hover,
.tags-links a:focus {
	background-color: #73747a;
	color: #fff;
}
span.byline:after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-color: #bababc;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    text-align: center;
    margin: 0 10px;
}
.byline a,
.posted-on a {
	color: #212121;
}
.byline a:hover,
.byline a:focus,
.posted-on a:hover,
.posted-on a:focus {
	color: #ff4443;
}
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: -60px;
    margin-left: 80px;
    padding: 50px 20px 20px;
    background-color: #fff;
    border: 1px solid #eaedf3;
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.05);
}
#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: #ff4443;
    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;
}
.reply a:hover,
.reply a:focus {
	background-color: #212121;
    color: #fff;
}
.comment-meta .url,
.comment-meta .fn {
    display: inline-block;
    color: #212121;
    font-size: 16px;
    margin-right: 5px;
    font-weight: 400;
}
.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: #ff4443;
}
.comment-metadata a,
.comment-metadata a time {
    color: #212121;
}
.comment-metadata a:hover,
.comment-metadata a:focus,
.comment-metadata a:hover time,
.comment-metadata a:focus time {
	color: #ff4443;
}
.comment-author.vcard,
.comment-metadata {
    display: inline-block;
}
.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: 60px 0;
}
.entry-content {
	margin-top: 0;
}
.wrapper {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}
.post-thumbnail-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.entry-title,
.section-title {
    font-size: 32px;
    font-size: 2em;
    font-weight: 600;
    margin: 0 0 11px;
    color: #32363a;
    word-wrap: break-word;
}
.section-header {
    position: relative;
    margin-bottom: 25px;
    text-align: center;
}
.section-header:after {
    content: "";
    border-top: 1px solid #32363a;
    position: absolute;
    top: 50%;
    right: 0;
    width: 100%;
    height: 4px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.section-title {
    color: #32363a;
    font-size: 32px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    font-weight: 400;
    margin-bottom: 0;
}
.section-subtitle {
    color: #ff4443;
    text-transform: uppercase;
    font-size: 22px;
    font-size: 1.375em;
    margin: 0;
    font-weight: 400;
}
.section-header-wrapper .view-all {
    display: none;
}
.mobile-view.view-all {
    display: block;
    text-align: center;
    margin-top: 30px;
}
.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;
	border-radius: 30px;
	min-width: 161px;
	border: none;
	background-color: #ff4443;
	color: #fff;
	position: relative;
	text-align: center;
	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;
}
.btn:hover,
.btn:focus {
	background-color: #212121;
    color: #fff;
}
#infinite-handle {
    text-align: center;
    margin-bottom: 30px;
}
button:focus {
	border: none;
}
/*--------------------------------------------------------------
# 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%;
	padding: 5px;
}

.gallery-item img {
	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 li:not(:last-child) {
    margin-right: 5px;
}
.social-icons,
.social-icons ul {
    margin: 0;
    padding: 0;
}
.social-icons li a {
    background-color: transparent;
    width: 40px;
    height: 40px;
    line-height: 36px;
    display: block;
}
#masthead .social-icons li a {
	line-height: 40px;
}
.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 Hover Color
--------------------------------------------------------------*/
.social-icons li a[href*="facebook.com"]:hover,
.social-icons li a[href*="fb.com"]:hover,
.social-icons li a[href*="facebook.com"]:focus,
.social-icons li a[href*="fb.com"]:focus {
 	background-color: #3c5798 !important;
}
.social-icons li a[href*="twitter.com"]:hover,
.social-icons li a[href*="twitter.com"]:focus {
 	background-color: #1ea0f1 !important;
}
.social-icons li a[href*="linkedin.com"]:hover,
.social-icons li a[href*="linkedin.com"]:focus {
 	background-color: #0077B5 !important;
}
.social-icons li a[href*="plus.google.com"]:hover,
.social-icons li a[href*="plus.google.com"]:focus {
 	background-color: #ec7161 !important;
}

.social-icons li a[href*="youtube.com"]:hover,
.social-icons li a[href*="youtube.com"]:focus {
 	background-color: #cc181e !important;
}

.social-icons li a[href*="dribbble.com"]:hover,
.social-icons li a[href*="dribbble.com"]:focus {
 	background-color: #f4a09c !important;
}

.social-icons li a[href*="pinterest.com"]:hover,
.social-icons li a[href*="pinterest.com"]:focus {
 	background-color: #bd081b !important;
}

.social-icons li a[href*="bitbucket.org"]:hover,
.social-icons li a[href*="bitbucket.org"]:focus {
 	background-color: #205081 !important;
}

.social-icons li a[href*="github.com"]:hover,
.social-icons li a[href*="github.com"]:focus {
 	background-color: #323131 !important;
}

.social-icons li a[href*="codepen.io"]:hover,
.social-icons li a[href*="codepen.io"]:focus {
 	background-color: #333 !important;
}

.social-icons li a[href*="flickr.com"]:hover,
.social-icons li a[href*="flickr.com"]:focus {
 	background-color: #025FDF !important;
}

.social-icons li a[href$="/feed/"]:hover,
.social-icons li a[href$="/feed/"]:focus {
 	background-color: #089DE3 !important;
}

.social-icons li a[href*="foursquare.com"]:hover,
.social-icons li a[href*="foursquare.com"]:focus {
 	background-color: #F94877 !important;
}

.social-icons li a[href*="instagram.com"]:hover,
.social-icons li a[href*="instagram.com"]:focus {
 	background-color: #B9358A !important;
}

.social-icons li a[href*="tumblr.com"]:hover,
.social-icons li a[href*="tumblr.com"]:focus {
 	background-color: #56BC8A !important;
}

.social-icons li a[href*="reddit.com"]:hover,
.social-icons li a[href*="reddit.com"]:focus {
 	background-color: #FF4500 !important;
}

.social-icons li a[href*="vimeo.com"]:hover,
.social-icons li a[href*="vimeo.com"]:focus {
 	background-color: #00ADEF !important;
}

.social-icons li a[href*="digg.com"]:hover,
.social-icons li a[href*="digg.com"]:focus {
 	background-color: #00ADEF !important;
}

.social-icons li a[href*="twitch.tv"]:hover,
.social-icons li a[href*="twitch.tv"]:focus {
 	background-color: #0E9DD9 !important;
}

.social-icons li a[href*="stumbleupon.com"]:hover,
.social-icons li a[href*="stumbleupon.com"]:focus {
 	background-color: #EB4924 !important;
}

.social-icons li a[href*="delicious.com"]:hover,
.social-icons li a[href*="delicious.com"]:focus {
 	background-color: #0076E8 !important;
}

.social-icons li a[href*="mailto:"]:hover,
.social-icons li a[href*="mailto:"]:focus {
 	background-color: #4169E1 !important;
}
.social-icons li a[href*="soundcloud.com"]:hover,
.social-icons li a[href*="soundcloud.com"]:focus {
 	background-color: #FF5500 !important;
}
.social-icons li a[href*="wordpress.org"]:hover,
.social-icons li a[href*="wordpress.org"]:focus {
 	background-color: #0073AA !important;
}
.social-icons li a[href*="wordpress.com"]:hover {
 	background-color: #00AADC !important;
}

.social-icons li a[href*="jsfiddle.net"]:hover,
.social-icons li a[href*="jsfiddle.net"]:focus {
 	background-color: #396AB1 !important;
}

.social-icons li a[href*="tripadvisor.com"]:hover,
.social-icons li a[href*="tripadvisor.com"]:focus {
 	background-color: #FFE090 !important;
}

.social-icons li a[href*="angel.co"]:hover,
.social-icons li a[href*="angel.co"]:focus {
 	background-color: #333 !important;
}

.social-icons li a[href*="slack.com"]:hover,
.social-icons li a[href*="slack.com"]:focus {
 	background-color: #E60264 !important;
}
/*--------------------------------------------------------------
#  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;
}
.error-404.not-found {
    text-align: center;
}
.error-404.not-found .search-submit svg.icon-search {
    fill: #fff;
}
.error-404.not-found .page-content {
    margin-top: 20px;
}
/*--------------------------------------------------------------
#  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);
}
.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: 50px;
    height: 50px;
    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-prev:before, 
.slick-next:before {
    content: "";
    background-image: url('assets/uploads/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:focus, 
.slick-next:focus {
	background-color: transparent;
}
.slick-prev:hover, 
.slick-next:hover {
	background-color: transparent;
	opacity: 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;
}
/*--------------------------------------------------------------
#  Trending News
--------------------------------------------------------------*/
#trending-news {
    padding: 20px 0;
}
#trending-news .wrapper {
    position: relative;
}
#trending-news .news-title {
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    background-color: #fa3535;
    color: #fff;
    display: inline-block;
    padding: 0px 9px;
    border-radius: 15px;
    margin-bottom: 10px;
    min-width: 141px;
    text-align: center;
    line-height: 25px;
}
.trending-news-posts {
	margin: 0 auto;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
}
.trending-news-posts p {
    margin: 0;
    color: #32363a;
    font-style: italic;
}
.trending-news-posts button {
    position: absolute;
    background-color: transparent;
    box-shadow: none;
    width: auto;
    height: auto;
    opacity: 0.2;
}
.trending-news-posts button.slick-prev {
    left: auto;
    right: 15px;
}
.trending-news-posts button.slick-next.slick-arrow {
    right: 0;
}
.trending-news-posts button.slick-prev.slick-arrow:after {
    content: "";
    background-color: rgba(0, 0, 0, 0.2);
    height: 16px;
    width: 1px;
    display: inline-block;
    margin: 0 10px;
} 

/*--------------------------------------------------------------
#  Hero Section
--------------------------------------------------------------*/
.entry-title a {
    color: #32363a;
}
.entry-title a:hover {
    color: #797979;
}
.item-wrapper .featured-image {
    background-size: cover;
    background-position: 50%;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 125px 0;
}
.large-width .featured-image {
    padding: 275px 0;
}
.grid-item {
    width: 100%;
    padding: 0 15px;
    margin-bottom: 30px;
}
.hero-section-wrapper.item-wrapper {
    margin: 0 -15px;
}
.grid-item {
    width: 25%;
} 
#hero-section .grid-item.large-width,
#featured-posts .grid-item.large-width {
    width: 50%;
} 
#hero-section .grid-item,
#featured-posts .grid-item {
    margin-bottom: 30px;
}
.item-wrapper .entry-container,
.recent-posts-tabs .entry-container,
#must-read .entry-container {
    background-color: #fff;
    padding: 18px 20px;
    border-radius: 20px;
    margin-top: -30px;
    position: relative;
}
.item-wrapper .entry-title,
#must-read .entry-title {
    font-size: 24px;
    font-weight: 400;
    margin: 7px 0 10px;
    line-height: 30px;
}
.item-wrapper .entry-content {
    display: none;
}
.item-wrapper article:nth-child(1n) .post-categories li:first-child a {
    color: #ffb72b;
}
.item-wrapper article:nth-child(1n) .post-categories li:first-child a:hover {
    background-color: #ffb72b;
    color: #fff;
}
.item-wrapper article:nth-child(1n) .post-categories li:last-child a {
    color: #46c4f3;
    border-color: #46c4f3;
}
.item-wrapper article:nth-child(1n) .post-categories li:last-child a:hover {
    background-color: #46c4f3;
    color: #fff;
}
.large-width .entry-content {
    display: block;
}
.item-wrapper .large-width .entry-container,
.recent-wrapper article:first-child .entry-container {
    padding: 22px 30px;
}
.item-wrapper .large-width .entry-title,
#featured-videos .large-width .entry-title {
    font-size: 32px;
    padding: 5px 0 0;
    line-height: 40px;
}
.item-wrapper article.large-width .post-categories li:first-child a,
.archive-blog-wrapper article .post-categories li:last-child a {
	color: #865fc1;
	border-color: #865fc1;
}
.item-wrapper article.large-width .post-categories li:first-child a:hover,
.archive-blog-wrapper article .post-categories li:last-child a:hover {
	background-color: #865fc1;
	color: #fff;
}
.item-wrapper article.large-width .post-categories li:last-child a,
#must-read article .post-categories li:first-child a {
	color: #eb4986;
	border-color: #eb4986;
}
.item-wrapper article.large-width .post-categories li:last-child a:hover, 
#must-read article .post-categories li:first-child a:hover {
	background-color: #eb4986;
	color: #fff;
}
.item-wrapper article.large-width,
.item-wrapper article:nth-child(4n),
.item-wrapper article:nth-child(5n)  {
	margin-bottom: 0;
}
.item-wrapper article:nth-child(3n) .post-categories li:first-child a {
	color: #cba87a;
	border-color:#cba87a;
}
.item-wrapper article:nth-child(3n) .post-categories li:first-child a:hover {
	background-color: #cba87a;
	color: #fff;
}
.item-wrapper article:nth-child(3n) .post-categories li:last-child a,
.archive-blog-wrapper article .post-categories li:first-child a {
	color: #fa3535;
	border-color:#fa3535;
}
.item-wrapper article:nth-child(3n) .post-categories li:last-child a:hover,
.archive-blog-wrapper article .post-categories li:first-child a:hover,
.recent-wrapper article .post-categories li:first-child a:hover {
	background-color: #fa3535;
	color: #fff;	
}
.item-wrapper article:nth-child(4n) .post-categories li:first-child a:hover {
    background-color: #ff8737;
    color: #fff;
}
.item-wrapper article:nth-child(4n) .post-categories li:last-child a:hover, 
#must-read article .post-categories li:last-child a:hover {
	background-color: #7acbbd;
	color: #fff;
}
.item-wrapper article:nth-child(4n) .post-categories li:first-child a {
	color: #ff8737;
	border-color:#ff8737;
}
.item-wrapper article:nth-child(4n) .post-categories li:last-child a,
#must-read article .post-categories li:last-child a {
	color: #7acbbd;
	border-color:#7acbbd;
}
.item-wrapper article:nth-child(5n) .post-categories li:first-child a {
	color: #4c5bea;
	border-color:#4c5bea;
}
.item-wrapper article:nth-child(5n) .post-categories li:first-child a:hover,
.recent-wrapper article .post-categories li:last-child a:hover {
	background-color: #4c5bea;
	color: #fff;
}
.item-wrapper article:nth-child(5n) .post-categories li:last-child a {
	color: #14c267;
	border-color:#14c267;
}
.item-wrapper article:nth-child(5n) .post-categories li:last-child a:hover {
	background-color: #14c267;
	color: #fff;
}
/*--------------------------------------------------------------
#  Featured Posts
--------------------------------------------------------------*/
#featured-posts .grid-item:nth-child(1),
#featured-videos .grid-item:nth-child(1),
#featured-videos .grid-item.reverse {
    width: 50%;
}
#featured-posts .grid-item:nth-child(2),
#featured-videos .grid-item:nth-child(2) {
    width: 25%;
}
#featured-videos article.grid-item.large-width {
    width: 100%;
}
#featured-posts .item-wrapper .featured-image {
    padding: 110px;
}
#featured-posts .large-width .featured-image {
    padding: 250px 0;
}
#featured-posts .section-title,
#inner-content-wrapper .section-title,
#must-read .section-title {
    display: inline-block;
    background-color: #f2f4f8;
    padding: 0 15px;
    position: relative;
    z-index: 1;
}

/*--------------------------------------------------------------
#  Cta
--------------------------------------------------------------*/
#cta {
    padding: 150px 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50%;
    color: #fff;
    text-align: center;
    position: relative;
}
#cta .entry-container {
    max-width: 600px;
    margin: auto;
    position: relative;
}
.entry-container .entry-title {
    font-weight: 400;
    margin: 10px 0;
}
#cta .entry-container a {
    color: #fff;
}
#cta .entry-container .post-categories a,
#featured-videos .entry-container .post-categories a {
    color: #fff;
    border-color: #fff;
}
#cta .entry-container .post-categories a:hover, 
#featured-videos .entry-container .post-categories a:hover {
	border-color: #f44040;
}
#cta .byline a:hover,
#cta .byline a:focus,
#cta .posted-on a:hover,
#cta .posted-on a:focus,
#featured-videos .byline a:hover,
#featured-videos .byline a:focus,
#featured-videos .posted-on a:hover,
#featured-videos .posted-on a:focus,
#cta .entry-title a:hover,
#featured-videos .entry-title a:hover {
    color: rgba(255, 255, 255, 0.8);
}
/*--------------------------------------------------------------
#  Recent Posts
--------------------------------------------------------------*/
#recent-posts .section-header-wrapper {
    background-color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
}
.section-content-wrapper {
    margin-top: 30px;
    display: inline-block;
    margin: 30px -15px 0 -15px;
}
#recent-posts .section-header {
    width: auto;
    margin: 0;
}
#recent-posts .section-header:after,
#recent-posts .section-header:before {
	border-top: none;
}
.tabs li {
    display: inline-block;
    margin-right: 7px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #b9b9ba;
    padding: 0 13px;
    cursor: pointer;
}
.tabs li.active,
.tabs li:hover {
    color: #32363a;
}
ul.tabs {
    list-style: none;
    padding-left: 0;
}
.tab-content {
	display: none;
}
.tab-content.active {
	display: block;
}
.recent-wrapper {
    float: left;
    width: 75%;
    padding-right: 30px;
}
.recent-widget-wrapper {
    float: left;
    width: 25%;
}
.recent-wrapper .featured-image,
#featured-videos .featured-image {
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.recent-posts-tabs article:first-child .featured-image {
    padding: 160px 0;
}
.recent-posts-tabs article {
    padding: 0 15px;
    margin-bottom: 30px;
    width: 38%;
    float: left;
}
.recent-posts-tabs article {
    width: 53%;
    float: left;
    display: table;
    position: relative;
}
.recent-posts-tabs article:first-child {
    width: 47%;
    float: left;
}
.recent-wrapper article:first-child .entry-title {
    font-size: 24px;
}
.recent-posts-tabs article:not(:first-child) .featured-image {
    width: 120px;
    float: left;
    z-index: 1;
    display: table-cell;
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 15px;
    height: 100%;
}
.recent-posts-tabs article:not(:first-child) .entry-container {
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 34px 15px 34px 140px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    display: table-cell;
    vertical-align: middle;
    height: auto;
    width: 100%;
    border-radius: 20px;
}
.recent-wrapper article:not(:first-child) .entry-container .entry-title {
    font-size: 16px;
    margin: 0;
}
.recent-wrapper article:not(:first-child) .entry-container .entry-content {
    display: none;
}
.recent-wrapper article:not(:first-child) .entry-container .post-categories {
    display: none;
}
.recent-wrapper article .post-categories li:first-child a {
    color: #fa3535;
    border-color: #fa3535;
}
.recent-wrapper article .post-categories li:last-child a {
    color: #4c5bea;
    border-color: #4c5bea;
}
.widget-title, .widgettitle {
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    background-color: #865fc1;
    padding: 15px;
    text-align: center;
}
.widget.widget_about .aboutwidget {
    text-align: center;
    padding: 25px;
}
.widget.widget_about .aboutwidget img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
}
.widget.widget_about .aboutwidget h5 {
    margin-bottom: 0;
    font-weight: 600;
}
.widget .social-icons {
    text-align: center;
    margin-top: -10px;
}
.widget .social-icons li a svg {
    fill: #333;
}
.widget .social-icons li a:hover svg,
.widget .social-icons li a:focus svg {
	fill: #fff;
}
.inner-wrapper {
    margin: 0 -15px;
}
.inner-wrapper .hentry {
    padding: 0 15px;
}
.inner-wrapper .featured-image {
    border-radius: 0;
    overflow: visible;
    position: relative;
}
.inner-wrapper article:first-child .featured-image {
    padding: 125px 0;
}
.inner-wrapper article:not(:first-child) .featured-image {
    width: 80px;
    height: 80px;
    float: left;
    margin-right: -10px;
    position: relative;
    z-index: 1;
    border-radius: 15px;
}
.inner-wrapper article:not(:first-child) .featured-image .overlay {
	border-radius: 15px;
    display: none;
}
.inner-wrapper article:not(:first-child) .entry-container {
    display: block;
    margin-left: 0;
    overflow: hidden;
    margin-top: 5px;
    margin-bottom: 0px;
    padding-left: 28px;
}
.inner-wrapper article:not(:first-child) .entry-container .byline {
    display: none;
}
.inner-wrapper article {
    position: relative;
}
.hentry-warpper {
    background-color: #fff;
    border-radius: 25px;
}
.inner-wrapper article:first-child .entry-container {
    position: absolute;
    bottom: 0;
    padding: 15px 20px;
}
.inner-wrapper article:first-child .entry-container .entry-title {
    margin: 0;
}
.inner-wrapper article:first-child .entry-container .entry-title a,
.inner-wrapper article:first-child .entry-meta span a,
.inner-wrapper article:first-child span.byline {
    color: #fff;
}
.inner-wrapper article:not(:first-child) {
    border-bottom: 1px solid #eee;
    padding: 20px;
    display: inline-block;
    width: 100%;
}
.inner-wrapper article:last-child {
    border-bottom: none;
}
#recent-posts .inner-wrapper .entry-header span a {
    color: #865fc1;
    border: none;
    font-family: 'Frank Ruhl Libre', serif;
    font-size: 20px;
    padding: 15px 20px;
    display: inline-block;
}
#recent-posts .inner-wrapper .post-categories li a:hover {
    background-color: transparent;
}
.inner-wrapper article:nth-child(1n):not(:first-child) .entry-container .entry-meta span a,
.inner-wrapper article:nth-child(1n) .entry-title a:hover,
#recent-posts .inner-wrapper .hentry:nth-child(1n) .entry-header span a {
    color: #865fc1;
}
#recent-posts .inner-wrapper .hentry:nth-child(2n) .post-categories a,
.inner-wrapper .hentry:nth-child(2n) article:not(:first-child) .entry-container .entry-meta span a,
.inner-wrapper .hentry:nth-child(2n) article .entry-container .entry-title a:hover,
#recent-posts .inner-wrapper .hentry:nth-child(2n) .entry-header span a {
    color: #eb4986;
}
#recent-posts .inner-wrapper .hentry:nth-child(3n) .post-categories a,
.inner-wrapper .hentry:nth-child(3n) article:not(:first-child) .entry-container .entry-meta span a,
.inner-wrapper .hentry:nth-child(3n) article .entry-container .entry-title a:hover,
#recent-posts .inner-wrapper .hentry:nth-child(3n) .entry-header span a {
    color: #ff8737;
}

/*--------------------------------------------------------------
#  Featured Videos
--------------------------------------------------------------*/
#featured-videos {
    background-color: #32363a;
}
#featured-videos .section-content {
    margin: 0 -15px;
}
#featured-videos .wp-video {
    margin: 0 auto;
}
#featured-videos .section-title {
	display: inline-block;
    background-color: #32363a;
    padding: 0 15px;
    color: #fff;
    position: relative;
    z-index: 1;
}
#featured-videos .section-header:after {
    border-top: 1px solid rgba(255, 255, 255, 0.20);
} 
#featured-videos article:first-child .featured-image,
#featured-videos .grid-item.reverse .featured-image {
	padding: 265px 0;
}
#featured-videos article .featured-image {
	padding: 125px 0;
}
#featured-videos .grid-wrapper {
	position: relative;
}	
#featured-videos .entry-container {
    position: absolute;
    bottom: 0;
    color: #fff;
    padding: 30px;
}
#featured-videos .entry-meta span a {
    color: #fff;
}
#featured-videos article:not(:first-child) .entry-title {
	font-size: 18px;
	margin: 0;
	line-height: 1.5;
}
#featured-videos article:not(:first-child) .entry-container {
	padding:20px;
}
#featured-videos article:not(:first-child) .entry-meta span.byline,
#featured-videos article:not(:first-child) .cat-links {
	display: none;
}
#featured-videos  .entry-title a {
    color: #fff;
}
#featured-videos a.video-link {
	color: #fff;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 6px 20px;
    vertical-align: middle;
    margin-bottom: 20px;
    display: inline-block;
}
#featured-videos article:not(:first-child) .icon-play a {
	margin-bottom: 10px;
}
.popup {
    max-width: 50%;
    margin: auto;
    top: 50%;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 30000;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.popup .widget_media_video {
    display: none;
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}
.video-overlay.active {
    background-color: #000;
    opacity: 0.9;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 30000;
    width: 100%;
    height: 100%;
    position: fixed;
    visibility: visible;
    display: block;
}
/*--------------------------------------------------------------
#  Archive / Blog / Latest Posts
--------------------------------------------------------------*/
.archive-blog-wrapper article {
    margin-bottom: 30px;
}
.archive-post-wrapper:before,
.archive-post-wrapper:after {
    content: "";
    display: table;
    clear: both;
}
.archive-blog-wrapper article:last-child {
    margin-bottom: 0;
}
.archive-blog-wrapper article .featured-image {
    position: relative;
    background-size: cover;
    background-position: 50%;
    background-color: #333;
    padding: 150px 0;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
    overflow: hidden;
}
.archive-blog-wrapper article .archive-post-wrapper .entry-container {
    padding: 30px;
    background-color: #fff;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
    position: relative;
}
.no-sidebar .archive-blog-wrapper article .archive-post-wrapper .entry-container,
.boxed-layout .archive-blog-wrapper article .archive-post-wrapper .entry-container {
    padding: 70px 40px 50px;
}
.archive-blog-wrapper .cat-links {
    display: block;
}
.archive-blog-wrapper article .entry-title {
    font-size: 24px;
    margin: 5px 0;
}
.archive-blog-wrapper article .entry-content {
    margin-bottom: 20px;
}
.archive-blog-wrapper .entry-content p {
    margin-bottom: 0;
}
.right-sidebar #primary.blog-full-width,
.left-sidebar #primary.blog-full-width,
.recent-wrapper.blog-full-width {
    width: 100%;
    float: none;
    padding-right: 0;
}
#primary.blog-full-width article.no-post-thumbnail .entry-container {
    width: 100%;
    float: none;
    overflow: hidden;
    position: relative;
    margin-left: 0;
    text-align: center;
}
/*--------------------------------------------------------------
#  Single Post
--------------------------------------------------------------*/
.single .posted-on {
    margin-bottom: 15px;
    display: block;
}
.single .entry-meta > span:not(:last-child) {
    margin-bottom: 15px;
    display: block;
}
.single .entry-meta > span:not(:last-child):after {
	display: none;
}
/*--------------------------------------------------------------
# 					Footer
--------------------------------------------------------------*/
#colophon {
    background-color: #32363a;
    color: #fff;
}
#colophon ul {
    list-style: none;
    padding: 0;
    margin: 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 .cat-links li {
	margin-bottom: 0;
	margin-right: 3px;
    width: auto;
}
#colophon .cat-links a,
#colophon .site-info a:hover,
#colophon .site-info a:focus,
#colophon .widget-title, 
#colophon .widgettitle {
	color: #fff;
	background-color: transparent;
}
#colophon .widget-title, 
#colophon .widgettitle {
    text-align: left;
    padding: 0;
    font-size: 20px;
    position: relative;
    overflow: hidden;
}
#colophon .widget-title span {
    background-color: #32363a;
    display: inline-block;
    position: relative;
    z-index: 1;
    padding-right: 20px;
}
#colophon .widget-title:after {
    content: "";
    position: absolute;
    bottom: 10px;
    background-color: rgba(255, 255, 255, 0.20);
    width: 100%;
    height: 1px;
    left: 0;
}
#colophon ul li a:hover,
#colophon ul li a:focus {
	color: #fff;
	opacity: 0.8;
}
#colophon .widget_recent_entries li {
    position: relative;
}
.widget_featured_post article {
    position: relative;
    clear: both;
    display: table;
    width: 100%;
}
.widget_featured_post .featured-image {
    background-size: cover;
    background-position: 50%;
    background-color: #333;
    width: 100px;
    height: 100%;
    float: left;
    display: table-cell;
    position: absolute;
    top: 0;
    left: 0;
}
.widget_featured_post .entry-container {
    padding: 5px 0;
    display: table-cell;
    text-align: left;
    padding-left: 120px;
}
#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 {
    margin-bottom: 10px;
}
#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-family: 'Muli', sans-serif;
    font-size: 16px;
    font-weight: 400;
}
#colophon .widget_recent_entries ul li span:before {
	content: "";
    background-image: url('assets/uploads/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;
}
.site-info {
    text-align: center;
    padding: 23px 0;
    position: relative;
    background-color: #212121;
}
.site-info span {
	display: block;
	text-align: center;
    margin: 0 0 10px;
}
.site-info span:last-child {
    margin-bottom: 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;
}
#colophon .textwidget p,
.site-info span,
#colophon .posted-on a {
    color: #949494;
}
.error404.left-sidebar #primary,
.error404.right-sidebar #primary  {
    width: 100%;
    float: none;
    text-align: center;
}
.error-404.not-found form.search-form {
    max-width: 600px;
    margin: auto;
}

/*--------------------------------------------------------------
# Dark Version css
--------------------------------------------------------------*/
.dark #site-navigation,
.dark #masthead .menu-toggle {
    background-color: #000;
}

.dark #masthead {
    background: #111 !important;
}

.dark,
.dark #featured-posts .section-title, 
.dark #inner-content-wrapper .section-title, 
.dark #must-read .section-title,
.dark #featured-videos,
.dark #featured-videos .section-title,
.dark .site-info,
.dark .comment-content {
    background-color: #212121;
}

.dark h1, 
.dark h2, 
.dark h3, 
.dark h4, 
.dark h5, 
.dark h6,
.dark,
.dark .trending-news-posts p,
.dark .section-title,
.dark .entry-title a,
.dark .entry-meta span a,
.dark, 
.dark button, 
.dark input, 
.dark select, 
.dark textarea,
.dark .tabs li.active,
.dark .tabs li:hover,
.dark .post-navigation a, 
.dark .posts-navigation a,
.dark #secondary a, 
.dark #secondary li,
.dark .widget_search form.search-form input,
.dark #secondary .widget.widget_calendar th,
.dark .comments-title,
.dark #reply-title,
.dark #respond a,
.dark.search .no-results .page-title,
.dark #masthead .menu-label,
.dark #secondary.widget-area ul li a, 
.dark .recent-widget-wrapper ul li a,
.dark #respond input[type="text"], 
.dark #respond input[type="email"], 
.dark #respond input[type="url"],
.dark .single-wrapper .posted-on a,
.dark .comment-meta .url, 
.dark .comment-meta .fn,
.dark .comment-metadata a, 
.dark .comment-metadata a time,
.dark a:hover,
.dark a:focus {
	color: #fff;
}

.dark .navigation.posts-navigation svg, 
.dark .navigation.post-navigation svg,
.dark .widget .social-icons li a svg,
.dark #masthead .menu-toggle svg {
	fill: #fff;
}

.dark .entry-title a:hover,
.dark .entry-meta span a:hover,
.dark .tabs li:hover,
.dark .post-navigation a:hover, 
.dark .posts-navigation a:hover,
.dark #secondary a:hover, 
.dark #secondary li:hover,
.dark #respond a:hover,
.dark .single-wrapper .posted-on a:hover,
.dark .single-wrapper .posted-on a:focus,
.dark .comment-meta .url:hover,
.dark .comment-meta .url:focus,
.dark .comment-metadata a:hover,
.dark .comment-metadata a:focus,
.dark .widget a:hover,
.dark .widget a:focus {
	opacity: 0.8;
}

.dark .navigation.posts-navigation a:hover svg, 
.dark .navigation.post-navigation a:hover svg,
.dark .navigation.posts-navigation a:focus svg, 
.dark .navigation.post-navigation a:focus svg {
	fill:#fff;
	opacity: 0.8;

}

.dark .widget li:not(:last-child) {
	border-bottom-color: rgba(255, 255, 255, 0.10);
}

.dark .section-header:after {
	border-color: #fff;
}

.dark .item-wrapper .entry-container,
.dark .recent-posts-tabs .entry-container,
.dark #must-read .entry-container,
.dark #recent-posts .section-header-wrapper,
.dark .hentry-warpper,
.dark .archive-blog-wrapper article .archive-post-wrapper .entry-container,
.dark .navigation.post-navigation, 
.dark .navigation.posts-navigation,
.dark #secondary .widget,
.dark .widget_search form.search-form input,
.dark .widget_search form.search-form .search-submit,
.dark #respond textarea,
.dark #respond input[type="submit"]:hover, 
.dark #respond input[type="submit"]:focus,
.dark form.search-form input,
.dark .recent-widget-wrapper .widget,
.dark .widget select,
.dark #respond input[type="text"], 
.dark #respond input[type="email"], 
.dark #respond input[type="url"] {
	background-color: #333;
}

.dark .inner-wrapper article:not(:first-child) {
    border-bottom: 1px solid rgba(238, 238, 238, 0.18);
}
.dark .inner-wrapper article:last-child {
    border-bottom: none;
}
.dark .navigation.post-navigation,
.dark .navigation.posts-navigation,
.dark .comment-content {
 	border-color: #333;
 }
.dark #respond textarea,
.dark form.search-form input,
.dark #respond input[type="text"], 
.dark #respond input[type="email"], 
.dark #respond input[type="url"] {
    border-color: rgba(255, 255, 255, 0.35);
}

/*--------------------------------------------------------------
# Typography Options
--------------------------------------------------------------*/
.header-font-1 h1,
.header-font-1 h2,
.header-font-1 h3,
.header-font-1 h4,
.header-font-1 h5,
.header-font-1 h6,
.header-font-1 .site-title,
.header-font-1 .post-navigation a, 
.header-font-1 .posts-navigation a,
.header-font-1 .pagination .page-numbers,
.header-font-1 .pagination .page-numbers.dots:hover,
.header-font-1 .pagination .page-numbers.dots:focus,
.header-font-1 .post-navigation span,
.header-font-1 .posts-navigation span,
.header-font-1 .jetpack_subscription_widget input[type="submit"],
.header-font-1 .jetpack_subscription_widget button[type="submit"],
.header-font-1 .widget_popular_post a time,
.header-font-1 .widget_popular_post time,
.header-font-1 .widget_latest_post a time,
.header-font-1 .widget_latest_post time,
.header-font-1 .widget_featured_post a time,
.header-font-1 .widget_featured_post time,
.header-font-1 #secondary a,
.header-font-1 #secondary li,
.header-font-1 .reply a,
.header-font-1 .section-subtitle,
.header-font-1 .trail-items li,
.header-font-1 #introduction-section ul.post-categories li:after,
.header-font-1 ul.filter-tabs li a,
.header-font-1 #about-us .entry-header p,
.header-font-1 .post-categories a,
.header-font-1 .posted-on a {
	font-family: 'Rajdhani', sans-serif;
}

.header-font-2 h1,
.header-font-2 h2,
.header-font-2 h3,
.header-font-2 h4,
.header-font-2 h5,
.header-font-2 h6,
.header-font-2 .site-title,
.header-font-2 .post-navigation a, 
.header-font-2 .posts-navigation a,
.header-font-2 .pagination .page-numbers,
.header-font-2 .pagination .page-numbers.dots:hover,
.header-font-2 .pagination .page-numbers.dots:focus,
.header-font-2 .post-navigation span,
.header-font-2 .posts-navigation span,
.header-font-2 .jetpack_subscription_widget input[type="submit"],
.header-font-2 .jetpack_subscription_widget button[type="submit"],
.header-font-2 .widget_popular_post a time,
.header-font-2 .widget_popular_post time,
.header-font-2 .widget_latest_post a time,
.header-font-2 .widget_latest_post time,
.header-font-2 .widget_featured_post a time,
.header-font-2 .widget_featured_post time,
.header-font-2 #secondary a,
.header-font-2 #secondary li,
.header-font-2 .reply a,
.header-font-2 .section-subtitle,
.header-font-2 .trail-items li,
.header-font-2 #introduction-section ul.post-categories li:after,
.header-font-2 ul.filter-tabs li a,
.header-font-2 #about-us .entry-header p,
.header-font-2 .post-categories a,
.header-font-2 .posted-on a {
	font-family: 'Cherry Swash', sans-serif;
}

.header-font-3 h1,
.header-font-3 h2,
.header-font-3 h3,
.header-font-3 h4,
.header-font-3 h5,
.header-font-3 h6,
.header-font-3 .site-title,
.header-font-3 .post-navigation a, 
.header-font-3 .posts-navigation a,
.header-font-3 .pagination .page-numbers,
.header-font-3 .pagination .page-numbers.dots:hover,
.header-font-3 .pagination .page-numbers.dots:focus,
.header-font-3 .post-navigation span,
.header-font-3 .posts-navigation span,
.header-font-3 .jetpack_subscription_widget input[type="submit"],
.header-font-3 .jetpack_subscription_widget button[type="submit"],
.header-font-3 .widget_popular_post a time,
.header-font-3 .widget_popular_post time,
.header-font-3 .widget_latest_post a time,
.header-font-3 .widget_latest_post time,
.header-font-3 .widget_featured_post a time,
.header-font-3 .widget_featured_post time,
.header-font-3 #secondary a,
.header-font-3 #secondary li,
.header-font-3 .reply a,
.header-font-3 .section-subtitle,
.header-font-3 .trail-items li,
.header-font-3 #introduction-section ul.post-categories li:after,
.header-font-3 ul.filter-tabs li a,
.header-font-3 #about-us .entry-header p,
.header-font-3 .post-categories a,
.header-font-3 .posted-on a {
	font-family: 'Philosopher', sans-serif;
}

.header-font-4 h1,
.header-font-4 h2,
.header-font-4 h3,
.header-font-4 h4,
.header-font-4 h5,
.header-font-4 h6,
.header-font-4 .site-title,
.header-font-4 .post-navigation a, 
.header-font-4 .posts-navigation a,
.header-font-4 .pagination .page-numbers,
.header-font-4 .pagination .page-numbers.dots:hover,
.header-font-4 .pagination .page-numbers.dots:focus,
.header-font-4 .post-navigation span,
.header-font-4 .posts-navigation span,
.header-font-4 .jetpack_subscription_widget input[type="submit"],
.header-font-4 .jetpack_subscription_widget button[type="submit"],
.header-font-4 .widget_popular_post a time,
.header-font-4 .widget_popular_post time,
.header-font-4 .widget_latest_post a time,
.header-font-4 .widget_latest_post time,
.header-font-4 .widget_featured_post a time,
.header-font-4 .widget_featured_post time,
.header-font-4 #secondary a,
.header-font-4 #secondary li,
.header-font-4 .reply a,
.header-font-4 .section-subtitle,
.header-font-4 .trail-items li,
.header-font-4 #introduction-section ul.post-categories li:after,
.header-font-4 ul.filter-tabs li a,
.header-font-4 #about-us .entry-header p,
.header-font-4 .post-categories a,
.header-font-4 .posted-on a {
	font-family: 'Slabo 27px', sans-serif;
}

.header-font-5 h1,
.header-font-5 h2,
.header-font-5 h3,
.header-font-5 h4,
.header-font-5 h5,
.header-font-5 h6,
.header-font-5 .site-title,
.header-font-5 .post-navigation a, 
.header-font-5 .posts-navigation a,
.header-font-5 .pagination .page-numbers,
.header-font-5 .pagination .page-numbers.dots:hover,
.header-font-5 .pagination .page-numbers.dots:focus,
.header-font-5 .post-navigation span,
.header-font-5 .posts-navigation span,
.header-font-5 .jetpack_subscription_widget input[type="submit"],
.header-font-5 .jetpack_subscription_widget button[type="submit"],
.header-font-5 .widget_popular_post a time,
.header-font-5 .widget_popular_post time,
.header-font-5 .widget_latest_post a time,
.header-font-5 .widget_latest_post time,
.header-font-5 .widget_featured_post a time,
.header-font-5 .widget_featured_post time,
.header-font-5 #secondary a,
.header-font-5 #secondary li,
.header-font-5 .reply a,
.header-font-5 .section-subtitle,
.header-font-5 .trail-items li,
.header-font-5 #introduction-section ul.post-categories li:after,
.header-font-5 ul.filter-tabs li a,
.header-font-5 #about-us .entry-header p,
.header-font-5 .post-categories a,
.header-font-5 .posted-on a {
	font-family: 'Dosis', sans-serif;
}

.body-font-1 {
	font-family: 'News Cycle', sans-serif;
}

.body-font-2 {
	font-family: 'Pontano Sans', sans-serif;
}

.body-font-3 {
	font-family: 'Gudea', sans-serif;
}

.body-font-4 {
	font-family: 'Quattrocento Sans', sans-serif;
}

.body-font-5 {
	font-family: 'Khand', sans-serif;
}

/*--------------------------------------------------------------
# Second Design
--------------------------------------------------------------*/
.second-design .wrapper {
    width: 100%;
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
}

.second-design,
.second-design #featured-posts .section-title, 
.second-design #inner-content-wrapper .section-title, 
.second-design #must-read .section-title {
    background-color: #fff;
}

.second-design #trending-news .news-title,
.second-design .post-categories a,
.second-design .item-wrapper .featured-image,
.second-design .item-wrapper .entry-container, 
.second-design .recent-posts-tabs .entry-container, 
.second-design #must-read .entry-container,
.second-design .recent-wrapper .featured-image, 
.second-design #featured-videos .featured-image,
.second-design .hentry-warpper,
.second-design .archive-blog-wrapper article .archive-post-wrapper .entry-container,
.second-design .archive-blog-wrapper article.has-post-thumbnail .entry-container,
.second-design .archive-blog-wrapper article.has-post-thumbnail .entry-container:before,
.second-design .archive-blog-wrapper article.has-post-thumbnail .featured-image,
.second-design .inner-wrapper article:not(:first-child) .featured-image,
.second-design #secondary .widget-title, 
.second-design #secondary .widgettitle, 
.second-design .recent-widget-wrapper .widget-title, 
.second-design .recent-widget-wrapper .widgettitle,
.second-design #secondary .widget, 
.second-design .recent-widget-wrapper .widget,
.second-design #recent-posts .section-header-wrapper,
.second-design .recent-posts-tabs article:not(:first-child) .entry-container,
.second-design .widget_popular_post img, 
.second-design .widget_latest_post img, 
.second-design .widget_featured_post img,
.second-design #colophon .widget_media_gallery img, 
.second-design #secondary .widget_media_gallery img {
    border-radius: 0;
}

.second-design #cta .post-categories li:nth-child(1n) a,
.second-design #featured-videos .entry-container .post-categories a {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

.second-design .post-categories li:nth-child(1n) a,
.second-design .item-wrapper article .post-categories li:nth-child(1n) a,
.second-design .recent-wrapper article .post-categories li:nth-child(1n) a {
    background-color: #875FC0;
    border-color: #875FC0;
    color: #fff;
}

.second-design .post-categories li:nth-child(2n) a,
.second-design .item-wrapper article .post-categories li:nth-child(2n) a,
.second-design .recent-wrapper article .post-categories li:nth-child(2n) a {
    background-color: #EB4985;
    border-color: #EB4985;
    color: #fff;
}

.second-design #top-navigation,
.second-design #trending-news,
.second-design #hero-section {
	background-color: #000;
}

.second-design #featured-posts .entry-container,
.second-design #recent-posts .section-header-wrapper,
.second-design .hentry-warpper,
.second-design #secondary .widget, 
.second-design .recent-widget-wrapper .widget,
.second-design .archive-blog-wrapper article .archive-post-wrapper .entry-container,
.second-design .archive-blog-wrapper article.has-post-thumbnail .entry-container:before,
.second-design .item-wrapper .entry-container, 
.second-design .recent-posts-tabs .entry-container, 
.second-design #must-read .entry-container {
    background-color: #f2f4f8;
}

.second-design #recent-posts .inner-wrapper .entry-header span a {
	text-transform: uppercase;
}

.second-design .trending-news-posts p {
	color: #aaa;
}

.second-design #hero-section .hero-item-wrapper {
    position: relative;
}

.second-design #hero-section .item-wrapper .hero-item-wrapper .entry-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 15px;
    background-color: rgba(0, 0, 0, 0.60);
}

.second-design #trending-news .slick-arrow {
    opacity: 1;
}

.second-design #trending-news .slick-arrow: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);
}

.second-design .archive-blog-wrapper article:nth-child(1n) .post-categories li:nth-child(1n) a,
.second-design .archive-blog-wrapper article:nth-child(1n) .post-categories li:nth-child(2n) a,
.second-design #must-read article:nth-child(1n) .post-categories li:nth-child(1n) a,
.second-design #must-read article:nth-child(1n) .post-categories li:nth-child(2n) a,
.second-design #hero-section .entry-title a,
.second-design #hero-section .entry-meta span a,
.second-design #hero-section .entry-content,
.second-design #hero-section .entry-meta {
	color: #fff;
}

.second-design #masthead .overlay {
	opacity: 0.7;
	display: block;
}

.second-design #masthead .wrapper {
	position: relative;
}

.second-design #hero-section .entry-title {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 0;
}

.second-design #hero-section .large-width .entry-title {
    font-size: 28px;
}

.second-design #hero-section .cat-links {
    position: absolute;
    top: 20px;
    left: 20px;
}
 
.second-design #featured-posts article:nth-child(1n) .post-categories li:nth-child(1n) a {
	background-color: #875FC0;
    border-color: #875FC0;
}

.second-design #featured-posts article:nth-child(1n) .post-categories li:nth-child(2n) a {
	background-color: #EB4985;
    border-color: #EB4985;
}

.second-design #featured-posts article:nth-child(2n) .post-categories li:nth-child(1n) a {
	background-color: #FF8738;
    border-color: #FF8738;
}

.second-design #featured-posts article:nth-child(2n) .post-categories li:nth-child(2n) a {
	background-color: #7ACABD;
    border-color: #7ACABD;
}

.second-design #featured-posts article:nth-child(3n) .post-categories li:nth-child(1n) a,
.second-design #recent-posts .tab-content article:nth-child(1n) .post-categories li:nth-child(1n) a,
.second-design .archive-blog-wrapper article:nth-child(1n) .post-categories li:nth-child(1n) a {
	background-color: #FB3536;
    border-color: #FB3536;
}

.second-design #featured-posts article:nth-child(3n) .post-categories li:nth-child(2n) a,
.second-design #recent-posts .tab-content article:nth-child(1n) .post-categories li:nth-child(2n) a,
.second-design .archive-blog-wrapper article:nth-child(1n) .post-categories li:nth-child(2n) a {
	background-color: #4C5BEA;
    border-color: #4C5BEA;
}

.second-design #featured-posts article:nth-child(4n) .post-categories li:nth-child(1n) a,
.second-design #must-read article:nth-child(1n) .post-categories li:nth-child(1n) a {
	background-color: #BF289B;
    border-color: #BF289B;
}

.second-design #featured-posts article:nth-child(4n) .post-categories li:nth-child(2n) a,
.second-design #must-read article:nth-child(1n) .post-categories li:nth-child(2n) a {
	background-color: #14C368;
    border-color: #14C368;
}

.second-design #featured-posts article:nth-child(5n) .post-categories li:nth-child(1n) a {
	background-color: #EB4985;
    border-color: #EB4985;
}

.second-design #featured-posts article:nth-child(5n) .post-categories li:nth-child(2n) a {
	background-color: #46C4F4;
    border-color: #46C4F4;
}

.second-design #must-read article:nth-child(2n) .post-categories li:nth-child(1n) a {
	background-color: #4C5BEA;
    border-color: #4C5BEA;
}

.second-design #must-read article:nth-child(2n) .post-categories li:nth-child(2n) a {
	background-color: #FB3536;
    border-color: #FB3536;
}

.second-design #must-read article:nth-child(3n) .post-categories li:nth-child(1n) a {
	background-color: #CAA87A;
    border-color: #CAA87A;
}

.second-design #must-read article:nth-child(3n) .post-categories li:nth-child(2n) a {
	background-color: #EB4985;
    border-color: #EB4985;
}

.second-design #must-read article:nth-child(4n) .post-categories li:nth-child(1n) a {
	background-color: #FF8838;
    border-color: #FF8838;
}

.second-design #must-read article:nth-child(4n) .post-categories li:nth-child(2n) a {
	background-color: #46C4F4;
    border-color: #46C4F4;
}

.second-design #hero-section article:nth-child(1n) .post-categories li:nth-child(1n) a {
	background-color: #875FC0;
    border-color: #875FC0;
}

.second-design #hero-section article:nth-child(1n) .post-categories li:nth-child(2n) a {
	background-color: #EB4985;
    border-color: #EB4985;
}

.second-design #hero-section article:nth-child(2n) .post-categories li:nth-child(1n) a {
	background-color: #CAA87A;
    border-color: #CAA87A;
}

.second-design #hero-section article:nth-child(2n) .post-categories li:nth-child(2n) a {
	background-color: #FB3536;
    border-color: #FB3536;
}

.second-design #hero-section article:nth-child(3n) .post-categories li:nth-child(1n) a {
	background-color: #EDA922;
    border-color: #EDA922;
}

.second-design #hero-section article:nth-child(3n) .post-categories li:nth-child(2n) a {
	background-color: #46C4F4;
    border-color: #46C4F4;
}

.second-design #hero-section article:nth-child(4n) .post-categories li:nth-child(1n) a {
	background-color: #FB3536;
    border-color: #FB3536;
}

.second-design #hero-section article:nth-child(4n) .post-categories li:nth-child(2n) a {
	background-color: #4C5BEA;
    border-color: #4C5BEA;
}

.second-design #hero-section article:nth-child(5n) .post-categories li:nth-child(1n) a {
	background-color: #BF289B;
    border-color: #BF289B;
}

.second-design #hero-section article:nth-child(5n) .post-categories li:nth-child(2n) a {
	background-color: #14C368;
    border-color: #14C368;
}

.second-design #page #content .post-categories a:hover,
.second-design #page #content .post-categories a:focus {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.second-design #hero-section .entry-title a:hover,
.second-design #hero-section .entry-title a:focus {
	color: #fff;
	opacity: 0.8;
}
.second-design #hero-section .entry-meta span a {
	opacity: 0.8;
}

.second-design .trending-news-posts button.slick-prev.slick-arrow:after {
    background-color: rgba(255, 255, 255, 0.30);
}

@media screen and (min-width: 1024px) {
	.second-design .wrapper {
		padding-left: 50px;
		padding-right: 50px;
	}

	.second-design #site-navigation {
	    background-color: #1D2029;
	}

	.second-design .main-navigation a, 
	.second-design .main-navigation ul.nav-menu > li > a {
		color: #fff;
	}

	.second-design #masthead .main-navigation ul.nav-menu > li > a > svg {
		fill: #fff;
	}

	.second-design #masthead .main-navigation ul.nav-menu > li:hover > a > svg, 
	.second-design #masthead .main-navigation ul.nav-menu > li.current-menu-item > a > svg {
	    fill: #ff4443;
	}

	.second-design #masthead .main-navigation ul.nav-menu > li:nth-child(1n):before {
		opacity: 0;
	}

	.second-design #masthead .main-navigation ul.nav-menu > li.current-menu-item:before {
		opacity: 1;
		background-color: #ff4443;
	}
}

@media screen and (max-width: 1200px) {
	.second-design #hero-section .large-width .entry-content {
	    display: none;
	}
}


.dark.second-design,
.dark.second-design #featured-posts .section-title, 
.dark.second-design #inner-content-wrapper .section-title, 
.dark.second-design #must-read .section-title {
    background-color: #333;
}

.dark.second-design #secondary .widget, 
.dark.second-design .recent-widget-wrapper .widget,
.dark.second-design .navigation.post-navigation, 
.dark.second-design .navigation.posts-navigation,
.dark.second-design #featured-posts .entry-container, 
.dark.second-design #recent-posts .section-header-wrapper, 
.dark.second-design .hentry-warpper, 
.dark.second-design #secondary .widget, 
.dark.second-design .recent-widget-wrapper .widget, 
.dark.second-design .archive-blog-wrapper article .archive-post-wrapper .entry-container, 
.dark.second-design .archive-blog-wrapper article.has-post-thumbnail .entry-container:before, 
.dark.second-design .item-wrapper .entry-container, 
.dark.second-design .recent-posts-tabs .entry-container, 
.dark.second-design #must-read .entry-container {
	background-color: #222;
}

.dark.second-design #trending-news .slick-arrow: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);
}

/*--------------------------------------------------------------
# Third Design
--------------------------------------------------------------*/
.third-design {
    background-color: #fff;
}

.third-design .section-header,
.third-design #recent-posts .inner-wrapper .entry-header span {
    margin-bottom: 20px;
    border-bottom: 2px solid #ff4443;
    text-align: left;
    display: block;
}

.third-design .section-title,
.third-design #featured-posts .section-title, 
.third-design #inner-content-wrapper .section-title, 
.third-design #must-read .section-title,
.third-design #featured-videos .section-title,
.third-design #recent-posts .inner-wrapper .entry-header span a,
.third-design #recent-posts .inner-wrapper .hentry:nth-child(1n) .entry-header span a {
    font-size: 16px;
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    background-color: #ff4443;
    line-height: 1;
    padding: 10px 15px;
    letter-spacing: 0.05em;
    position: relative;
}

.third-design .section-title:before,
.third-design #recent-posts .inner-wrapper .entry-header span a:before,
.third-design #recent-posts .inner-wrapper .hentry:nth-child(1n) .entry-header span a:before {
    content: '';
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-bottom: 36px solid #ff4443;
    border-right: 20px solid transparent;
    z-index: 1;
    right: -20px;
}

.third-design .section-header:after,
.third-design #hero-section .entry-content,
.third-design #hero-section .entry-meta,
.third-design #must-read .entry-meta,
.third-design .archive-blog-wrapper .entry-meta .byline {
	display: none;
}

.third-design #recent-posts .section-header {
	border-bottom: none;
}

.third-design #trending-news .news-title,
.third-design .post-categories a,
.third-design .item-wrapper .featured-image,
.third-design .item-wrapper .entry-container, 
.third-design .recent-posts-tabs .entry-container, 
.third-design #must-read .entry-container,
.third-design .recent-wrapper .featured-image, 
.third-design #featured-videos .featured-image,
.third-design .hentry-warpper,
.third-design .archive-blog-wrapper article .archive-post-wrapper .entry-container,
.third-design .archive-blog-wrapper article.has-post-thumbnail .entry-container,
.third-design .archive-blog-wrapper article.has-post-thumbnail .entry-container:before,
.third-design .archive-blog-wrapper article.has-post-thumbnail .featured-image,
.third-design .inner-wrapper article:not(:first-child) .featured-image,
.third-design #secondary .widget-title, 
.third-design #secondary .widgettitle, 
.third-design .recent-widget-wrapper .widget-title, 
.third-design .recent-widget-wrapper .widgettitle,
.third-design #secondary .widget, 
.third-design .recent-widget-wrapper .widget,
.third-design #recent-posts .section-header-wrapper,
.third-design .recent-posts-tabs article:not(:first-child) .entry-container,
.third-design .widget_popular_post img, 
.third-design .widget_latest_post img, 
.third-design .widget_featured_post img,
.third-design #colophon .widget_media_gallery img, 
.third-design #secondary .widget_media_gallery img {
    border-radius: 0;
}

.third-design #cta .post-categories li:nth-child(1n) a,
.third-design #featured-videos .entry-container .post-categories a {
	background-color: #fff;
	border-color: #fff;
	color: #000;
}

.third-design .post-categories li:nth-child(1n) a,
.third-design .item-wrapper article .post-categories li:nth-child(1n) a,
.third-design .recent-wrapper article .post-categories li:nth-child(1n) a {
    background-color: #875FC0;
    border-color: #875FC0;
    color: #fff;
}

.third-design .post-categories li:nth-child(2n) a,
.third-design .item-wrapper article .post-categories li:nth-child(2n) a,
.third-design .recent-wrapper article .post-categories li:nth-child(2n) a {
    background-color: #EB4985;
    border-color: #EB4985;
    color: #fff;
}

.third-design #top-navigation {
	background-color: #000;
}

.third-design #secondary .widget, 
.third-design .recent-widget-wrapper .widget {
    background-color: #f2f4f8;
}

.third-design #recent-posts .section-header-wrapper {
    padding: 0;
    border-bottom: 2px solid #ff4443;
}

.third-design .recent-posts-tabs article:not(:first-child) .entry-container {
    padding: 20px 15px 20px 140px;
}

.third-design #recent-posts .inner-wrapper .entry-header span a {
	text-transform: uppercase;
}

.third-design #hero-section .hero-item-wrapper {
    position: relative;
}

.third-design #hero-section .item-wrapper .hero-item-wrapper .entry-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 15px 15px 15px;
    background: linear-gradient(to top,rgba(0,0,0,.8) 0,rgba(0,0,0,0) 100%)
}

.third-design #recent-posts .recent-wrapper .tab-content article:first-child .entry-container {
	padding: 20px 0;
}

.third-design #trending-news .slick-arrow {
    opacity: 1;
}

.third-design #must-read .entry-container {
    flex-direction: column-reverse;
    padding: 15px 0;
    display: flex;
}

.third-design #must-read .cat-links a {
    font-size: 12px;
    padding: 5px;
    line-height: 1;
}

.third-design .archive-blog-wrapper article:nth-child(1n) .post-categories li:nth-child(1n) a,
.third-design .archive-blog-wrapper article:nth-child(1n) .post-categories li:nth-child(2n) a,
.third-design #must-read article:nth-child(1n) .post-categories li:nth-child(1n) a,
.third-design #must-read article:nth-child(1n) .post-categories li:nth-child(2n) a,
.third-design #hero-section .entry-title a,
.third-design #hero-section .entry-meta span a,
.third-design #hero-section .entry-content,
.third-design #hero-section .entry-meta {
	color: #fff;
}

.third-design #masthead .overlay {
	opacity: 0.7;
	display: block;
}

.third-design #masthead .wrapper {
	position: relative;
}

.third-design #hero-section .entry-title {
    font-size: 20px;
    margin-top: 5px;
    margin-bottom: 0;
    line-height: 1.3;
}

.third-design #hero-section .cat-links {
    position: absolute;
    top: 20px;
    left: 20px;
}
 
.third-design #featured-posts article:nth-child(1n) .post-categories li:nth-child(1n) a {
	background-color: #875FC0;
    border-color: #875FC0;
}

.third-design #featured-posts article:nth-child(1n) .post-categories li:nth-child(2n) a {
	background-color: #EB4985;
    border-color: #EB4985;
}

.third-design #featured-posts article:nth-child(2n) .post-categories li:nth-child(1n) a {
	background-color: #FF8738;
    border-color: #FF8738;
}

.third-design #featured-posts article:nth-child(2n) .post-categories li:nth-child(2n) a {
	background-color: #7ACABD;
    border-color: #7ACABD;
}

.third-design #featured-posts article:nth-child(3n) .post-categories li:nth-child(1n) a,
.third-design #recent-posts .tab-content article:nth-child(1n) .post-categories li:nth-child(1n) a,
.third-design .archive-blog-wrapper article:nth-child(1n) .post-categories li:nth-child(1n) a {
	background-color: #FB3536;
    border-color: #FB3536;
}

.third-design #featured-posts article:nth-child(3n) .post-categories li:nth-child(2n) a,
.third-design #recent-posts .tab-content article:nth-child(1n) .post-categories li:nth-child(2n) a,
.third-design .archive-blog-wrapper article:nth-child(1n) .post-categories li:nth-child(2n) a {
	background-color: #4C5BEA;
    border-color: #4C5BEA;
}

.third-design #featured-posts article:nth-child(4n) .post-categories li:nth-child(1n) a,
.third-design #must-read article:nth-child(1n) .post-categories li:nth-child(1n) a {
	background-color: #BF289B;
    border-color: #BF289B;
}

.third-design #featured-posts article:nth-child(4n) .post-categories li:nth-child(2n) a,
.third-design #must-read article:nth-child(1n) .post-categories li:nth-child(2n) a {
	background-color: #14C368;
    border-color: #14C368;
}

.third-design #featured-posts article:nth-child(5n) .post-categories li:nth-child(1n) a {
	background-color: #EB4985;
    border-color: #EB4985;
}

.third-design #featured-posts article:nth-child(5n) .post-categories li:nth-child(2n) a {
	background-color: #46C4F4;
    border-color: #46C4F4;
}

.third-design #must-read article:nth-child(2n) .post-categories li:nth-child(1n) a {
	background-color: #4C5BEA;
    border-color: #4C5BEA;
}

.third-design #must-read article:nth-child(2n) .post-categories li:nth-child(2n) a {
	background-color: #FB3536;
    border-color: #FB3536;
}

.third-design #must-read article:nth-child(3n) .post-categories li:nth-child(1n) a {
	background-color: #CAA87A;
    border-color: #CAA87A;
}

.third-design #must-read article:nth-child(3n) .post-categories li:nth-child(2n) a {
	background-color: #EB4985;
    border-color: #EB4985;
}

.third-design #must-read article:nth-child(4n) .post-categories li:nth-child(1n) a {
	background-color: #FF8838;
    border-color: #FF8838;
}

.third-design #must-read article:nth-child(4n) .post-categories li:nth-child(2n) a {
	background-color: #46C4F4;
    border-color: #46C4F4;
}

.third-design #hero-section article:nth-child(1n) .post-categories li:nth-child(1n) a {
	background-color: #875FC0;
    border-color: #875FC0;
}

.third-design #hero-section article:nth-child(1n) .post-categories li:nth-child(2n) a {
	background-color: #EB4985;
    border-color: #EB4985;
}

.third-design #hero-section article:nth-child(2n) .post-categories li:nth-child(1n) a {
	background-color: #CAA87A;
    border-color: #CAA87A;
}

.third-design #hero-section article:nth-child(2n) .post-categories li:nth-child(2n) a {
	background-color: #FB3536;
    border-color: #FB3536;
}

.third-design #hero-section article:nth-child(3n) .post-categories li:nth-child(1n) a {
	background-color: #EDA922;
    border-color: #EDA922;
}

.third-design #hero-section article:nth-child(3n) .post-categories li:nth-child(2n) a {
	background-color: #46C4F4;
    border-color: #46C4F4;
}

.third-design #hero-section article:nth-child(4n) .post-categories li:nth-child(1n) a {
	background-color: #FB3536;
    border-color: #FB3536;
}

.third-design #hero-section article:nth-child(4n) .post-categories li:nth-child(2n) a {
	background-color: #4C5BEA;
    border-color: #4C5BEA;
}

.third-design #hero-section article:nth-child(5n) .post-categories li:nth-child(1n) a {
	background-color: #BF289B;
    border-color: #BF289B;
}

.third-design #hero-section article:nth-child(5n) .post-categories li:nth-child(2n) a {
	background-color: #14C368;
    border-color: #14C368;
}

.third-design #page #content .post-categories a:hover,
.third-design #page #content .post-categories a:focus {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

.third-design #hero-section .entry-title a:hover,
.third-design #hero-section .entry-title a:focus {
	color: #fff;
	opacity: 0.8;
}

.third-design #hero-section .entry-meta span a {
	opacity: 0.8;
}

.third-design #featured-posts .entry-container {
    padding: 20px 0 0;
}

@media screen and (min-width: 1024px) {
	.third-design #site-navigation {
	    background-color: #1D2029;
	}

	.third-design .main-navigation a, 
	.third-design .main-navigation ul.nav-menu > li > a {
		color: #fff;
	}

	.third-design #masthead .main-navigation ul.nav-menu > li > a > svg {
		fill: #fff;
	}

	.third-design #masthead .main-navigation ul.nav-menu > li:hover > a > svg, 
	.third-design #masthead .main-navigation ul.nav-menu > li.current-menu-item > a > svg {
	    fill: #ff4443;
	}

	.third-design #masthead .main-navigation ul.nav-menu > li:nth-child(1n):before {
		opacity: 0;
	}

	.third-design #masthead .main-navigation ul.nav-menu > li.current-menu-item:before {
		opacity: 1;
		background-color: #ff4443;
	}

	.third-design #hero-section article:first-child {
	    width: 50%;
	}

	.third-design #hero-section article,
	.third-design #hero-section article.large-width {
	    width: 25%;
	}

	.third-design #hero-section article:first-child .featured-image {
	    padding: 215px 0;
	}

	.third-design #hero-section article .featured-image {
	    padding: 100px 0;
	}
}

@media screen and (min-width: 1200px) {
	.third-design #hero-section article:first-child .featured-image {
	    padding: 285px 0;
	}
	.third-design #hero-section article .featured-image {
	    padding: 135px 0;
	}
}

@media screen and (max-width: 1200px) {
	.third-design #hero-section .large-width .entry-content {
	    display: none;
	}
}

.dark.third-design {
    background-color: #333;
}

.dark.third-design #secondary .widget, 
.dark.third-design .recent-widget-wrapper .widget,
.dark.third-design .navigation.post-navigation, 
.dark.third-design .navigation.posts-navigation {
	background-color: #222;
}

.dark.third-design #trending-news .slick-arrow: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);
}

.dark.third-design .trending-news-posts button.slick-prev.slick-arrow:after {
    background-color: rgba(255, 255, 255, 0.30);
}

/*--------------------------------------------------------------
# 					RESPONSIVE
--------------------------------------------------------------*/
@media screen and (min-width: 567px) {
	.site-logo img {
	    max-height: 65px;
	    width: auto;
	}
	#trending-news .news-title {
		margin-bottom: 0;
	}
	.archive-blog-wrapper article .featured-image {
		padding: 160px 0;
	}
	.recent-posts-wrapper article .entry-container {
	    padding: 250px 40px 40px;
	}
	.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: 40px;
	}
	.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) {
	.site-branding-wrapper {
	    clear: both;
	    width: 100%;
	    display: flex;
	    align-items: center;
	}
	.site-branding {
		width: 40%;
		float: left;
		text-align: left;
	    margin: 21px 0;
	}
	.site-advertisement {
	    width: 60%;
	    float: right;
	    text-align: right;
	}
	.site-branding + .site-advertisement {
	    margin-top: 0;
	}
	.section-header-wrapper {
	    display: flex;
	    align-items: center;
	    flex-direction: row;
	    justify-content: space-between;
	}
	#trending-news .news-header {
	    float: left;
	}
	#trending-news .news-header .news-title {
		margin-right: 15px;
	}
	#featured-videos article.grid-item.large-width {
	    width: 50%;
	}
	.archive-blog-wrapper article.has-post-thumbnail .archive-post-wrapper {
	    position: relative;
	    display: table;
	    width: 100%;
	}
	.archive-blog-wrapper article.has-post-thumbnail .featured-image {
	    width: 42%;
	    position: absolute;
	    top: 0;
	    left: 0;
	    display: table-cell;
	    padding: 0;
	    height: 100%;
	    border-radius: 25px;
	    border-top-right-radius: 0;
	    border-bottom-right-radius: 0;
	}
	.archive-blog-wrapper article.has-post-thumbnail .entry-container {
	    width: 58%;
	    float: right;
	    border-radius: 25px;
	    border-top-left-radius: 0;
	    border-bottom-left-radius: 0;
	    display: table-cell;
	    padding: 50px 40px 50px 10px;
	}
	.archive-blog-wrapper article.has-post-thumbnail .entry-container:before {
	    content: "";
	    background-color: #fff;
	    position: absolute;
	    top: 0;
	    left: -25px;
	    height: 100%;
	    width: 25px;
	    border-top-left-radius: 25px;
	    border-bottom-left-radius: 25px;
	}
	.dark .archive-blog-wrapper article.has-post-thumbnail .entry-container:before {
		background-color: #333;
	}
	.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) {
	.inner-wrapper .hentry {
	    float: left;
	    width: 33.33%;
	}
	#featured-videos article.grid-item.large-width:first-child {
		width: 50%;
	}
	#featured-videos article.grid-item.large-width {
		width: 25%;
	}
	.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%;
	}
	.footer-widgets-area.col-4 .hentry {
	    width: 25%;
		padding-right: 40px;
	}
	.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;
	}
	.footer-widgets-area.col-4 .hentry:nth-last-child(-n+4) {
		margin-bottom: 0;
	}
}
@media screen and (min-width: 1024px) {
	#masthead .social-icons li:not(:last-child) {
	    margin-right: 15px;
	}
	#masthead .social-icons {
	    margin: 0;
	}
	.social-icons li a svg {
	    fill: #fff;
	}
	.menu-overlay.active {
		display: none;
	}
	.main-navigation .social-menu-item ul {
	    position: relative;
	    top: 0;
	    left: 0;
	    z-index: 1;
	    float: none;
	    background-color: transparent;
	    box-shadow: none;
	}
	#masthead .main-navigation ul.nav-menu > li.main-navigation-search a {
	    position: absolute;
	    right: 0;
	}
	.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: 6px 0;
	}
	.main-navigation li.social-menu-item {
	    float: right;
	}
	#top-navigation .main-navigation ul.nav-menu > li > a {
		color: #adaeaf;
		padding: 12px 16px;
		position: relative;
	}
	#top-navigation .main-navigation ul.nav-menu > li:nth-last-child(-n+2) > a:after {
		display: none;
	}
	#top-navigation .social-icons li a {
		line-height: 38px;
	}
	#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 {
		color: #32363a;
	}
	.dark .main-navigation a,
	.dark .main-navigation ul.nav-menu > li > a {
		color: #fff;
	}
	.main-navigation li.menu-item-has-children:hover > a > svg, 
	.main-navigation li.menu-item-has-children > a:hover > svg {
		fill: #fff;
	}
	.main-navigation ul.nav-menu > li > a {
	     padding: 15px 17px; 
	}
	#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: #ff4443;
	}
	.main-navigation ul.nav-menu > li:hover > a > svg,
	.main-navigation ul.nav-menu > li.current-menu-item > a > svg {
		fill: #ff4443;
	 }
	 #masthead .main-navigation ul.nav-menu > li > a > svg {
	 	fill: #333;
	 }
	 .dark #masthead .main-navigation ul.nav-menu > li > a > svg {
	 	fill: #fff;
	 }
	.main-navigation ul.nav-menu,
	.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 #ddd;
	}
	.main-navigation ul ul {
	    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
	}
	.main-navigation ul.sub-menu li:hover > a,
	.main-navigation ul.sub-menu li:focus > a {
		background-color: #ff4443;
		color: #fff;
	}
	.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.menu-item-has-children > a {
	    padding-right: 35px;
	}
	#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: #fff;
	}
	.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: #fff;
	}
	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;
	}
	.main-navigation form.search-form input {
	    background-color: #32363a;
	    border: none;
	    color: #fff;
	    border-radius: 0;
	    padding: 0 45px 0 20px;
	    box-shadow: 2px 3px 5px 0px rgba(0, 0, 0, 0.2) inset;
	}
	.main-navigation form.search-form {
	    min-width: 320px;
	    box-shadow: 1px 1px 0px 0px rgba(0, 0, 0, 0.1);
	    border-radius: 25px;
	}
	#search {
	  	position: absolute;
	    z-index: 30;
	    right: 0;
	    top: 58px;
	    display: none;
	}
	#search:before {
	    content: "";
	    width: 0;
	    height: 0;
	    border-left: 9px solid transparent;
	    border-right: 9px solid transparent;
	    border-bottom: 9px solid #ff4443;
	    position: absolute;
	    top: -7px;
	    right: 16px;
	}
	.main-navigation form.search-form svg.icon-search {
		fill: #fff;
	}
	.menu-sticky .nav-shrink #site-navigation {
	    position: fixed;
	    top: 0;
	    left: 0;
	    right: 0;
	}
	.customize-support.menu-sticky .nav-shrink #site-navigation {
		top: 32px;
	}
	#top-navigation .main-navigation ul.nav-menu > li > a svg {
		fill: #fff;
	}
	#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 {
		color: #fff;
	}
	#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: #fff;
	}
	#masthead .main-navigation ul.nav-menu > li {
		margin-right: -3px;
	}
	#masthead .main-navigation ul.nav-menu > li.main-navigation-search:before {
		display: none;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(1n):before {
		content: "";
		background-color: #865fc1;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 4px;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(2n):before {
		background-color: #eb4986;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(3n):before {
		background-color: #ffb72b;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(4n):before {
		background-color: #46c4f3;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(5n):before {
		background-color: #ff8737;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(6n):before {
		background-color: #7acbbd;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(7n):before {
		background-color: #cba87a;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(8n):before {
		background-color: #fa3535;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(9n):before {
		background-color: #4c5bea;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(10n):before {
		background-color: #bfbfbf;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(11n):before {
		background-color: #14c267;
	}
	#masthead .main-navigation ul.nav-menu > li:nth-child(12n):before {
		background-color: #bf289a;
	}
	.social-icons li:not(:last-child) {
	    margin-right: 0;
	}
	#secondary .widget .social-icons li:not(:last-child) {
	    padding-right: 0;
	}
	.no-sidebar nav.navigation.pagination {
	    text-align: center;
	}
	.right-sidebar #primary,
	.left-sidebar #primary {
    	width: 75%;
    	float: left;
	    padding-right: 30px;
    }
    .right-sidebar #secondary,
    .left-sidebar #secondary {
    	width: 25%;
    	float: left;
    }
	.left-sidebar #primary {
		padding-left: 30px;
		padding-right: 0;
		float: right;
	}
    .no-sidebar #primary {
    	width: 100%;
    	float: none;
    	padding-right: 0;
    }
    .boxed-layout #page {
	    max-width: 1200px;
	    width: 90%;
	    margin-left: auto;
	    margin-right: auto;
	}
	.frame-layout {
		max-width: 1600px;
		width: 90%;
		margin: 50px auto;
	}
	.boxed-layout #secondary {
	    margin-top: 30px;
	}
}
@media screen and (min-width: 1200px) {
	.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;
	}
}
@media screen and (min-width: 1900px) {
	.wrapper {
	    max-width: 1440px;
	}
	.site-branding {
		width: 30%;
	}
	.site-advertisement {
	    width: 70%;
	}
	#cta {
	    padding: 215px 0;
	}	
	.recent-wrapper article:not(:first-child) .entry-container .entry-title {
		font-size: 18px;
	}
	.boxed-layout #page {
	    max-width: 1600px;
	    width: 90%;
	}
	.site-info.col-3 span, 
	.site-info.col-3 .social-icons {
	    width: 15%;
	}
	.site-info.col-3 .custom-menu {
	    width: 70%;
	}
}

@media screen and (max-width: 1200px) {
	.news-header {
	    float: none;
	    width: auto;
	}
	.trending-news-posts {
	    float: none;
	    width: 100%;
	}
	.grid-item:nth-child(1n) {
	    width: 50%;
	}
	.item-wrapper article.large-width {
	  margin-bottom: 30px;
	}
	.large-width .featured-image {
	    padding: 125px 0;
	}
	#featured-posts .grid-item:nth-child(2) {
	    width: 50%;
	}
	.recent-wrapper {
	    float: none;
	    width: 100%;
	    padding-right: 0;
        margin-bottom: 30px;
	}
	#must-read article {
	    width: 50%;
	    margin-bottom: 30px;
	}
}
@media screen and (max-width: 1023px) {
	.main-navigation a {
	    border-bottom: 1px solid #eee;
	}
	.main-navigation .wrapper {
	    width: 100%;
	    padding: 0;
	}
	.main-navigation-search a {
	    display: none;
	}
	.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 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 {
	    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 button.search-submit svg {
		fill: #fff;
	}
	.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: 55px;
	}
	.main-navigation form.search-form input {
		padding-left: 25px;
	}
	.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;
	}
	#secondary {
	    margin-top: 50px;
	}
	#page-site-header {
		padding: 150px 0;
	}
}

@media screen and (max-width: 992px) {
	.recent-posts-tabs article:first-child {
	    width: 100%;
	    float: none;
	}
	.recent-posts-tabs article {
	    width: 100%;
	}
	.inner-wrapper .hentry:not(:last-child) {
	    margin-bottom: 30px;
	}
	.recent-widget-wrapper {
	    float: none;
	    width: 100%;
	}
	.item-wrapper .large-width .entry-title {
	    font-size: 24px;
	    padding: 5px 0 0;
	    line-height: 30px;
	}
	.comments-title, 
	#reply-title {
	    font-size: 28px;
	}
}
@media screen and (max-width: 767px) {
	#masthead.site-header .main-navigation ul.nav-menu {
		max-width: 100%;
	}
	.grid-item:nth-child(1n),
	.grid-item:nth-child(4n),
	.grid-item:nth-child(2n),
	#featured-posts .grid-item:nth-child(1),
	#featured-posts .grid-item:nth-child(2),
	#hero-section .grid-item.large-width {
	    width: 100%;
	}
	#cta {
	    padding: 150px 0;
	}
	#must-read article {
	    width: 100%;
	    margin-bottom: 30px;
	    float: none;
	}
	.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;
	}
	.comment-author.vcard, 
	.comment-metadata,
	.comment-meta .url, 
	.comment-meta .fn {
	    display: block;
	}
	.comment-meta img {
	    float: none;
	    margin-right: 0;
	}
	.comment-meta .fn:after {
		display: none;
	}
	.comment-content {
		margin-left: 0;
	    background-color: #fff;
	    margin-top: 15px;
	    padding: 15px 20px;
	}
	.reply {
		padding-left: 0;
	}
	#comments ol.children {
	    margin-left: 25px;
	}
	.comment-meta .fn {
	    margin-left: 0;
	    margin-top: 10px;
	}
}
@media screen and (max-width: 567px) {
	.menu-label {
		display: none;
	}
	.site-branding {
	    display: block;
	}
	.site-logo {
	    margin-right: 0;
	}
	.site-logo + #site-identity {
	    margin-top: 20px;
	}
	.trending-news-posts {
	    overflow: visible;
	}
	.trending-news-posts button {
	    top: -20px;
	}
	.item-wrapper .large-width .entry-container,
	.recent-wrapper article:first-child .entry-container {
	    padding: 22px 20px;
	}
	.section-title,
	.entry-container .entry-title {
	    font-size: 24px;
	}
	.recent-posts-tabs article:not(:first-child) .featured-image {
	    float: none;
	}
	.section-header:after {
		display: none;
	}
	.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;
	}
	.footer-widgets-area .hentry:last-child,
	.footer-widgets-area.col-3 .hentry:last-child {
		margin-bottom: 0;
	    padding-right: 0;
	}
	.custom-menu ul li {
	    display: block;
	    margin: 0 0 10px;
	}
	.footer-widgets-area {
		text-align: center;
	}
	.textwidget img {
		margin-left: auto;
		margin-right: auto;
	}
}

.wp-block-latest-comments {
    padding-left: 0px;
}

.wp-block-latest-comments article {
    margin-bottom: 0px;
}