/* [ Base ] */
@font-face {
    font-family: 'PT Sans';
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/ptsans-regular.woff2") format("woff2");
}

@font-face {
    font-family: 'PT Sans';
    font-display: swap;
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/ptsans-italic.woff2") format("woff2");
}

@font-face {
    font-family: 'PT Sans';
    font-display: swap;
    font-style: normal;
    font-weight: 700;
    src: url("../fonts/ptsans-bold.woff2") format("woff2");
}

@font-face {
    font-family: 'PT Sans';
    font-display: swap;
    font-style: italic;
    font-weight: 700;
    src: url("../fonts/ptsans-bold-italic.woff2") format("woff2");
}

:root {
  --this-theme-family: 'PT Sans', sans-serif;
  
  --black: #0E0F17;
  --black1: #3e3f45;
  --black2: #6e6f74;
  --white: #ffffff;
  --body-bg: #f5f5f5;

  --this-primary: #0E0F17;
  --this-footer: #0E0F17;

  --this-sub-menu-shadow: 0px 0px 20px 3px rgba(0,0,0,0.02);
  
  --dark-blue: #2429B0;
  --blue: #333BFC;
  --light-blue: #7076FD;
  --bg-blue: #DDDEFF;
  
  --dark-red: #C53021;
  --red: #F63C29;
  --light-red: #F97769;
  --bg-red: #FCCDC8;
  
  --dark-green: #089446;
  --green: #0BD364;
  --light-green: #54E093;
  --bg-green: #82FAB8;
  
  --dark-orange: #DBAE2F;
  --orange: #F3C134;
  --light-orange: #F7D471;
  --bg-orange: #FEEAB1;
  
  --border-dark: #CBCBCB;
  --border: #E3E3E3;
  --border-light: #EEEEEE;
  
  --font-size-xxxl: 2.375rem;
  --font-size-xxl: 1.75rem;
  --font-size-xl: 1.25rem;
  --font-size-l: 1.125rem;
  --font-size-m: 1rem;
  --font-size-s: 0.875rem;
  --font-size-xs: 0.75rem;
  --font-size-xxs: 0.625rem;
  
  --heading-line-height: 1.25;
  --sub-heading-line-height: 1.5;
  --paragraf-line-height: 1.6;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  color: var(--black);
  background: var(--body-bg);
  font-family: var(--this-theme-family);
  font-size: var(--font-size-m);
}

header, nav, main, footer, section, 
menu, aside, article, figure, figcaption, details {
  display: block;
}

video, audio {
  display: inline-block;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 15px;
  font-weight: bolder;
}

h1 {
    font-size: var(--font-size-xxl);
    line-height: var(--heading-line-height);
}

h2 {
    font-size: var(--font-size-xl);
    line-height: var(--heading-line-height);
}

h3 {
    font-size: var(--font-size-l);
    line-height: var(--heading-line-height);
}

h4 {
    font-size: var(--font-size-m);
    line-height: var(--sub-heading-line-height);
}

h5 {
    font-size: var(--font-size-s);
    line-height: var(--sub-heading-line-height);
}

h6 {
    font-size: var(--font-size-xs);
    line-height: var(--sub-heading-line-height);
}

p {
  margin-top: 0;
  margin-bottom: 20px;
  line-height: var(--paragraf-line-height);
}

a {
  text-decoration: none;
  color: var(--blue);
}

ul, ol {
  margin-top: 0;
  margin-bottom: 20px;
}

ul li, ol li {
  line-height: var(--paragraf-line-height);
}

blockquote {
  margin: 20px;
}

