@charset "UTF-8";

/*
Theme Name: Bloglog
Theme URI: https://www.themeinwp.com/theme/bloglog
Author: Themeinwp
Author URI: https://www.themeinwp.com/
Description: Bloglog is a minimalist Personal WordPress Blog made for creative people, photographers and bloggers. It's a perfect choice for a minimal blog and can also be used for Travel & lifestyle. Bloglog looks great on any device, from mobile to desktop and beyond. Super Clean responsive design fits to any screen.
Requires at least: 5.3
Tested up to: 5.9
Requires PHP: 5.6
Version: 1.0.6
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bloglog
Tags: blog, photography, grid-layout, one-column, two-columns, three-columns, right-sidebar, custom-colors, custom-header, custom-logo, custom-menu, featured-image-header, featured-images, flexible-header, footer-widgets, rtl-language-support, theme-options, threaded-comments, translation-ready
*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Header
# Navigation
  ## Links
  ## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
  ## Posts and pages
  ## Comments
# Infinite scroll
# Gutenberg
# Media
  ## Captions
  ## Galleries
# Footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
:root {
    --border-radius: 1.5rem;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

html {
    --scrollbarBG: #eaeaea;
    --thumbBG: #c5c5c5;
    --scrollbarBGDark: #222;
    --thumbBGDark: #f1f1f1;
}


/***
====================================================================
## Start CSS
====================================================================
***/

body {
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    font-family: "Meiryo", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.8;
    font-weight: normal;
    color: #333;
    background: #fff;
    /* Fallback for when there is no custom background color defined. */
}


/**
 * Typography
 * -------------------------------------------------------------
 */

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
    margin: 0 0 10px;
    padding: 0;
    line-height: 1.3;
}

h1 {
    font-size: 38px;
}

h2 {
    font-size: 28px;
}

h3 {
    font-size: 20px;
    font-weight: bold;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin: 10px 0;
    padding: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 30px;
    color: #333;
}


/**
 * Links
 * -------------------------------------------------------------
 */

a {
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #96560D;
}

a:focus {
    outline: 0;
}

a:hover,
a:active {
    outline: 0;
}


/**
 * Elements
 * -------------------------------------------------------------
 */

.clr {
    clear: both;
}


/***
====================================================================
## Masthead
====================================================================
***/

.theme-site-header {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding: 0;
}

.theme-site-header .header-component {
    padding-left: 3rem;
    padding-right: 3rem;
}

@media screen and (max-width: 991px) {
    .theme-site-header .header-component {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.theme-site-header .header-component-left {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

@media (min-width: 1200px) {
    .theme-site-header .header-component-left {
        flex-shrink: 0;
    }
}

.theme-site-header .header-component-right {
    align-items: center;
    display: flex;
    justify-content: flex-end;
}


/**
 * Logo
 * -------------------------------------------------------------
 */

.header-titles {}

.site-logo {}

.site-logo img {
    max-width: 100%;
}


/**
 * Toggle
 * -------------------------------------------------------------
 */

.navbar-controls {
    display: flex;
    flex-shrink: 0;
    justify-content: flex-end;
    margin-left: -1rem;
    margin-right: -1rem;
}

.navbar-control {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin: 0 1rem;
}

.theme-action-control {
    border-color: transparent;
    position: relative;
    padding: 0;
    width: 100%;
}

.theme-action-control:hover,
.theme-action-control:focus,
.theme-action-control:active {
    outline: none;
    border-color: transparent;
}

.theme-action-control .action-control-trigger {
    display: inline-block;
    /*line-height: 1.6rem;
    padding: 0.8rem 1rem;*/
}

.theme-action-control .action-control-trigger:focus{
    outline: none;
}

.theme-action-control .svg-icon {
    color: #000;
}


/***
====================================================================
## Offcanvas Menu
====================================================================
***/

#offcanvas-menu {
    justify-content: flex-end;
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    top: 0;
    right: -100%;
    -webkit-transition: right 0.5s;
    -moz-transition: right 0.5s;
    -ms-transition: right 0.5s;
    -o-transition: right 0.5s;
    transition: right 0.5s;
    z-index: 1000;
}

#offcanvas-menu.offcanvas-menu-active {
    display: -ms-flexbox;
    display: flex;
    right: 0;
}

#offcanvas-menu .offcanvas-wraper {
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    height: 100%;
    padding: 20px 100px;
    background: #fff;
    box-shadow: 0 0 2rem 0 rgba(0, 0, 0, 0.1);
}

#offcanvas-menu .offcanvas-wraper::-webkit-scrollbar {
    width: 0;
    height: 0;
}

@media screen and (max-width: 1199px) {
    #offcanvas-menu .offcanvas-wraper {
        -ms-flex: 0 0 80%;
        flex: 0 0 80%;
        max-width: 80%;
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    #offcanvas-menu .offcanvas-wraper {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

#offcanvas-menu .close-offcanvas-menu {
    text-align: right;
    cursor: pointer;
}

#offcanvas-menu .close-offcanvas-menu .offcanvas-close {
    text-align: right;
    display: block;
    margin: 10px auto;
    font-size: 14px;
    font-weight: 700;
}

#offcanvas-menu .close-offcanvas-menu .offcanvas-close .button-offcanvas-close {
    text-align: center;
    display: inline-block;
    background: none;
    border: none;
    border-radius: 0;
    /*padding: 1.5rem 2rem;*/
    padding: 0;
    transition: opacity 0.15s linear;
    cursor: pointer;
}

#offcanvas-menu .close-offcanvas-menu .offcanvas-close .svg-icon {
    color: #000;
}

.offcanvas-wraper>* {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
    filter: alpha(opacity=0);
    opacity: 0;
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
    will-change: transform, opacity;
}

.offcanvas-menu-active .offcanvas-wraper>* {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
    filter: alpha(opacity=100);
    opacity: 1;
}

.offcanvas-menu-active .offcanvas-wraper .offcanvas-main-navigation {
    transition-delay: 0.6s;
}

.offcanvas-menu-active .offcanvas-wraper .offcanvas-social-navigation {
    transition-delay: 0.9s;
}

.offcanvas-main-navigation {
    width: 100%;
}

.offcanvas-item {
    margin-bottom: 30px;
}


/**
 * Primary Menu
 * -------------------------------------------------------------
 */

.offcanvas-item .primary-menu {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    border-top: solid 0.1rem rgb(0 0 0 / 10%);
}

.offcanvas-main-navigation li {
    position: relative;
    padding: 20px 0;
    border-bottom: solid 0.1rem rgb(0 0 0 / 10%);
}

.offcanvas-main-navigation li:last-child {
    border-bottom: none;
}

.offcanvas-main-navigation li>.submenu-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.offcanvas-main-navigation li>.submenu-wrapper a {
    display: block;
    position: relative;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: normal;
    color: #333;
}

.offcanvas-main-navigation li.current-menu-item>.submenu-wrapper a,
.offcanvas-main-navigation li>.submenu-wrapper a:hover,
.offcanvas-main-navigation li:hover>.submenu-wrapper a {
    color: #96560D;
}


/**
 * Social Navigation
 * -------------------------------------------------------------
 */

