@charset "UTF-8";
/*
Theme Name: Anecdote Lite
Theme URI: https://wedevstudios.com/theme/anecdote-lite/
Author: ThemeDevStudios
Author URI: http://wedevstudios.com/
Description: Configuring your WordPress site has never been so easy. Anecdote Lite lets you customize the design of your site... seeing your changes in real-time using WordPress' live customize feature.
Requires at least: 5.3
Tested up to: 6.3
Requires PHP: 5.6
Version: 1.0.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: anecdote-lite
Tags: blog, news, photography, one-column, two-columns, custom-background, custom-logo, custom-menu, featured-images, featured-image-header, flexible-header, post-formats, rtl-language-support, translation-ready, theme-options, threaded-comments, footer-widgets
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- CSS Reset
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
	- Grid
# Header
	- Top Area
	- Navigation Area
	- Site Branding
# Components
	- Navigation
	- Search Modal
	- Breadcrumbs
	- Post Navigation
	- Banner Slider
	- Posts and pages
	- 404 Error
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
	- Social Share
	- Author Bio
	- Model Box
	- Social Icon
# Footer
# plugins
	- Jetpack infinite scroll
	- Mailchimp For WP
# Utilities
	- Accessibility
	- Alignments
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/
:root {
    --background-color: #ffffff;
    --white-color: #ffffff;
    --black-color: #26282b;
    --primary-color: #fff482;
    --secondary-color: #E9494B;
    --primary-font-family: 'Inter', sans-serif;
    --secondary-font-family: 'Barlow Condensed', sans-serif;
    --font-weight-regular: 400;
    --font-weight-semibold: 500;
    --font-weight-bold: 700;
}
/* Normalize
--------------------------------------------- */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}
body {
    margin: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
main {
    display: block;
}
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}
a {
    background-color: transparent;
}
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}
b,
strong {
    font-weight: bolder;
}
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}
small {
    font-size: 80%;
}
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}
sub {
    bottom: -0.25em;
}
sup {
    top: -0.5em;
}
img {
    border-style: none;
}
button,
input,
optgroup,
select,
textarea {
    line-height: 1.15;
    margin: 0;
}
button,
input {
    overflow: visible;
}
button,
select {
    text-transform: none;
}
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}
.wedevs-btn {
    display: inline-block;
    padding: 14px 28px;
    text-align: center;
    text-decoration: none;
    transition: all ease-in-out 0.25s;
    min-width: 200px;
}
.wedevs-btn:hover,
.wedevs-btn:focus {
    transform: translateY(-5px);
}
.wedevs-btn-primary {
    background-color: var(--primary-color);
    color: var(--black-color);
}
.wedevs-btn-primary:hover,
.wedevs-btn-primary:focus {
    background-color: var(--black-color);
    color: var(--white-color);
}
.wedevs-btn .wedevs-btn-icon {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}
fieldset {
    padding: 0.35em 0.75em 0.625em;
}
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}
progress {
    vertical-align: baseline;
}
textarea {
    overflow: auto;
}
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}
[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}
details {
    display: block;
}
summary {
    display: list-item;
}
template {
    display: none;
}
[hidden] {
    display: none;
}
::-moz-selection {
    background: #070707;
    color: #fff;
}
::selection {
    background: #070707;
    color: #fff;
}
/* CSS Reset
--------------------------------------------- */
html,
body {
    border: none;
    margin: 0;
    padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
address,
big,
cite,
code,
em,
font,
img,
small,
strike,
sub,
sup,
li,
ol,
ul,
fieldset,
form,
label,
legend,
button,
table,
caption,
tr,
th,
td {
    border: none;
    margin: 0;
    padding: 0;
    text-align: inherit;
}
blockquote::before,
blockquote::after {
    content: "";
}
/* Box sizing
--------------------------------------------- */
*,
*::before,
*::after {
    box-sizing: inherit;
}
html {
    box-sizing: border-box;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/
/* Typography
--------------------------------------------- */
html {
    font-size: 62.5%; /* 1rem = 10px */
}
body,
button,
input,
select,
optgroup,
textarea {
    color: #333;
    font-size: 1.6rem;
    font-weight: var(--font-weight-regular);
    line-height: 1.5;
}
body,
button,
input,
select,
optgroup,
textarea {
    font-family: var(--primary-font-family);
}
.site-widget-recent .entry-title,
.entry-title-primary,
.more-post .entry-title {
    font-family: var(--primary-font-family);
}
h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    font-family: var(--secondary-font-family);
    font-weight: var(--font-weight-regular);
    line-height: 1.25;
    margin: 0 0 1rem;
}
h1 {
    font-size: 5.4rem;
}
h2 {
    font-size: 4.2rem;
}
h3 {
    font-size: 3.4rem;
}
h4 {
    font-size: 2.8rem;
}
h5 {
    font-size: 2.4rem;
}
h6 {
    font-size: 2rem;
}
.entry-title-large {
    font-size: 5.4rem;
}
@media (max-width: 575px) {
    .site h1, .site .entry-title-large {
        font-size: 3.2rem;
    }
}
.entry-title-big {
    font-size: 4.2rem;
}
.entry-title-medium {
    font-size: 3.4rem;
}
.entry-title-small {
    font-size: 2rem;
}
.entry-title-regular {
    font-size: 1.6rem;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wedevs-btn,
.primary-menu a,
.modal-menu a,
.wedevs-social-share-label,
.entry-meta,
.widget-title,
.wedevs-social-icon,
.widget_tag_cloud a {
    text-transform: uppercase;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wedevs-btn,
.wedevs-social-share-label,
.entry-meta,
.wedevs-social-icon,
.primary-menu a,
.modal-menu a,
.wedevs-featured-categories,
.site-widget-categories .categories-widget-layout li a .cat-title,
.navigation.posts-navigation .nav-links a {
    font-family: var(--secondary-font-family);
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.wedevs-btn,
.entry-meta {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
}
.primary-menu a,
.widget-title {
    font-size: 1.8rem;
    letter-spacing: 0.2rem;
}
.wedevs-social-share-label {
    font-size: 1.5rem;
    letter-spacing: 0.2rem;
}
p {
    margin-bottom: 1.5em;
}
dfn,
cite,
em,
i {
    font-style: italic;
}
blockquote {
    margin: 0 1.5em;
}
address {
    margin: 0 0 1.5em;
}
pre {
    background: #eee;
    font-family: "Courier 10 Pitch", courier, monospace;
    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;
}
abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}
mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}
big {
    font-size: 125%;
}
.fill-children-current-color,
.fill-children-current-color * {
    fill: currentColor;
}
/* Elements
--------------------------------------------- */
body {
    background: #fff;
}
hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}
ul,
ol {
    margin: 0 0 1.5em 3em;
}
ul {
    list-style: disc;
}
ol {
    list-style: decimal;
}
li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}
.reset-list-style,
.reset-list-style ul,
.reset-list-style ol {
    list-style: none;
    margin: 0;
}
dt {
    font-weight: 700;
}
dd {
    margin: 0 1.5em 1.5em;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}