pre {
  display: block;
  overflow: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

pre, code {
  font-size: 1rem;
  font-family: monospace;
}

table {
  overflow: auto;
  border-collapse: collapse;
  margin: 20px 0;
}

table tr th, 
table tr td {
  border: 1px solid var(--border);
  padding: 10px;
}

figure {
  margin: 20px 0;
}

figure img {
    display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

figure figcaption {
  font-size: var(--font-size-xs);
  padding: 5px 0;
  line-height: var(--paragraf-line-height);
  color: var(--black2);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: var(--font-size-m);
  border-radius: 5px;
  outline: none;
}

button {
  padding: 10px 20px;
  margin-bottom: 15px;
  border: none;
  cursor: pointer;
  background: var(--black);
  color: var(--white);
}

label {
  display: inline-block;
  margin: 5px 0;
}

input, select, textarea {
  display: block;
  padding: 10px 15px;
  margin-bottom: 15px;
  border: none;
  outline: none;
  border: 1px solid var(--border);
  color: var(--black);
  border-radius: 5px;
  font-family: inherit;
  font-size: var(--font-size-m);
}

input:focus, select:focus, textarea:focus {
  border: 1px solid var(--border-dark);
}

/* [ Layout ] */

.cnt {
    overflow: hidden;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 768px) {
    .cnt {
        padding: 0 15px;
    }
}

/* [ Components ] */

/* [ Buttons ] */

.button {
  padding: 10px 20px;
  margin-bottom: 15px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.button-xl { padding: 20px 30px; }
.button-l { padding: 15px 25px; }
.button-m { padding: 10px 20px; }
.button-s { padding: 8px 16px; }
.button-xs { padding: 6px 12px; }

.button-blue {
  background: var(--blue);
  color: var(--white);
}

.button-blue:hover { 
  background: var(--dark-blue); 
}

.button-red {
  background: var(--red);
  color: var(--white);
}

.button-red:hover { 
  background: var(--dark-red); 
}

.button-green {
  background: var(--green);
  color: var(--white);
}

.button-green:hover { 
  background: var(--dark-green); 
}

.button-orange {
  background: var(--orange);
  color: var(--white);
}

.button-orange:hover { 
  background: var(--dark-orange); 
}

/* [ Form Elements ] */

.input-xl { padding: 20px 25px }
.input-l { padding: 15px 20px }
.input-m { padding: 10px 15px }
.input-s { padding: 5px 10px; font-size: var(--font-size-s); }

.input-w10 { width: 10% }
.input-w20 { width: 20% }
.input-w30 { width: 30% }
.input-w40 { width: 40% }
.input-w50 { width: 50% }
.input-w60 { width: 60% }
.input-w70 { width: 70% }
.input-w80 { width: 80% }
.input-w90 { width: 90% }
.input-w100 { width: 100% }

/* [ Header ] */

/* [ Navbar Top ] */

.site-navbar {
    background: var(--white);
    color: var(--black);
}

@media (max-width: 768px) {
    .site-navbar {
        display: none;
    }
}

.site-navbar-top {
    padding: 10px 0;
}

.site-navbar-top, 
.navbar-top-left {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

/* [ Site Branding ] */

.site-branding h1 {
    font-size: var(--font-size-xxl);
    color: var(--black);
    font-weight: bolder;
    margin: 0;
}

.site-branding h1 a {
    color: inherit;
}

/* [ Navbar top menu ] */

.navbar-top-menu {
    margin-left: 40px;
}

.navbar-top-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.navbar-top-menu ul li {
    float: left;
}

.navbar-top-menu ul li a {
    display: inline-block;
    font-weight: bolder;
    margin-right: 20px;
    color: inherit;
}

.navbar-top-menu ul li.menu-item-has-children > a:after {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f107";
    color: inherit;
    font-size: var(--font-size-xs);
    margin-left: 10px;
}

/* [ Sub menu ] */

/*.navbar-top-menu ul li:hover > ul {
    display: block;
}*/

.navbar-top-menu ul li ul {
    display: none;
    position: absolute;
    background: var(--white);
    padding: 5px 0;
    border-radius: 5px;
    box-shadow: var(--this-sub-menu-shadow);
    -webkit-box-shadow: var(--this-sub-menu-shadow);
    -moz-box-shadow: var(--this-sub-menu-shadow);
    z-index: 998;
}

.navbar-top-menu ul li ul li {
    float: none;
    width: 150px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.navbar-top-menu ul li ul li:last-child {
    border-bottom: 0;
}

.navbar-top-menu ul li ul li a {
    display: block;
    margin-right: 0;
    padding: 5px 15px;
    font-weight: normal;
    font-size: var(--font-size-s);
}

/* [ Multi level dropdown ] */

/*.navbar-top-menu ul li ul li:hover > ul {
    display: block;
}*/

.navbar-top-menu ul li ul li ul {
    background: var(--white);
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    border-top-left-radius: 0;
}

/* [ Navbar top right ] */

.navbar-top-right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.search-button {
    cursor: pointer;
}

.search-button, 
.search-button svg {
    width: 20px;
    height: 20px;
}

.search-button span {
    display: inline-block;
}

.send-article {
    margin-left: 10px;
}

.send-article a {
    display: inline-block;
    background: var(--this-primary);
    color: var(--white);
    padding: 5px 10px;
    border-radius: 30px;
    font-size: var(--font-size-s);
    font-weight: bolder;
}

/* [ Site navbar menu ] */

.site-navbar-menu {
    overflow: auto;
    white-space: nowrap;
}

.site-navbar-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.site-navbar-menu ul li {
    display: inline-block;
}

.site-navbar-menu ul li a {
    display: inline-block;
    padding: 10px;
    color: inherit;
}

.site-navbar-menu ul li:first-child a {
    padding-left: 0;
}

/* [ Sub menu ] */

.site-navbar-menu ul li.menu-item-has-children > a:after {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f107";
    color: inherit;
    font-size: var(--font-size-xs);
    margin-left: 10px;
}

/*.site-navbar-menu ul li:hover > ul {
    display: block;
}*/

.site-navbar-menu ul li ul {
    display: none;
    position: absolute;
    background: var(--white);
    padding: 5px 0;
    border-radius: 5px;
    box-shadow: var(--this-sub-menu-shadow);
    -webkit-box-shadow: var(--this-sub-menu-shadow);
    -moz-box-shadow: var(--this-sub-menu-shadow);
    z-index: 998;
}

.site-navbar-menu ul li ul li {
    display: block;
    position: relative;
    border-bottom: 1px solid var(--border-light);
    width: 150px;
}

.site-navbar-menu ul li ul li:last-child {
    border-bottom: 0;
}

.site-navbar-menu ul li ul li:first-child a {
    padding-left: 15px;
}

.site-navbar-menu ul li ul li a {
    display: block;
    padding: 5px 15px;
    font-size: var(--font-size-s);
}

/* [ Multi level dropdown ] */

/*.site-navbar-menu ul li ul li:hover > ul {
    display: block;
}*/

.site-navbar-menu ul li ul li ul {
    background: var(--white);
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    border-top-left-radius: 0;
}

/* [  Site search ] */

.site-search {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
    z-index: 999;
}

.site-search-box {
    overflow: hidden;
    background: var(--white);
    padding: 30px;
    margin: 0 15px;
    border-radius: 10px;
}

.close-search {
    width: 100%;
    margin-bottom: 15px;
    display: flex;
    justify-content: flex-end;
}

.close-search span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: var(--this-primary);
    color: var(--white);
    cursor: pointer;
}

.close-search span svg {
    width: 18px;
    height: 18px;
}

.search-box-title h3 {
    display: block;
    text-align: center;
    font-size: var(--font-size-xl);
}

.search-box-input input {
    width: 300px !important;
    height: auto;
    margin-bottom: 0;
}

.search-box-input button[type=submit] {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-top: 5px;
    background: var(--this-primary);
}

.search-box-input button[type=submit] svg {
    width: 18px;
    height: 18px;
    margin-left: 5px;
}

.search-box-input button[type=submit] i {
    font-size: var(--font-size-s);
    margin-left: 2px;
}

/* [ Site navbar mobile ] */

.site-navbar-mobile-top {
    background: var(--this-primary);
    color: var(--white);
    position: sticky;
    top: 0;
    z-index: 998;
}

@media (min-width: 768px) {
    .site-navbar-mobile-top {
        display: none;
    }
}

.snmt-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.snmt-left h1 {
    margin: 0;
}

.snmt-left h1 a {
    color: inherit;
}

.snmt-right {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.snmt-search-button {
    width: 20px;
    height: 20px;
    text-align: center;
    display: inline-block;
    font-size: var(--font-size-m);
}

.snmt-search-button svg {
    width: 20px;
    height: 20px;
}

.snmt-menu-button {
    width: 20px;
    height: 20px;
    display: inline-block;
    margin-left: 10px;
    font-size: var(--font-size-xl);
}

.snmt-menu-button svg {
    width: 20px;
    height: 20px;
}

.snmt-menu-button .close-icons {
    display: none;
}

.snmt-send-article {
    margin-left: 15px;
}

.snmt-send-article a {
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid var(--white);
    border-radius: 30px;
    font-size: var(--font-size-xs);
    color: inherit;
}

/* [ Site navbar mobile menu ] */

.site-navbar-mobile-bottom {
    background: var(--this-primary);
    color: var(--white);
}

@media (min-width: 768px) {
    .site-navbar-mobile-bottom {
        display: none;
    }
}

.snmb-menu {
    overflow: auto;
    white-space: nowrap;
}

.snmb-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.snmb-menu ul li {
    display: inline-block;
}

.snmb-menu ul li:first-child a {
    padding-left: 0;
}

.snmb-menu ul li a {
    display: inline-block;
    padding: 0 10px 10px 10px;
    color: inherit;
    font-size: var(--font-size-s);
}

.snmb-menu ul li ul {
    display: none;
}

/* [ Site menu mobile ] */

.site-menu-mobile {
    display: none;
    position: fixed;
    overflow: auto;
    top: 0;
    padding-top: 60px;
    width: 100%;
    height: 100vh;
    background: var(--this-primary);
    color: var(--white);
    z-index: 997;
}

.smm-section-1 {
    margin-bottom: 20px;
}

.smm-section-1 ul,
.smm-section-2 ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.smm-section-1 ul li,
.smm-section-2 ul li {
    float: none;
}

.smm-section-2 ul li {
    border-bottom: 1px solid var(--black1);
}

.smm-section-1 ul li a {
    display: block;
    padding: 10px 15px;
    font-size: var(--font-size-l);
    color: inherit;
}

.smm-section-2 ul li a {
    display: block;
    padding: 10px 15px;
    color: inherit;
    font-size: var(--font-size-s);
}

/*.smm-section-2 ul li:hover > ul {
    display: block;
}*/

.smm-section-2 ul li ul {
    display: none;
    padding-left: 20px;
    border-top: 1px solid var(--black1);
}

.smm-section-2 ul li ul li:last-child {
    border-bottom: 0;
}

.smm-section-2 ul li.menu-item-has-children > a:after {
    display: inline-block;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f107";
    color: inherit;
    font-size: var(--font-size-xs);
    float: right;
}

/*.smm-section-2 ul li ul li:hover > ul {
    display: block;
}*/

.smm-section-2 ul li ul li ul {
    display: none;
}

/* [ Site main ] */

.site-main {
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.site-main-cnt {
    margin: 0;
}

/* [ 404 page ] */

.page-not-found {
    margin-top: 20px;
    padding: 40px 0;
    text-align: center;
}

.page-not-found h2 {
    font-size: 5rem;
    margin-bottom: 5px;
}

.page-not-found p {
    font-size: var(--font-size-s);
}

.page-not-found p a {
    color: inherit;
    font-weight: bolder;
    text-decoration: underline;
}

/* [ Post header ] */

.post-header {
    margin-top: 20px;
}

.post-header-section {
    display: flex;
    justify-content: space-between;
    word-wrap: break-word;
    clear: both;
}

@media (max-width: 768px) {
    .post-header-section {
        display: block;
    }
}

/* [ Custom post 1 ] */

/* [ First post ] */

.custom-post-1 {
    width: 65%;
}

@media (max-width: 768px) {
    .custom-post-1 {
        overflow: hidden;
        width: 100%;
    }
}

.cp-1 {
    overflow: hidden;
    float: left;
    position: relative;
    border-radius: 5px;
}

.cp-1:first-child {
    width: 100%;
    height: 350px;
    margin-bottom: 2%;
}

@media (max-width: 468px) {
    .cp-1:first-child {
        height: 220px;
        margin-bottom: 15px;
    }
}

.cp-1:first-child .cp-1-thumb {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.cp-1:first-child .cp-1-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-1 {
    width: 49%;
    height: 200px;
}

@media (max-width: 468px) {
    .cp-1 {
        width: 100%;
        height: 220px;
        margin-bottom: 15px;
    }

    .cp-1:first-child .cp-1-thumb, 
    .cp-1-thumb {
        height: 220px;
    }
}

.cp-1-thumb {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border-radius: 5px;
}

.cp-1:hover .cp-1-thumb img {
    transform: scale(1.1);
}

.cp-1-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.cp-1-ec {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 20px 25px;
}

.cp-1:first-child .cp-1-ec h2 {
    font-size: var(--font-size-xxl);
}

.cp-1-ec h2 {
    color: var(--white);
    margin-bottom: 0;
    font-size: var(--font-size-l);
    text-shadow: 0px 0px 8px rgb(0 0 0 / 40%);
}

@media (max-width: 468px) {
    .cp-1-ec h2,
    .cp-1:first-child .cp-1-ec h2 {
        font-size: var(--font-size-l);
    }
}

.cp-1-ec h2 a {
    color: inherit;
}

.cp-1:last-child {
    margin-left: 2%;
}

@media (max-width: 468px) {
    .cp-1:last-child {
        margin-left: 0;
    }
}

/* [ Custom post 2 ] */

.custom-post-2 {
    width: 33%;
}

@media (max-width: 768px) {
    .custom-post-2 {
        margin-top: 20px;
        width: 100%;
    }
}

/* [ Custom post 3 ] */

.custom-post-3 {
    margin-top: 20px;
}

.cp-3-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cp-3-header h3 {
    margin: 0;
    font-size: var(--font-size-xl);
}

.cp-3-header span a {
    display: inline-block;
    padding: 5px 25px;
    background: var(--this-primary);
    font-size: var(--font-size-s);
    color: var(--white);
    border-radius: 30px;
}

.cp-3-posts {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
}

.cp-3 {
    width: 24%;
    height: auto;
}

@media (max-width: 768px) {
    .cp-3-posts {
        flex-wrap: wrap;
    }

    .cp-3 {
        width: 48%;
        margin-bottom: 20px;
    }
}

@media (max-width: 468px) {
    .cp-3 {
        margin-bottom: 15px;
    }
}

.cp-3-thumb {
    overflow: hidden;
    margin: 0;
    width: 100%;
    height: 300px;
    border-radius: 5px;
}

.cp-3-thumb:hover img {
    transform: scale(1.1);
}

.cp-3-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

/* [ Post main ] */

.post-main {
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
}

.left-sidebar,
.right-sidebar {
    width: 26%;
}

.post-main-main {
    width: 44%;
}

@media (max-width: 768px) {
    .post-main {
        display: flex;
        flex-direction: column;
    }

    .left-sidebar {
        order: 2;
    }

    .post-main-main {
        order: 1;
    }

    .right-sidebar {
        order: 3;
    }

    .left-sidebar, 
    .right-sidebar {
        overflow: hidden;
        width: 100%;
        margin-bottom: 20px;
    }

    .post-main-main {
        overflow: hidden;
        width: 100%;
        margin-bottom: 20px;
    }
}

.pm-title h3 {
    display: block;
    margin-bottom: 15px;
    font-size: var(--font-size-l);
}

/* [ Post main ] */

.p-main {
    margin-bottom: 20px;
}

.p-main-thumb {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 220px;
    margin: 0;
    border-radius: 5px;
}

.p-main-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.p-main-thumb:hover img {
    transform: scale(1.1);
}

.p-main-thumb a:nth-child(2) {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 15px;
    display: inline-block;
    padding: 4px 15px;
    border-radius: 20px;
    background: var(--white);
    color: var(--black);
    font-size: var(--font-size-xs);
    font-weight: bolder;
    letter-spacing: .4px;
}

.p-main-ec {
    margin-top: 15px;
}

.p-main-title {
    margin: 0;
    font-size: var(--font-size-xl);
    font-weight: bolder;
}

@media (max-width: 468px) {
    .p-main-title {
        font-size: var(--font-size-l);
    }
}

.p-main-title a {
    color: inherit;
}

.p-main-md {
    margin-top: 5px;
}

.p-main-user a {
    display: inline-block;
    font-size: var(--font-size-xs);
    color: var(--black2);
    font-weight: bolder;
}

.p-main-date {
    font-size: var(--font-size-xs);
    margin-left: 10px;
    color: var(--black2);
}

/* [ Pagination ] */

.site-pag {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.pag-next-prev {
    text-align: center;
}

.pag-next-prev a {
    display: inline-block;
    padding: 10px 20px;
    margin: 0 2px;
    background: var(--this-primary);
    color: var(--white);
    border-radius: 30px;
    font-size: var(--font-size-xs);
}

.pn-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.pn-nav span.current,
.pn-nav a {
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 35px;
    margin: 0 2px;
    text-align: center;
}

.pn-nav span.current {
    background: var(--this-primary);
    color: var(--white);
}

.pn-nav a {
    color: inherit;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.pn-nav a:hover {
    background: var(--this-primary);
    color: white;
}

.pn-nav a i {
    font-size: var(--font-size-s);
}

.pag-view-more a {
    width: 100%;
    display: block;
    padding: 10px 20px;
    border-radius: 30px;
    text-align: center;
    background: var(--this-primary);
    color: var(--white);
    font-size: var(--font-size-s);
}

/* [ Main single ] */

.site-main-cnt-single {
    overflow: unset;
}

@media (max-width: 768px) {
    .site-main-cnt-single {
        overflow: hidden;
    }
}

.main-single {
    margin-top: 20px;
}

.main-single.main-single-page {
    justify-content: center;
    display: flex;
}

.main-single-content {
    width: 65%;
    float: left;
}

.main-single.main-single-full-width .main-single-content {
    float: none;
    margin: 0 auto;
}

.main-single-sidebar {
    float: right;
    width: 33%;
    position: sticky;
    -webkit-position: sticky;
    top: 20px;
}

@media (max-width: 768px) {
    .main-single {
        flex-direction: column;
    }

    .main-single-content {
        width: 100%;
    }

    .main-single-sidebar {
        margin-top: 20px;
        width: 100%;
    }
}

.no-posts-found {
    display: block;
    text-align: center;
    font-size: var(--font-size-s);
}

.no-posts-found a {
    display: inline-block;
    color: inherit;
    font-weight: bolder;
}

/* [ Sitemap ] */

.sitemap-content {
    padding: 25px;
    width: 867px;
}

@media (max-width: 468px)  {
    .sitemap-content {
        width: 100%;
    }
}
.sitemap-content ol{
    counter-reset: li; 
    list-style: none; 
    padding: 0;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
}

.sitemap-content ol a{
    position: relative;
    display: block;
    padding: .4em .4em .4em 2em;
    margin: .5em 0;
    background: #DAD2CA;
    color: #444;
    text-decoration: none;
    border-radius: .3em;
    transition: .3s ease-out;
}

.sitemap-content a:hover { background: #E9E4E0; }

.sitemap-content a:hover:before { transform: rotate(360deg); }

.sitemap-content ol a::before{
    content: counter(li);
    counter-increment: li;
    position: absolute;
    left: -1.3em;
    top: 50%;
    margin-top: -1.3em;
    background: #f9dd94;
    height: 2em;
    width: 2em;
    line-height: 2em;
    border: .3em solid #fff;
    text-align: center;
    font-weight: bold;
    border-radius: 2em;
    transition: all .3s ease-out;
}

.sitemap-pagination-container {
    width: 100%;
    padding: 0 1rem;
    margin-top: 1.5rem;
    display: flex;
    justify-content: center;
}

.sitemap-pagination-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

.sitemap-pagination-links a {
    text-decoration: none;
    background-color: #ffffff;
    border-radius: 50%;
    cursor: pointer;
    transition: color 128ms ease-out, background-color 128ms ease-out;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #000000;
    margin-right: 0.25rem;
}

.sitemap-pagination-links a:hover,
.sitemap-pagination-links a:focus,
.sitemap-pagination-links a:active {
    background-color: #dfdfdf;
}

.sitemap-pagination-links .current {
    text-decoration: none;
    border-radius: 50%;
    cursor: pointer;
    transition: color 128ms ease-out, background-color 128ms ease-out;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 2.5rem;
    height: 2.5rem;
    color: #000000;
    margin-right: 0.25rem;
    background-color: #ff8c00;
    color: #ffffff;
}

.sitemap-pagination-links .next,
.sitemap-pagination-links .prev, .page-numbers.dots {
    display: none;
}

/* [ Main single header ] */

.site-breadcrumbs {
    line-height: 1.3;
    font-size: var(--font-size-xs);
    color: var(--black2);
}

.site-breadcrumbs span a {
    display: inline-block;
    font-weight: bolder;
    color: inherit;
}

.site-breadcrumbs i.fas {
    font-size: var(--font-size-xxs);
}

.ms-title {
    font-size: var(--font-size-xxl);
    margin: 15px 0;
}

.ms-title a {
    color: inherit;
}

.ms-excerpt {
    font-size: var(--font-size-s);
    color: var(--black2);
}

.ms-thumb {
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.ms-thumb img {
    width: 100%;
    /* height: 350px; */
    height: auto;
    object-fit: cover;
    border-radius: 5px;
}

@media (max-width: 468px) {
    .ms-thumb img {
        height: 220px;
    }
}

.ms-thumb figcaption {
    text-align: center;
    color: var(--black2);
}

/* [ Main single content ] */

.ms-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.ms-content-share {
    width: 10%;
}

.ms-the-content {
    width: 87%;
}

.main-single-page .ms-the-content {
    width: 100%;
}

@media (max-width: 468px) {
    .ms-content-share {
        display: none;
        width: 13%;
    }

    .ms-the-content {
        width: 100%;
    }

    .main-single-page .ms-the-content {
        width: 100%;
    }
}

/* [ Main single share ] */

.ms-share-url {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position: sticky;
    -webkit-position: sticky;
    top: 15px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .ms-share-url {
        top: 75px;
    }
}

.ms-share-url li a {
    display: inline-block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: var(--white);
}

.ms-share-url li a.fb {
    background: #3b5998;
}

.ms-share-url li a.tw {
    background: #0F1419;
}

.ms-share-url li a.wa {
    background: #075e54;
}

/* [ Mobile share ] */

.ms-mobile-share {
    display: none;
    overflow: hidden;
    align-items: center;
    margin-bottom: 20px;
}

.ms-mobile-share p {
    margin: 0 10px 0 0;
}

.ms-mobile-share ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.ms-mobile-share ul li {
    float: left;
    margin-right: 2px;
}

.ms-mobile-share ul li a {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    border-radius: 30px;
    font-size: var(--font-size-xs);
    color: var(--white);
}

.ms-mobile-share li a.fb {
    background: #3b5998;
}

.ms-mobile-share li a.tw {
    background: #1da1f2;
}

.ms-mobile-share li a.wa {
    background: #075e54;
}

@media (max-width: 468px) {
    .ms-mobile-share {
        display: flex;
    }
}

/* [ Main single content ] */

.ms-the-content figure {
	width: auto !important;
}

.wp-block-image figcaption {
    margin: 0;
}

.ms-the-content img {
    display: block;
    border-radius: 5px;
}

.ms-the-content figure.aligncenter {
	text-align: center;
}

.ms-the-content figure.aligncenter img {
    margin: 0 auto;
}

.ms-the-content figure.alignleft {
	float: left;
	margin-right: 15px;
}

.ms-the-content figure.alignright {
	float: right;
	margin-left: 15px;
}
 
.ms-the-content .aligncenter {
	display: block;
	margin: 20px auto;
}

.ms-the-content .alignleft {
	float: left;
	margin-right: 15px;
}

.ms-the-content .alignright {
	float: right;
	margin-left: 15px;
}

.ms-the-content iframe {
    max-width: 100%;
}

.ms-the-content blockquote p {
    margin: 0;
}

.ms-the-content blockquote cite {
    display: block;
    margin-top: 10px;
}

.ms-the-content ul li,
.ms-the-content ol li {
    margin-bottom: 10px;
}

/* [ Meta data ] */

.ms-metadata {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: var(--font-size-s);
    color: var(--black2);
    font-style: italic;
}

.ms-metadata span:nth-child(2) {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.ms-metadata span:nth-child(2) svg.time-icons {
    width: 15px;
    height: 15px;
    margin-right: 4px;
    color: var(--black2);
}

.ms-metadata a {
    display: inline-block;
    color: inherit;
}

.ms-the-content blockquote {
    margin: 0 0 20px 0;
    padding: 20px;
    border-left: 5px solid var(--this-primary);
}

/* [ Table of Contents ] */

.ms-toc {
    width: 300px;
    padding: 15px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 5px;
    margin: 5px 0 20px 0;
}

.ms-toc-title {
    font-weight: bolder;
}

.ms-toc-btnHidden,
.ms-toc-btnShow {
    cursor: pointer;
}

.ms-toc-btnShow {
    display: none;
}

.ms-toc-list {
    margin: 10px 0 0 0;
    padding: 0 20px;
}

.ms-toc-list li a {
    display: block;
    color: inherit;
    margin-bottom: 10px;
    font-size: var(--font-size-s);
}

.ms-toc-sub {
    list-style-type: disc;
    margin: 0;
    padding: 0 20px;
}

/* [ Page number ] */

.ms-content-pag {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.msc-pag-number {
    float: left;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    margin: 0 2px;
    text-align: center;
    background: var(--white);
    color: var(--black);
    font-size: var(--font-size-s);
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.msc-pag-number:hover {
    background: var(--this-primary);
    color: var(--white);
}

.post-page-numbers.current span {
    background: var(--this-primary);
    color: var(--white);
}

.ms-content-pag.next {
    margin: 20px 0;
}

.msc-pag-next {
    display: inline-block;
    padding: 5px 10px;
    background: var(--this-primary);
    color: var(--white);
    font-size: var(--font-size-s);
    border-radius: 30px;
    margin: 0 2px;
}

/* [Custom Field] */

.mp-single-custom-field {
    margin: 1em 0;
}

.mp-single-custom-field p {
    font-size: var(--text-xs);
    margin-bottom: .1em
}

.mp-single-custom-field p span {
    font-weight: 700;
}

/* [ Tags ] */

.ms-content-tags {
    overflow: hidden;
    border-top: 1px solid var(--border);
    padding: 20px 0 0 0;
}

.msc-tags a {
    float: left;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 30px;
    margin-right: 5px;
    margin-bottom: 5px;
    font-size: var(--font-size-xs);
    background: var(--this-primary);
    color: var(--white);
}

/* [ Author ] */

.ms-content-author {
    margin-top: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: 5px;
}

.msc-author-img {
    margin: 0;
    padding: 0;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: table-cell;
    vertical-align: middle;
}

.msc-author-img img {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    object-fit: cover;
}

.msc-author-meta {
    display: table-cell;
    vertical-align: middle;
    padding-left: 20px;
}

.msc-author-meta h3 {
    margin: 0 0 5px 0;
}

.msc-author-meta h3 a {
    color: inherit;
}

.msc-author-meta p {
    margin: 0;
    color: var(--black2);
    font-size: var(--font-size-s);
}

/* [ Comments ] */

.ms-comments-area {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.ms-comments-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.ms-comments-title h3 {
    margin: 0;
}

.ms-comments-title span {
    display: inline-block;
    padding: 4px 10px;
    border: 1px solid var(--border);
    border-radius: 5px;
    font-size: var(--font-size-xs);
    font-weight: bolder;
    color: var(--black2);
}

.ms-comments-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.ms-comments-list .comment-body {
    margin-bottom: 20px;
    border: 1px solid var(--border-light);
    background: var(--white);
    border-radius: 5px;
    padding: 20px;
}

.ms-comments-list .comment-author {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.ms-comments-list .comment-author img {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    object-fit: cover;
    margin-right: 10px;
}

.ms-comments-list .comment-author .fn a {
    color: inherit;
}

.ms-comments-list .comment-author .says {
    display: none;
}

.ms-comments-list .comment-metadata {
    margin-bottom: 10px;
    font-size: var(--font-size-xs);
}

.ms-comments-list .comment-metadata a {
    color: var(--black2);
}

.ms-comments-list .reply a {
    display: inline-block;
    padding: 2px 15px;
    border-radius: 5px;
    background: var(--this-primary);
    font-size: var(--font-size-xs);
    color: var(--white);
}

.ms-comments-list li ol {
    list-style-type: none;
}

.comment-respond #cancel-comment-reply-link {
    margin-left: 10px;
    font-size: var(--font-size-s);
    color: var(--red);
}

.comment-reply-title {
    font-size: var(--font-size-l);
    margin-bottom: 5px;
}

.logged-in-as {
    font-size: var(--font-size-s);
    margin-bottom: 10px;
}

.logged-in-as a {
    color: inherit;
    text-decoration: underline;
}

.comment-notes {
    font-size: var(--font-size-s);
    color: var(--black2);
}

.comment-form-comment,
.comment-form-author, 
.comment-form-email, 
.comment-form-url {
    margin-bottom: 5px;
}

.comment-form-cookies-consent label {
    display: inline-block;
    font-size: var(--font-size-s);
}

.comment-form-cookies-consent input[type=checkbox] {
    display: inline-block;
}

.comment-form-comment textarea,
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    width: 100%;
    margin-bottom: 10px;
    font-size: var(--font-size-s)
}

.form-submit input[type=submit] {
    font-size: var(--font-size-s);
    background: var(--this-primary);
    color: var(--white);
    cursor: pointer;
}

.comments-pagination {
    margin-bottom: 15px;
    text-align: center;
}

.comments-pagination a,
.comments-pagination span {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 25px;
    text-align: center;
    font-size: var(--font-size-s);
}

.comments-pagination a {
    background: var(--white);
    color: inherit;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.comments-pagination a.prev,
.comments-pagination a.next {
    display: none;
}

.comments-pagination span,
.comments-pagination a:hover {
    background: var(--this-primary);
    color: var(--white);
}


/*  [ Floating Related possts ]  */

.floating-related-posts {
    display: none;
    width: 500px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.floating-related-posts.show-floating-related {
    display: block;
}


.floating-related-posts a {
    display: block;
    margin-bottom: 10px;
}

.floating-related-posts a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--this-primary);
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;

}

.floating-related-posts img {
    width: 70px;
    height: 70px;
    margin-right: 10px;
    margin-bottom: 10px;
    object-fit: cover;
}

.floating-related-posts a:hover img {
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.floating-related-posts h4 {
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    flex: 1;
}

.floating-related-minimize-btn {
    z-index: 999;
    position: absolute;
    top: 5px;
    right: 5px;
    background-color: var(--this-primary);
    border: 1px solid var(--this-primary);
    padding: 0 10px;
    cursor: pointer;
}

@media (max-width: 987px) {
    .floating-related-posts, .floating-related-posts.show-floating-related {
        display: none;
    }
}


/* [ Related posts ] */

.ms-related-posts {
    margin-top: 20px;
}

.msr-posts-title {
    margin-bottom: 15px;
}

.msr-box {
    display: flex;
    justify-content: space-between;
}

.msr-post {
    width: 31%;
}

.msr-post-thumb {
    overflow: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 120px;
    border-radius: 5px;
}

.msr-post-thumb:hover img {
    transform: scale(1.1);
}

.msr-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.msr-post-title {
    font-size: var(--font-size-s);
    margin: 10px 0 0 0;
}

.msr-post-title a {
    color: inherit;
}

@media (max-width: 468px) {
    .msr-box {
        flex-direction: column;
    }

    .msr-post {
        width: 100%;
        margin-bottom: 15px;
    }

    .msr-post-thumb {
        height: 100px;
        width: 100px;
        display: table-cell;
        vertical-align: top;
    }

    .msr-post-title {
        display: table-cell;
        vertical-align: middle;
        padding-left: 15px;
    }
}

/* [ Footer ] */

.site-footer {
    background: var(--this-footer);
    color: var(--white);
    margin-top: 20px;
    padding: 30px 0 0 0;
}

.sf-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.sf-column {
    width: 30%;
}

@media (max-width: 768px) {
    .sf-footer {
        flex-direction: column;
        justify-content: unset;
    }

    .sf-column {
        width: 100%;
        margin-bottom: 20px;
    }
}

/* [ Footer bottom ] */

.sf-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--black1);
    margin-top: 10px;
    padding: 20px 0;
}

@media (max-width: 768px) {
    .sf-bottom {
        flex-direction: column-reverse;
        justify-content: center;
    }

    .sf-social {
        margin-bottom: 10px;
    }
}

.sf-copy p {
    font-size: var(--font-size-s);
    color: var(--black2);
    margin: 0;
}

@media (max-width: 768px) {
    .sf-copy p {
        text-align: center;
    }
}

.sf-social ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.sf-social ul li {
    float: left;
}

.sf-social ul li a {
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 30px;
    margin-left: 5px;
    text-align: center;
    background: var(--black1);
    color: var(--white);
    font-size: var(--font-size-s);
}

/* [ =========================================== ] */

/* [ Advertisement ] */

.site-ads {
    margin-top: 20px;
}

.site-ads-section {
    width: 100%;
    height: auto;
    text-align: center;
}

.site-ads-section img {
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: cover;
    vertical-align: middle;
}

.example-ads {
    width: 100%;
    height: 100px;
    background: var(--border);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.example-ads h3 {
    color: var(--black2);
    margin: 0;
}

/* [ Advertisement Overlay ] */

.site-ads-overlay {
    overflow: hidden;
    position: sticky;
    -webkit-position: sticky;
    top: 0;
    margin-top: 20px;
    width: 150px;
    height: 600px;
}

@media (max-width: 1024px) {
    .site-ads-overlay {
        display: none;
    }
}

.ads-overlay-close {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: var(--white);
    color: var(--black2);
    cursor: pointer;
}

.example-ads-overlay {
    width: 100%;
    height: 100%;
    background: var(--border);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--black2);
}

/* [ Advertisement Parallax] */
.site-ads-parallax {
    background-attachment: fixed;
    background-position: top;
    background-repeat: no-repeat;
    /* background-size: cover; */
    background-size: contain;
    z-index: -999;
    transition: transform 0.3s ease;
    margin-bottom: -60px;
    width: 100%;
    height: 500px;
}


@media (max-width: 768px) {
    .site-ads-parallax{
        display: none;
    }
    .site-ads-parallax-mobile {
        height: 500px;
        background-attachment: fixed;
        background-position: top;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: -999;
        transition: transform 0.3s ease;
        margin-bottom: -60px;
        width: 100%;
        height: 500px;
    }
    .site-ads-section-parallax-mobile {
        position: relative;
        display: block;
    }
    .site-ads-section-parallax-mobile a {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
    }
    .site-ads-parallax-mobile img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* [ Advertisement in content ] */

.site-ads-content {
    width: 100%;
    height: auto;
    text-align: center;
    margin-bottom: 20px;
}

.site-ads-content img {
    width: auto;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    vertical-align: center;
    border-radius: 0;
}

/* [ Advertisement float bottom ] */

.ads-float-bottom {
    overflow: hidden;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 999;
}

.ads-float-close {
    display: flex;
    justify-content: flex-end;
}

.ads-float-close span {
    display: inline-block;
    padding: 5px 15px;
    background: white;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    margin-right: 15px;
    border: 1px solid var(--border);
    border-bottom: none;
}

.ads-float-container {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    background: var(--white);
    border-top: 1px solid var(--border);
}

.ads-float-content {
    overflow: hidden;
    width: auto;
    height: auto;
}

.ads-float-content img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* [ Widget ] */

.custom-widget {
    margin-bottom: 20px;
}

.widget-title {
    font-size: var(--font-size-l);
    margin: 0 0 10px 0;
}

/* [ Widget post style 1 ] */

.wps-1-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.wps-1-title h3 {
    font-size: var(--font-size-l);
    margin: 0;
}

.wps-1-cat-link a {
    display: inline-block;
    padding: 5px 25px;
    background: var(--this-primary);
    font-size: var(--font-size-s);
    color: var(--white);
    border-radius: 30px;
}

.wps-1 {
    overflow: hidden;
    margin-bottom: 15px;
}

.wps-1-thumb {
    overflow: hidden;
    width: 100px;
    height: 100px;
    margin: 0;
    padding: 0;
    float: left;
    position: relative;
    border-radius: 5px;
}

.wps-1:hover .wps-1-thumb img {
    transform: scale(1.1);
}

.wps-1-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 5px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.wps-1-ec {
    overflow: hidden;
    padding-left: 15px;
}

@media (max-width: 468px) {
    .wps-1-ec {
        padding-left: 15px;
    }
}

.wps-1-cat a {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--black2);
    font-size: var(--font-size-xs);
}

.wps-1-ec h3 {
    font-size: var(--font-size-s);
    margin: 0;
}

.wps-1-ec h3 a {
    color: inherit;
}

/* [ Widget post style 2 ] */

.wps-2-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.wps-2-title h3 {
    font-size: var(--font-size-l);
    margin: 0;
}

.wps-2-cat-link a {
    display: inline-block;
    padding: 5px 25px;
    background: var(--this-primary);
    font-size: var(--font-size-s);
    color: var(--white);
    border-radius: 30px;
}

.wps-2 {
    margin-bottom: 20px;
}

.wps-2-thumb {
    overflow: hidden;
    width: 100%;
    height: 150px;
    margin: 0;
    padding: 0;
    border-radius: 5px;
}

@media (max-width: 468px) {
    .wps-2-thumb {
        height: 220px;
    }
}

.wps-2:hover .wps-2-thumb img {
    transform: scale(1.1);
}

.wps-2-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 5px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.wps-2-ec {
    margin-top: 5px;
}

.wps-2-cat a {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--black2);
    font-size: var(--font-size-xs);
}

.wps-2-ec h3 {
    font-size: var(--font-size-m);
    margin: 0;
}

.wps-2-ec h3 a {
    color: inherit;
}

/* [ Widget post style 3 ] */

.widget-post-style-3 {
    background: var(--white);
}

.wps-3-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px 0 20px;
    margin-bottom: 15px;
}

.wps-3-title h3 {
    font-size: var(--font-size-l);
    margin: 0;
}

.wps-3-cat-link a {
    display: inline-block;
    padding: 5px 25px;
    background: var(--this-primary);
    font-size: var(--font-size-s);
    color: var(--white);
    border-radius: 30px;
}

.wps-3 {
    padding: 10px 20px;
    border-bottom: 1px solid var(--border);
}

.wps-3:last-child {
    border-bottom: 0;
}

.wps-3-cat a {
    display: inline-block;
    color: var(--black2);
    font-size: var(--font-size-xs);
    margin-bottom: 5px;
}

.wps-3-ec h3 {
    display: block;
    font-size: var(--font-size-s);
    margin: 0;
}

.wps-3-ec h3 a {
    color: inherit;
}

/* [ Widget post style 4 ] */

.wps-4-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.wps-4-title h3 {
    font-size: var(--font-size-l);
    margin: 0;
}

.wps-4-cat-link a {
    display: inline-block;
    padding: 5px 25px;
    background: var(--this-primary);
    font-size: var(--font-size-s);
    color: var(--white);
    border-radius: 30px;
}

.wps-4 {
    overflow: hidden;
    margin-bottom: 15px;
}

.wps-4-thumb {
    overflow: hidden;
    width: 100px;
    height: 100px;
    margin: 0;
    padding: 0;
    float: left;
    position: relative;
    border-radius: 100px;
}

.wps-4:hover .wps-4-thumb img {
    transform: scale(1.1);
}

.wps-4-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 5px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.wps-4-ec {
    overflow: hidden;
    padding-left: 15px;
}

@media (max-width: 468px) {
    .wps-4-ec {
        padding-left: 15px;
    }
}

.wps-4-cat a {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--black2);
    font-size: var(--font-size-xs);
}

.wps-4-ec h3 {
    font-size: var(--font-size-s);
    margin: 0;
}

.wps-4-ec h3 a {
    color: inherit;
}

/* [ Widget post style 5 ] */

.wps-5-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.wps-5-title h3 {
    font-size: var(--font-size-l);
    margin: 0;
}

.wps-5-cat-link a {
    display: inline-block;
    padding: 5px 25px;
    background: var(--this-primary);
    font-size: var(--font-size-s);
    color: var(--white);
    border-radius: 30px;
}

.wps-5 {
    overflow: hidden;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
}

.wps-5-thumb {
    overflow: hidden;
    display: table-cell;
    vertical-align: top;
    width: 130px;
    height: 100px;
    margin: 0;
    padding: 0;
    border-radius: 5px;
}

.wps-5:hover .wps-5-thumb img {
    transform: scale(1.1);
}

.wps-5-thumb img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    vertical-align: middle;
    border-radius: 5px;
    transition: .2s;
    -webkit-transition: .2s;
    -moz-transition: .2s;
    -o-transition: .2s;
}

.wps-5-ec {
    overflow: hidden;
    padding-right: 15px;
    display: table-cell;
}

@media (max-width: 468px) {
    .wps-5-ec {
        padding-right: 15px;
    }
}

.wps-5-cat a {
    display: inline-block;
    margin-bottom: 5px;
    color: var(--black2);
    font-size: var(--font-size-xs);
}

.wps-5-ec h3 {
    font-size: var(--font-size-s);
    margin: 0;
}

.wps-5-ec h3 a {
    color: inherit;
}

/* [ Widget branding ] */

.widget-branding h2,
.widget-branding h3,
.widget-branding h4 {
    margin: 0 0 10px 0;
}

.widget-branding h2 a,
.widget-branding h3 a,
.widget-branding h4 a {
    color: inherit;
}

.widget-branding p {
    font-size: var(--font-size-s);
    margin: 0 0 5px 0;
}

/* [=======================================] */

/* [ Wordpress Widget ] */

.widget {
    margin-bottom: 20px;
}

.footer-widget {
    background: none !important;
    padding: 0 !important;
}

.widget_nav_menu {
    background: var(--white);
    padding: 20px;
}

.widget_nav_menu ul {
    overflow: hidden;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_nav_menu ul li {
    width: 50%;
    float: left;
    font-size: var(--font-size-s);
}

.widget_nav_menu ul li a {
    display: inline-block;
    padding: 5px 0;
    color: inherit;
    font-weight: bolder;
}

.widget_nav_menu ul .sub-menu {
	display: none;
}

/* [ Archive ] */

.widget_archive {
    background: var(--white);
    padding: 20px;
}

.widget_archive ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_archive ul li {
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: var(--font-size-s);
}

.widget_archive ul li:first-child {
    padding-top: 0;
}

.widget_archive ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_archive ul li a {
    color: inherit;
    font-weight: bolder;
}

/* [ Archive Select ] */

.widget_archive select {
    width: 100%;
    font-size: var(--font-size-s);
    margin-bottom: 0;
    padding: 10px;
}

/* [ Media Gallery ] */

.widget_media_gallery figure {
    margin: 0 0 10px 0;
    width: 100%;
    height: auto;
}

.widget_media_gallery figure img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* [ Media Image ] */

.widget_media_image figure {
    margin: 0 0 10px 0;
    width: 100%;
    height: auto;
}

.widget_media_image figure img,
.widget_media_image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* [ Category ] */

.widget_categories {
    background: var(--white);
    padding: 20px;
}

.widget_categories ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_categories ul li {
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: var(--font-size-s);
}

.widget_categories ul li:first-child {
    padding-top: 0;
}

.widget_categories ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_categories ul li a {
    color: inherit;
    font-weight: bolder;
}

/* [ Category Dropdown ] */

.widget_categories select {
    width: 100%;
    font-size: var(--font-size-s);
    margin-bottom: 0;
    padding: 10px;
}

/* [ Widget Recent Comments ] */

.widget_recent_comments {
    background: var(--white);
    padding: 20px;
}

.widget_recent_comments ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_recent_comments ul li {
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: var(--font-size-s);
}

.widget_recent_comments ul li:first-child {
    padding-top: 0;
}

.widget_recent_comments ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_recent_comments ul li a {
    color: inherit;
    font-weight: bolder;
}

/* [ Widget Pages ] */

.widget_pages {
    background: var(--white);
    padding: 20px;
}

.widget_pages ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_pages ul li {
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: var(--font-size-s);
}

.widget_pages ul li:first-child {
    padding-top: 0;
}

.widget_pages ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_pages ul li a {
    color: inherit;
    font-weight: bolder;
}

/* [ Widget Meta ] */

.widget_meta {
    background: var(--white);
    padding: 20px;
}

.widget_meta ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_meta ul li {
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: var(--font-size-s);
}

.widget_meta ul li:first-child {
    padding-top: 0;
}

.widget_meta ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_meta ul li a {
    color: inherit;
    font-weight: bolder;
}

/* [ Widget Recent Entries ] */

.widget_recent_entries {
    background: var(--white);
    padding: 20px;
}

.widget_recent_entries ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_recent_entries ul li {
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: var(--font-size-s);
}

.widget_recent_entries ul li:first-child {
    padding-top: 0;
}

.widget_recent_entries ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_recent_entries ul li a {
    color: inherit;
    font-weight: bolder;
}

.widget_recent_entries .post-date {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--black2);
    margin-top: 5px;
}

/* [ Widget RSS ] */

.widget_rss {
    background: var(--white);
    padding: 20px;
}

.widget_rss ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.widget_rss ul li {
    border-bottom: 1px solid var(--border);
    padding: 10px 0;
    font-size: var(--font-size-s);
}

.widget_rss ul li:first-child {
    padding-top: 0;
}

.widget_rss ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.widget_rss ul li a {
    color: inherit;
    font-weight: bolder;
}

.widget_rss .rss-date {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--black2);
    margin: 5px 0;
}

.widget_rss .rssSummary, 
.widget_rss cite {
    font-size: var(--font-size-xs);
}

/* [ Widget Tag Cloud ] */

.widget_tag_cloud {
    background: var(--white);
    padding: 20px;
}

.widget_tag_cloud .tagcloud {
    overflow: hidden;
}

.widget_tag_cloud a {
    float: left;
    display: inline-block;
    padding: 2px 6px;
    margin-right: 4px;
    margin-bottom: 4px;
    border: 1px solid var(--border);
    color: inherit;
    font-size: var(--font-size-xs) !important;
    border-radius: 4px;
}

.widget_tag_cloud a:hover {
    border: 1px solid var(--this-primary);
    background: var(--this-primary);
    color: var(--white);
}

/* [ Widget Text ] */

.widget_text {
    background: var(--white);
    padding: 20px;
}

.widget_text .textwidget p {
    font-size: var(--font-size-s);
}

/* [ Pop Up ] */

#pop_ads {
    display: none;
}

.pop-ads-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    -moz-backdrop-filter: blur(5px);
}

.pop-ads-container {
    max-width: 500px;
    background: var(--white);
    padding: 1em 2em 1.5em 2em;
    margin: 0 2em;
    border-radius: 10px;
}

.pop-ads-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: .5em;
    color: var(--text);
}

.pop-ads-header h3 {
    margin: 0;
    font-size: var(--font-size-m);
}

.pop-ads-close {
    display: inline-block;
    padding: .5em;
    cursor: pointer;
}

.pop-ads-content {
    padding: 1em 0;
    color: var(--text);
}

.pop-ads-content img {
    max-width: 100%;
    object-fit: cover;
}

.pop-ads-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-top: 1px solid var(--border);
    padding-top: 1em;
}

.pop-ads-footer-btn1 {
    display: inline-block;
    padding: .5em 1em;
    border: 2px solid var(--this-primary);
    color: var(--primary);
    font-size: var(--font-size-s);
    font-weight: 500;
    cursor: pointer;
}

.pop-ads-footer-btn2 {
    display: inline-block;
    padding: .5em 1em;
    border: 2px solid var(--this-primary);
    background: var(--this-primary);
    color: var(--white);
    font-size: var(--font-size-s);
    font-weight: 500;
    cursor: pointer;
    margin-left: .5em
}

.misha_loadmore{
	background-color: var(--this-primary);
	color: var(--white);
	border-radius: 15px;
	display: block;
	text-align: center;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: 800;
	letter-spacing:1px;
	cursor:pointer;
	padding: 10px 0;
    transition: background-color 0.2s ease-in-out, border-color 0.2s ease-in-out, color 0.3s ease-in-out;  
}
.misha_loadmore:hover{
	background-color: #ddd;
    color: var(--this-primary);
}







.single-inline-related {
    border-radius: .5em;
}

.inline-related-title {
    font-weight: 600;
    margin-bottom: .5em;
    font-size: 1.25rem;
}

.inline-related-article {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: .75em;
}

.inline-related-thumbnail {
    overflow: hidden;
    aspect-ratio: 1/1;
    margin: 0;
}

.inline-related-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.inline-related-entry h3 {
    font-size: 1rem;
    margin: 0;
    font-weight: 600;
}

.inline-related-entry h3 a {
    color: var(--black);
}