.offcanvas-social-navigation ul {
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.offcanvas-social-navigation li {
    display: inline-block;
    vertical-align: middle;
    line-height: 0;
}

.offcanvas-social-navigation li a {
    text-align: center;
    display: inline-block;
    /*margin-right: 4px;
    padding-right: 4px;*/
    width: 3.8rem;
    height: 3.8rem;
    line-height: 3.8rem;
    color: #999;
}

.offcanvas-social-navigation li a:hover {
    color: #B6702A;
}


/***
====================================================================
## Site Content
====================================================================
***/

.site-content {
    position: relative;
}

.home .site-content {}

.single .site-content {}


/***
====================================================================
## Banner
====================================================================
***/

.theme-block-carousel {
    margin-bottom: 6rem;
}

.wrapper-inner-nospace {
    margin: 0;
}

.wrapper-inner-nospace>.column {
    padding: 0;
}

.slide-btn {
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    border: solid 2px #fff;
    border-radius: 100%;
    color: #fff;
    margin-top: -25px;
    padding: 0;
    top: 50%;
    cursor: pointer;
    z-index: 1;
}

.slide-btn:after {
    display: inline-block;
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-right-style: solid;
    border-right-width: 1px;
    border-color: #fff;
    top: 12px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
}

.slide-prev-icon:after {
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

.slide-next-icon:after {
    -moz-transform: rotate(315deg);
    -ms-transform: rotate(315deg);
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}

.slide-prev-icon:hover,
.slide-prev-icon:focus,
.slide-next-icon:hover,
.slide-next-icon:focus {
    outline: none !important;
    border-color: #96560D;
}

.slide-prev-icon {
    left: 1.5rem;
}

.slide-next-icon {
    right: 1.5rem;
}

.theme-carousel-article .entry-thumbnail {
    position: relative;
}

.data-bg-large {
    height: 500px;
}

@media (max-width: 1600px) {
    .data-bg-large {
        height: 50rem;
    }
}

@media (max-width: 1024px) {
    .data-bg-large {
        height: 50rem;
    }
}

@media (max-width: 991px) {
    .data-bg-large {
        height: 45rem;
    }
}

@media (max-width: 575px) {
    .data-bg-large {
        height: 35rem;
    }
}

.post-index-number {
    position: absolute;
    bottom: 5rem;
    left: 3rem;
    right: 3rem;
    margin: 0 auto;
    width: 90%;
    color: #fff;
}

@media (max-width: 991px) {
    .post-index-number {
        bottom: 2rem;
    }
}

.slider-progress {
    width: 100%;
    height: 3px;
    background: #eee;
}

.slider-progress .progress {
    width: 0%;
    height: 3px;
    background: #B6702A;
}

.post-index-number .index-number {
    visibility: hidden;
    text-align: right;
    font-family: "Inter", sans-serif;
    font-size: 9rem;
    font-weight: 900;
    margin-right: 0;
    opacity: 0;
    transition: 0.6s ease;
    transition-delay: 0.5s;
}

@media (max-width: 575px) {
    .post-index-number .index-number {
        font-size: 5rem;
    }
}


/***
====================================================================
## Keyword
====================================================================
***/

.theme-timeline {
    text-align: center;
    margin-bottom: 6rem;
}

.theme-timeline .theme-panel-body {}

.theme-timeline .theme-panel {}

.by-author {}

.theme-author-title {}

.theme-author-title p {
    margin: 0;
    padding: 0;
}


/***
====================================================================
## Categories-1
====================================================================
***/

.theme-about-us {
    display: block;
    position: relative;
    /*margin-bottom: 8rem;
    padding-top: 4rem;
    padding-bottom: 2rem;*/
    padding-bottom: 6rem;
    background-image: none!important;
}

/*.theme-about-us::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / 70%);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}*/

.theme-about-us.data-bg {
    background: none;
}

.about-us-image {
    position: relative;
}

.about-us-image>.data-bg {
    display: none;

    height: 50rem;
    filter: blur(0.3rem);
    border-radius: 1.5rem;
}

@media (max-width: 575px) {
    .about-us-image>.data-bg {
        height: 30rem;
        filter: unset;
    }
}

/*.theme-about-us .image-overlay-position {
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: 0 16px 24px 2px rgb(0 0 0 / 20%);
    border-radius: 1.5rem;
    top: 5rem;
    left: 10rem;
}

@media (max-width: 991px) {
    .theme-about-us .image-overlay-position {
        left: 5rem;
    }
}

@media (max-width: 575px) {
    .theme-about-us .image-overlay-position {
        display: none;
    }
}*/

.theme-about-us .image-overlay-position .data-bg {
    /*height: 50rem;*/
    height: 35rem;
    border-radius: inherit;
}

@media (max-width: 575px) {
    .theme-about-us .image-overlay-position .data-bg {
        height: 30rem;
    }
}

.about-us-content {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 0 7.5rem;
    padding-left: 0;
}

@media (max-width: 991px) {
    .about-us-content {
        padding: 0 4rem;
        padding-left: 0;
    }
}

@media (max-width: 575px) {
    .about-us-content {
        padding: 1.5rem 0 0 0;
    }
}

.theme-about-us h2.entry-title {
    /*position: absolute;
    max-width: 60rem;
    background-color: #B6702A;
    padding: 1rem 2rem;
    top: 11rem;
    left: 2rem;*/
}

/*@media (max-width: 1199px) {
    .theme-about-us h2.entry-title {
        top: 8rem;
    }
}

@media (max-width: 768px) {
    .theme-about-us h2.entry-title {
        max-width: 100%;
        top: 6.5rem;
    }
}

@media (max-width: 575px) {
    .theme-about-us h2.entry-title {
        position: unset;
    }
}*/

.theme-about-us p {}


/***
====================================================================
## Post 3-1
====================================================================
***/

.theme-block-masonry {
    margin-bottom: 6rem;
}

.theme-block-masonry .theme-panelarea-body {}

.theme-panelarea-blocks .theme-panel-blocks {
    float: left;
    width: 33.33333%;
    margin-bottom: 4rem;
}

/*@media screen and (max-width: 1024px) {
    .theme-panelarea-blocks .theme-panel-blocks {
        width: 50%;
    }
}*/

@media screen and (max-width: 575px) {
    .theme-panelarea-blocks .theme-panel-blocks {
        width: 100%;
    }
}

.theme-panelarea-blocks .theme-panel-blocks .twp-archive-items {
    padding-left: 1rem;
    padding-right: 1rem;
}

.twp-archive-items .entry-wrapper {
    overflow: hidden;
    position: relative;
    /*border-radius: 12px;
    background-color: #fff;
    -webkit-box-shadow: 0px 7px 14px 0px rgb(151 160 204 / 12%);
    box-shadow: 0px 7px 14px 0px rgb(151 160 204 / 12%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;*/
}

/*.twp-archive-items:hover .entry-wrapper {
    -webkit-box-shadow: 0px 12px 28px 0px rgb(151 160 204 / 30%);
    box-shadow: 0px 12px 28px 0px rgb(151 160 204 / 30%);
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    -o-transform: translateY(-8px);
    transform: translateY(-8px);
}*/

.twp-archive-items .entry-wrapper .entry-thumbnail {
    margin-bottom: 20px;
}

.twp-archive-items .entry-wrapper .entry-thumbnail img {
    object-fit: cover;
    width: 100%;
}

.twp-archive-items .entry-wrapper .post-content {
    /*padding: 1.5rem 2rem;*/
}

.twp-archive-items .post-content .entry-header {}

.twp-archive-items .post-content h3.entry-title {}

.twp-archive-items .post-content h3.entry-title a {
    color: #333;
    background-image: linear-gradient(180deg, transparent 90%, #96560D 0);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    -webkit-transition: background-size 0.4s ease;
    -moz-transition: background-size 0.4s ease;
    transition: background-size 0.4s ease;
}

.twp-archive-items .post-content h3.entry-title:hover a,
.twp-archive-items .post-content h3.entry-title:focus a {
    background-size: 100% 100%;
}

.twp-archive-items .post-content .entry-content p {
    margin: 0;
}


/***
====================================================================
## Post 4-1
====================================================================
***/

.theme-block-timeline {
    margin-bottom: 6rem;
}

.theme-block-timeline .theme-panel-body {}

.theme-block-timeline .wrapper-inner>.column:not(:last-child) {}

@media (max-width: 992px) {
    .theme-block-timeline .wrapper-inner>.column:not(:last-child) {
        margin-bottom: 4rem;
    }
}

.theme-block-timeline .theme-panel {}

.theme-block-timeline .entry-thumbnail {
    margin-bottom: 20px;
}

.theme-block-timeline .entry-thumbnail img {
    object-fit: cover;
    width: 100%;
    /*border-radius: 1.5rem;*/
}

.theme-block-timeline .post-content {}

.theme-block-timeline .post-content .entry-header {}

.theme-block-timeline .post-content h3.entry-title {
    letter-spacing: 1px;
}

.theme-block-timeline .post-content h3.entry-title a {
    color: #333;
    background-image: linear-gradient(180deg, transparent 90%, #96560D 0);
    background-size: 0% 100%;
    background-repeat: no-repeat;
    -webkit-transition: background-size 0.4s ease;
    -moz-transition: background-size 0.4s ease;
    transition: background-size 0.4s ease;
}

.theme-block-timeline .post-content h3.entry-title:hover a,
.theme-block-timeline .post-content h3.entry-title:focus a {
    background-size: 100% 100%;
}

.theme-block-timeline .post-content .entry-content p {
    margin: 0;
}


/***
====================================================================
## Button Link
====================================================================
***/

.post-content .entry-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
}

.post-content .entry-meta-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.post-content .entry-meta-link a {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: normal;
    letter-spacing: 0.1em;
    line-height: 1.2;
}

.post-content .entry-meta-link a:hover {
    color: #96560D;
}

.post-content .entry-meta-link:before {
    display: block;
    content: "";
    width: 0;
    border-top: 2px solid;
    margin-top: 4px;
}

.post-content .entry-meta-link:before {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    filter: alpha(opacity=0);
    opacity: 0;
    pointer-events: none;
}

.post-content:hover .entry-meta-link:before,
.post-content:focus .entry-meta-link:before {
    width: 29px;
    filter: alpha(opacity=100);
    opacity: 1;
    margin-right: 0.5rem;
    pointer-events: all;
}


/***
====================================================================
## Primary
====================================================================
***/

.site-main {}

.article-wraper {}

.article-wraper article {}

.article-wraper article .entry-featured-thumbnail {
    position: relative;
}

.article-wraper article .entry-thumbnail {
    margin-bottom: 20px;
}

.article-wraper article .entry-thumbnail img {
    object-fit: cover;
    width: 100%;
    /*border-radius: 1.5rem;*/
}

.article-wraper article .entry-header {}

.article-wraper article h1.entry-title {
    font-size: 26px;
    font-weight: normal;
}

.article-wraper article .post-content-wrap {}

.article-wraper article .post-content {}

.article-wraper article .entry-content {}

.article-wraper article .entry-content h2 {
    font-size: 20px;
    font-weight: bold;
}

.article-wraper article .entry-content p {}


/***
====================================================================
## Secondary
====================================================================
***/

.widget-area {}

@media (max-width: 992px) {
    .widget-area {
        margin-top: 4rem;
        margin-bottom: 4rem;
    }
}

.widget-area .widget {
    margin: 0 0 4rem;
}

.widget-area .widget:last-child {
    margin: 0;
}

.widget-area .wp-block-group {
    box-sizing: border-box;
}

.widget-area .wp-block-group__inner-container {}

.widget-area .widget h2 {
    position: relative;
    font-size: 20px;
    font-weight: bold;
}

.widget-area .widget h2 a {
    color: #333;
}

.widget-area .widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.widget-area .widget ul li {
    position: relative;
    margin: 0 0 5px;
    padding: 10px 20px 10px 30px;
    border: solid 1px #eee;
}

.widget-area .widget ul li:before {
    display: inline-block;
    position: absolute;
    content: "";
    width: 12px;
    height: 12px;
    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;
    top: 16px;
    left: 10px;
}

.widget-area .widget ul li:last-child {
    margin-bottom: 0;
    /*border-bottom: none;*/
}

.widget-area .widget ul li a {
    display: block;
    font-size: 16px;
    font-weight: normal;
    color: #333;
}

.widget-area .widget ul li a:hover,
.widget-area .widget ul li:hover a {
    color: #96560D;
}


/***
====================================================================
## Footer
====================================================================
***/

#site-footer {}

.footer-credits {
    padding: 4rem 3rem;
}

@media only screen and (max-width: 1199px) {
    .footer-credits {
        padding: 3rem 0;
    }
}


/**
 * Footer Copyright
 * -------------------------------------------------------------
 */

.footer-copyright {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: normal;
    color: #333;
}

.footer-copyright a {
    color: #96560D;
}


/**
 * Footer Top The Top
 * -------------------------------------------------------------
 */

.to-the-top {
    float: right;
    text-align: center;
    display: inline-block;
    position: relative;
    /*width: 100%;*/
    background: #B6702A;
    border: none;
    border-radius: 0.4rem;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: normal;
    color: #fff;
}

.to-the-top:hover,
.to-the-top:focus,
.to-the-top:active {
    outline: none;
}

.to-the-top:hover {
    color: #fff;
}

.to-the-top .action-control-trigger {
    display: inline-block;
    line-height: 1.6rem;
    padding: 0.8rem 1rem;
}

.to-the-top .action-control-trigger:focus{
    outline: none;
}

.to-the-top>* {
    pointer-events: none;
}

.to-the-top-long {
    display: none;
}

@media (min-width: 768px) {
    .to-the-top-long {
        display: inline;
    }
    .to-the-top-short {
        display: none;
    }
}


/***
====================================================================
## End CSS
====================================================================
***/

.mg-grid-sizer {
    width: 33.33333%;
}

@media screen and (max-width: 1024px) {
    .mg-grid-sizer {
        width: 50%;
    }
}

@media screen and (max-width: 575px) {
    .mg-grid-sizer {
        width: 100%;
    }
}


/***
====================================================================
## End CSS
====================================================================
***/

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: 85%;
}

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 {
    font-family: inherit;
    font-size: 100%;
    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;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    /* 3 */
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
html {
    font-size: 62.5%;
    /* 1rem = 10px */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button,
input,
select,
optgroup,
textarea {
    color: #2b3948;
    font-family: "Inter", sans-serif;
    font-weight: 300;
    font-size: 1.4rem;
    line-height: 1.6;
}

.header-titles .site-title,
.site-navigation .primary-menu a,
.theme-block-title {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

.entry-title-large {
    font-size: 4.2rem;
}

@media (max-width: 575px) {
    .entry-title-large {
        font-size: 3rem;
    }
}

.entry-title-big {
    font-size: 3.2rem;
}

.entry-title-medium {
    font-size: 2.2rem;
}

.entry-title-small {
    font-size: 1.8rem;
}

.entry-title-xsmall {
    font-size: 1.5rem;
}

.post-content-overlay .entry-title a {
    background-image: linear-gradient(180deg, transparent 90%, #fff 0);
}

dfn,
cite,
em,
i {
    font-style: normal;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

.body-scroll-locked {
    overflow: hidden;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin-top: 0;
    margin-bottom: 1rem;
}

ul {
    list-style: disc;
}

ol {
    list-style: decimal;
}

li>ul,
li>ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

video {
    height: auto;
    max-width: 100%;
    vertical-align: top;
}

figure {
    margin: 1em 0;
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

.svg-icon {
    fill: currentColor;
}

.data-bg {
    display: block;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.data-bg {
    background-color: rgb(0 0 0 / 45%);
}

.data-bg-fixed {
    background-attachment: fixed;
}

.data-bg-full {
    height: 100vh;
}

/*.data-bg-large {
    height: 780px;
}

@media (max-width: 1600px) {
    .data-bg-large {
        height: 66rem;
    }
}

@media (max-width: 1024px) {
    .data-bg-large {
        height: 60rem;
    }
}

@media (max-width: 991px) {
    .data-bg-large {
        height: 45rem;
    }
}

@media (max-width: 575px) {
    .data-bg-large {
        height: 35rem;
    }
}*/

.data-bg-big {
    height: 400px;
}

.data-bg-medium {
    height: 200px;
}

.data-bg-small {
    height: 160px;
}

.data-bg-thumbnail {
    height: 120px;
}

::-moz-selection {
    background: #000000;
    color: #ffffff;
}

::selection {
    background: #000000;
    color: #ffffff;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
.select {
    font-family: inherit;
    line-height: 1;
}

.select {
    border-color: #e1e1e3;
}

select {
    font-family: inherit;
    font-size: inherit;
}

button,
.button {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    color: inherit;
    border-radius: 0;
    border-style: solid;
    border-width: 0.1rem;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    margin: 0;
    padding: 1.6rem 1.5rem;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.15s linear;
}

.theme-button-filled {
    background-color: #fff;
    box-shadow: 0px 2px 4px rgba(146, 158, 218, 0.12);
}

.theme-button-small {
    padding: 0;
    font-weight: 600;
    font-size: 1.4rem;
}

button:hover,
.button:hover,
button:focus,
.button:focus {
    text-decoration: none;
}

button:focus,
.button:focus {
    border-color: #96560D;
}

button:hover,
.button:hover,
button:focus,
.button:focus,
button:active,
.button:active {
    outline: 0;
}

/*--------------------------------------------------------------
## PRELOADER
--------------------------------------------------------------*/
.preloader {
    background: #000000;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    margin-left: auto;
    margin-right: auto;
    z-index: 999999;
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.7s ease;
    -moz-transition: all 0.7s ease;
    -ms-transform: all 0.7s ease;
    transition: all 0.7s ease;
}

.page-loaded .preloader {
    transform: translateY(-100%);
    -o-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    -webkit-transform: translateY(-100%);
}

.preloader .loader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: auto;
    text-align: center;
    width: 50px;
    height: 50px;
}

.preloader .loader span {
    border: 0;
    margin: 0;
    width: 40%;
    height: 40%;
    position: absolute;
    border-radius: 50%;
    animation: spin 2s ease infinite;
}

.preloader .loader :first-child {
    background: #19a68c;
    animation-delay: -1.5s;
}

.preloader .loader :nth-child(2) {
    background: #f63d3a;
    animation-delay: -1s;
}

.preloader .loader :nth-child(3) {
    background: #fda543;
    animation-delay: -0.5s;
}

.preloader .loader :last-child {
    background: #193b48;
}

@keyframes spin {

    0%,
    100% {
        transform: translateX(200%);
    }

    25% {
        transform: translateY(200%);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateY(0);
    }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
@media only screen and (min-width: 1600px) {
    .header-titles {
        align-items: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

.header-titles .site-title {
    font-size: 3.2rem;
    margin: 0 auto;
}

.header-titles .custom-logo-link .site-title:before {
    content: none;
    display: none;
}

.header-titles .site-title a {
    color: inherit;
}

@media only screen and (min-width: 1600px) {
    .header-titles .site-description {
        margin: 0 2rem;
    }
}

@media only screen and (max-width: 640px) {
    .header-titles {
        max-width: 240px;
    }
}

.header-navigation-wrapper {
    position: relative;
}

.theme-site-header .wrapper-inner {
    justify-content: space-between;
}

@media only screen and (min-width: 1199px) {
    .enabled-desktop-menu .navbar-control-offcanvas {
        display: none;
        filter: alpha(opacity=0);
        opacity: 0;
        visiibility: hidden;
    }
}

.btn__content:focus {
    outline: none;
}

.theme-action-control:focus>.action-control-trigger,
.submenu-toggle:focus>.btn__content {
    outline: 2px solid #96560D;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.site-navigation {
    position: relative;
    margin-left: 1rem;
    margin-right: 1rem;
}

.site-navigation ul {
    list-style: none;
    margin: 0 auto;
}

.site-navigation .primary-menu {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    width: 100%;
}

.primary-menu a {
    color: inherit;
    font-weight: 600;
}

.site-navigation .primary-menu .icon {
    display: inline-block;
    vertical-align: middle;
    pointer-events: none;
}

.site-navigation .primary-menu .icon .svg-icon {
    width: 12px;
}

.site-navigation .primary-menu>li {
    position: relative;
    padding-left: 1rem;
    padding-right: 1rem;
}

.site-navigation .primary-menu>li.menu-item-has-children>a {
    padding-right: 1rem;
}

.site-navigation .primary-menu a {
    display: inline-block;
    vertical-align: middle;
    text-decoration: none;
    word-break: normal;
    word-wrap: normal;
    position: relative;
}

.site-navigation .primary-menu>li>a:before,
.site-navigation .primary-menu>li>a:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 4px;
    bottom: -2px;
    margin-top: -0.5px;
    background: #96560D;
}

.site-navigation .primary-menu>li>a:before {
    left: 0;
}

.site-navigation .primary-menu>li>a:after {
    right: 0;
    background: #96560D;
    -webkit-transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.8s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-navigation .primary-menu>li>a:hover:before {
    background: #96560D;
    width: 100%;
    -webkit-transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    transition: width 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.site-navigation .primary-menu>li>a:hover:after {
    background: transparent;
    width: 100%;
    -webkit-transition: 0s;
    transition: 0s;
}

/* SUB MENU */
.site-navigation .primary-menu ul {
    background: #ebebeb;
    border-radius: 0.4rem;
    font-size: 1.7rem;
    filter: alpha(opacity=0);
    opacity: 0;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    left: -99999rem;
    top: calc(100% + 2rem);
    transition: opacity 0.15s linear, transform 0.15s linear, right 0s 0.15s;
    transform: translateY(0.6rem);
    width: 30rem;
    z-index: 9;
}

.site-navigation .primary-menu li.menu-item-has-children:hover>ul,
.site-navigation .primary-menu li.menu-item-has-children:focus>ul {
    left: 0;
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.15s linear, transform 0.15s linear;
}

.site-navigation .primary-menu li.menu-item-has-children:focus-within>ul {
    left: 0;
    filter: alpha(opacity=100);
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.15s linear, transform 0.15s linear;
}

.site-navigation .primary-menu ul::before,
.site-navigation .primary-menu ul::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 100%;
}

.site-navigation .primary-menu ul::before {
    height: 2rem;
    left: 0;
    right: 0;
}

.site-navigation .primary-menu ul::after {
    border: 0.8rem solid transparent;
    border-bottom-color: #ebebeb;
    left: 1.8rem;
}

.site-navigation .primary-menu ul a {
    background: transparent;
    border: none;
    color: inherit;
    display: block;
    padding: 1rem 2rem;
    transition: background-color 0.15s linear;
    width: 100%;
}

.site-navigation .primary-menu ul li.menu-item-has-children>a {
    padding-right: 4.5rem;
}

.site-navigation .primary-menu ul li:hover>a,
.site-navigation .primary-menu ul li:focus>a {
    background: rgba(0, 0, 0, 0.025);
}

.site-navigation .primary-menu ul li.menu-item-has-children .icon {
    position: absolute;
    right: 1.5rem;
    top: 0;
    line-height: 40px;
}

/* DEEP DOWN */
.site-navigation .primary-menu ul ul {
    top: 0;
}

.site-navigation .primary-menu ul li.menu-item-has-children:hover>ul,
.site-navigation .primary-menu ul li.menu-item-has-children:focus>ul {
    left: calc(100% + 2rem);
}

.site-navigation .primary-menu ul li.menu-item-has-children:focus-within>ul {
    left: calc(100% + 2rem);
}

.site-navigation .primary-menu ul ul::before {
    bottom: 0;
    height: auto;
    right: auto;
    left: -2rem;
    top: 0;
    width: 2rem;
}

.site-navigation .primary-menu ul ul::after {
    border-bottom-color: transparent;
    border-right-color: #ebebeb;
    bottom: auto;
    left: -1.6rem;
    top: 1.5rem;
}

.rtl .site-navigation .primary-menu ul ul::after {
    transform: rotate(180deg);
}

/*
 * 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) {
    .site-navigation .primary-menu>li.menu-item-has-children>a {
        padding-right: 0;
        margin-right: 2rem;
    }

    .site-navigation .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;
}

@media screen and (max-width: 1199px) {
    .site-navigation {
        display: none;
    }
}

.nav-icon-toggle {
    position: relative;
    width: 50px;
    height: 50px;
    margin: 40px auto 0 auto;
    cursor: pointer;
}

.offcanvas-menu-active .offcanvas-wraper .offcanvas-branding {
    transition-delay: 0.3s;
}

.offcanvas-close span {
    display: inline-block;
    vertical-align: middle;
}

.offcanvas-main-navigation .sub-menu {
    border-top: 0.1rem solid;
    display: none;
    list-style: none;
    margin: 0 auto;
    padding: 0;
}

.offcanvas-main-navigation .sub-menu.submenu-toggle-active {
    display: block;
}

.offcanvas-main-navigation .submenu-wrapper .submenu-toggle {
    border-style: solid;
    border-width: 0 0 0 0.1rem;
    padding: 0;
}

.offcanvas-main-navigation .submenu-wrapper .submenu-toggle .svg-icon {
    height: 1.5rem;
    transition: transform 0.15s linear;
    width: 1.5rem;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
}

.offcanvas-main-navigation .submenu-wrapper .submenu-toggle.button-toggle-active .svg-icon {
    transform: rotate(180deg);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.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: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

.skip-link {
    font-size: 16px !important;
}

#content[tabindex="-1"]:focus {
    outline: 0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0s !important;
        transition-duration: 0s !important;
    }
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.widget:before,
.widget:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.site-header:after,
.site-content:after,
.widget:after,
.site-footer:after {
    clear: both;
}

/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
    display: block;
}

.updated:not(.published) {
    display: none;
}

.wrapper {
    width: 100%;
    padding-right: 3rem;
    padding-left: 3rem;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 992px) {
    .wrapper {
        width: calc(100% - 10rem);
    }
}

@media (min-width: 1400px) {
    .wrapper {
        width: calc(100% - 20rem);
    }
}

@media (min-width: 1600px) {
    .wrapper {
        width: calc(100% - 50rem);
    }
}

@media only screen and (max-width: 991px) {
    .wrapper {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.wrapper-fluid {
    width: 100%;
}

.wrapper-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /*margin-right: -3rem;
    margin-left: -3rem;*/
}

.wrapper-inner-center {
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}

.wrapper-inner-small {
    margin-right: -1rem;
    margin-left: -1rem;
}

.theme-block {
    margin-bottom: 6rem;
}

.theme-panelarea {
    display: block;
    position: relative;
    margin-right: -1rem;
    margin-left: -1rem;
}

.theme-panelarea:after {
    content: "";
    display: block;
    clear: both;
}

.theme-panelarea-blocks .theme-panel-blocks .twp-archive-header {
    padding-left: 1rem;
    padding-right: 1rem;
}

.column {
    position: relative;
    width: 100%;
    padding-right: 3rem;
    padding-left: 3rem;
}

.wrapper-inner-small .column {
    padding-right: 1rem;
    padding-left: 1rem;
}

@media screen and (max-width: 991px) {
    .column {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

.column-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
}

.column-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
}

.column-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.column-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.column-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
}

.column-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
}

.column-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
}

.column-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.column-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
}

.column-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
}

.column-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
}

.column-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

@media (max-width: 1199px) {
    .column-lg-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .column-lg-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .column-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .column-lg-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .column-lg-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .column-lg-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .column-lg-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .column-lg-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .column-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .column-lg-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .column-lg-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .column-lg-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 1199px) {
    .column-md-1 {
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%;
    }

    .column-md-2 {
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%;
    }

    .column-md-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .column-md-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .column-md-5 {
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%;
    }

    .column-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .column-md-7 {
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%;
    }

    .column-md-8 {
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%;
    }

    .column-md-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }

    .column-md-10 {
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%;
    }

    .column-md-11 {
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%;
    }

    .column-md-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}

@media (max-width: 991px) {
    .column-sm-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .column-sm-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .column-sm-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .column-sm-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .hidden-sm-screen {
        display: none;
        visibility: hidden;
        filter: alpha(opacity=0);
        opacity: 0;
    }
}

@media (max-width: 767px) {
    .column-xs-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .column-xs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .column-xs-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .column-xs-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .hidden-xs-screen {
        display: none;
        visibility: hidden;
        filter: alpha(opacity=0);
        opacity: 0;
    }
}

@media (max-width: 575px) {
    .column-xxs-12 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }

    .column-xxs-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .column-xxs-4 {
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%;
    }

    .column-xxs-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }

    .hidden-xxs-screen {
        display: none;
        visibility: hidden;
        filter: alpha(opacity=0);
        opacity: 0;
    }
}

.alignnone,
.aligncenter {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.alignwide,
.alignfull {
    margin-bottom: 6rem;
    margin-top: 6rem;
}

.alignleft {
    margin: 0.5rem 2.5rem 2.5rem 0;
}

.alignright {
    margin: 0.5rem 0 2.5rem 2.5rem;
}

.entry-content>.alignfull {
    margin-left: -4rem;
}

.entry-content>.alignwide {
    max-width: calc(100vw - 8rem);
    width: calc(100vw - 8rem);
}

.alignfull>figcaption,
.alignfull>.wp-caption-text {
    width: calc(100% - 8rem);
}

.theme-ajax-loadpost {
    text-align: center;
    margin-bottom: 6rem;
}

.theme-slide-space .slick-list {
    margin-left: -5px;
    margin-right: -5px;
}

.theme-slide-space .slick-slide {
    padding-left: 5px;
    padding-right: 5px;
}

.slick-dots {
    display: block;
    width: 100%;
    padding: 0;
    margin: 15px auto;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    cursor: pointer;
}

.slick-dots li button {
    background: #000;
    border: 0;
    border-radius: 100%;
    width: 10px;
    height: 10px;
    padding: 0;
    margin: 5px;
    font-size: 1px;
    line-height: 1px;
    color: #000;
    opacity: 0.45;
    -webkit-transition: all 0.7s;
    -moz-transition: all 0.7s;
    -ms-transition: all 0.7s;
    -o-transition: all 0.7s;
    transition: all 0.7s;
}

.slick-dots li.slick-active button,
.slick-dots li button:hover,
.slick-dots li button:focus {
    filter: alpha(opacity=100);
    opacity: 1;
}

.slick-dots li.slick-active button {
    width: 20px;
    border-radius: 6px;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
    /* Theme Footer (when set to scrolling) */
    display: none;
}

.infinity-end.neverending .site-footer {
    display: block;
}

/*--------------------------------------------------------------
# Gutenberg
--------------------------------------------------------------*/
.wp-block-archives,
.wp-block-button,
.wp-block-code,
.wp-block-columns,
.wp-block-cover,
.wp-block-cover-image,
.wp-block-embed,
.wp-block-gallery,
.wp-block-image,
.wp-block-media-text,
.wp-block-preformatted,
.wp-block-pullquote,
.wp-block-quote,
.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-verse,
.wp-block-video {
    margin-bottom: 4rem;
    margin-top: 4rem;
}

.wp-block-cover.alignwide+.wp-block-cover.alignwide,
.wp-block-cover.alignfull+.wp-block-cover.alignfull,
.wp-block-group.has-background.alignwide+.wp-block-group.has-background.alignwide,
.wp-block-group.has-background.alignfull+.wp-block-group.has-background.alignfull {
    margin-top: -6rem;
}

.wp-block-columns.alignwide,
.wp-block-columns.alignfull {
    margin-bottom: 2rem;
}

.wp-block-columns+.wp-block-columns {
    margin-top: 0;
}

.wp-block-columns.alignwide+.wp-block-columns.alignwide,
.wp-block-columns.alignfull+.wp-block-columns.alignfull {
    margin-top: -2rem;
}

.wp-block-column {
    font-size: 1.8rem;
    margin-bottom: 4rem;
}

.wp-block-cover-image .wp-block-cover__inner-container,
.wp-block-cover .wp-block-cover__inner-container {
    width: calc(100% - 8rem);
}

.wp-block-embed {
    margin-bottom: 6rem;
    margin-top: 6rem;
}

.wp-block-embed.alignleft,
.wp-block-embed.alignright {
    margin-top: 0.5rem;
}

.wp-block-embed figcaption {
    margin-top: 1.8rem;
}

.wp-block-file {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

.wp-block-file.aligncenter {
    justify-content: center;
}

.wp-block-file.alignright {
    justify-content: flex-end;
    align-items: center;
}

.wp-block-file *+.wp-block-file__button {
    margin-left: 1rem;
}

.wp-block-image .alignleft,
.wp-block-image .alignright {
    margin-top: 0.5rem;
}

.wp-block-image.alignleft,
.wp-block-image .alignleft {
    margin-right: 2.5rem;
}

.wp-block-image.alignright,
.wp-block-image .alignright {
    margin-left: 2.5rem;
}

.wp-block-image figcaption {
    margin-bottom: 0;
    margin-top: 1.8rem;
}

.wp-block-gallery.alignwide,
.wp-block-gallery.alignfull {
    margin-bottom: 4.4rem;
}

.wp-block-group.has-background {
    padding: 4rem 3rem;
}

.wp-block-latest-posts.is-grid li {
    margin: 0 4rem 4rem 0;
    padding-top: 1.8rem;
    width: calc(50% - 4rem);
}

.wp-block-latest-posts.is-grid li>a {
    font-size: 1.33em;
}

.wp-block-media-text .wp-block-media-text__content {
    padding: 8%;
}

p.has-background {
    padding: 3rem;
}

.wp-block-pullquote.alignwide p,
.wp-block-pullquote.alignfull p,
.wp-block-pullquote.is-style-solid-color.alignfull blockquote p,
.wp-block-pullquote.is-style-solid-color.alignwide blockquote p {
    font-size: 2.5em;
}

.wp-block-pullquote.is-style-solid-color {
    padding: 4rem 3rem;
}

.wp-block-separator.is-style-wide {
    width: calc(100vw - 8rem);
}

@media (min-width: 768px) {

    .wp-block-columns.alignwide,
    .wp-block-columns.alignfull {
        margin-bottom: 6rem;
    }

    .wp-block-column {
        margin-bottom: 0;
    }
}

@media (min-width: 992px) {

    .wp-block-cover.alignwide+.wp-block-cover.alignwide,
    .wp-block-cover.alignfull+.wp-block-cover.alignfull,
    .wp-block-group.has-background.alignwide+.wp-block-group.has-background.alignwide,
    .wp-block-group.has-background.alignfull+.wp-block-group.has-background.alignfull {
        margin-top: -8rem;
    }

    .wp-block-columns.alignwide,
    .wp-block-columns.alignfull {
        margin-bottom: 8rem;
    }

    .wp-block-columns.alignwide+.wp-block-columns.alignwide,
    .wp-block-columns.alignfull+.wp-block-columns.alignfull {
        margin-top: -4rem;
    }

    .wp-block-column {
        font-size: 1.8rem;
    }

    .wp-block-cover-image .wp-block-cover__inner-container,
    .wp-block-cover .wp-block-cover__inner-container {
        width: calc(100% - 10rem);
    }

    .wp-block-gallery.alignwide,
    .wp-block-gallery.alignfull {
        margin-bottom: 6.4rem;
    }

    .wp-block-latest-posts.is-grid li {
        margin: 0 4rem 6rem 0;
        padding-top: 2.4rem;
    }

    .wp-block-separator.is-style-wide {
        width: calc(100vw - 10rem);
    }
}

@media (min-width: 1200px) {

    .wp-block-cover.alignfull+.wp-block-cover.alignfull,
    .wp-block-group.has-background.alignfull+.wp-block-group.has-background.alignfull {
        margin-top: -10rem;
    }

    .wp-block-columns.alignfull {
        margin-bottom: 10rem;
    }

    .wp-block-columns.alignfull+.wp-block-columns.alignfull {
        margin-top: -6rem;
    }

    .wp-block-gallery.alignfull {
        margin-bottom: 8.4rem;
    }
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

embed,
iframe,
object {
    max-width: 100%;
}

.custom-logo-link {
    display: inline-block;
    vertical-align: middle;
}

/*--------------------------------------------------------------
## Plugin Support
--------------------------------------------------------------*/
.elementor-html .preloader {
    display: none;
}

.post-content-share .twp-social-share .twp-share-container {
    display: block;
}

@media (max-width: 575px) {
    .post-content-share .twp-social-share {
        margin-top: 2rem;
    }

    .post-content-share .twp-social-share .twp-share-container {
        display: flex;
    }

    .post-content-share .twp-social-share .twp-share-container .twp-social-icons:not(:last-child) {
        margin-right: 1.5rem;
    }
}

.post-content-share .twp-social-share .twp-social-icons .twp-icon-holder {
    border: 0;
}

.post-content-share .twp-icon-holder .twp-social-count,
.post-content-share .twp-icon-holder .twp-share-media,
.post-content-share .share-media-nocount {
    display: block;
    width: 50px;
}

.post-content-share .twp-icon-holder .twp-social-count,
.post-content-share .twp-social-icons .share-media-nocount {
    border-radius: 2px;
    color: #fff;
}

.post-content-share .twp-icon-holder .twp-social-count:hover,
.post-content-share .twp-icon-holder .twp-social-count:focus,
.post-content-share .twp-social-icons .share-media-nocount:hover,
.post-content-share .twp-social-icons .share-media-nocount:focus {
    filter: alpha(opacity=60);
    opacity: 0.6;
}

.post-content-share .share-media-nocount:after,
.post-content-share .twp-icon-holder .twp-social-count:after {
    border: solid 6px transparent;
    border-top-color: inherit;
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    bottom: -12px;
}

.post-content-share .twp-social-icons .twp-icon-holder .twp-social-count,
.post-content-share .twp-social-icons .twp-icon-holder .share-media-nocount {
    color: #fff;
}

.post-content-share .twp-social-facebook .twp-icon-holder .twp-social-count {
    background: #3b5998;
}

.post-content-share .twp-social-twitter .twp-icon-holder .twp-social-count {
    background: #24a5db;
}

.post-content-share .twp-social-pinterest .twp-icon-holder .twp-social-count {
    background: #ca2128;
}

.post-content-share .twp-social-linkedin .twp-icon-holder .share-media-nocount {
    background: #0077b5;
}

.post-content-share .twp-social-email .twp-icon-holder .share-media-nocount {
    background: #f75454;
}

.post-content-share .twp-social-vk .twp-icon-holder .share-media-nocount {
    background: #1a4b78;
}

.post-content-share .twp-social-icons .twp-icon-holder .twp-social-count:hover,
.post-content-share .twp-social-icons .twp-icon-holder .twp-social-count:focus,
.post-content-share .twp-social-icons .twp-icon-holder .share-media-nocount:hover,
.post-content-share .twp-social-icons .twp-icon-holder .share-media-nocount:focus {
    filter: alpha(opacity=65);
    opacity: 0.65;
}

.post-content-share .twp-social-facebook .twp-icon-holder .twp-social-count:after {
    border-left-color: transparent;
    border-top-color: #3b5998;
}

.post-content-share .twp-social-twitter .twp-icon-holder .twp-social-count:after {
    border-left-color: transparent;
    border-top-color: #24a5db;
}

.post-content-share .twp-social-pinterest .twp-icon-holder .twp-social-count:after {
    border-left-color: transparent;
    border-top-color: #ca2128;
}

.post-content-share .twp-social-facebook .twp-icon-holder .twp-social-count:after {
    border-left-color: transparent;
    border-top-color: #3b5998;
}

.post-content-share .twp-social-linkedin .twp-icon-holder .share-media-nocount:after {
    border-left-color: transparent;
    border-top-color: #0077b5;
}

.post-content-share .twp-social-email .twp-icon-holder .share-media-nocount:after {
    border-left-color: transparent;
    border-top-color: #f75454;
}

.post-content-share .twp-social-vk .twp-icon-holder .share-media-nocount:after {
    border-left-color: transparent;
    border-top-color: #1a4b78;
}

.post-content-share .twp-social-icons .twp-icon-holder:hover .twp-social-count:after,
.post-content-share .twp-social-icons .twp-icon-holder:focus .twp-social-count:after,
.post-content-share .twp-social-icons .twp-icon-holder:hover .share-media-nocount:after,
.post-content-share .twp-social-icons .twp-icon-holder:focus .share-media-nocount:after {
    border-left-color: transparent;
}

.post-content-share .twp-icon-holder .twp-share-media {
    font-size: 28px;
    margin-top: 10px;
}

.post-content-share .twp-social-linkedin .twp-icon-holder .twp-share-media,
.post-content-share .twp-social-vk .twp-icon-holder .twp-share-media,
.post-content-share .twp-social-email .twp-icon-holder .twp-share-media {
    margin-top: 0;
}

.post-content-share .twp-share-media .twp-label-title {
    display: none;
    visibility: hidden;
    filter: alpha(opacity=0);
    opacity: 0;
}

.post-content-share .twp-plugin-title.twp-share-title h2 {
    font-weight: 400;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 0;
}

.booster-block.booster-ratings-block {
    background: rgba(0, 0, 0, 0.03);
    border: 2px solid rgba(0, 0, 0, 0.03);
    padding: 30px;
    margin: 30px auto;
}

.booster-block.booster-ratings-block .individual-bar-bg {
    background-color: #ffffff;
}

.booster-ratings-block .twp-average-title {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.booster-block.booster-reactions-block {
    background: #fff;
}

.floating-post-navigation {
    position: fixed;
    top: 50%;
    z-index: 999;
    width: 340px;
    height: 200px;
    overflow: hidden;
    background: #000;
    color: #fff;
    filter: alpha(opacity=0);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -ms-transform: translate3d(0, -50%, 0);
    -o-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
    -webkit-transition: all 0.4s cubic-bezier(0.24, 0.6, 0.25, 1);
    -moz-transition: all 0.4s cubic-bezier(0.24, 0.6, 0.25, 1);
    -o-transition: all 0.4s cubic-bezier(0.24, 0.6, 0.25, 1);
    transition: all 0.4s cubic-bezier(0.24, 0.6, 0.25, 1);
}

.theme-floatingbar-active .floating-post-navigation {
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
}

.floating-post-navigation img {
    filter: alpha(opacity=65);
    opacity: 0.65;
}

.floating-navigation-prev {
    right: calc(100% - 50px);
}

.floating-navigation-prev:hover {
    right: calc(100% - 339px);
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.floating-navigation-next {
    left: calc(100% - 50px);
}

.floating-navigation-next:hover {
    left: calc(100% - 339px);
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.floating-post-navigation img {
    object-fit: cover;
    position: absolute;
    top: 0;
    height: 100% !important;
}

.floating-navigation-prev img {
    right: 50px;
}

.floating-navigation-next img {
    left: 50px;
}

.floating-post-navigation .floating-navigation-title {
    color: #fff;
}

.floating-post-navigation .floating-navigation-label {
    position: absolute;
    top: 0;
    writing-mode: vertical-rl;
    right: 0;
    height: 100%;
    text-align: center;
    width: 50px;
    letter-spacing: 0.4rem;
    line-height: 50px;
    text-transform: uppercase;
    font-size: 12px;
    z-index: 2;
}

.floating-navigation-next .floating-navigation-label {
    right: auto;
    left: 0;
}

.floating-post-navigation .floating-navigation-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    width: 100%;
    padding: 20px 60px 20px 20px;
    z-index: 2;
}

.floating-navigation-next .floating-navigation-title {
    padding: 20px 20px 20px 60px;
}

.archive-main-block {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.theme-page-vitals {
    background: #96560D;
    color: #fff;
    padding: 20px;
}

.theme-page-vitals:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    border-right: 10px solid;
    border-bottom: 10px solid transparent;
    border-right-color: #96560D;
    width: 0;
    z-index: 1;
}

.has-post-thumbnail .theme-page-vitals {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
}

.theme-page-vitals .twp-post-visit,
.theme-page-vitals .twp-read-time {
    display: inline-block;
    vertical-align: middle;
}

.theme-page-vitals .twp-read-time {
    margin-right: 10px;
}

.theme-page-vitals .twp-read-time~.twp-post-visit:before {
    content: "/";
    padding-right: 10px;
}

.wp-block-gallery.columns-1 {
    display: block;
}

ul.wp-block-gallery.columns-1,
.wp-block-gallery .blocks-gallery-grid,
.wp-block-gallery {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.theme-block.error-block {
    margin-bottom: 30px;
}

.theme-block.error-block.error-block-top a {
    border-bottom: 2px solid;
}

/* Hide JS Functionalities ------------------------ */
.js .show-js {
    display: block !important;
}

.js .hide-js {
    display: none !important;
}

.no-js .show-no-js {
    display: block !important;
}

.no-js .hide-no-js {
    display: none !important;
}

.entry-content-muted {
    filter: alpha(opacity=75);
    opacity: 0.75;
    font-size: 1.3rem;
    margin-top: 1.5rem;
}

.post-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    width: 100%;
    z-index: 1;
}

.post-content-overlay,
.post-content-overlay a {
    color: #fff;
}

.theme-carousel-article .entry-thumbnail-overlay {
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.85) 65%);
    position: absolute;
    top: 0;
    right: 0px;
    bottom: 0px;
    left: 0px;
    transition: all 0.2s ease;
    display: block;
}

.article-filter-bar {
    background: #555;
    color: #fff;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    flex-direction: column;
    height: 100%;
    font-size: 1.1rem;
}

.article-filter-bar .article-filter-area {
    display: flex;
    flex-direction: column;
}

.article-filter-bar .filter-area-left {
    justify-content: flex-start;
}

.article-filter-bar .filter-area-right {
    justify-content: flex-end;
}

.theme-filter-icon {
    display: inline-block;
    vertical-align: middle;
}

.theme-filter-icon .svg-icon {
    width: 18px;
    height: 18px;
}

.article-filter-item {
    display: flex;
    flex-direction: column;
}

.article-filter-label {
    background-color: #B6702A;
    font-weight: 600;
    padding: 2rem 0.5rem;
}

.article-filter-label span {
    display: inline-block;
    vertical-align: middle;
    line-height: 1.6rem;
    margin-left: 0.4rem;
    margin-right: 0.4rem;
}

.article-filter-bar .theme-button-filters {
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    float: left;
    font-size: 1.1rem;
}

.article-filter-bar .theme-button-filters:hover,
.article-filter-bar .theme-button-filters:focus,
.article-filter-bar .theme-button-filters.twp-orderby-active {
    background-color: #96560D;
}

.article-filter-type {
    position: relative;
}

.theme-categories-multiselect {}

.theme-categories-selected {
    display: none;
}

.theme-categories-dropdown {
    display: none;
    position: absolute;
    background-color: #333;
    padding: 10px;
    z-index: 999;
    left: 0;
    right: 0;
    top: 0;
}

.article-categories-filter.theme-categories-selection-active .theme-categories-dropdown {
    display: block;
}

.theme-categories-dropdown .cat-filter-item .theme-button {
    background: #555;
    text-align: left;
    min-height: 30px;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.theme-categories-dropdown .cat-filter-item .theme-button:hover {
    background-color: #537eff;
    color: #fff;
    cursor: pointer;
}

.theme-categories-dropdown .cat-filter-item:last-child .theme-button {
    margin-bottom: 0;
}

.article-format-filter .theme-button {
    display: block;
    float: left;
    padding: 0;
}

.article-filter-bar .article-filter-clear {
    display: none;
}

.article-filter-bar .article-filter-clear.filter-clear-selected {
    display: block;
}

.theme-categories-selected .svg-icon,
.dropdown-select-arrow .svg-icon,
.article-filter-bar .article-filter-clear .filter-clear-icon .svg-icon {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0 1.5rem;
}

.theme-custom-cursor {
    position: fixed;
    left: 0;
    top: 0;
    pointer-events: none;
    border-radius: 50%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    visibility: hidden;
}

.theme-cursor-secondary {
    margin-left: -3px;
    margin-top: -3px;
    width: 6px;
    height: 6px;
    z-index: 10000001;
    background-color: #ced0d4;
    -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
    transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
        margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.theme-cursor-secondary.cursor-hover {
    margin-left: -30px;
    margin-top: -30px;
    width: 60px;
    height: 60px;
    background-color: #ced0d4;
    opacity: 0.3;
}

.theme-cursor-primary {
    margin-left: -30px;
    margin-top: -30px;
    width: 30px;
    height: 30px;
    border: 2px solid #ced0d4;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    z-index: 10000000;
    opacity: 0.5;
    -webkit-transition: all 0.08s ease-out;
    -o-transition: all 0.08s ease-out;
    transition: all 0.08s ease-out;
}

.theme-cursor-primary.cursor-hover {
    opacity: 0;
}

.no-js .theme-custom-cursor {
    display: none;
    opacity: 0;
    visibility: hidden;
    position: absolute;
    z-index: -1111;
}

.post-format-icon {
    position: absolute;
    top: 0;
    z-index: 3;
    left: 0;
    display: block;
}

.post-format-icon .svg-icon {
    color: #fff;
    position: relative;
    width: 16px;
    height: 16px;
    margin: 10px 8px;
}

.post-format-icon:before {
    content: "";
    height: 80px;
    transform: rotate(45deg);
    width: 80px;
    display: block;
    top: -40px;
    left: -40px;
    position: absolute;
}

.format-video .post-format-icon:before {
    background: #7e40b6;
}

.format-image .post-format-icon:before {
    background: #7f87de;
}

.format-gallery .post-format-icon:before {
    background: #f89d2b;
}

.format-quote .post-format-icon:before {
    background: #ef281a;
}

.format-audio .post-format-icon:before {
    background: #68b832;
}

/* theme block carousel  */

.theme-block-carousel .post-content {
    background-color: #000;
    color: #fff;
    height: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

@media (max-width: 991px) {
    .theme-block-carousel .post-content {
        padding-bottom: 8rem;
    }
}

.theme-block-carousel .post-content a:not(:hover):not(:focus) {
    color: inherit;
}

.theme-carousel-article.slick-active .index-number {
    margin-right: 5rem;
    opacity: 1;
    visibility: visible;
}

/* block masonry  */

.theme-block-masonry .theme-panelarea-header {
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    height: 100vh;
}

/* header banner  */

.theme-header-banner {
    display: flex;
    align-items: center;
    color: #fff;
}

.theme-header-banner a:not(:hover):not(:focus) {
    color: inherit;
}

.header-banner-content {
    text-align: center;
}

/* image overlay  */

.theme-image-overlay {
    position: relative;
}

.theme-image-overlay::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* btn link  */

.theme-btn-link {
    position: relative;
    background-color: orange;
    display: inline-block;
    min-height: 3.5rem;
    min-width: 10rem;
    text-align: center;
    line-height: 4rem;
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: 0.1rem;
    padding: 0 1rem;
}

.theme-btn-link:hover,
.theme-btn-link:focus {
    background-color: #B6702A;
    color: #fff;
}

/* about us  */

.theme-about-us a:not(:hover):not(:focus) {
    color: inherit;
}

.about-us-signature .data-bg {
    position: absolute;
    right: -13rem;
    bottom: -7rem;
    height: 12rem;
    width: 19rem;
    transform: rotate(352deg);
    z-index: 10;
    background-color: transparent;
    background-size: contain;
}

@media (max-width: 575px) {
    .about-us-signature .data-bg {
        right: 2rem;
        bottom: 0;
    }
}

.data-bg-custom {
    height: 50rem;
}

/* line clamp 3 */

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 991px) {
    .line-clamp-sm-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
}

/* timeline  */

.theme-block-timeline .cat-links>a {
    font-size: 1.4rem;
    padding: 0.5rem;
}

.theme-block-timeline ul {
    padding: 0;
}

.theme-block-timeline ul li {
    list-style: none;
}

.theme-block-timeline ul li.hide {
    display: none;
}

.by-author-list .theme-author-title {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 600;
    font-size: 1.5rem;
    margin-left: 1rem;
}

.by-author-list li>a {
    display: flex;
    align-items: center;
}

.by-author-list li>a img {
    height: 6.5rem;
}


.theme-block-timeline .cat-links>a {
    display: inline-block;
}

.theme-block-timeline .cat-links>a.hide {
    display: none;
}

.theme-more-btn {
    margin-top: 1rem;
    cursor: pointer;
    font-weight: 600;
    text-transform: capitalize;
}

.theme-timeline-list>li:not(:last-child) {
    margin-bottom: .6rem;
}

/* social share  */

@media (min-width: 576px) {
    .twp-social-share {
        position: sticky;
        position: -webkit-sticky;
        top: 0;
    }
}

img.wp-smiley,
img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1em !important;
    width: 1em !important;
    margin: 0 0.07em !important;
    vertical-align: -0.1em !important;
    background: none !important;
    padding: 0 !important;
}

:root {
    --wp--preset--color--black: #000000;
    --wp--preset--color--cyan-bluish-gray: #abb8c3;
    --wp--preset--color--white: #ffffff;
    --wp--preset--color--pale-pink: #f78da7;
    --wp--preset--color--vivid-red: #cf2e2e;
    --wp--preset--color--luminous-vivid-orange: #ff6900;
    --wp--preset--color--luminous-vivid-amber: #fcb900;
    --wp--preset--color--light-green-cyan: #7bdcb5;
    --wp--preset--color--vivid-green-cyan: #00d084;
    --wp--preset--color--pale-cyan-blue: #8ed1fc;
    --wp--preset--color--vivid-cyan-blue: #0693e3;
    --wp--preset--color--vivid-purple: #9b51e0;
    --wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg, rgba(6, 147, 227, 1) 0%, rgb(155, 81, 224) 100%);
    --wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg, rgb(122, 220, 180) 0%, rgb(0, 208, 130) 100%);
    --wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg, rgba(252, 185, 0, 1) 0%, rgba(255, 105, 0, 1) 100%);
    --wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg, rgba(255, 105, 0, 1) 0%, rgb(207, 46, 46) 100%);
    --wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg, rgb(238, 238, 238) 0%, rgb(169, 184, 195) 100%);
    --wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg, rgb(74, 234, 220) 0%, rgb(151, 120, 209) 20%, rgb(207, 42, 186) 40%, rgb(238, 44, 130) 60%, rgb(251, 105, 98) 80%, rgb(254, 248, 76) 100%);
    --wp--preset--gradient--blush-light-purple: linear-gradient(135deg, rgb(255, 206, 236) 0%, rgb(152, 150, 240) 100%);
    --wp--preset--gradient--blush-bordeaux: linear-gradient(135deg, rgb(254, 205, 165) 0%, rgb(254, 45, 45) 50%, rgb(107, 0, 62) 100%);
    --wp--preset--gradient--luminous-dusk: linear-gradient(135deg, rgb(255, 203, 112) 0%, rgb(199, 81, 192) 50%, rgb(65, 88, 208) 100%);
    --wp--preset--gradient--pale-ocean: linear-gradient(135deg, rgb(255, 245, 203) 0%, rgb(182, 227, 212) 50%, rgb(51, 167, 181) 100%);
    --wp--preset--gradient--electric-grass: linear-gradient(135deg, rgb(202, 248, 128) 0%, rgb(113, 206, 126) 100%);
    --wp--preset--gradient--midnight: linear-gradient(135deg, rgb(2, 3, 129) 0%, rgb(40, 116, 252) 100%);
    --wp--preset--duotone--dark-grayscale: url('#wp-duotone-dark-grayscale');
    --wp--preset--duotone--grayscale: url('#wp-duotone-grayscale');
    --wp--preset--duotone--purple-yellow: url('#wp-duotone-purple-yellow');
    --wp--preset--duotone--blue-red: url('#wp-duotone-blue-red');
    --wp--preset--duotone--midnight: url('#wp-duotone-midnight');
    --wp--preset--duotone--magenta-yellow: url('#wp-duotone-magenta-yellow');
    --wp--preset--duotone--purple-green: url('#wp-duotone-purple-green');
    --wp--preset--duotone--blue-orange: url('#wp-duotone-blue-orange');
    --wp--preset--font-size--small: 13px;
    --wp--preset--font-size--medium: 20px;
    --wp--preset--font-size--large: 36px;
    --wp--preset--font-size--x-large: 42px;
}

.preloader .loader span {
    background: #000000;
}

button:focus,
body .button:focus, {
    border-color: #96560D;
}

.theiaStickySidebar:after {
    content: "";
    display: table;
    clear: both;
}