img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}
figure {
    margin: 0 0 3rem;
}
table {
    margin: 0 0 1.5em;
    width: 100%;
}
.clear:before,
.clear:after,
.site-wrapper:before,
.site-wrapper:after,
.site-row:before,
.site-row:after,
.widget:before,
.widget:after {
    content: '';
    display: table;
}
.clear:after,
.site-wrapper:after,
.site-row:after,
.widget:after {
    clear: both;
}
.data-bg {
    background-color: var(--black-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    width: 100%;
}
.data-bg-fixed {
    background-attachment: fixed;
}
.data-bg-big {
    height: 500px;
}
.data-bg-medium {
    height: 300px;
}
.data-bg-small {
    height: 200px;
}
.data-bg-thumbnail {
    height: 100px;
}
/* Links
--------------------------------------------- */
a {
    color: #444;
    text-decoration: none;
}
a:hover,
a:focus {
    color: #000;
}
a:hover,
a:focus,
a:active {
    outline: none;
}
a:focus-visible {
    outline: 2px solid;
}
.site-content .entry-content a:not(.more-link):not(.button):not(.wp-block-button__link):not(.wedevs-btn),
.site-content .entry-summary a:not(.more-link):not(.button):not(.wedevs-btn),
.widget_text a:not(.more-link):not(.button):not(.wedevs-btn) {
    text-decoration: underline;
}
.site-content .entry-content .wedevs-author-bio a,
.site-content .entry-content .post-navigation a,
.site-content .entry-content .comments-area a {
    text-decoration: none !important;
}
/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    line-height: 1;
    border: none;
    background: var(--secondary-color);
    color: #fff;
    padding: 5px 30px;
    min-height: 50px;
    cursor: pointer;
    transition: all ease 0.35s;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background-color: #000;
    color: #fff;
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    background-color: #000;
    color: #fff;
}
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;
    border-radius: 0;
    padding: 5px 30px;
    min-height: 50px;
    width: 100%;
}
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;
}
select {
    border: 1px solid #ccc;
}
textarea {
    width: 100%;
}
/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
/* Grid
--------------------------------------------- */
.site-wrapper,
.site-wrapper-fluid {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1441px) {
    .site-wrapper-fluid {
        max-width: 94%;
    }
}
@media (min-width: 576px) {
    .site-wrapper {
        max-width: 540px;
    }
}
@media (min-width: 768px) {
    .site-wrapper {
        max-width: 720px;
    }
}
@media (min-width: 992px) {
    .site-wrapper {
        max-width: 960px;
    }
}
@media (min-width: 1200px) {
    .site-wrapper {
        max-width: 1140px;
    }
}
@media (min-width: 1441px) {
    .site-wrapper {
        max-width: 1280px;
    }
}
.site-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.site-row-collapse {
    margin-right: 0;
    margin-left: 0;
}
.site-row-small {
    margin-right: -5px;
    margin-left: -5px;
}
.site-column {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}
.site-row-collapse .site-column {
    padding-right: 0;
    padding-left: 0;
}
.site-row-small .site-column {
    padding-right: 5px;
    padding-left: 5px;
}
.site-column-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}
.site-column-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}
.site-column-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}
.site-column-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}
.site-column-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}
.site-column-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}
.site-column-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}
.site-column-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}
.site-column-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}
.site-column-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}
.site-column-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}
.site-column-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}
@media (min-width: 992px) {
    .column-order-1 {
        -ms-flex-order: 1;
        order: 1;
    }
    .column-order-2 {
        -ms-flex-order: 2;
        order: 2;
    }
    .column-order-3 {
        -ms-flex-order: 3;
        order: 3;
    }
}
@media (max-width: 991px) {
    .site-column-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .site-column-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .site-column-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .site-column-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .hidden-sm-screen {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
}
@media (max-width: 767px) {
    .site-column-xs-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .site-column-xs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .site-column-xs-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }
    .site-column-xs-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
    .hidden-xs-screen {
        display: none;
        visibility: hidden;
        opacity: 0;
    }
}
@media (max-width: 575px) {
    .site-column-xxs-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.navigation-header-overlay .site-header {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
}
.navigation-header-overlay .site-header,
.navigation-header-overlay .site-header a {
    color: var(--white-color);
}
.paged .site-header {
    margin-bottom: 4rem;
}
.site-header-area {
    position: relative;
}
.site-header-top {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.admin-bar.navigation-header-overlay .site-header-top {
    padding-top: 4rem;
}
@media screen and (max-width: 782px) {
    .admin-bar.navigation-header-overlay .site-header-top {
        padding-top: 6rem;
    }
}
.site-header-top .header-components-right .header-component-item {
    margin-left: 1.5rem;
    padding-left: 1.5rem;
}
.site-header-bottom {
    border-top: 1px solid;
    border-color: rgba(0, 0, 0, 0.2);
}
.navigation-header-overlay .site-header-bottom {
    border-color: rgba(255, 255, 255, 0.2);
}
/* Top Area
--------------------------------------------- */
.site-header-components {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.header-components-left {
    justify-content: flex-start;
}
.header-components-right {
    justify-content: flex-end;
}
/* Navigation Area
--------------------------------------------- */
.site-header-navigation {
}
/* Site Branding
--------------------------------------------- */
.site-branding .site-title {
    display: block;
    font-size: 120rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 auto;
}
.site-branding .site-title a {
    color: inherit;
}
.site-branding .site-description {
    margin-bottom: 0;
    position: relative;
}
/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/
/* Navigation
--------------------------------------------- */
ul.primary-menu {
    display: flex;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.0277em;
    flex-wrap: wrap;
    justify-content: center;
}
.primary-menu .icon {
    display: block;
    height: 0.7rem;
    position: absolute;
    pointer-events: none;
    transform: rotate(-45deg);
    width: 1.3rem;
}
.primary-menu .icon::before,
.primary-menu .icon::after {
    content: "";
    display: block;
    background-color: currentColor;
    position: absolute;
    bottom: calc(50% - 0.1rem);
    left: 0;
}
.primary-menu .icon::before {
    height: 0.8rem;
    width: 0.1rem;
}
.primary-menu .icon::after {
    height: 0.1rem;
    width: 0.8rem;
}
.primary-menu li {
    position: relative;
}
.primary-menu > li {
    margin-left: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.primary-menu > li.menu-item-has-children > a {
    padding-right: 2rem;
}
.primary-menu > li > .icon {
    right: -0.5rem;
    top: calc(50% - 0.6rem);
}
.primary-menu a {
    color: inherit;
    display: block;
    line-height: 1.2;
    text-decoration: none;
    word-break: normal;
    word-wrap: normal;
}
/* SUB MENU */
.primary-menu ul {
    background: #000;
    border-radius: 0.4rem;
    color: #fff;
    font-size: 1.7rem;
    opacity: 0;
    padding: 1rem 0;
    position: absolute;
    right: 9999rem;
    top: calc(100% + 2rem);
    transition: opacity 0.15s linear, transform 0.15s linear, right 0s 0.15s;
    transform: translateY(0.6rem);
    width: 22rem;
    z-index: 1;
}
.primary-menu ul li:hover,
.primary-menu ul li:focus {
    background: #222;
}
.primary-menu li.menu-item-has-children:hover > ul,
.primary-menu li.menu-item-has-children:focus > ul,
.primary-menu li.menu-item-has-children.focus > ul {
    right: 0;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.15s linear, transform 0.15s linear;
}
.primary-menu ul::before,
.primary-menu ul::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
}
.primary-menu ul::before {
    height: 2rem;
    left: 0;
    right: 0;
}
.primary-menu ul::after {
    border: 0.8rem solid transparent;
    border-bottom-color: #000;
    right: 1.8rem;
}
.primary-menu ul a {
    background: transparent;
    border: none;
    color: inherit;
    display: block;
    padding: 1rem 2rem;
    transition: background-color 0.15s linear;
    width: 100%;
}
.primary-menu ul li.menu-item-has-children > a {
    padding-right: 4.5rem;
}
.primary-menu ul li.menu-item-has-children .icon {
    position: absolute;
    right: 1.5rem;
    top: calc(50% - 0.5rem);
}
/* DEEP DOWN */
.primary-menu ul ul {
    top: -1rem;
}
.primary-menu ul li.menu-item-has-children:hover > ul,
.primary-menu ul li.menu-item-has-children:focus > ul,
.primary-menu ul li.menu-item-has-children.focus > ul {
    right: calc(100% + 2rem);
}
.primary-menu ul ul::before {
    bottom: 0;
    height: auto;
    left: auto;
    right: -2rem;
    top: 0;
    width: 2rem;
}
.primary-menu ul ul::after {
    border-bottom-color: transparent;
    border-left-color: #000;
    bottom: auto;
    right: -1.6rem;
    top: 2rem;
}
/*
 * Enable nav submenu expansion with tapping on arrows on large-viewport
 * touch interfaces (e.g. tablets or laptops with touch screens).
 * These rules are supported by all browsers (>IE11) and when JS is disabled.
 */
@media (any-pointer: coarse) {
    .primary-menu > li.menu-item-has-children > a {
        padding-right: 0;
        margin-right: 2rem;
    }
    .primary-menu ul li.menu-item-has-children > a {
        margin-right: 4.5rem;
        padding-right: 0;
        width: unset;
    }
}
/* Repeat previous rules for IE11 (when JS enabled for polyfill). */
body.touch-enabled .primary-menu > li.menu-item-has-children > a {
    padding-right: 0;
    margin-right: 2rem;
}
body.touch-enabled .primary-menu ul li.menu-item-has-children > a {
    margin-right: 4.5rem;
    padding-right: 0;
    width: unset;
}
.cover-modal {
    display: none;
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}
.cover-modal::-webkit-scrollbar {
    display: none !important;
}
.cover-modal.show-modal {
    display: block;
    cursor: pointer;
}
.cover-modal.show-modal > * {
    cursor: default;
}
/* -------------------------------------------------------------------------- */
/*	5. Menu Modal
/* -------------------------------------------------------------------------- */
.header-wedevs-menu {
    display: none;
    visibility: hidden;
    opacity: 0;
}
@media (max-width: 991px) {
    .header-wedevs-menu {
        display: block;
        visibility: visible;
        opacity: 1;
    }
}
.menu-modal {
    background: #fff;
    display: none;
    opacity: 0;
    overflow-y: auto;
    overflow-x: hidden;
    position: fixed;
    bottom: 0;
    left: -99999rem;
    right: 99999rem;
    top: 0;
    transition: opacity 0.25s ease-in, left 0s 0.25s, right 0s 0.25s;
    z-index: 99;
}
.admin-bar .menu-modal {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .menu-modal {
        top: 46px;
    }
}
.menu-modal.show-modal {
    display: flex;
}
.menu-modal.active {
    left: 0;
    opacity: 1;
    right: 0;
    transition: opacity 0.25s ease-out;
}
.menu-modal-inner {
    background: #fff;
    display: flex;
    justify-content: stretch;
    overflow: auto;
    -ms-overflow-style: auto;
    width: 100%;
}
@media (max-width: 767px) {
    .menu-modal-inner {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}
.menu-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 120rem;
}
@media (min-width: 768px) {
    .menu-wrapper {
        width: calc(100% - 8rem);
    }
}
button.close-nav-toggle {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    padding: 3.1rem 0;
    width: 100%;
}
button.close-nav-toggle svg {
    height: 1.6rem;
    width: 1.6rem;
}
.menu-modal .menu-top {
    flex-shrink: 0;
}
/* Toggles ----------------------------------- */
.toggle {
    -moz-appearance: none;
    -webkit-appearance: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
button.toggle {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
}
.site-header-area button.toggle {
    color: #000;
}
.site-header-area button.toggle:hover,
.site-header-area button.toggle:focus {
    color: #444;
}
.navigation-header-overlay .site-header-area button.toggle {
    color: #fff;
}
.navigation-header-overlay .site-header-area button.toggle:hover,
.navigation-header-overlay .site-header-area button.toggle:focus {
    color: #f1f1f1;
}
.menu-modal button.toggle:hover,
.menu-modal button.toggle:focus {
    color: #000;
}
.toggle .svg-icon {
    width: 20px;
    height: 20px;
}
/* Main Menu --------------------------------- */
.modal-menu {
    position: relative;
}
@media (min-width: 700px) {
    .modal-menu {
        left: auto;
        width: 100%;
    }
}
.modal-menu li {
    border-style: solid;
    border-width: 0.1rem 0 0 0;
    display: flex;
    flex-wrap: wrap;
    line-height: 1;
    justify-content: flex-start;
    margin: 0;
}
.modal-menu > li:last-child {
    border-bottom-width: 0.1rem;
}
.modal-menu .ancestor-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.modal-menu a {
    display: block;
    padding: 2rem 0;
    text-decoration: none;
    width: 100%;
}
button.sub-menu-toggle {
    border-left: 0.1rem solid;
    border-radius: 0;
    flex-shrink: 0;
    padding: 0 2.5rem;
}
button.sub-menu-toggle svg {
    height: 1.4rem;
    transition: transform 0.15s linear;
    width: 1.4rem;
}
button.sub-menu-toggle.active svg {
    transform: rotate(180deg);
}
.modal-menu ul {
    display: none;
    margin: 0;
    width: 100%;
}
.modal-menu ul li a {
    filter: alpha(opacity=70);
    opacity: 0.7;
}
/* Main menu animation ----------------------- */
.menu-wrapper .menu-item {
    position: relative;
}
.menu-wrapper .active {
    display: block;
}
.menu-wrapper.is-toggling {
    pointer-events: none;
}
.menu-wrapper.is-toggling .menu-item {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 100%;
}
.menu-wrapper.is-animating .menu-item,
.menu-wrapper.is-animating .toggling-target {
    transition-duration: 250ms;
}
.menu-wrapper.is-animating .menu-item {
    transition-property: transform;
}
.menu-wrapper.is-toggling .toggling-target {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}
.menu-wrapper.is-toggling .toggling-target.active {
    opacity: 0;
}
.menu-wrapper.is-animating.is-toggling .toggling-target {
    display: block;
    transition-property: opacity;
    opacity: 0;
}
.menu-wrapper.is-animating.is-toggling .toggling-target.active {
    opacity: 1;
}
.menu-wrapper.is-toggling .modal-menu > li:last-child li {
    border-top-color: transparent;
    border-bottom-width: 0.1rem;
}
@media (prefers-reduced-motion: reduce) {
    .menu-wrapper.is-animating .menu-item,
    .menu-wrapper.is-animating .toggling-target {
        transition-duration: 1ms !important;
    }
}
/* Menu Bottom ------------------------------- */
.menu-bottom {
    flex-shrink: 0;
    padding: 4rem 0;
}
.menu-bottom .wedevs-social-icon {
    margin-bottom: 2rem;
}
@media ( min-width: 992px ) {
    .menu-modal {
        opacity: 1;
        justify-content: flex-end;
        padding: 0;
        transition: background-color 0.3s ease-in, left 0s 0.3s, right 0s 0.3s;
    }
    .menu-modal.cover-modal {
        background: rgba(0, 0, 0, 0);
    }
    .menu-modal.active {
        background: rgba(0, 0, 0, 0.2);
        transition: background-color 0.3s ease-out;
    }
    .menu-modal-inner {
        box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
        opacity: 0;
        padding: 0;
        transform: translateX(20rem);
        transition: transform 0.2s ease-in, opacity 0.2s ease-in;
        width: 50rem;
    }
    .menu-modal.active .menu-modal-inner {
        opacity: 1;
        transform: translateX(0);
        transition-timing-function: ease-out;
    }
    .menu-bottom {
        padding: 6rem 0;
    }
}
/* Search Modal
--------------------------------------------- */
.search-modal {
    background: rgba(0, 0, 0, 0.2);
    display: none;
    opacity: 0;
    position: fixed;
    bottom: 0;
    left: -9999rem;
    top: 0;
    transition: opacity 0.2s linear, left 0s 0.2s linear;
    width: 100%;
    z-index: 999;
}
.admin-bar .search-modal.active {
    top: 32px;
}
@media (max-width: 782px) {
    .admin-bar .search-modal.active {
        top: 46px;
    }
}
.search-modal-inner {
    background: #fff;
    padding-top: 5rem;
    padding-bottom: 5rem;
    transform: translateY(-100%);
    transition: transform 0.15s linear, box-shadow 0.15s linear;
}
.search-modal-inner .wedevs-search-bar {
    display: flex;
    justify-content: space-between;
}
.search-modal.active {
    left: 0;
    opacity: 1;
    transition: opacity 0.2s linear;
}
.search-modal.active .search-modal-inner {
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    transition: transform 0.25s ease-in-out, box-shadow 0.1s 0.25s linear;
}
button.search-untoggle {
    align-items: center;
    display: flex;
    flex-shrink: 0;
    justify-content: center;
    padding: 0 2.5rem;
}
.search-modal button.search-untoggle {
    color: inherit;
}
.search-modal.active .search-untoggle {
    animation: popIn both 0.3s 0.2s;
}
.search-untoggle svg {
    height: 1.5rem;
    transition: transform 0.15s ease-in-out;
    width: 1.5rem;
}
.search-untoggle:focus svg,
.search-untoggle:hover svg {
    transform: scale(1.15);
}
.search-modal form {
    margin: 0;
    position: relative;
    width: 100%;
}
.search-modal .search-field {
    background: none;
    border: none;
    border-radius: 0;
    color: inherit;
    font-size: 2rem;
    max-width: calc(100% + 2rem);
    padding: 0 0 0 2rem;
    width: calc(100% + 2rem);
}
.search-modal .search-field::-webkit-input-placeholder {
    color: inherit;
}
.search-modal .search-field:-ms-input-placeholder {
    color: inherit;
}
.search-modal .search-field::-moz-placeholder {
    color: inherit;
    line-height: 4;
}
.search-modal .search-submit {
    position: absolute;
    right: -9999rem;
    top: 50%;
    transform: translateY(-50%);
}
.search-modal .search-submit:focus {
    right: 0;
}
/* Breadcrumbs
--------------------------------------------- */
.breadcrumbs {
    font-size: 90%;
    margin: 4rem auto 2rem;
}
@media screen and (max-width: 767px) {
    .breadcrumbs {
        display: none;
    }
}
.breadcrumbs a {
    color: inherit;
}
.breadcrumbs ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}
.breadcrumbs ul li {
    display: inline-block;
    margin-bottom: 5px;
}
.breadcrumbs ul .trail-item span {
    position: relative;
    margin: 0 .5rem .4rem 0;
    background: rgba(0, 0, 0, 0.045);
    padding: .3rem .6rem .4rem .4rem;
    border-radius: 2px;
    line-height: 1;
    max-width: 18em;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.wedevs-inner-banner.data-bg .breadcrumbs ul .trail-item span {
    background: rgba(255, 255, 255, 0.45);
}
.breadcrumbs ul .trail-item span:hover,
.breadcrumbs ul .trail-item span:focus {
    background: rgba(0, 0, 0, 0.085);
}
.breadcrumbs ul .trail-item.trail-begin span {
    margin-left: 0;
}
.breadcrumbs ul .trail-item span:before {
    content: "";
    display: inline-block;
    margin-left: .45rem;
    margin-right: .65rem;
    vertical-align: middle;
    margin-top: -2px;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #000;
}
/* Post Navigation
--------------------------------------------- */
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
}
.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
    display: flex;
}
.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    flex: 1 0 50%;
}
.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    text-align: end;
    flex: 1 0 50%;
}
.post-navigation .nav-links .meta-nav {
    margin-bottom: 1.5rem;
    margin-top: 1.5rem;
    font-size: 2.4rem;
}
.navigation.pagination {
    margin-top: 3.25rem;
    margin-bottom: 3.25rem;
    text-align: center;
}
.navigation.pagination a {
    color: inherit;
}
.navigation.pagination .page-numbers {
    display: inline-block;
    margin-right: 1.25em;
    color: #abadaf;
}
.navigation.pagination .page-numbers.current {
    color: #161719;
}
.navigation.pagination .page-numbers:last-child {
    margin-right: 0;
}
@media only screen and (min-width: 600px) {
    .navigation.pagination .prev:after,
    .navigation.pagination .next:before {
        position: relative;
        display: inline-block;
        width: 2.25rem;
        height: 1px;
        content: '';
        vertical-align: middle;
        background-color: #eaebee;
    }
    .navigation.pagination .prev:after {
        margin-left: 1.25em;
    }
    .navigation.pagination .next:before {
        margin-right: 1.25em;
    }
}
.navigation.posts-navigation .nav-links a {
    background: var(--secondary-color);
    color: #fff;
    padding: 1.5rem 3rem;
    text-transform: uppercase;
    font-size: 1.8rem;
    letter-spacing: 0.1rem;
    min-width: 260px;
    display: inline-block;
    text-align: center;
}
.navigation.posts-navigation .nav-links a:hover,
.navigation.posts-navigation .nav-links a:focus {
    background: var(--black-color);
}
.site-ajax-pagination {
    text-align: center;
}
/* Header Media
--------------------------------------------- */
.custom-header {
    color: #fff;
    padding: 0;
}
.custom-header .button {
    color: #fff;
}
.has-header-image .custom-header .header-media-content,
.has-header-video .custom-header .header-media-content {
    display: table-cell;
    height: 100%;
    vertical-align: bottom;
    position: relative;
    z-index: 2;
}
@media screen and (min-width: 768px) {
    .has-header-image .custom-header .header-media-content,
    .has-header-video .custom-header .header-media-content {
        bottom: 0;
        display: block;
        left: 0;
        height: auto;
        padding-top: 0;
        position: absolute;
        width: 100%;
        margin-bottom: 160px;
        vertical-align: middle;
    }
}
.has-header-image .custom-header,
.has-header-video .custom-header {
    display: table;
    height: 440px;
    width: 100%;
}
.custom-header-media {
    bottom: 0;
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
}
.custom-header-media:before {
    background: linear-gradient(rgba(0, 0, 0, 0.50) 25%, rgba(0, 0, 0, 0.70) 75%);
    bottom: 0;
    content: "";
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    right: 0;
    z-index: 2;
}
.has-header-image .custom-header-media img,
.has-header-video .custom-header-media video,
.has-header-video .custom-header-media iframe {
    position: absolute;
    height: auto;
    left: 50%;
    max-width: 1000%;
    min-height: 150%;
    min-width: 100%;
    min-width: 100vw; /* vw prevents 1px gap on left that 100% has */
    width: auto;
    top: 50%;
    padding-bottom: 1px; /* Prevent header from extending beyond the footer */
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.wp-custom-header .wp-custom-header-video-button { /* Specificity prevents .color-dark button overrides */
    color: #fff;
    height: 50px;
    line-height: 55px;
    overflow: hidden;
    padding: 0 20px;
    position: absolute;
    right: 40px;
    bottom: 70px;
    -webkit-transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;
    z-index: 9;
}
/* For browsers that support 'object-fit' */
@supports ( object-fit: cover ) {
    .has-header-image .custom-header-media img,
    .has-header-video .custom-header-media video {
        height: 100%;
        left: 0;
        -o-object-fit: cover;
        object-fit: cover;
        top: 0;
        -ms-transform: none;
        -moz-transform: none;
        -webkit-transform: none;
        transform: none;
        width: 100%;
    }
}
/* Hides div in Customizer preview when header images or videos change. */
body:not(.has-header-image):not(.has-header-video) .custom-header-media {
    display: none;
}
@media screen and (min-width: 768px) {
    .has-header-image .custom-header,
    .has-header-video .custom-header {
        display: block;
        height: auto;
    }
    .custom-header-media {
        height: 165px;
        position: relative;
    }
    .has-header-image .custom-header-media,
    .has-header-video .custom-header-media {
        height: 0;
        position: relative;
    }
    .has-header-image .custom-header-media,
    .has-header-video .custom-header-media {
        min-height: 740px;
        max-height: 100%;
        overflow: hidden;
    }
}
@media screen and (min-width: 1200px) {
    .has-header-image .custom-header-media,
    .has-header-video .custom-header-media {
        height: 100vh;
    }
}
/* Banner Slider
--------------------------------------------- */
.wedevs-banner-block {
    width: 100%;
    height: 100vh;
    min-height: 600px;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    padding: 0;
}
.wedevs-banner-block,
.wedevs-banner-block a {
    color: #fff;
}
.wedevs-banner-block .wedevs-swiper-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    transition-duration: 700ms;
    -webkit-transition-duration: 700ms;
    transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
    -webkit-transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.page-loaded .wedevs-banner-block .wedevs-swiper-container {
    transform: scale(1);
    opacity: 1;
}
.wedevs-banner-block .wedevs-swiper-container .wedevs-swiper-slide {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: center;
    width: 100%;
    height: 100%;
    position: relative;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
}
.wedevs-banner-block .wedevs-swiper-container .wedevs-swiper-slide:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #000;
    filter: alpha(opacity=45);
    opacity: 0.45;
}
.wedevs-swiper-slide .site-wrapper {
    position: relative;
    z-index: 9;
    padding-left: 100px;
    padding-right: 100px;
}
@media (max-width: 575px) {
    .wedevs-swiper-slide .site-wrapper {
        padding-left: 50px;
        padding-right: 50px;
    }
}
.wedevs-banner-block .wedevs-swiper-container .inner-elements {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.wedevs-banner-block .wedevs-swiper-container .inner-elements .site-wrapper {
    position: relative;
    height: 100vh;
}
.wedevs-banner-block .wedevs-swiper-container .pagination {
    width: auto;
    position: absolute;
    left: auto;
    right: 15px;
    bottom: 6rem;
    z-index: 4;
    color: #fff;
    font-size: 4rem;
    font-weight: 600;
    line-height: 10rem;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    filter: alpha(opacity=25);
    opacity: 0.25;
}
.wedevs-banner-block .wedevs-swiper-container .pagination .swiper-pagination-current {
    font-size: 10rem;
    font-weight: 800;
    margin-right: 5px;
}
.wedevs-banner-block .wedevs-swiper-container .pagination .swiper-pagination-total {
    font-size: 5rem;
    margin-left: 5px;
}
.wedevs-banner-block .wedevs-swiper-container .button-prev,
.wedevs-banner-block .wedevs-swiper-container .button-next {
    position: absolute;
    font-weight: 600;
    right: 10px;
    width: 40px;
    z-index: 4;
    color: #fff;
    font-size: 14px;
    line-height: 1;
    cursor: pointer;
    top: calc(50% + 60px);
    transform: rotate(90deg);
    -webkit-transition: 0.25s ease-in-out;
    -moz-transition: 0.25s ease-in-out;
    -ms-transition: 0.25s ease-in-out;
    -o-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out;
    transform-origin: bottom;
}
.wedevs-banner-block .wedevs-swiper-container .button-prev {
    margin-top: -60px;
}
.wedevs-banner-block .wedevs-swiper-container .button-prev:after {
    content: "";
    width: 42px;
    height: 1px;
    background: #fff;
    position: absolute;
    right: calc(-100% - 20px);
    top: 5px;
}
.wedevs-banner-block .wedevs-swiper-container .button-next {
    margin-top: 60px;
}
.wedevs-banner-block .wedevs-swiper-container .social-media {
    width: 20px;
    position: absolute;
    left: 15px;
    top: calc(50% + 60px);
    transform: translateY(-50%);
    z-index: 4;
    text-align: center;
}
.wedevs-banner-block .wedevs-swiper-container .social-media .social-label {
    width: 120px;
    color: #fff;
    transform: rotate(90deg);
    transform-origin: left;
    margin-left: 9px;
    font-weight: 600;
    margin-bottom: 120px;
    font-size: 14px;
}
.wedevs-banner-block .wedevs-swiper-container .social-media ul {
    margin: 0;
    padding: 0;
}
.wedevs-banner-block .wedevs-swiper-container .social-media ul:before {
    content: "";
    width: 1px;
    height: 42px;
    background: #fff;
    display: inline-block;
    margin-bottom: 15px;
    margin-top: 10px;
}
/* Posts and pages
--------------------------------------------- */
.sticky {
    display: block;
}
.post,
.page {
    margin: 0 0 1.5em;
}
.updated:not(.published) {
    display: none;
}
.site-content {
    position: relative;
}
.site-content .site-column-miniwrap .post-content {
    max-width: 820px;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1200px) {
    .left-sidebar .site-content .content-area {
        padding-left: 30px;
    }
    .right-sidebar .site-content .content-area {
        padding-right: 30px;
    }
}
.wedevs-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    position: relative;
}
.wedevs-featured-categories {
    position: relative;
}
@media (max-width: 991px) {
    .wedevs-featured-categories {
        margin-bottom: 3rem;
    }
}
.wedevs-featured-categories a {
    color: #fff;
    left: 50%;
    line-height: normal;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    font-size: 2rem;
    text-align: center;
    text-transform: uppercase;
}
.wedevs-featured-categories a:after {
    background: #fff none repeat scroll 0 0;
    content: "";
    display: block;
    height: 1px;
    margin: 3px auto 0;
    width: 30px;
    transition: all 0.5s;
}
.wedevs-featured-categories:hover a:after,
.wedevs-featured-categories:focus a:after {
    width: 100%;
}
.wedevs-featured-categories .wedevs-categorie-overlay {
    background: #000000 none repeat scroll 0 0;
    height: 100%;
    left: 0;
    opacity: 0.25;
    position: absolute;
    top: 0;
    width: 100%;
}
.wedevs-featured-categories:hover .wedevs-categorie-overlay,
.wedevs-featured-categories:focus .wedevs-categorie-overlay {
    opacity: 0.45;
}
.page-content,
.entry-content,
.entry-summary {
    margin: 1.5em 0 0;
}
.page-links {
    clear: both;
    margin: 0 0 1.5em;
}
.entry-thumbnail {
    position: relative;
}
.entry-thumbnail .entry-meta {
    position: absolute;
    top: 25px;
    left: 0;
    padding: 6px 15px;
}
.entry-thumbnail-effect {
    display: block;
    position: relative;
    overflow: hidden;
}
.entry-thumbnail-effect img {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.entry-thumbnail-effect:hover img,
.entry-thumbnail-effect:focus img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}
.wedevs-post-wrapper .entry-title a {
    color: #000;
}
.wedevs-post-wrapper .entry-title a:hover,
.wedevs-post-wrapper .entry-title a:focus {
    color: #444;
}
.entry-meta .category a,
.entry-meta .cat-tags a,
.entry-meta .cat-links a,
.entry-footer .category a,
.entry-footer .cat-tags a,
.entry-footer .cat-links a {
    display: inline;
    background-image: linear-gradient(180deg, transparent 80%, var(--primary-color) 0);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    margin-right: .5rem;
}
.entry-meta .category a:last-child,
.entry-meta .cat-tags a:last-child,
.entry-meta .cat-links a:last-child,
.entry-footer .category a:last-child,
.entry-footer .cat-tags a:last-child,
.entry-footer .cat-links a:last-child {
    margin-right: 0;
}
.entry-meta .tags-links span,
.entry-meta .tags-links a {
    display: inline-block;
    vertical-align: middle;
}
.entry-meta .tags-links span {
    margin-right: 5px;
}
.entry-meta .entry-meta-posted-by {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1.6rem;
}
.entry-meta-posted-by .entry-meta-avatar {
    width: 40px;
    border-radius: 50%;
    margin-bottom: 0;
    margin-right: 1rem;
    overflow: hidden;
}
.entry-meta-posted-by .entry-meta-name {
    font-size: 1.4rem;
    line-height: 1.2;
    margin-bottom: 0;
}
.wedevs-post-wrapper .wedevs-article-post .entry-thumbnail {
    margin-bottom: 3rem;
}
.wedevs-post-wrapper .entry-details {
    border-bottom: 1px solid;
    margin-bottom: 4rem;
}
.entry-footer {
    align-items: center;
    display: flex;
    justify-content: space-between;
}
.wedevs-post-wrapper .entry-footer {
    margin-bottom: 2rem;
    margin-top: 2rem;
    text-align: right;
    clear: both;
}
.entry-footer .entry-footer-left,
.entry-footer .entry-footer-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.entry-footer .entry-footer-left {
    justify-content: flex-start;
}
.entry-footer .entry-footer-right {
    justify-content: flex-end;
}
.wedevs-more-panel {
    margin-bottom: 4rem;
}
.wedevs-more-panel .entry-thumbnail {
    height: 140px;
    margin-bottom: 1.5rem;
}
.wedevs-more-panel .entry-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wedevs-block-title,
.wedevs-panel-title {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
}
.wedevs-block-heading .wedevs-block-title {
    position: relative;
    text-align: center;
    text-transform: uppercase;
}
.wedevs-block-heading .wedevs-block-title > span {
    display: inline-block;
    z-index: 1;
    max-width: calc(100% - 5px);
    position: relative;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    vertical-align: middle;
    background-color: var(--background-color);
}
.wedevs-block-heading .wedevs-block-title:after,
.wedevs-block-heading .wedevs-block-title:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    width: 50%;
    border-bottom: 1px solid;
}
.wedevs-block-heading .wedevs-block-title:before {
    right: 0;
}
.wedevs-block-heading .wedevs-block-title:after {
    left: 0;
}
.wedevs-block-heading .wedevs-block-subtitle {
    text-align: center;
}
.wedevs-inner-banner {
    padding-bottom: 12rem;
    padding-top: 20rem;
    position: relative;
    margin-bottom: 6rem;
}
.wedevs-inner-banner.data-bg,
.wedevs-inner-banner.data-bg a {
    color: #fff;
}
.wedevs-inner-banner.data-bg:before {
    content: "";
    background: linear-gradient(rgba(0, 0, 0, 0.50) 25%, rgba(0, 0, 0, 0.70) 75%);
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.single-layout-simple .wedevs-inner-banner {
    padding-bottom: 0;
    padding-top: 0;
    margin-bottom: 0;
}
.single-layout-simple .site-content .content-area .wedevs-single-article .entry-header {
    margin-bottom: 3rem;
}
.wedevs-related-articles .related-post .entry-thumbnail .post-thumbnail {
    display: block;
    height: 260px;
    margin-bottom: 2rem;
}
.wedevs-related-articles .related-post .entry-thumbnail .post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wedevs-related-articles .related-post .entry-details {
    text-align: center;
}
.wedevs-related-articles .wedevs-related-carousel .swiper-wrapper {
    margin-bottom: 4rem;
}
.wedevs-related-articles .wedevs-related-carousel .swiper-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1;
}
.wedevs-related-articles .wedevs-swiper-container .swiper-nav-control {
    display: flex;
    align-items: center;
    justify-content: center;
}
.wedevs-related-articles .wedevs-swiper-container .swiper-nav-control .svg-icon {
    color: #eee6e2;
    width: 32px;
    height: 32px;
}
.wedevs-related-articles .wedevs-swiper-container .swiper-pagination-progressbar {
    width: 360px;
    height: 2px;
    display: inline-block;
    position: relative;
    background: #eee6e2;
    margin-top: -4px;
}
.wedevs-related-articles .wedevs-swiper-container .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background: #000;
}
/* 404 Error
--------------------------------------------- */
.wedevs-error-block .site-main {
    padding: 6rem 0 4rem;
}
.wedevs-error-block .widget_search {
    margin-bottom: 8rem;
    margin-top: 4rem;
}
.wedevs-error-block .error-thumb-image img {
    margin-bottom: 2rem;
}
@media (min-width: 992px) {
    .wedevs-error-block {
        margin-bottom: 5rem;
        margin-top: 10rem;
    }
    .wedevs-error-block .site-main {
        background-color: rgba(0, 0, 0, 0.03);
    }
    .wedevs-error-block .error-thumb-image img {
        margin-top: -10rem;
    }
}
/* Comments
--------------------------------------------- */
.comment-content a {
    word-wrap: break-word;
}
.bypostauthor {
    display: block;
}
#comments {
    margin-top: 60px;
    padding-bottom: 5px;
}
#comments .comments-title {
    font-family: var(--secondary-font-family);
    margin-bottom: 60px;
    font-size: 27px;
    font-weight: 700;
    text-transform: uppercase;
}
.page #comments .comments-title {
    margin-top: 60px;
}
#comments .comment-list {
    list-style: none;
    margin: 40px auto;
    padding: 0;
}
#comments .comment-list li {
    border-bottom: 1px solid;
    margin-bottom: 40px;
}
#comments .comment-list li article {
    padding: 0;
    margin-bottom: 40px;
}
#comments .comment-list .children {
    list-style: none;
    margin: 0;
    padding-left: 30px;
    position: relative;
}
#comments .comment-list .children li {
    margin: 0;
    border: none;
}
#comments .comment-list .comment-content li {
    margin-bottom: 10px;
    border: none;
}
#comments .comment-list .comment-content h1,
#comments .comment-list .comment-content h2,
#comments .comment-list .comment-content h3,
#comments .comment-list .comment-content h4,
#comments .comment-list .comment-content h5,
#comments .comment-list .comment-content h6 {
    margin-bottom: 30px;
    margin-top: 30px;
}
#comments .comment-body {
    min-height: 60px;
    display: block;
    position: relative;
    clear: both;
}
#comments .comment-body p:last-child {
    margin-bottom: 0;
}
#comments .comment-body footer {
    margin-bottom: 35px;
}
#comments .comment-body .comment-content {
    background: #f4f7f6;
    padding: 20px;
    clear: both;
    line-height: 1.75;
    position: relative;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
}
#comments .comment-body .comment-content:before {
    content: '';
    position: absolute;
    top: -9px;
    left: 22px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 10px 10px 10px;
    border-color: transparent transparent #f4f7f6 transparent;
}
#comments .comment-author img {
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}
#comments .comment-author .fn {
    font-weight: 700;
    font-style: normal;
    line-height: normal;
    display: inline-block;
    padding-top: 5px;
}
#comments .comment-author .says {
    display: none;
}
#comments .comment-meta .comment-metadata {
    font-size: 14px;
    line-height: inherit;
    margin-top: 5px;
    filter: alpha(opacity=70);
    opacity: 0.7;
}
#comments .comment-meta .comment-metadata .edit-link {
    margin-left: 10px;
    font-style: italic;
}
#comments .reply {
    margin-top: 30px;
}
#comments .comment-reply-link {
    font-weight: 600;
    font-size: 14px;
}
#comments .comment-reply-link:after {
    content: "";
    background-image: url('data:image/svg+xml;utf-8, <svg xmlns="http://www.w3.org/2000/svg" width="14.796" height="10.354" viewBox="0 0 14.796 10.354"><g transform="translate(0.75 1.061)"><path d="M7820.11-1126.021l4.117,4.116-4.117,4.116" transform="translate(-7811.241 1126.021)" fill="none" stroke="%23f15641" stroke-linecap="round" stroke-width="1.5"></path><path d="M6555.283-354.415h-12.624" transform="translate(-6542.659 358.532)" fill="none" stroke="%23f15641" stroke-linecap="round" stroke-width="1.5"></path></g></svg>');
    background-repeat: no-repeat;
    background-size: 14px;
    display: inline-block;
    height: 14px;
    transform: none;
    font-size: 20px;
    line-height: inherit !important;
    margin-left: 5px;
    vertical-align: middle;
    transition: margin-left 250ms ease;
    width: 14px;
}
#comments .comment-reply-link:hover:after {
    margin-left: 13px;
}
#comments .comment-list .bypostauthor .comment-author img {
    border: 2px solid #ffcc00;
}
#comments .comment-form {
    margin-top: 30px;
}
#comments .comment-form p {
    margin-bottom: 10px;
}
#comments .comment-form p:last-child {
    margin-bottom: 0px;
}
#comments .comment-list #respond {
    margin: -20px 0 40px 0px;
}
#comments .comment-form-info-fields {
    margin-bottom: 25px;
}
#comments .comment-form-author input#author, #comments .comment-form-email input#email, #comments .comment-form-url input#url, #comments .comment-form-comment textarea {
    width: 100%;
    margin-top: 3px;
}
#comments p.comment-form-author, #comments p.comment-form-email, #comments p.comment-form-url {
    width: 32%;
    margin-right: 2%;
    float: left;
}
#comments p.comment-form-url {
    margin-right: 0;
    clear: right;
    margin-bottom: 30px;
}
#comments #wp-comment-cookies-consent {
    margin-right: 7px;
    vertical-align: 1px;
}
#comments p.form-submit {
    clear: both;
}
#comments span.required {
    color: #ff7979;
}
#comments .comment-awaiting-moderation {
    color: #DB6A23;
}
#comments p.comment-notes, #comments p.logged-in-as, #comments p.must-log-in {
    margin-bottom: 30px;
    margin-top: -20px;
    font-size: 14px;
}
#comments p.form-allowed-tags {
    margin-bottom: 25px;
    font-size: 14px;
}
#comments h3.comment-reply-title {
    font-size: 18px;
    margin-bottom: 5px;
    clear: both;
}
#comments ol li h3.comment-reply-title {
    margin-top: 60px;
}
#comments h3.comment-reply-title #cancel-comment-reply-link {
    display: inline-block;
    margin-left: 10px;
    text-transform: none;
    font-size: 14px;
    font-weight: 600;
    filter: alpha(opacity=60);
    opacity: 0.6;
}
/* Paragraph that wraps the submit button and hidden comment ID fields. */
#comments .comment-form p.form-submit {
    margin-bottom: 0;
    margin-top: 30px;
}
/* Jetpack checkboxes. */
#comments .comment-form .comment-subscription-form, #comments .comment-form .comment-subscription-form:only-child {
    font-size: 14px;
    margin-top: 20px;
}
#comments .comment-form .comment-subscription-form:last-child {
    margin-top: 0;
}
/* Widgets
--------------------------------------------- */
.widget {
    margin: 0 0 1.5em;
}
.widget-area .widget {
    margin-bottom: 3rem;
}
.widget .widget-title {
    margin: 0 0 1.5rem;
    position: relative;
    text-align: center;
}
.widget .widget-title:after,
.widget .widget-title:before {
    content: "";
    position: absolute;
    z-index: 0;
    top: 50%;
    width: 50%;
    border-bottom: 1px solid;
}
.widget-title:before {
    right: 0;
}
.widget-title:after {
    left: 0;
}
.widget-title > span {
    display: inline-block;
    z-index: 1;
    max-width: calc(100% - 5px);
    position: relative;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    background-color: var(--background-color);
}
.site-footer-widgetarea .widget-title > span {
    background-color: var(--black-color);
}
.widget ul,
.widget ol {
    list-style: none;
    padding: 0;
    margin: 0;
}
.widget select {
    max-width: 100%;
}
.widget_search .search-form {
    display: flex;
}
.widget_search .search-form label {
    flex: 1;
}
.widget_search .search-form .search-field {
    margin-bottom: 0;
}
.widget_search .search-form .search-submit {
    font-size: 0;
    line-height: 0;
    background-image: url('data:image/svg+xml; utf-8, <svg xmlns="http://www.w3.org/2000/svg" width="22.219" height="22.219" viewBox="0 0 22.219 22.219"><path id="Path_24900" data-name="Path 24900" d="M13.346,22.717a9.3,9.3,0,0,0,5.772-2l5.506,5.506,1.594-1.594-5.506-5.506a9.344,9.344,0,1,0-7.366,3.6Zm0-16.5a7.137,7.137,0,1,1-7.124,7.124A7.138,7.138,0,0,1,13.346,6.222Z" transform="translate(-4 -4)" fill="%23fff"/></svg>');
    background-size: 22.22px;
    background-repeat: no-repeat;
    background-position: center;
}
.widget_nav_menu ul li,
.widget_categories ul li,
.widget_recent_entries ul li,
.widget_recent_comments ul li,
.widget_archive ul li,
.widget_meta ul li,
.widget_pages ul li,
.widget_rss ul li,
.widget_block .wp-block-latest-posts li,
.widget_block .wp-block-categories li,
.widget_block .wp-block-archives li,
.widget_block .wp-block-latest-comments li {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    position: relative;
    margin-top: 1em;
    padding-left: 1.5em;
}
.widget_nav_menu ul li:before,
.widget_categories ul li:before,
.widget_recent_entries ul li:before,
.widget_recent_comments ul li:before,
.widget_archive ul li:before,
.widget_meta ul li:before,
.widget_pages ul li:before,
.widget_rss ul li:before,
.widget_block .wp-block-latest-posts li:before,
.widget_block .wp-block-categories li:before,
.widget_block .wp-block-archives li:before,
.widget_block .wp-block-latest-comments li:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 12 12' version='1.1'%3E%3Cpath d='M 3.484375 1.234375 C 3.554688 1.164062 3.648438 1.125 3.75 1.125 C 3.851562 1.125 3.945312 1.164062 4.015625 1.234375 L 8.515625 5.734375 C 8.585938 5.804688 8.625 5.898438 8.625 6 C 8.625 6.101562 8.585938 6.195312 8.515625 6.265625 L 4.015625 10.765625 C 3.867188 10.914062 3.632812 10.914062 3.484375 10.765625 C 3.335938 10.617188 3.335938 10.382812 3.484375 10.234375 L 7.71875 6 L 3.484375 1.765625 C 3.414062 1.695312 3.375 1.601562 3.375 1.5 C 3.375 1.398438 3.414062 1.304688 3.484375 1.234375 Z M 3.484375 1.234375 '/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-size: 12px;
    display: inline-block;
    height: 12px;
    width: 12px;
    position: absolute;
    top: 6px;
    left: 0;
}
.site-footer-widgetarea .widget_nav_menu ul li:before,
.site-footer-widgetarea .widget_categories ul li:before,
.site-footer-widgetarea .widget_recent_entries ul li:before,
.site-footer-widgetarea .widget_recent_comments ul li:before,
.site-footer-widgetarea .widget_archive ul li:before,
.site-footer-widgetarea .widget_meta ul li:before,
.site-footer-widgetarea .widget_pages ul li:before,
.site-footer-widgetarea .widget_rss ul li:before,
.site-footer-widgetarea .widget_block .wp-block-latest-posts li:before,
.site-footer-widgetarea .widget_block .wp-block-categories li:before,
.site-footer-widgetarea .widget_block .wp-block-archives li:before,
.site-footer-widgetarea .widget_block .wp-block-latest-comments li:before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'  fill='%23fff' viewBox='0 0 12 12' version='1.1'%3E%3Cpath d='M 3.484375 1.234375 C 3.554688 1.164062 3.648438 1.125 3.75 1.125 C 3.851562 1.125 3.945312 1.164062 4.015625 1.234375 L 8.515625 5.734375 C 8.585938 5.804688 8.625 5.898438 8.625 6 C 8.625 6.101562 8.585938 6.195312 8.515625 6.265625 L 4.015625 10.765625 C 3.867188 10.914062 3.632812 10.914062 3.484375 10.765625 C 3.335938 10.617188 3.335938 10.382812 3.484375 10.234375 L 7.71875 6 L 3.484375 1.765625 C 3.414062 1.695312 3.375 1.601562 3.375 1.5 C 3.375 1.398438 3.414062 1.304688 3.484375 1.234375 Z M 3.484375 1.234375 '/%3E%3C/svg%3E%0A");
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
    display: block;
    margin: 0.2em 0 0;
    color: #757575;
    font-size: 90%;
    font-weight: 400;
}
.widget_rss .rssSummary {
    font-size: 80%;
    margin: 0.5em 0;
}
.widget_rss cite {
    display: block;
    color: #ccc;
    font-size: 90%;
}
.widget_rss cite:before {
    content: "-";
    margin-right: 0.5em;
}
.widget_rss .rsswidget img {
    display: inline-block;
    margin-right: 0.5em;
}
.widget_calendar table {
    position: relative;
    table-layout: fixed;
    width: 100%;
    max-width: 250px;
}
.widget_calendar table th,
.widget_calendar table td {
    text-align: center;
    padding: 0.2em;
}
.widget_calendar table caption {
    background-color: #f3f3f3;
    padding: 0.2em 2em;
    margin-bottom: 10px;
}
.widget_calendar table tfoot {
    position: absolute;
    width: 100%;
    top: 0;
}
.widget_calendar table tfoot #prev,
.widget_calendar table tfoot #next {
    position: absolute;
    top: 0;
    padding: 5px;
    width: 2em;
    color: #ccc;
}
.widget_calendar table tfoot #prev:hover,
.widget_calendar table tfoot #next:hover {
    color: #aaa;
}
.widget_calendar table tfoot #prev {
    left: 0;
}
.widget_calendar table tfoot #next {
    right: 0;
}
.widget_calendar table tfoot td a {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    text-indent: -999999px;
}
.widget_calendar table tbody a {
    font-weight: 700;
}
.widget_tag_cloud a {
    display: inline-block;
    margin: 0 0.2em 0.4em 0;
    padding: 0.6em 1em;
    background-color: #f3f3f3;
    color: #888;
    font-size: 11px !important;
    letter-spacing: 0.2em;
}
.widget_tag_cloud a:hover,
.widget_tag_cloud a:focus {
    background-color: #e5e5e5;
    color: #444;
}
.site-footer-widgetarea .widget_tag_cloud a {
    background: #000;
}
.site-footer-widgetarea .widget_tag_cloud a:hover,
.site-footer-widgetarea .widget_tag_cloud a:focus {
    background: var(--secondary-color);
}
.site-widget-recent .recent-widget-layout li {
    margin-bottom: 32px;
}
.site-widget-recent .recent-widget-layout li:last-child {
    margin-bottom: 0;
}
.site-widget-recent .entry-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.site-widget-recent .recent-widget-layout .entry-header {
    overflow: hidden;
}
.site-widget-recent .widget-layout-1 .entry-thumbnail {
    float: left;
    height: 65px;
    margin-right: 20px;
    width: 105px;
}
.site-widget-recent .widget-layout-2 .entry-thumbnail {
    width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
    height: 190px;
}
.site-widget-recent .widget-layout-2 .entry-header {
    width: 100%;
    text-align: center;
    padding: 0 15px;
}
.site-widget-categories .categories-widget-layout li {
    position: relative;
    margin-bottom: 57px;
}
.site-widget-categories .categories-widget-layout li a {
    padding: 15px;
    min-width: 228px;
    position: absolute;
    bottom: 0;
    left: 50%;
    max-width: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, 50%);
    background: var(--white-color);
    line-height: 24px;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row wrap;
    overflow: hidden;
    z-index: 1;
}
.site-widget-categories .categories-widget-layout li a .cat-title {
    float: left;
    font-size: 1.8rem;
    text-transform: uppercase;
}
.site-widget-categories .categories-widget-layout li a .post-count {
    float: right;
    height: 26px;
    width: auto;
    line-height: 0.78125em;
    padding: 8px 8px;
    background: var(--secondary-color);
    border-radius: 3px;
    color: var(--white-color);
    margin-left: 10px;
    text-align: center;
    -webkit-transition: linear .2s;
    -moz-transition: linear .2s;
    transition: linear .2s;
}
.site-widget-author .wedevs-author-image {
    width: 232px;
    height: 232px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto 3rem;
}
.site-widget-author .wedevs-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.site-widget-author .wedevs-author-description {
    text-align: center;
}
.site-widget-author .wedevs-author-social {
    position: relative;
    margin-top: 15px;
    text-align: center;
}
.wedevs-author-social .author-social-icons li {
    display: inline-block;
    vertical-align: middle;
}
.site-widget-slider {
    background-color: var(--primary-color);
    position: relative;
}
.site-widget-slider .swiper-slide {
    text-align: center;
}
.site-widget-slider .swiper-nav {
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 0;
    right: 0;
}
.site-widget-slider .swiper-nav .wedevs-sidebar-nav {
    position: absolute;
    top: 50%;
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .65;
}
.site-widget-slider .swiper-nav .wedevs-sidebar-slide-prev {
    left: 10px;
    right: auto;
}
.site-widget-slider .swiper-nav .wedevs-sidebar-slide-next {
    right: 10px;
    left: auto;
}
.site-widget-slider .entry-details {
    padding: 2rem 1rem;
}
/* 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 logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}
/* 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: 1em;
    display: grid;
    grid-gap: 1em;
}
.gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
    margin: 0;
}
.gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}
.gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}
.gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}
.gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}
.gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}
.gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}
.gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}
.gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}
.gallery-caption {
    display: block;
}
/* Social Share
--------------------------------------------- */
.wedevs-social-share {
    display: block;
    direction: rtl;
    text-align: left;
    line-height: 0;
}
.wedevs-social-share-inner {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 32px;
    cursor: pointer;
    margin-left: -80px;
}
.wedevs-social-share-inner:before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Cpath d='M5 7c2.761 0 5 2.239 5 5s-2.239 5-5 5-5-2.239-5-5 2.239-5 5-5zm11.122 12.065c-.073.301-.122.611-.122.935 0 2.209 1.791 4 4 4s4-1.791 4-4-1.791-4-4-4c-1.165 0-2.204.506-2.935 1.301l-5.488-2.927c-.23.636-.549 1.229-.943 1.764l5.488 2.927zm7.878-15.065c0-2.209-1.791-4-4-4s-4 1.791-4 4c0 .324.049.634.122.935l-5.488 2.927c.395.535.713 1.127.943 1.764l5.488-2.927c.731.795 1.77 1.301 2.935 1.301 2.209 0 4-1.791 4-4z'/%3E%3C/svg%3E");
    background-size: 16px;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 30px;
    width: 32px;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.wedevs-social-share-inner:hover:before {
    opacity: 0.5;
}
.wedevs-social-share-label {
    z-index: -1;
    display: inline-block;
    vertical-align: top;
    white-space: nowrap;
    line-height: 32px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    pointer-events: none;
}
.wedevs-social-share .wedevs-social-share-icon {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    visibility: hidden;
    padding-right: 2px;
    padding-left: 2px;
    background-color: #fff;
    text-align: center;
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.wedevs-social-share-icon span {
    display: flex;
    align-items: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #fff;
    justify-content: center;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transition-delay: 0s !important;
    transition-delay: 0s !important;
}
.wedevs-social-share .wedevs-share-icon-facebook span {
    background-color: #4267B2;
}
.wedevs-social-share .wedevs-share-icon-twitter span {
    background-color: #1DA1F2;
}
.wedevs-social-share .wedevs-share-icon-linkedin span {
    background-color: #0e76a8;
}
.wedevs-social-share .wedevs-share-icon-pinterest span {
    background-color: #E60023;
}
.wedevs-social-share .wedevs-share-icon-email span {
    background-color: #1DB954;
}
.wedevs-social-share-icon:hover span,
.wedevs-social-share-icon:focus span {
    background-color: #111;
    color: #fff;
}
.wedevs-social-share-icon span .svg-icon {
    width: 16px;
    height: 16px;
}
.wedevs-social-share-inner:hover .wedevs-social-share-icon {
    z-index: 0;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}
.wedevs-social-share-inner .wedevs-social-share-icon:nth-child(1) {
    -webkit-transform: translate3d(-32px, 0, 0);
    -moz-transform: translate3d(-32px, 0, 0);
    -ms-transform: translate3d(-32px, 0, 0);
    -o-transform: translate3d(-32px, 0, 0);
    transform: translate3d(-32px, 0, 0);
}
.wedevs-social-share-inner:hover .wedevs-social-share-icon:nth-child(1) {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.wedevs-social-share-inner .wedevs-social-share-icon:nth-child(2) {
    z-index: 2;
    -webkit-transform: translate3d(-32px, 0, 0);
    -moz-transform: translate3d(-32px, 0, 0);
    -ms-transform: translate3d(-32px, 0, 0);
    -o-transform: translate3d(-32px, 0, 0);
    transform: translate3d(-32px, 0, 0);
}
.wedevs-social-share-inner:hover .wedevs-social-share-icon:nth-child(2) {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-transform: translateX(-68px);
    -moz-transform: translateX(-68px);
    -ms-transform: translateX(-68px);
    -o-transform: translateX(-68px);
    transform: translateX(-68px);
}
.wedevs-social-share-inner .wedevs-social-share-icon:nth-child(3) {
    z-index: 3;
    -webkit-transform: translateX(-68px);
    -moz-transform: translateX(-68px);
    -ms-transform: translateX(-68px);
    -o-transform: translateX(-68px);
    transform: translateX(-68px);
}
.wedevs-social-share-inner:hover .wedevs-social-share-icon:nth-child(3) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
    -webkit-transform: translateX(-104px);
    -moz-transform: translateX(-104px);
    -ms-transform: translateX(-104px);
    -o-transform: translateX(-104px);
    transform: translateX(-104px);
}
.wedevs-social-share-inner .wedevs-social-share-icon:nth-child(4) {
    z-index: 4;
    -webkit-transform: translateX(-104px);
    -moz-transform: translateX(-104px);
    -ms-transform: translateX(-104px);
    -o-transform: translateX(-104px);
    transform: translateX(-104px);
}
.wedevs-social-share-inner:hover .wedevs-social-share-icon:nth-child(4) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: translateX(-140px);
    -moz-transform: translateX(-140px);
    -ms-transform: translateX(-140px);
    -o-transform: translateX(-140px);
    transform: translateX(-140px);
}
.wedevs-social-share-inner .wedevs-social-share-icon:nth-child(5) {
    z-index: 5;
    -webkit-transform: translateX(-140px);
    -moz-transform: translateX(-140px);
    -ms-transform: translateX(-140px);
    -o-transform: translateX(-140px);
    transform: translateX(-140px);
}
.wedevs-social-share-inner:hover .wedevs-social-share-icon:nth-child(5) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
    -webkit-transform: translateX(-176px);
    -moz-transform: translateX(-176px);
    -ms-transform: translateX(-176px);
    -o-transform: translateX(-176px);
    transform: translateX(-176px);
}
.wedevs-social-share-inner .wedevs-social-share-icon:nth-child(6) {
    z-index: 6;
    -webkit-transform: translateX(-176px);
    -moz-transform: translateX(-176px);
    -ms-transform: translateX(-176px);
    -o-transform: translateX(-176px);
    transform: translateX(-176px);
}
.wedevs-social-share-inner:hover .wedevs-social-share-icon:nth-child(6) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -webkit-transform: translateX(-212px);
    -moz-transform: translateX(-212px);
    -ms-transform: translateX(-212px);
    -o-transform: translateX(-212px);
    transform: translateX(-212px);
}
.wedevs-social-share-inner .wedevs-social-share-icon:nth-child(7) {
    z-index: 7;
    -webkit-transform: translateX(-212px);
    -moz-transform: translateX(-212px);
    -ms-transform: translateX(-212px);
    -o-transform: translateX(-212px);
    transform: translateX(-212px);
}
.wedevs-social-share-inner:hover .wedevs-social-share-icon:nth-child(7) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
    -webkit-transform: translateX(-248px);
    -moz-transform: translateX(-248px);
    -ms-transform: translateX(-248px);
    -o-transform: translateX(-248px);
    transform: translateX(-248px);
}
.wedevs-social-share-inner .wedevs-social-share-icon:nth-child(8) {
    z-index: 8;
    -webkit-transform: translateX(-248px);
    -moz-transform: translateX(-248px);
    -ms-transform: translateX(-248px);
    -o-transform: translateX(-248px);
    transform: translateX(-248px);
}
.wedevs-social-share-inner:hover .wedevs-social-share-icon:nth-child(8) {
    -webkit-transition-delay: 0.6s;
    transition-delay: 0.6s;
    -webkit-transform: translateX(-284px);
    -moz-transform: translateX(-284px);
    -ms-transform: translateX(-284px);
    -o-transform: translateX(-284px);
    transform: translateX(-284px);
}
.wedevs-social-share-inner .wedevs-social-share-icon:nth-child(9) {
    z-index: 9;
    -webkit-transform: translateX(-284px);
    -moz-transform: translateX(-284px);
    -ms-transform: translateX(-284px);
    -o-transform: translateX(-284px);
    transform: translateX(-284px);
}
.wedevs-social-share-inner:hover .wedevs-social-share-icon:nth-child(9) {
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
    -webkit-transform: translateX(-320px);
    -moz-transform: translateX(-320px);
    -ms-transform: translateX(-320px);
    -o-transform: translateX(-320px);
    transform: translateX(-320px);
}
.wedevs-social-share-inner .wedevs-social-share-icon:nth-child(10) {
    z-index: 10;
    -webkit-transform: translateX(-320px);
    -moz-transform: translateX(-320px);
    -ms-transform: translateX(-320px);
    -o-transform: translateX(-320px);
    transform: translateX(-320px);
}
.wedevs-social-share-inner:hover .wedevs-social-share-icon:nth-child(10) {
    -webkit-transition-delay: 0.8s;
    transition-delay: 0.8s;
    -webkit-transform: translateX(-362px);
    -moz-transform: translateX(-362px);
    -ms-transform: translateX(-362px);
    -o-transform: translateX(-362px);
    transform: translateX(-362px);
}
/* Author Bio
--------------------------------------------- */
.wedevs-author-bio {
    border: 1px solid;
    background-color: rgba(0, 0, 0, 0.03);
    margin-bottom: 4rem;
    margin-top: 4rem;
}
.wedevs-author-bio .wedevs-author-image {
    width: 120px;
    border-radius: 60px;
    height: 120px;
    overflow: hidden;
    float: left;
    margin: 2rem;
}
.wedevs-author-bio .wedevs-author-info {
    display: table;
}
.wedevs-author-bio .wedevs-author-description {
    margin-top: 35px;
    padding-right: 35px;
    font-size: 14px;
    margin-bottom: 10px;
}
.wedevs-author-bio .wedevs-author-description .wedevs-author-title,
.wedevs-author-bio .wedevs-author-description .wedevs-author-role {
    text-transform: capitalize;
}
.wedevs-author-bio .wedevs-author-social .wedevs-author-social-list li {
    display: inline-block;
}
.wedevs-author-bio .wedevs-author-social .wedevs-author-social-list li a {
    color: #000000;
    text-align: center;
    font-size: 16px;
    margin-right: 5px;
    display: block;
}
.wedevs-author-bio .wedevs-author-social .wedevs-author-social-list li .svg-icon {
    display: inline-block;
    height: 2rem;
    vertical-align: middle;
    width: 2rem;
}
/* Model Box
--------------------------------------------- */
.wedevs-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: -115;
    visibility: hidden;
    transition: opacity .2s ease-out;
    background-color: rgba(250, 249, 247, .87);
    display: flex;
    align-items: center;
    justify-content: center;
}
.wedevs-modal.is-visible {
    opacity: 1;
    visibility: visible;
    transition: opacity .2s ease-out;
    z-index: 115;
}
.wedevs-modal .wedevs-modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 780px;
    background-color: #faf9f7;
    box-shadow: 0 0 49.5px 0.5px rgba(51, 49, 48, 0.15);
    opacity: 0;
    transform: translateY(24px);
    transition: transform .6s ease, opacity .3s ease-out;
}
.wedevs-modal.is-visible .wedevs-modal-wrapper {
    opacity: 1;
    transform: translateY(0);
}
.wedevs-modal-body {
    display: flex;
    width: 100%;
}
.wedevs-modal-body .wedevs-popup-image {
    display: block;
    width: 340px;
    height: auto;
}
.data-bg-modelbox {
    background-color: #f5f5f5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
}
.wedevs-popup-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    flex: 1;
}
.wedevs-popup-content .wedevs-modal-close {
    position: absolute;
    top: 0;
    right: 0;
    padding-left: 1em;
    padding-right: 1em;
    color: #aaa;
    background: none;
    border: 0;
}
.wedevs-popup-content .wedevs-popup-title {
    font-size: 32px;
    margin: 0 auto 15px;
    line-height: 1.2;
}
.wedevs-popup-content .mc4wp-form-fields > p {
    float: none;
}
.wedevs-popup-content .mc4wp-form-fields input[type="text"],
.wedevs-popup-content .mc4wp-form-fields input[type="email"] {
    color: #000;
}
.wedevs-popup-content .mc4wp-form-fields input[type="text"],
.wedevs-popup-content .mc4wp-form-fields input[type="email"],
.wedevs-popup-content .mc4wp-form-fields input[type="submit"] {
    display: block;
    margin: 0.5rem 0;
    width: 100%;
}
/* Social Icon
--------------------------------------------- */
.wedevs-social-icon {
    --item-space: 5px;
    --icon-size: 20px;
}
.widget .wedevs-social-icon {
    --item-space: 0.0001px;
    --icon-size: 22px;
}
.wedevs-social-icon {
    display: flex;
    margin: 0 calc(var(--item-space) * -1);
    padding: 0 1px;
    overflow: hidden;
}
.wedevs-social-icon a {
    margin: 0 var(--item-space);
    text-align: center;
}
.site-header .wedevs-social-icon a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
}
.site-header .wedevs-social-icon a .svg-icon {
    height: var(--icon-size);
    width: var(--icon-size);
}
.widget .wedevs-social-icon {
    display: grid;
    grid-row-gap: 30px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
}
.widget .wedevs-social-icon a > span {
    display: block;
    margin-top: 15px;
}
/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#site-footer {
    background-color: var(--black-color);
}
#site-footer,
#site-footer a {
    color: var(--white-color);
}
.site-footer-widgetarea .site-bottom-subscribe {
    padding: 4rem 0;
}
.site-footer-widgetarea .site-bottom-subscribe .mc4wp-form {
    margin-top: 3rem;
    padding-top: 3rem;
}
.site-footer-widgetarea {
    padding: 8rem 0 0;
}
.site-footer-divider {
    background: rgba(255, 255, 255, .12);
    display: block;
    height: 1px;
    margin-top: 4rem;
    width: 100%;
}
.site-footer-copyrightarea {
    padding: 4rem 0;
}
.scroll-up {
    background: var(--secondary-color);
    border-color: transparent;
    border-radius: 100%;
    position: fixed;
    z-index: 8000;
    bottom: 20px;
    right: 40px;
    display: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    padding: 0;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}
@media (max-width: 767px) {
    .scroll-up {
        right: 20px;
        bottom: 20px;
    }
}
/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/
/* Jetpack infinite scroll
--------------------------------------------- */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    display: none;
}
.infinity-end.neverending .site-footer {
    display: block;
}
/* Mailchimp For WP
--------------------------------------------- */
.site-bottom-subscribe .wedevs-block-heading{
    padding-right: 15px;
    padding-left: 15px;
}
.mc4wp-form-fields {
    margin: 0 auto;
    max-width: 730px;
    padding-right: 15px;
    padding-left: 15px;
}
.mc4wp-form-fields > p {
    display: block;
    float: left;
}
.mc4wp-form-fields > p label {
    font-size: 0;
    margin: 0;
}
.mc4wp-form-fields input[type="text"],
.mc4wp-form-fields input[type="email"] {
    font-size: 18px;
}
.mc4wp-form-fields input[type="text"],
.mc4wp-form-fields input[type="email"] {
    width: 500px;
    background: transparent;
    color: inherit;
    padding-top: 0;
    padding-bottom: 0;
    height: 70px;
    line-height: 70px;
}
.mc4wp-form-fields input[type="text"]::-webkit-input-placeholder,
.mc4wp-form-fields input[type="email"]::-webkit-input-placeholder {
    color: #333;
}
.mc4wp-form-fields input[type="text"]::-moz-placeholder,
.mc4wp-form-fields input[type="email"]::-moz-placeholder {
    color: #333;
}
.mc4wp-form-fields input[type="text"]:-ms-input-placeholder,
.mc4wp-form-fields input[type="email"]:-ms-input-placeholder {
    color: #333;
}
.mc4wp-form-fields input[type="text"]:-moz-placeholder,
.mc4wp-form-fields input[type="email"]:-moz-placeholder {
    color: #333;
}
.mc4wp-form-fields input[type="submit"] {
    letter-spacing: 0.2em;
    text-transform: uppercase;
    height: 70px;
    line-height: 70px;
    padding-top: 0;
    padding-bottom: 0;
    width: 190px;
    margin-left: 10px;
}
.mc4wp-form-fields input[type="submit"]:hover,
.mc4wp-form-fields input[type="submit"]:focus {
    filter: alpha(opacity=85);
    opacity: 0.85;
}
.mc4wp-response {
    clear: both;
    max-width: 540px;
    margin: 0 auto;
}
@media only screen and (max-width: 767px) {
    .mc4wp-form-fields > p,
    .mc4wp-form-fields input[type="email"],
    .mc4wp-form-fields input[type="submit"] {
        width: 100%;
        margin: 0.5rem auto;
    }
}
/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/
.alignwide,
.alignfull {
    margin: 3rem auto;
}
.site-column-miniwrap .alignwide,
.site-column-miniwrap .alignfull {
    margin: 32px calc(50% - 50vw);
    max-width: 100vw;
    width: 100vw;
}
@media (min-width: 1441px) {
    .site-column-miniwrap .alignwide {
        margin: 32px -175px;
        max-width: 1170px;
        width: 1170px;
    }
}
.wp-block-post-template,
.wp-block-query-loop {
    margin: 0 auto;
}
.widget .wp-block-search .wp-block-search__button {
    background: var(--secondary-color);
    border: 0;
    color: #fff;
}
/* Accessibility
--------------------------------------------- */
/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
}
.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}
.skip-link {
    font-size: 16px !important;
}
/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}
/* Alignments
--------------------------------------------- */
.alignleft {
    float: left;
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}
.alignright {
    float: right;
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}
.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}
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,
.modal-menu li,
button.sub-menu-toggle,
.wedevs-post-wrapper .entry-details,
.widget .widget-title:after,
.widget .widget-title:before,
.wedevs-block-heading .wedevs-block-title:after,
.wedevs-block-heading .wedevs-block-title:before,
.wedevs-author-bio,
#comments .comment-list li {
    border-color: rgba(0, 0, 0, 0.12);
}
.site-footer-widgetarea .widget .widget-title:after,
.site-footer-widgetarea .widget .widget-title:before {
    border-color: rgba(255, 255, 255, .12);
}
.entry-thumbnail .entry-meta {
    background-color: var(--primary-color);
}
.entry-thumbnail .entry-meta,
.entry-thumbnail .entry-meta a {
    color: #636363;
}
a:focus,
button:focus {
    outline-color: var(--secondary-color);
}
a.skip-minicart-start {
    display: none;
}
.active-mini-cart a.skip-minicart-start {
    display: block;
}
.site-archive-main .wedevs-article-post .site-column-3 .entry-meta {
    margin-bottom: 1.5rem
}
.rtl .wedevs-btn .wedevs-btn-icon,
.rtl .wedevs-related-articles .wedevs-swiper-container .swiper-nav-control .svg-icon,
.rtl .widget_nav_menu ul li:before,
.rtl .widget_categories ul li:before,
.rtl .widget_recent_entries ul li:before,
.rtl .widget_recent_comments ul li:before,
.rtl .widget_archive ul li:before,
.rtl .widget_meta ul li:before,
.rtl .widget_pages ul li:before,
.rtl .widget_rss ul li:before,
.rtl .widget_block .wp-block-latest-posts li:before,
.rtl .widget_block .wp-block-categories li:before,
.rtl .widget_block .wp-block-archives li:before, .widget_block .wp-block-latest-comments li:before {
    /*rtl:begin:ignore*/
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    /*rtl:end:ignore*/
}
