/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Variable -------------------*/
:root {
  --thm-color: #7e3dff;
  --thm-color-rgb: 126, 61, 255;
  --color-secondary: #1c1c25;
  --color-body: #525252;
  --color-white: #ffffff;
  --color-border: #dfdfdf;
  --color-sidebarbg: #F0F0F3;
  --color-bg: #F0F0F3;
  --color-woobg: #F0F0F3;
  --color-footerbg: #F0F0F3;
  --color-footer: #1c1c25;
  --color-dark: #24272C;
  --preloader-primary-color: #7e3dff;
  --preloader-secondary-color: #F0F0F3;
  --preloader-primary-shadow-color: #7e3dff;
  --preloader-secondary-shadow-color: #1c1c25;
  --e-global-color-florira_thm_color: #7e3dff;
  --e-global-color-florira_secondary_color: #1c1c25;
  --e-global-color-florira_body_color: #525252;
  --e-global-color-florira_white_color: #ffffff;
  --e-global-color-florira_border_color: #dfdfdf;
  --e-global-color-florira_bg_color: #F0F0F3;
  --e-global-color-florira_dark_color: #24272C;
  --font-body: "inter", sans-serif;
  --font-heading: "Poppins", serif;
  --main-shadow-light: -2.179px -2.179px 6.537px 0px #FFF, 2.179px 2.179px 6.537px 0px rgba(174, 174, 192, 0.40);
  --main-shadow-dark: -2px -2px 4px 0 rgba(255, 255, 255, 0.16), 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
  --main-inset-shadow-light: -2.179px -2.179px 6.537px 0px #FFF inset, 2.179px 2.179px 6.537px 0px rgba(174, 174, 192, 0.40) inset;
}

/* Dark Mode Variables */
[data-theme=dark] {
  --color-bg: #24272C;
  --color-white: #2d2d2d;
  --color-body: #e0e0e0;
  --color-secondary: #ffffff;
  --color-border: #2e323c;
  --color-sidebarbg: #24272C;
  --color-woobg: #24272C;
  --color-footerbg: #24272C;
  --color-footer: #ffffff;
  --color-dark: #ffffff;
  --preloader-secondary-color: #ffffff;
  --preloader-secondary-shadow-color: #ffffff;
  --main-shadow-light: -2px -2px 4px 0 rgba(255, 255, 255, 0.1), 2px 2px 4px 0 rgba(0, 0, 0, 0.3);
  --main-shadow-dark: -2px -2px 4px 0 rgba(255, 255, 255, 0.16), 2px 2px 4px 0 rgba(0, 0, 0, 0.25);
  --main-inset-shadow-light: -2px -2px 4px 0 rgba(255, 255, 255, 0.1) inset, 2px 2px 4px 0 rgba(0, 0, 0, 0.3) inset;
}

body[data-theme=dark][class*=elementor-kit-] {
  --e-global-color-florira_thm_color: #7e3dff;
  --e-global-color-florira_secondary_color: #ffffff;
  --e-global-color-florira_body_color: #e0e0e0;
  --e-global-color-florira_white_color: #2d2d2d;
  --e-global-color-florira_border_color: #2e323c;
  --e-global-color-florira_bg_color: #24272C;
  --e-global-color-florira_dark_color: #ffffff;
}

.e-con-inner {
  --content-width: min(100%, var(--container-max-width, 1220px));
}

.e-con-inner {
  --container-max-width: 1220px;
}

/*------------------- 1.2. Typography -------------------*/
body {
  font-size: 16px;
  line-height: 26px;
  color: var(--color-body);
  font-weight: 400;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  font-family: var(--font-body);
}

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

.container-1220 {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container-1220 {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container-1220 {
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .container-1220 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 992px) {
  .container-1220 {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container-1220 {
    max-width: 100%;
  }
}
@media (min-width: 1400px) {
  .container-1220 {
    max-width: 1220px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

h1 {
  font-size: 4rem;
  line-height: 4.375rem;
}

h2 {
  font-size: 2rem;
  line-height: 2.5rem;
}

h3 {
  font-size: 1.75rem;
  line-height: 2.1rem;
}

h4 {
  font-size: 1.5rem;
  line-height: 2.1rem;
}

h5 {
  font-size: 1.25rem;
  line-height: 1.5rem;
}

h6 {
  font-size: 1rem;
  line-height: 1.25rem;
}

a {
  display: inline-block;
  text-decoration: none;
  color: var(--color-secondary);
  transition: 0.3s;
}
a:hover {
  color: var(--thm-color);
}

button {
  cursor: pointer;
}

table td a {
  font-weight: 500;
}

img {
  max-width: 100%;
  height: auto;
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select {
  color: var(--color-body);
  border: none;
  padding: 14px 25px;
  box-shadow: none;
  outline: none;
  width: 100%;
  margin-bottom: 20px;
  background-color: var(--color-sidebarbg);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
textarea:focus,
select:focus {
  box-shadow: none;
  outline: none;
}

textarea {
  min-height: 120px;
}

input[type=submit] {
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  padding: 17px 40px;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: all 0.35s;
  border: none;
  background: var(--thm-color);
  color: var(--color-white);
  text-transform: uppercase;
}
input[type=submit]:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

input[type=search]::-webkit-search-decoration, input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-results-button, input[type=search]::-webkit-search-results-decoration {
  display: none;
}

form.search-form {
  position: relative;
}
form.search-form label,
form.search-form input {
  margin-bottom: 0;
  width: 100%;
  border-radius: 5px;
}
form.search-form .search-submit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  font-size: 18px;
  border-radius: 0;
}

code {
  background-color: var(--color-bg);
  font-weight: normal;
}

pre {
  background: var(--color-border);
  padding: 30px;
  border-radius: 5px;
  font-weight: 400;
  margin-bottom: 25px;
  margin-top: 30px;
}

table {
  width: 100%;
  margin-bottom: 35px;
  margin-top: 15px;
  border-left: 1px solid;
  border-bottom: 1px solid;
  border-color: var(--color-border);
}
table th,
table td {
  border-top: 1px solid;
  border-right: 1px solid;
  text-align: center;
  padding: 8px;
  border-color: var(--color-border);
}

ul,
ol {
  padding-left: 28px;
  list-style: disc;
}

select {
  text-indent: 1px;
  height: 50px;
  cursor: pointer;
  border-color: var(--color-border);
}

h1,
h2,
h3,
h4,
h5,
h6,
.widget.widget_rss ul li a,
blockquote cite,
.woocommerce ul.cart_list li a:not(.remove),
.woocommerce ul.product_list_widget li a:not(.remove),
.woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong,
.comment-reply-title,
.woocommerce-review__author {
  font-family: var(--font-heading);
}

a,
strong,
dt,
th,
.comment-meta .fn,
.comment-reply-link,
.no-comments {
  color: var(--color-secondary);
}

strong {
  font-weight: 500;
}

input[type=submit],
button[type=submit] {
  transition: 0.3s;
}

:focus-visible {
  outline-color: var(--thm-color);
}

svg.e-font-icon-svg {
  width: 13px;
  color: initial;
  height: 13px;
}

input:focus,
textarea:focus,
select:focus,
button:focus {
  box-shadow: none;
  outline: none;
}

.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

.wp-block-cover {
  margin-bottom: 20px;
  margin-top: 10px;
}

.wp-block-cover.has-background-dim strong,
.wp-block-cover.has-background-dim a {
  color: var(--color-white);
}

.wp-block-video figcaption {
  font-size: 16px;
  margin-top: 15px;
}

.wp-block-embed {
  margin-bottom: 30px;
}

/*------------------
# Mixins
-------------------*/
/*------------------
# Accessibility
-------------------*/
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          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: var(--color-sidebarbg);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: var(--thm-color);
  display: block;
  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;
}

#content[tabindex="-1"]:focus {
  outline: 0;
}

/*------------------
# Alignments
-------------------*/
.alignleft,
.alignright,
.aligncenter {
  margin-bottom: 1.5em;
}

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em;
}

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em;
  clear: both;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*----------------
# Clearings
------------------*/
.clear:before, .clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
  content: "";
  display: table;
  table-layout: fixed;
}
.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
  clear: both;
}

/*----------------------
# Infinite scroll
-----------------------*/
.infinite-scroll.neverending .site-footer {
  display: none;
}

.infinity-end.neverending .site-footer {
  display: block;
}

/*---------------------
# Media
-----------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin: 0;
  padding: 0;
}

embed,
iframe,
object {
  max-width: 100%;
}

.custom-logo-link {
  display: inline-block;
}

/*---------------------
## Captions
-----------------------*/
.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption img[class*=wp-image-] {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
  text-align: center;
}

.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption,
figcaption {
  font-size: 17px;
  margin-top: 20px !important;
  color: var(--color-secondary);
  font-weight: 500;
}

/* Specific styles for different gallery configurations */
figure.wp-container-2.wp-block-gallery-1.wp-block-gallery.columns-3.is-cropped.alignfull {
  margin-bottom: 30px;
}

figure.wp-container-4.wp-block-gallery-3.wp-block-gallery.columns-2.is-cropped.alignleft.extraclass {
  margin-top: 10px;
  margin-right: 20px;
}

/*----------------------
## Galleries
------------------------*/
.gallery {
  margin-bottom: 1.5em;
}
.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
}
.gallery-columns-2 .gallery-item {
  max-width: 50%;
}
.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}
.gallery-columns-4 .gallery-item {
  max-width: 25%;
}
.gallery-columns-5 .gallery-item {
  max-width: 20%;
}
.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}
.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}
.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}
.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}
.gallery .gallery-caption {
  display: block;
}

.entry-content ul li.blocks-gallery-item {
  padding-left: 0;
  margin-top: 10px;
  margin-bottom: 10px;
}
.entry-content ul li.blocks-gallery-item:before {
  content: "";
}
.entry-content figure img {
  border-radius: 10px;
  padding: 10px;
  box-shadow: var(--main-shadow-light);
  background-color: var(--color-white);
}

.wp-block-gallery {
  margin-bottom: 30px;
}
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  font-weight: 500;
}

.blocks-gallery-grid .blocks-gallery-image figcaption,
.blocks-gallery-grid .blocks-gallery-item figcaption {
  font-size: 16px;
  margin-top: 0;
  bottom: 0;
  line-height: 26px;
}

ul.blocks-gallery-grid li:before {
  display: none;
}

.wp-block-gallery .blocks-gallery-item figure img {
  margin-top: 0;
}

.gallery-item figcaption {
  font-weight: normal;
}

/*----------------------
# Audio Block
-----------------------*/
figure.wp-block-audio {
  margin: 30px 0;
}

/*----------------------
# Post Password Form
-----------------------*/
.post-password-form {
  position: relative;
}
.post-password-form input[type=password] {
  border-radius: 5px;
  margin-top: 15px;
  width: auto;
  background-color: var(--color-white);
}
.post-password-form input[type=submit] {
  padding: 19px 30px 19px;
  border-radius: 5px;
  margin-left: 5px;
  right: 0;
  width: auto;
}

/*----------------------
## Lists
-----------------------*/
.entry-content h2,
.entry-content h2.wp-block-heading,
.entry-content h3,
.entry-content h3.wp-block-heading,
.entry-content h4,
.entry-content h4.wp-block-heading,
.entry-content h5,
.entry-content h5.wp-block-heading,
.entry-content h6,
.entry-content h6.wp-block-heading {
  margin-top: 28px;
  margin-bottom: 14px;
}
.entry-content ul,
.entry-content ol {
  margin-top: 16px;
  margin-bottom: 28px;
}
.entry-content ul li,
.entry-content ol li {
  margin-bottom: 10px;
}

/*----------------------
## Blockquote
------------------------*/
blockquote.wp-block-quote,
blockquote {
  background-color: var(--thm-color);
  font-size: 20px;
  font-style: italic;
  line-height: 28px;
  color: var(--color-white);
  padding: 23px 32px;
  margin: 30px 0;
  border-radius: 15px;
  border: 0;
  position: relative;
  font-weight: 500;
  font-family: var(--font-heading);
  box-shadow: var(--main-shadow-light);
}
blockquote.wp-block-quote.has-text-color.has-light-gray-color,
blockquote.has-text-color.has-light-gray-color {
  color: var(--color-white);
}
blockquote.wp-block-quote.is-large, blockquote.wp-block-quote.is-style-large, blockquote.wp-block-quote.is-large:not(.is-style-plain), blockquote.wp-block-quote.is-style-large:not(.is-style-plain),
blockquote.is-large,
blockquote.is-style-large,
blockquote.is-large:not(.is-style-plain),
blockquote.is-style-large:not(.is-style-plain) {
  padding: 35px 25px;
}
blockquote.wp-block-quote.is-large:not(.is-style-plain) cite, blockquote.wp-block-quote.is-style-large:not(.is-style-plain) cite,
blockquote.is-large:not(.is-style-plain) cite,
blockquote.is-style-large:not(.is-style-plain) cite {
  text-align: left !important;
}
blockquote.wp-block-quote.has-text-align-right,
blockquote.has-text-align-right {
  padding: 30px;
}
blockquote.wp-block-quote.has-text-align-right::before,
blockquote.has-text-align-right::before {
  right: auto;
  left: 20px;
}
blockquote.wp-block-quote:before,
blockquote:before {
  position: absolute;
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-size: 90px;
  font-weight: 700;
  opacity: 0.1;
  right: 20px;
  color: var(--color-white);
  bottom: 30px;
}
blockquote.wp-block-quote cite,
blockquote.wp-block-quote .wp-block-quote__citation,
blockquote.wp-block-quote footer,
blockquote cite,
blockquote .wp-block-quote__citation,
blockquote footer {
  color: var(--color-white);
  font-weight: 500;
  font-style: italic;
  font-size: 18px;
}

.wp-block-columns.alignwide blockquote.wp-block-quote {
  margin-top: 8px;
}

/*----------------------
# Pingback and Trackback
-----------------------*/
li.pingback,
li.trackback {
  border: 2px solid var(--color-border);
  padding: 10px;
  margin-bottom: 20px;
}

/*----------------------
# Nested Lists
-----------------------*/
ul ol li {
  padding-left: 0 !important;
}
ul ol li:before {
  display: none;
}
ul ol li ul li:before {
  display: block;
}

/*----------------------
# Images in Pages
-----------------------*/
.page p img {
  margin-bottom: 30px;
}

span.edit-link {
  display: none;
}

/*===================================
  Global Widget Styles
====================================*/
.widget {
  /** Widget Blocks */
}
.widget.widget_block input::-moz-placeholder {
  font-weight: 500;
}
.widget.widget_block input::placeholder {
  font-weight: 500;
}
.widget.widget_search button[type=submit].has-icon,
.widget .wp-block-search button[type=submit].has-icon, .widget.woocommerce.widget_product_search button[type=submit].has-icon {
  padding: 16px;
  height: 60px;
  width: 66px;
  top: 0;
  margin-top: 0;
  right: 0;
  display: inline-block;
  background-color: var(--thm-color);
  color: var(--color-white);
}
.widget.widget_search button[type=submit].has-icon:hover,
.widget .wp-block-search button[type=submit].has-icon:hover, .widget.woocommerce.widget_product_search button[type=submit].has-icon:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.widget.widget_search .search-button button.search-submit,
.widget.widget_search .woocommerce-product-search button,
.widget .wp-block-search .search-button button.search-submit,
.widget .wp-block-search .woocommerce-product-search button, .widget.woocommerce.widget_product_search .search-button button.search-submit,
.widget.woocommerce.widget_product_search .woocommerce-product-search button {
  position: absolute;
  right: 0;
  padding: 13.5px 20px;
  color: var(--color-white);
  background-color: var(--thm-color);
}
.widget.widget_search .search-button button.search-submit:hover,
.widget.widget_search .woocommerce-product-search button:hover,
.widget .wp-block-search .search-button button.search-submit:hover,
.widget .wp-block-search .woocommerce-product-search button:hover, .widget.woocommerce.widget_product_search .search-button button.search-submit:hover,
.widget.woocommerce.widget_product_search .woocommerce-product-search button:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.widget.widget_search .woocommerce-product-search,
.widget .wp-block-search .woocommerce-product-search, .widget.woocommerce.widget_product_search .woocommerce-product-search {
  position: relative;
}
.widget.widget_search .woocommerce-product-search button,
.widget .wp-block-search .woocommerce-product-search button, .widget.woocommerce.widget_product_search .woocommerce-product-search button {
  padding: 22px 20px;
}
.widget.widget_search input,
.widget.widget_search input.search-field,
.widget .wp-block-search input,
.widget .wp-block-search input.search-field, .widget.woocommerce.widget_product_search input,
.widget.woocommerce.widget_product_search input.search-field {
  max-width: 100%;
  width: 100%;
  min-height: 60px;
  height: 100%;
  border: 1px solid var(--color-border);
  margin-bottom: 0;
  background-color: var(--color-white);
  padding: 0 15px;
}
.widget.widget_product_categories .select2-container--default .select2-selection--single {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  max-height: 50px;
  clear: both;
  height: 50px;
  padding: 13px 10px;
}
.widget.widget_product_categories .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 48px;
  right: 5px;
  width: 20px;
}
.widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.widget select {
  max-width: 100%;
  border: 1px solid var(--color-border);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 11px 15px;
  border-radius: 5px;
  color: var(--color-body);
  background-color: var(--color-white);
  position: relative;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' height='10px' width='15px'%3E%3Ctext x='0' y='10' fill='gray'%3E%E2%96%BE%3C/text%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 5px center;
  background-clip: border-box;
  -moz-background-clip: border-box;
  -webkit-background-clip: border-box;
}
.widget .post-count-number {
  font-weight: 500;
  position: absolute;
  right: 0;
  pointer-events: none;
}
.widget.widget_recent_comments li a {
  display: inline;
}
.widget.widget_recent_comments li .wp-block-latest-comments__comment-meta time {
  font-weight: 500;
  font-size: 16px;
  color: var(--thm-color);
  margin-top: 5px;
}
.widget.widget_rss ul li {
  border-top: 0;
  padding-bottom: 15px;
}
.widget.widget_rss ul li a {
  font-size: 18px;
  padding: 0;
  display: block;
  line-height: 26px;
  margin-bottom: 5px;
  font-weight: 600;
}
.widget.widget_rss ul li .rss-date,
.widget.widget_rss ul li .wp-block-rss__item-publish-date,
.widget.widget_rss ul li .wp-block-rss__item-author {
  display: block;
  margin: 10px 0;
  color: var(--thm-color);
  font-size: 97%;
  position: relative;
}
.widget.widget_rss ul li .rss-date:after,
.widget.widget_rss ul li .wp-block-rss__item-publish-date:after {
  content: "\f073";
  float: left;
  font-family: "Font Awesome 6 Free";
  font-size: 92%;
  margin-right: 6px;
  font-weight: 700;
}
.widget.widget_rss ul li .wp-block-rss__item-author:after {
  content: "\f007";
  float: left;
  font-family: "Font Awesome 6 Free";
  font-size: 92%;
  margin-right: 6px;
  font-weight: 700;
}
.widget.widget_rss ul li .rssSummary {
  font-size: 96%;
}
.widget.widget_rss ul li cite {
  margin-top: 10px;
  display: block;
  font-weight: 500;
  color: var(--color-secondary);
  position: relative;
  padding-left: 30px;
}
.widget.widget_rss ul li cite:after {
  content: "";
  width: 20px;
  height: 2px;
  position: absolute;
  left: 0;
  background: var(--color-secondary);
  top: 0;
  margin: auto;
  bottom: 0;
}
.widget.widget_text img {
  margin: 15px 0;
  border-radius: 15px;
}
.widget.widget_tag_cloud a,
.widget .wp-block-tag-cloud a, .widget.widget_product_tag_cloud a {
  display: inline-block;
  margin-right: 2px;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 10px;
  color: var(--color-body);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.widget.widget_tag_cloud a:hover,
.widget .wp-block-tag-cloud a:hover, .widget.widget_product_tag_cloud a:hover {
  color: var(--color-white);
  background-color: var(--thm-color);
  border-color: transparent;
}
.widget.widget_product_categories ul li,
.widget .sidebar-widget-area .widget_product_categories ul li {
  position: relative;
}
.widget.widget_product_categories ul li .count,
.widget .sidebar-widget-area .widget_product_categories ul li .count {
  position: absolute;
  right: 0;
}
.widget.widget_block .wp-block-latest-comments:last-child {
  margin-bottom: 0;
}
.widget.widget_block .wp-block-latest-comments__comment {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-border);
}
.widget.widget_block .wp-block-latest-comments__comment:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.widget.widget_block .wp-block-latest-comments__comment-meta time {
  color: var(--thm-color);
  margin-top: 5px;
}
.widget.widget_block .wp-block-latest-comments__comment-meta__comment-author a {
  color: var(--thm-color);
}
.widget.widget_block .wp-block-latest-comments__comment-meta__comment-author a:hover {
  color: var(--color-secondary);
}
.widget.widget_block .wp-block-latest-comments__comment-excerpt {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-secondary);
  margin: 0;
}
.widget.widget_block .wp-block-latest-comments__comment-excerpt p {
  margin: 0.36em 0 0.4em;
}
.widget.widget_block .wp-block-latest-posts__list li {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.widget.widget_block .wp-block-latest-posts__list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.widget.widget_block .wp-block-latest-posts__featured-image {
  margin-bottom: 10px;
}
.widget.widget_block .wp-block-latest-posts__post-title {
  margin-bottom: 10px;
}
.widget.widget_block .wp-block-latest-posts__post-author, .widget.widget_block .wp-block-latest-posts__post-date {
  color: var(--thm-color);
}
.widget.widget_block .wp-block-latest-posts__post-excerpt {
  margin-bottom: 0;
}
.widget.widget_block .wp-block-latest-posts__read-more {
  width: auto;
}
.widget.widget_block .wp-block-rss__item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.widget.widget_block .wp-block-rss__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.widget.widget_block .wp-block-rss__item-title {
  margin-bottom: 10px;
}
.widget.widget_block .wp-block-rss__item-title a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-secondary);
}
.widget.widget_block .wp-block-rss__item-title a:hover {
  color: var(--thm-color);
}
.widget.widget_block .wp-block-rss__item-publish-date {
  color: var(--thm-color);
}
.widget.widget_block .wp-block-rss__item-author {
  color: var(--thm-color);
  margin-bottom: 8px;
}

/* Other Widget Styles */
.wp-block-calendar table caption,
.calendar_wrap table caption {
  color: var(--color-white);
}
.wp-block-calendar table .wp-calendar-nav .pad,
.calendar_wrap table .wp-calendar-nav .pad {
  display: none;
}
.wp-block-calendar table caption,
.wp-block-calendar table .calendar_wrap caption,
.calendar_wrap table caption,
.calendar_wrap table .calendar_wrap caption {
  caption-side: top;
  text-align: center;
  color: var(--color-white);
  background-color: var(--thm-color);
}
.wp-block-calendar table th,
.calendar_wrap table th {
  font-size: 14px;
  padding: 5px 5px;
  border: none;
  text-align: center;
  border-right: 1px solid var(--color-white);
  color: var(--font-body);
  font-weight: 500;
  background-color: transparent;
}
.wp-block-calendar table th:first-child,
.calendar_wrap table th:first-child {
  border-left: 1px solid var(--color-border);
}
.wp-block-calendar table th:last-child,
.calendar_wrap table th:last-child {
  border-right: 1px solid var(--color-border);
}
.wp-block-calendar table td,
.calendar_wrap table td {
  font-size: 14px;
  padding: 5px 5px;
  color: var(--color-secondary);
  border: 1px solid var(--color-border);
  text-align: center;
  background-color: transparent;
  transition: all ease 0.4s;
}
.wp-block-calendar table td#today,
.calendar_wrap table td#today {
  color: var(--color-white);
  background-color: var(--thm-color);
  border-color: var(--color-border);
}
.wp-block-calendar table td a,
.calendar_wrap table td a {
  color: var(--color-white);
  background-color: var(--thm-color);
  display: block;
}
.wp-block-calendar table thead,
.wp-block-calendar table .calendar_wrap thead,
.calendar_wrap table thead,
.calendar_wrap table .calendar_wrap thead {
  background-color: var(--color-white);
}
.wp-block-calendar table .wp-calendar-table,
.wp-block-calendar table .calendar_wrap .wp-calendar-table,
.calendar_wrap table .wp-calendar-table,
.calendar_wrap table .calendar_wrap .wp-calendar-table {
  margin-bottom: 0;
}
.wp-block-calendar,
.wp-block-calendar .calendar_wrap,
.calendar_wrap,
.calendar_wrap .calendar_wrap {
  position: relative;
  background-color: var(--color-white);
  padding-bottom: 0;
  border: none;
  margin-bottom: 30px;
}
.wp-block-calendar nav.wp-calendar-nav,
.wp-block-calendar .calendar_wrap nav.wp-calendar-nav,
.calendar_wrap nav.wp-calendar-nav,
.calendar_wrap .calendar_wrap nav.wp-calendar-nav {
  overflow: hidden;
  position: absolute;
  width: 100%;
  top: 0;
}
.wp-block-calendar span[class*=wp-calendar-nav],
.wp-block-calendar .calendar_wrap span[class*=wp-calendar-nav],
.calendar_wrap span[class*=wp-calendar-nav],
.calendar_wrap .calendar_wrap span[class*=wp-calendar-nav] {
  position: absolute;
  top: 9px;
  left: 20px;
  font-size: 14px;
  color: var(--color-white);
  font-weight: 400;
  z-index: 1;
  line-height: 1.7;
}
.wp-block-calendar span[class*=wp-calendar-nav] a,
.wp-block-calendar .calendar_wrap span[class*=wp-calendar-nav] a,
.calendar_wrap span[class*=wp-calendar-nav] a,
.calendar_wrap .calendar_wrap span[class*=wp-calendar-nav] a {
  color: inherit;
}
.wp-block-calendar span.wp-calendar-nav-next,
.wp-block-calendar .calendar_wrap span.wp-calendar-nav-next,
.calendar_wrap span.wp-calendar-nav-next,
.calendar_wrap .calendar_wrap span.wp-calendar-nav-next {
  left: auto;
  right: 20px;
}

/* Other Styles */
button.wp-block-search__button.wp-element-button {
  padding: 19px;
  position: absolute;
  right: 0;
  top: 0;
  background-color: var(--thm-color);
  color: var(--color-white);
  border-radius: 0;
}
button.wp-block-search__button.wp-element-button.has-icon {
  padding: 16px 20px;
}
button.wp-block-search__button.wp-element-button:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.wp-block-search .wp-block-search__inside-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  border: none;
  margin: 0;
  padding: 0;
}

.format-chat .entry-content p {
  padding: 15px;
  margin-right: 20px;
  background: var(--color-border);
  border-radius: 5px;
}
.format-chat .entry-content p:nth-child(2n) {
  margin-right: 0;
  margin-left: 24px;
  text-align: right;
}

.post-details-wrapper .post-single .wp-block-archives-list,
.post-details-wrapper .post-single .wp-block-archives,
.post-details-wrapper .post-single .wp-block-page-list {
  list-style: none;
}
.post-details-wrapper .post-single .wp-block-archives-list li,
.post-details-wrapper .post-single .wp-block-archives li,
.post-details-wrapper .post-single .wp-block-page-list li {
  margin: 15px 0;
}
.post-details-wrapper .post-single .wp-block-archives-list li ul,
.post-details-wrapper .post-single .wp-block-archives li ul,
.post-details-wrapper .post-single .wp-block-page-list li ul {
  list-style: none;
}
.post-details-wrapper .post-single .wp-block-archives-list li a,
.post-details-wrapper .post-single .wp-block-archives li a,
.post-details-wrapper .post-single .wp-block-page-list li a {
  display: block;
  color: var(--color-body);
  border: 1px solid var(--color-border);
  padding: 14px 25px;
  line-height: normal;
}
.post-details-wrapper .post-single .wp-block-archives-list li a:hover,
.post-details-wrapper .post-single .wp-block-archives li a:hover,
.post-details-wrapper .post-single .wp-block-page-list li a:hover {
  background-color: var(--thm-color);
  color: var(--color-white);
}
.post-details-wrapper .post-single .wp-block-archives-list li:first-of-type,
.post-details-wrapper .post-single .wp-block-archives li:first-of-type,
.post-details-wrapper .post-single .wp-block-page-list li:first-of-type {
  padding-top: 10px;
  border-color: transparent;
  margin-top: 5px;
}
.post-details-wrapper .post-single .wp-block-archives-list:last-child,
.post-details-wrapper .post-single .wp-block-archives:last-child,
.post-details-wrapper .post-single .wp-block-page-list:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.post-details-wrapper .post-single .wp-block-calendar table td,
.post-details-wrapper .post-single .calendar_wrap table td {
  padding: 20px 10px;
}
.post-details-wrapper .post-single .wp-block-search {
  overflow: hidden;
}
.post-details-wrapper .post-single .wp-block-search__input {
  height: 58px;
  border-color: var(--color-border);
  background-color: var(--color-white);
}
.post-details-wrapper .post-single .wp-block-search__button {
  padding: 18px 20px;
}
.post-details-wrapper .post-single .wp-block-search__label {
  font-size: 25px;
  margin-bottom: 13px;
  font-weight: 500;
  color: var(--color-secondary);
}
.post-details-wrapper .post-single .wp-block-tag-cloud a {
  display: inline-block;
  margin-right: 2px;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 10px;
  color: var(--color-body);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 14px !important;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.post-details-wrapper .post-single .wp-block-tag-cloud a:hover {
  color: var(--color-white);
  background-color: var(--thm-color);
  border-color: transparent;
}
.post-details-wrapper .post-single .wp-block-latest-comments__comment-date {
  font-size: 15px;
  color: var(--thm-color);
}
.post-details-wrapper .post-single .has-small-font-size {
  line-height: 1.4;
}
.post-details-wrapper .post-single ul.wp-block-archives-list.wp-block-archives {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.post-details-wrapper .post-single .entry-content .wp-block-latest-comments__comment img,
.post-details-wrapper .post-single .entry-content .wp-block-media-text__media img {
  margin-top: 0;
}
.post-details-wrapper .post-single .entry-content .wp-block-archives a,
.post-details-wrapper .post-single .entry-content .wp-block-latest-comments__comment-link,
.post-details-wrapper .post-single .entry-content .wp-block-latest-comments__comment-author,
.post-details-wrapper .post-single .entry-content .wp-block-latest-posts__list a,
.post-details-wrapper .post-single .entry-content .wp-block-rss__item-title a,
.post-details-wrapper .post-single .entry-content .wp-block-tag-cloud a {
  font-weight: 500;
}
.post-details-wrapper .post-single .entry-content ul li a {
  font-weight: 500;
}
.post-details-wrapper .post-single .entry-content .wp-block-button__link,
.post-details-wrapper .post-single .entry-content .wp-block-file .wp-block-file__button,
.post-details-wrapper .post-single .entry-content .is-style-outline .wp-block-button__link {
  font-weight: 500;
  margin-bottom: 15px;
  color: var(--color-white);
  font-size: 16px;
  background-color: var(--thm-color);
}
.post-details-wrapper .post-single .entry-content .wp-block-button__link:hover,
.post-details-wrapper .post-single .entry-content .wp-block-file .wp-block-file__button:hover,
.post-details-wrapper .post-single .entry-content .is-style-outline .wp-block-button__link:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
  border-color: transparent;
}
.post-details-wrapper .post-single .entry-content .is-style-outline .wp-block-button__link {
  background-color: transparent;
  border-color: var(--thm-color);
  color: var(--thm-color);
}
.post-details-wrapper .post-single .entry-content .wp-block-cover p:not(.has-text-color) {
  color: var(--color-white);
}
.post-details-wrapper .post-single ul.wp-block-categories-list.wp-block-categories {
  list-style: none;
  padding: 0;
}
.post-details-wrapper .post-single ul.wp-block-categories-list.wp-block-categories li {
  margin-bottom: 15px;
}
.post-details-wrapper .post-single ul.wp-block-categories-list.wp-block-categories li a {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  padding: 14px 25px;
  line-height: normal;
  display: block;
}
.post-details-wrapper .post-single ul.wp-block-categories-list.wp-block-categories li a:hover {
  background-color: var(--thm-color);
  color: var(--color-white);
}
.post-details-wrapper .post-single ul.wp-block-latest-posts li {
  margin: 15px 0;
}
.post-details-wrapper .post-single .wp-block-rss li:not(:last-child) {
  margin-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 16px;
}
.post-details-wrapper .post-single ul.wp-block-archives-list.extraclass.wp-block-archives li {
  position: relative;
  margin-bottom: 15px;
}
.post-details-wrapper .post-single ul.wp-block-archives-list.extraclass.wp-block-archives li a {
  display: block;
}
.post-details-wrapper .post-single ul.wp-block-archives-list.extraclass.wp-block-archives li:hover span.post-count-number {
  color: var(--color-white);
}
.post-details-wrapper .post-single ul.wp-block-archives-list.extraclass.wp-block-archives li span.post-count-number {
  z-index: 1;
  position: absolute;
  right: 25px;
  color: var(--thm-color);
  top: 0;
  line-height: 52px;
  font-size: 16px;
  letter-spacing: 0.5px;
  transform: translate(0, 0%);
}
.post-details-wrapper .post-single ul.wp-block-archives-list.extraclass.wp-block-archives li:first-child span.post-count-number {
  top: 10px;
}
.post-details-wrapper .post-single nav.wp-block-navigation {
  margin: 20px 0;
}
.post-details-wrapper .post-single nav.wp-block-navigation ul {
  margin: 0;
  padding: 0;
}
.post-details-wrapper .post-single nav.wp-block-navigation ul li {
  margin: 0;
  padding: 0;
}
.post-details-wrapper .post-single nav.wp-block-navigation ul li a {
  padding-right: 10px;
  padding-left: 0;
  border: none;
}
.post-details-wrapper .post-single nav.wp-block-navigation ul li a:hover {
  color: var(--thm-color);
  background-color: transparent;
}
.post-details-wrapper .post-single nav.wp-block-navigation ul li:first-of-type {
  margin-top: 0;
  padding-top: 0;
}
.post-details-wrapper .post-single nav.wp-block-navigation ul li:last-of-type {
  margin-bottom: 0;
}
.post-details-wrapper .post-single nav.wp-block-navigation ul li ul li a {
  padding: 10px 15px;
}
.post-details-wrapper .wp-block-query .wp-block-post-template li {
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.post-details-wrapper .wp-block-query .wp-block-post-template li h2 {
  font-size: 30px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--color-secondary);
}
.post-details-wrapper h2.wp-block-post-title,
.post-details-wrapper h2.wp-block-comments-title {
  font-size: 34px;
  line-height: 30px;
  font-weight: 500;
  color: var(--color-secondary);
}
.post-details-wrapper h4.comments-heading {
  font-size: 24px;
  line-height: 30px;
  font-weight: 500;
  color: var(--color-secondary);
}
.post-details-wrapper .wp-block-table.is-style-stripes {
  border: 1px solid var(--color-border);
}
.post-details-wrapper figure.wp-block-table.is-style-stripes table {
  margin: 0;
}
.post-details-wrapper ul.wp-block-latest-posts__list.wp-block-latest-posts {
  padding-left: 0;
}
.post-details-wrapper ol.wp-block-latest-comments {
  padding-left: 0;
}
.post-details-wrapper .wp-block-categories.wp-block-categories-dropdown {
  margin-bottom: 40px;
}
.post-details-wrapper .wp-block-archives.wp-block-archives-list,
.post-details-wrapper .wp-block-archives.wp-block-archives-dropdown,
.post-details-wrapper .wp-block-archives.wp-block-archives-dropdown label,
.post-details-wrapper .wp-block-categories.wp-block-categories-list,
.post-details-wrapper .wp-block-latest-comments,
.post-details-wrapper .wp-block-latest-posts {
  margin-bottom: 20px;
}
.post-details-wrapper .post-page-numbers {
  margin-right: 10px;
}
.post-details-wrapper .wp-block-latest-comments ul li {
  margin-bottom: 20px;
}
.post-details-wrapper strong,
.post-details-wrapper b,
.post-details-wrapper figcaption {
  font-weight: 500;
  color: var(--color-secondary);
}
.post-details-wrapper .wp-block-search__button.has-icon.wp-element-button {
  padding: 15px 22px;
}

p.wp-block-tag-cloud {
  margin-bottom: 0;
}

.page-links .post-page-numbers:first-child {
  margin-left: 15px;
}

.wc-block-product-categories__button {
  padding: 0 19px;
  position: relative;
  max-height: 52px;
  border-radius: 5px;
}

/*------------------- 1.3. Dark Mode -------------------*/
/*=================================
   Dark Mode Styles
==================================*/
[data-theme=dark] .header-area .header-logo .light-mode-logo {
  display: none;
  opacity: 0;
  visibility: hidden;
}
[data-theme=dark] .header-area .header-logo .light-mode-logo.no-dark-mode-logo {
  display: block;
  opacity: 1;
  visibility: visible;
}
[data-theme=dark] .header-area .header-logo .dark-mode-logo {
  display: block;
  opacity: 1;
  visibility: visible;
}

[data-theme=light] .header-area .header-logo .light-mode-logo {
  display: block;
  opacity: 1;
  visibility: visible;
}
[data-theme=light] .header-area .header-logo .dark-mode-logo {
  display: none;
  opacity: 0;
  visibility: hidden;
}

[data-theme=dark] .themepul-company-about .light-mode-logo {
  display: none;
  opacity: 0;
  visibility: hidden;
}
[data-theme=dark] .themepul-company-about .light-mode-logo.no-dark-mode-logo {
  display: block;
  opacity: 1;
  visibility: visible;
}
[data-theme=dark] .themepul-company-about .dark-mode-logo {
  display: block;
  opacity: 1;
  visibility: visible;
}
[data-theme=dark] .tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-menu-toggle {
  color: var(--color-secondary);
}
[data-theme=dark] .tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul .tp-item-has-children > a .tp-mean-expand {
  color: var(--color-secondary);
}

[data-theme=light] .themepul-company-about .light-mode-logo {
  display: block;
  opacity: 1;
  visibility: visible;
}
[data-theme=light] .themepul-company-about .dark-mode-logo {
  display: none;
  opacity: 0;
  visibility: hidden;
}

/* Dark mode general styles */
[data-theme=dark] {
  /* Comment Icon */
  /* Other Widget Styles */
}
[data-theme=dark] body {
  background: var(--color-bg);
  color: var(--color-body);
}
[data-theme=dark] .header-area .tp-header .menu-area .main-menu ul ul.sub-menu {
  background: var(--color-dark);
}
[data-theme=dark] .header-area .tp-header .menu-area .main-menu ul ul.sub-menu li {
  border-color: rgba(231, 231, 231, 0.9098039216);
}
[data-theme=dark] .header-area .tp-header .menu-area .main-menu ul ul.sub-menu li a {
  color: var(--color-white);
}
[data-theme=dark] .header-area .tp-header .menu-area .main-menu ul ul.sub-menu li a:hover {
  background: var(--color-bg);
  color: var(--color-dark);
}
[data-theme=dark] .header-area .tp-header .menu-area .header-button-wrapper .header-button .theme-button:hover {
  background-color: var(--thm-color);
  color: var(--color-dark);
}
[data-theme=dark] .global-blog-style .post-thumbnail-wrapper .post-read-and-date {
  background-color: var(--color-dark);
  color: var(--color-white);
}
[data-theme=dark] .global-blog-style .post-thumbnail-wrapper .post-read-and-date a {
  color: var(--color-white);
}
[data-theme=dark] .global-blog-style .post-thumbnail-wrapper .post-read-and-date a:hover {
  color: var(--thm-color);
}
[data-theme=dark] .container,
[data-theme=dark] .container-fluid {
  background: transparent;
}
[data-theme=dark] .blog-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-comment-button .post-comment-button-icon .florira-icon-comment {
  background: url(../image/comment-icon-white.svg) no-repeat center center;
  background-size: contain;
}
[data-theme=dark] .theme-button,
[data-theme=dark] input[type=submit],
[data-theme=dark] button[type=submit] {
  color: var(--color-dark);
  background: var(--thm-color);
}
[data-theme=dark] .theme-button:hover,
[data-theme=dark] input[type=submit]:hover,
[data-theme=dark] button[type=submit]:hover {
  color: var(--color-white);
  background: var(--color-secondary);
}
[data-theme=dark] .sidebar-widget-area .widget .floriracore-widget-post-thum .recent-post-title {
  color: var(--color-secondary);
}
[data-theme=dark] .sidebar-widget-area .widget .floriracore-widget-post-thum .recent-post-title:hover {
  color: var(--thm-color);
}
[data-theme=dark] .sidebar-widget-area .widget .widget-title {
  color: var(--color-secondary);
}
[data-theme=dark] .sidebar-widget-area .widget .widget-title a {
  color: var(--color-secondary);
}
[data-theme=dark] .sidebar-widget-area .widget ul li a {
  position: relative;
}
[data-theme=dark] .sidebar-widget-area .widget ul li a:hover .post-count-number {
  color: var(--color-dark);
}
[data-theme=dark] .sidebar-widget-area .widget.widget_archive li a,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-archives li a, [data-theme=dark] .sidebar-widget-area .widget.widget_categories li a,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-categories li a, [data-theme=dark] .sidebar-widget-area .widget.widget_pages li a, [data-theme=dark] .sidebar-widget-area .widget.widget_meta li a, [data-theme=dark] .sidebar-widget-area .widget.widget_nav_menu li a,
[data-theme=dark] .sidebar-widget-area .widget .widget_block .wp-block-page-list li a,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-page-list li a,
[data-theme=dark] .sidebar-widget-area .widget .post-single ul.wp-block-archives-list.extraclass.wp-block-archives li a {
  display: block;
  color: var(--color-secondary);
  box-shadow: var(--main-inset-shadow-light);
}
[data-theme=dark] .sidebar-widget-area .widget.widget_archive li a:hover,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-archives li a:hover, [data-theme=dark] .sidebar-widget-area .widget.widget_categories li a:hover,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-categories li a:hover, [data-theme=dark] .sidebar-widget-area .widget.widget_pages li a:hover, [data-theme=dark] .sidebar-widget-area .widget.widget_meta li a:hover, [data-theme=dark] .sidebar-widget-area .widget.widget_nav_menu li a:hover,
[data-theme=dark] .sidebar-widget-area .widget .widget_block .wp-block-page-list li a:hover,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-page-list li a:hover,
[data-theme=dark] .sidebar-widget-area .widget .post-single ul.wp-block-archives-list.extraclass.wp-block-archives li a:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
  box-shadow: var(--main-shadow-light);
}
[data-theme=dark] .sidebar-widget-area .widget.widget_recent_comments ul li {
  border-bottom: 1px solid var(--color-border);
}
[data-theme=dark] .sidebar-widget-area .widget.widget_recent_comments ul li .comment-author-link a {
  color: var(--thm-color);
}
[data-theme=dark] .sidebar-widget-area .widget.widget_recent_comments ul li .comment-author-link a:hover {
  color: var(--color-secondary);
}
[data-theme=dark] .sidebar-widget-area .widget.widget_search button[type=submit].has-icon,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-search button[type=submit].has-icon, [data-theme=dark] .sidebar-widget-area .widget.woocommerce.widget_product_search button[type=submit].has-icon {
  color: var(--color-secondary);
}
[data-theme=dark] .sidebar-widget-area .widget.widget_search .search-button button.search-submit,
[data-theme=dark] .sidebar-widget-area .widget.widget_search .woocommerce-product-search button,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-search .search-button button.search-submit,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-search .woocommerce-product-search button, [data-theme=dark] .sidebar-widget-area .widget.woocommerce.widget_product_search .search-button button.search-submit,
[data-theme=dark] .sidebar-widget-area .widget.woocommerce.widget_product_search .woocommerce-product-search button {
  color: var(--color-secondary);
}
[data-theme=dark] .sidebar-widget-area .widget.widget_search .search-button button.search-submit:hover,
[data-theme=dark] .sidebar-widget-area .widget.widget_search .woocommerce-product-search button:hover,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-search .search-button button.search-submit:hover,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-search .woocommerce-product-search button:hover, [data-theme=dark] .sidebar-widget-area .widget.woocommerce.widget_product_search .search-button button.search-submit:hover,
[data-theme=dark] .sidebar-widget-area .widget.woocommerce.widget_product_search .woocommerce-product-search button:hover {
  color: var(--color-white);
}
[data-theme=dark] .sidebar-widget-area .widget.widget_search input,
[data-theme=dark] .sidebar-widget-area .widget.widget_search input.search-field,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-search input,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-search input.search-field, [data-theme=dark] .sidebar-widget-area .widget.woocommerce.widget_product_search input,
[data-theme=dark] .sidebar-widget-area .widget.woocommerce.widget_product_search input.search-field {
  background-color: var(--color-bg);
}
[data-theme=dark] .sidebar-widget-area .widget.widget_tag_cloud a,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-tag-cloud a, [data-theme=dark] .sidebar-widget-area .widget.widget_product_tag_cloud a {
  background-color: var(--color-bg);
}
[data-theme=dark] .sidebar-widget-area .widget.widget_tag_cloud a:hover,
[data-theme=dark] .sidebar-widget-area .widget .wp-block-tag-cloud a:hover, [data-theme=dark] .sidebar-widget-area .widget.widget_product_tag_cloud a:hover {
  color: var(--color-secondary);
  background-color: var(--thm-color);
}
[data-theme=dark] .widget select {
  border: 1px solid var(--color-border);
  color: var(--color-body);
  background-color: var(--color-bg);
}
[data-theme=dark] .wp-block-calendar table caption,
[data-theme=dark] .calendar_wrap table caption {
  color: var(--color-secondary);
}
[data-theme=dark] .wp-block-calendar table .wp-calendar-nav .pad,
[data-theme=dark] .calendar_wrap table .wp-calendar-nav .pad {
  display: none;
}
[data-theme=dark] .wp-block-calendar table caption,
[data-theme=dark] .wp-block-calendar table .calendar_wrap caption,
[data-theme=dark] .calendar_wrap table caption,
[data-theme=dark] .calendar_wrap table .calendar_wrap caption {
  color: var(--color-secondary);
}
[data-theme=dark] .wp-block-calendar table th,
[data-theme=dark] .calendar_wrap table th {
  border-right: 1px solid var(--color-border);
  color: var(--color-secondary);
}
[data-theme=dark] .wp-block-calendar table td,
[data-theme=dark] .calendar_wrap table td {
  background-color: var(--color-bg);
}
[data-theme=dark] .wp-block-calendar table td#today,
[data-theme=dark] .calendar_wrap table td#today {
  color: var(--color-dark);
}
[data-theme=dark] .wp-block-calendar table td a,
[data-theme=dark] .calendar_wrap table td a {
  color: var(--color-dark);
}
[data-theme=dark] .wp-block-calendar table thead,
[data-theme=dark] .wp-block-calendar table .calendar_wrap thead,
[data-theme=dark] .calendar_wrap table thead,
[data-theme=dark] .calendar_wrap table .calendar_wrap thead {
  background-color: var(--color-bg);
}
[data-theme=dark] .wp-block-calendar table .wp-calendar-table,
[data-theme=dark] .wp-block-calendar table .calendar_wrap .wp-calendar-table,
[data-theme=dark] .calendar_wrap table .wp-calendar-table,
[data-theme=dark] .calendar_wrap table .calendar_wrap .wp-calendar-table {
  margin-bottom: 0;
}
[data-theme=dark] .wp-block-calendar span[class*=wp-calendar-nav],
[data-theme=dark] .wp-block-calendar .calendar_wrap span[class*=wp-calendar-nav],
[data-theme=dark] .calendar_wrap span[class*=wp-calendar-nav],
[data-theme=dark] .calendar_wrap .calendar_wrap span[class*=wp-calendar-nav] {
  color: var(--color-dark);
}
[data-theme=dark] .wp-block-calendar span[class*=wp-calendar-nav] a,
[data-theme=dark] .wp-block-calendar .calendar_wrap span[class*=wp-calendar-nav] a,
[data-theme=dark] .calendar_wrap span[class*=wp-calendar-nav] a,
[data-theme=dark] .calendar_wrap .calendar_wrap span[class*=wp-calendar-nav] a {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .widget.widget_search button[type=submit].has-icon,
[data-theme=dark] .footer-widget-area .widget .wp-block-search button[type=submit].has-icon, [data-theme=dark] .footer-widget-area .widget.woocommerce.widget_product_search button[type=submit].has-icon {
  background-color: var(--thm-color);
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .widget.widget_search button[type=submit].has-icon:hover,
[data-theme=dark] .footer-widget-area .widget .wp-block-search button[type=submit].has-icon:hover, [data-theme=dark] .footer-widget-area .widget.woocommerce.widget_product_search button[type=submit].has-icon:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
[data-theme=dark] .footer-widget-area .widget.widget_search .search-button button.search-submit,
[data-theme=dark] .footer-widget-area .widget.widget_search .woocommerce-product-search button,
[data-theme=dark] .footer-widget-area .widget .wp-block-search .search-button button.search-submit,
[data-theme=dark] .footer-widget-area .widget .wp-block-search .woocommerce-product-search button, [data-theme=dark] .footer-widget-area .widget.woocommerce.widget_product_search .search-button button.search-submit,
[data-theme=dark] .footer-widget-area .widget.woocommerce.widget_product_search .woocommerce-product-search button {
  color: var(--color-secondary);
  background-color: var(--thm-color);
}
[data-theme=dark] .footer-widget-area .widget.widget_search .search-button button.search-submit:hover,
[data-theme=dark] .footer-widget-area .widget.widget_search .woocommerce-product-search button:hover,
[data-theme=dark] .footer-widget-area .widget .wp-block-search .search-button button.search-submit:hover,
[data-theme=dark] .footer-widget-area .widget .wp-block-search .woocommerce-product-search button:hover, [data-theme=dark] .footer-widget-area .widget.woocommerce.widget_product_search .search-button button.search-submit:hover,
[data-theme=dark] .footer-widget-area .widget.woocommerce.widget_product_search .woocommerce-product-search button:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
[data-theme=dark] .footer-widget-area .widget.widget_search input,
[data-theme=dark] .footer-widget-area .widget.widget_search input.search-field,
[data-theme=dark] .footer-widget-area .widget .wp-block-search input,
[data-theme=dark] .footer-widget-area .widget .wp-block-search input.search-field, [data-theme=dark] .footer-widget-area .widget.woocommerce.widget_product_search input,
[data-theme=dark] .footer-widget-area .widget.woocommerce.widget_product_search input.search-field {
  background-color: var(--color-bg);
}
[data-theme=dark] .footer-widget-area .widget.widget_tag_cloud a,
[data-theme=dark] .footer-widget-area .widget .wp-block-tag-cloud a, [data-theme=dark] .footer-widget-area .widget.widget_product_tag_cloud a {
  color: var(--color-secondary);
  background-color: var(--color-bg);
  border: 1px solid var(--color-border);
}
[data-theme=dark] .footer-widget-area .widget.widget_tag_cloud a:hover,
[data-theme=dark] .footer-widget-area .widget .wp-block-tag-cloud a:hover, [data-theme=dark] .footer-widget-area .widget.widget_product_tag_cloud a:hover {
  color: var(--color-secondary);
  background-color: var(--thm-color);
  border: 1px solid transparent;
}
[data-theme=dark] .footer-widget-area .widget .wp-block-calendar table caption,
[data-theme=dark] .footer-widget-area .widget .calendar_wrap table caption {
  background-color: var(--thm-color);
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .widget .wp-block-calendar table thead tr th,
[data-theme=dark] .footer-widget-area .widget .calendar_wrap table thead tr th {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .widget .wp-block-calendar table tbody tr td a,
[data-theme=dark] .footer-widget-area .widget .calendar_wrap table tbody tr td a {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .widget .wp-block-calendar table tbody tr td a:hover,
[data-theme=dark] .footer-widget-area .widget .calendar_wrap table tbody tr td a:hover {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .widget .wp-block-calendar .wp-calendar-nav a,
[data-theme=dark] .footer-widget-area .widget .calendar_wrap .wp-calendar-nav a {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .widget .wp-block-calendar .wp-calendar-nav a:hover,
[data-theme=dark] .footer-widget-area .widget .calendar_wrap .wp-calendar-nav a:hover {
  color: var(--color-white);
}
[data-theme=dark] .footer-widget-area .widget.widget_rss .widget-title a,
[data-theme=dark] .footer-widget-area .widget.widget_rss cite {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .widget.widget_rss .widget-title a:after,
[data-theme=dark] .footer-widget-area .widget.widget_rss cite:after {
  background-color: var(--thm-color);
}
[data-theme=dark] .footer-widget-area .widget.widget_rss li .rss-date {
  color: var(--thm-color);
}
[data-theme=dark] .footer-widget-area .widget.widget_rss li a {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .widget.widget_rss li a:hover {
  color: var(--thm-color);
}
[data-theme=dark] .footer-widget-area .widget .wp-block-rss__item-title a {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .widget .wp-block-rss__item-title a:hover {
  color: var(--thm-color);
}
[data-theme=dark] .footer-widget-area .widget .wp-block-rss__item-publish-date, [data-theme=dark] .footer-widget-area .widget .wp-block-rss__item-author {
  color: var(--thm-color);
}
[data-theme=dark] .footer-widget-area .widget .wp-block-search__button.has-icon {
  background-color: var(--thm-color) !important;
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .widget .wp-block-search__button.has-icon:hover {
  background-color: var(--color-secondary) !important;
  color: var(--color-white);
}
[data-theme=dark] .footer-widget-area .widget .search-button button.search-submit {
  border: 1px solid var(--thm-color);
}
[data-theme=dark] .footer-widget-area .widget .search-button button.search-submit:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
[data-theme=dark] .footer-widget-area .wp-block-calendar table thead tr th {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .wp-block-latest-posts__post-author, [data-theme=dark] .footer-widget-area .wp-block-latest-posts__post-date {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .wp-block-latest-posts.wp-block-latest-posts__list li a {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-widget-area .wp-block-latest-posts.wp-block-latest-posts__list li a:hover {
  color: var(--thm-color);
}
[data-theme=dark] .footer-widget-area strong,
[data-theme=dark] .footer-widget-area p {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-copyright-wrapper {
  color: var(--color-secondary);
  border-top: 1px solid var(--color-border);
}
[data-theme=dark] .footer-copyright-wrapper a {
  color: var(--color-secondary);
}
[data-theme=dark] .footer-copyright-wrapper a:hover {
  color: var(--thm-color);
}
[data-theme=dark] .post-details-wrapper .post-single ul.wp-block-categories-list.wp-block-categories li a {
  background: var(--color-bg);
}
[data-theme=dark] .post-details-wrapper .post-single ul.wp-block-categories-list.wp-block-categories li a:hover {
  background-color: var(--thm-color);
  color: var(--color-secondary);
}
[data-theme=dark] .post-details-wrapper .post-single .wp-block-archives-list li a:hover,
[data-theme=dark] .post-details-wrapper .post-single .wp-block-archives li a:hover,
[data-theme=dark] .post-details-wrapper .post-single .wp-block-page-list li a:hover {
  background-color: var(--thm-color);
  color: var(--color-secondary);
}
[data-theme=dark] .post-details-wrapper .post-single .blog-single-top-wrapper .blog-single-top-wrapper-inner .post-title {
  color: var(--color-secondary);
  border-bottom: 1px solid var(--color-border);
}
[data-theme=dark] .post-details-wrapper .post-single .blog-single-top-wrapper .blog-single-top-wrapper-inner .post-meta ul .post-date a {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
[data-theme=dark] .post-details-wrapper .post-single .blog-single-top-wrapper .blog-single-top-wrapper-inner .post-meta ul .post-date a:hover {
  background-color: var(--thm-color);
  color: var(--color-secondary);
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .has-light-green-cyan-background-color,
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .has-pale-cyan-blue-background-color {
  color: var(--color-white);
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .wp-block-button__link,
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .wp-block-file .wp-block-file__button,
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .is-style-outline .wp-block-button__link {
  color: var(--color-secondary);
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .wp-block-button__link:hover,
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .wp-block-file .wp-block-file__button:hover,
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .is-style-outline .wp-block-button__link:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
  border-color: transparent;
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .is-style-outline .wp-block-button__link {
  color: var(--thm-color);
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .wp-block-cover p:not(.has-text-color) {
  color: var(--color-secondary);
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper blockquote.wp-block-quote,
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper blockquote {
  color: var(--color-secondary);
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper blockquote.wp-block-quote cite,
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper blockquote.wp-block-quote .wp-block-quote__citation,
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper blockquote.wp-block-quote footer,
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper blockquote cite,
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper blockquote .wp-block-quote__citation,
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper blockquote footer {
  color: var(--color-secondary);
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .has-background {
  color: var(--color-white);
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper .wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
  background-color: var(--color-bg);
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper pre {
  background: #1f2124;
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper footer.post-footer .post-tags span.tag-title {
  color: var(--color-secondary);
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper footer.post-footer .post-tags a {
  background-color: var(--color-bg);
}
[data-theme=dark] .post-details-wrapper .post-single .post-content-wrapper footer.post-footer .post-tags a:hover {
  color: var(--color-secondary);
  background-color: var(--thm-color);
  border-color: transparent;
}
[data-theme=dark] .single-post-sticky-share-and-time-wrapper {
  background: var(--color-bg);
  box-shadow: var(--main-shadow-light);
}
[data-theme=dark] .single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box i {
  color: var(--color-white);
}
[data-theme=dark] .single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle svg .progress-bg {
  stroke: hsla(0, 0%, 100%, 0.02);
  stroke-linecap: round;
}
[data-theme=dark] .single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle svg .progress-fill {
  stroke: var(--thm-color);
}
[data-theme=dark] .single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle svg .progress-fill.completed {
  stroke: var(--thm-color);
}
[data-theme=dark] .single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle .reading-time-content .reading-time-text {
  color: var(--color-secondary);
}
[data-theme=dark] .single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul li a {
  color: var(--color-secondary);
  background: var(--color-bg);
}
[data-theme=dark] .single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul li a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}
[data-theme=dark] .single-post-sticky-share-and-time-wrapper .post-share-buttons button.social-more-btn {
  color: var(--color-secondary);
  background: var(--color-bg);
}
[data-theme=dark] .comments-area ol.comment-list .comment .comment-body .reply a:hover,
[data-theme=dark] .comments-area ol.comment-list .bypostauthor .comment-body .reply a:hover,
[data-theme=dark] .wp-block-comments ol.comment-list .comment .comment-body .reply a:hover,
[data-theme=dark] .wp-block-comments ol.comment-list .bypostauthor .comment-body .reply a:hover {
  color: var(--thm-color);
}
[data-theme=dark] blockquote.wp-block-quote,
[data-theme=dark] blockquote {
  color: var(--color-secondary);
}
[data-theme=dark] .blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-title a {
  color: var(--color-secondary);
}
[data-theme=dark] .blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-title a:hover {
  color: var(--thm-color);
}
[data-theme=dark] .blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-excerpt {
  color: var(--color-secondary);
}
[data-theme=dark] .blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-comment-button .post-comment-button-text {
  color: var(--color-secondary);
}
[data-theme=dark] .blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-read-more .theme-button {
  background-color: var(--thm-color);
  color: var(--color-secondary);
}
[data-theme=dark] .blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-read-more .theme-button:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
[data-theme=dark] .blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-meta ul li {
  color: var(--color-secondary);
}
[data-theme=dark] .blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-meta ul li a {
  color: var(--color-secondary);
}
[data-theme=dark] .blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-meta ul li a:hover {
  color: var(--thm-color);
}
[data-theme=dark] .themepul-post-categoyr-wrapper .themepul-post-category-list a:hover {
  color: var(--color-secondary);
}
[data-theme=dark] .themepul-section-title-wrapper__small-title {
  color: var(--color-secondary);
}
[data-theme=dark] .post-pagination ul li a:hover,
[data-theme=dark] .post-pagination ul li span.current, [data-theme=dark] .post-pagination ul li a.current,
[data-theme=dark] .wp-block-query-pagination-numbers ul li a:hover,
[data-theme=dark] .wp-block-query-pagination-numbers ul li span.current,
[data-theme=dark] .wp-block-query-pagination-numbers ul li a.current,
[data-theme=dark] .woocommerce nav.woocommerce-pagination ul li a:hover,
[data-theme=dark] .woocommerce nav.woocommerce-pagination ul li span.current,
[data-theme=dark] .woocommerce nav.woocommerce-pagination ul li a.current,
[data-theme=dark] .comments-pagination ul li a:hover,
[data-theme=dark] .comments-pagination ul li span.current,
[data-theme=dark] .comments-pagination ul li a.current, [data-theme=dark] .custom-pagination ul li a:hover,
[data-theme=dark] .custom-pagination ul li span.current, [data-theme=dark] .custom-pagination ul li a.current {
  color: var(--color-secondary);
}

/*=================================
   02. Theme Utilis
==================================*/
/*------------------- 2.1. Top TO Buttom -------------------*/
div#back-top {
  height: 50px;
  width: 50px;
  text-align: center;
  line-height: 50px;
  position: fixed;
  right: 50px;
  bottom: 30px;
  opacity: 1;
  cursor: pointer;
  z-index: 100;
  color: var(--color-white);
  font-size: 30px;
  background: var(--thm-color);
  overflow: hidden;
  visibility: visible;
  transition: 0.3s;
}
div#back-top:hover {
  background-color: var(--color-secondary);
}
div#back-top .hover-icon {
  position: absolute;
  left: 36%;
  bottom: -38px;
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  transition: 0.3s;
}
div#back-top .back-top-icon {
  transition: 0.3s;
}
div#back-top .to-top:hover .back-top-icon {
  margin-top: -39px;
}
div#back-top .to-top:hover .hover-icon {
  bottom: 0;
}

/*------------------- 2.2. Preloader -------------------*/
.theme-preloader-wrapper {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: var(--color-secondary);
  z-index: 999999999999999;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
}
.theme-preloader-wrapper .loader1,
.theme-preloader-wrapper .loader2,
.theme-preloader-wrapper .loader3,
.theme-preloader-wrapper .loader4,
.theme-preloader-wrapper .loader5,
.theme-preloader-wrapper .loader6,
.theme-preloader-wrapper .loader7,
.theme-preloader-wrapper .loader8,
.theme-preloader-wrapper .loader9,
.theme-preloader-wrapper .loader10,
.theme-preloader-wrapper .loader11 {
  position: relative;
}
.theme-preloader-wrapper .loader1 {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}
.theme-preloader-wrapper .loader1::after, .theme-preloader-wrapper .loader1::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid var(--preloader-secondary-color);
  animation: prixClipFix 2s linear infinite;
}
.theme-preloader-wrapper .loader1::after {
  inset: 8px;
  transform: rotate3d(90, 90, 0, 180deg);
  border-color: var(--preloader-primary-color);
}
.theme-preloader-wrapper .loader2 {
  width: 48px;
  height: 48px;
  border-width: 3px 2px 3px 2px;
  border-style: solid dotted solid dotted;
  border-color: var(--preloader-primary-color) rgba(255, 255, 255, 0.3) var(--preloader-secondary-color) rgba(151, 107, 93, 0.3);
  border-radius: 50%;
  animation: rotate 1s linear infinite;
}
.theme-preloader-wrapper .loader2::after, .theme-preloader-wrapper .loader2::before {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  border-bottom-color: var(--preloader-secondary-color);
  transform: translate(-10px, 19px) rotate(-35deg);
}
.theme-preloader-wrapper .loader2::after {
  border-color: var(--preloader-primary-color) var(--preloader-secondary-color) var(--preloader-secondary-color) var(--preloader-secondary-color);
  transform: translate(32px, 3px) rotate(-35deg);
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-right-color: transparent;
}
.theme-preloader-wrapper .loader3 {
  font-size: 48px;
  color: var(--preloader-primary-color);
  width: 1em;
  height: 1em;
  box-sizing: border-box;
  background-color: currentcolor;
  position: relative;
  border-radius: 50%;
  transform: rotateX(-60deg) perspective(1000px);
}
.theme-preloader-wrapper .loader3::after, .theme-preloader-wrapper .loader3::before {
  content: "";
  display: block;
  position: absolute;
  box-sizing: border-box;
  top: 0;
  left: 0;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  animation: flowerFlow 1s ease-out infinite;
}
.theme-preloader-wrapper .loader3::after {
  animation-delay: 0.4s;
}
.theme-preloader-wrapper .loader4 {
  animation: rotate2 1s infinite;
  height: 50px;
  width: 50px;
}
.theme-preloader-wrapper .loader4::after, .theme-preloader-wrapper .loader4::before {
  border-radius: 50%;
  content: "";
  display: block;
  height: 20px;
  width: 20px;
}
.theme-preloader-wrapper .loader4::before {
  animation: ball1 1s infinite;
  background-color: var(--preloader-secondary-color);
  box-shadow: 30px 0 0 var(--preloader-primary-shadow-color);
  margin-bottom: 10px;
}
.theme-preloader-wrapper .loader4::after {
  animation: ball2 1s infinite;
  background-color: var(--preloader-primary-color);
  box-shadow: 30px 0 0 var(--preloader-secondary-shadow-color);
}
.theme-preloader-wrapper .loader5 {
  width: 50px;
  height: 165px;
  position: relative;
}
.theme-preloader-wrapper .loader5::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  width: 16px;
  height: 16px;
  background: var(--preloader-primary-color);
  border-radius: 50%;
  animation: bounce 2s linear infinite;
}
.theme-preloader-wrapper .loader5::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: 48px;
  width: 48px;
  background: var(--preloader-secondary-color);
  border-radius: 4px;
  animation: rotate 2s linear infinite;
}
.theme-preloader-wrapper .loader6 {
  width: 16px;
  height: 16px;
  box-shadow: 0 30px, 0 -30px;
  border-radius: 4px;
  background: currentColor;
  margin: -50px auto 0;
  transform: translateY(30px);
  animation: animloader 2s ease infinite;
}
.theme-preloader-wrapper .loader6::before, .theme-preloader-wrapper .loader6::after {
  content: "";
  width: 16px;
  height: 16px;
  box-shadow: 0 30px, 0 -30px;
  border-radius: 4px;
  background: currentColor;
  position: absolute;
  left: 30px;
  animation: animloader 2s 0.2s ease infinite;
}
.theme-preloader-wrapper .loader6::after {
  animation-delay: 0.4s;
  left: 60px;
}
.theme-preloader-wrapper .loader7 {
  width: 8px;
  height: 40px;
  border-radius: 4px;
  margin: 20px auto;
  background: var(--preloader-secondary-color);
  animation: animloader2 0.4s 0.4s linear infinite alternate;
}
.theme-preloader-wrapper .loader7::before, .theme-preloader-wrapper .loader7::after {
  content: "";
  width: 8px;
  height: 40px;
  border-radius: 4px;
  position: absolute;
  background: var(--preloader-primary-color);
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  animation: animloader2 0.4s 0.55s linear infinite alternate;
}
.theme-preloader-wrapper .loader7::before {
  left: -20px;
  animation-delay: 0s;
}
.theme-preloader-wrapper .loader8 {
  width: 0;
  height: 4.8px;
  background: var(--preloader-primary-color);
  box-shadow: 0 0 10px var(--preloader-primary-shadow-color);
  animation: animFw 8s linear infinite;
}
.theme-preloader-wrapper .loader8::before, .theme-preloader-wrapper .loader8::after {
  content: "";
  width: 10px;
  height: 1px;
  background: var(--preloader-primary-color);
  position: absolute;
  top: 9px;
  right: -2px;
  opacity: 0;
  transform: rotate(-45deg) translateX(0px);
  animation: coli1 0.3s linear infinite;
}
.theme-preloader-wrapper .loader8::before {
  top: -4px;
  transform: rotate(45deg);
  animation: coli2 0.3s linear infinite;
}
.theme-preloader-wrapper .loader9 {
  width: 96px;
  box-sizing: content-box;
  height: 48px;
  background: var(--preloader-secondary-color);
  border-color: var(--preloader-primary-color);
  border-style: solid;
  border-width: 2px 2px 50px 2px;
  border-radius: 100%;
  animation: 3s yinYang linear infinite;
}
.theme-preloader-wrapper .loader9::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  background: var(--preloader-secondary-color);
  border: 18px solid var(--preloader-primary-color);
  border-radius: 100%;
  width: 12px;
  height: 12px;
  box-sizing: content-box;
}
.theme-preloader-wrapper .loader9::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--preloader-primary-color);
  border: 18px solid var(--preloader-secondary-color);
  border-radius: 100%;
  width: 12px;
  height: 12px;
  box-sizing: content-box;
}
.theme-preloader-wrapper .loader10 {
  width: 150px;
  height: 150px;
  background-color: var(--preloader-primary-color);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 30px 4px rgba(0, 0, 0, 0.5) inset, 0 5px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}
.theme-preloader-wrapper .loader10::before, .theme-preloader-wrapper .loader10::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 45%;
  top: -40%;
  background-color: var(--preloader-secondary-color);
  animation: wave 5s linear infinite;
}
.theme-preloader-wrapper .loader10::before {
  border-radius: 30%;
  background: rgba(255, 255, 255, 0.4);
  animation: wave 5s linear infinite;
}
.theme-preloader-wrapper .loader11 {
  display: block;
  position: relative;
  height: 32px;
  width: 140px;
  border: 3px solid var(--preloader-secondary-color);
  border-radius: 20px;
  box-sizing: border-box;
  animation: balancing 2s linear infinite alternate;
  transform-origin: center center;
}
.theme-preloader-wrapper .loader11::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 26px;
  border-radius: 20px;
  background: var(--preloader-primary-color);
  animation: ballbns 2s linear infinite alternate;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
            clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  50% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  100% {
    -webkit-clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
            clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
}
@keyframes flowerFlow {
  0% {
    opacity: 1;
    transform: rotate(0deg);
    box-shadow: 0 0 0 -0.5em currentcolor, 0 0 0 -0.5em currentcolor, 0 0 0 -0.5em currentcolor, 0 0 0 -0.5em currentcolor, 0 0 0 -0.5em currentcolor, 0 0 0 -0.5em currentcolor, 0 0 0 -0.5em currentcolor, 0 0 0 -0.5em currentcolor;
  }
  100% {
    opacity: 0;
    transform: rotate(180deg);
    box-shadow: -1em -1em 0 -0.35em currentcolor, 0 -1.5em 0 -0.35em currentcolor, 1em -1em 0 -0.35em currentcolor, -1.5em 0 0 -0.35em currentcolor, 1.5em 0 0 -0.35em currentcolor, -1em 1em 0 -0.35em currentcolor, 0 1.5em 0 -0.35em currentcolor, 1em 1em 0 -0.35em currentcolor;
  }
}
@keyframes rotate2 {
  0% {
    transform: rotate(0deg) scale(0.8);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
  }
  100% {
    transform: rotate(720deg) scale(0.8);
  }
}
@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 var(--preloader-primary-shadow-color);
  }
  50% {
    box-shadow: 0 0 0 var(--preloader-primary-shadow-color);
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 var(--preloader-primary-shadow-color);
    margin-bottom: 10px;
  }
}
@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 var(--preloader-secondary-shadow-color);
  }
  50% {
    box-shadow: 0 0 0 var(--preloader-secondary-shadow-color);
    margin-top: -20px;
    transform: translate(15px, 15px);
  }
  100% {
    box-shadow: 30px 0 0 var(--preloader-secondary-shadow-color);
    margin-top: 0;
  }
}
@keyframes animloader {
  0% {
    top: 0;
    color: var(--preloader-primary-color);
  }
  50% {
    top: 30px;
    color: rgba(255, 255, 255, 0.2);
  }
  100% {
    top: 0;
    color: var(--preloader-secondary-color);
  }
}
@keyframes animloader2 {
  0% {
    height: 48px;
  }
  100% {
    height: 4px;
  }
}
@keyframes animFw {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes coli1 {
  0% {
    transform: rotate(-45deg) translateX(0px);
    opacity: 0.7;
  }
  100% {
    transform: rotate(-45deg) translateX(-45px);
    opacity: 0;
  }
}
@keyframes coli2 {
  0% {
    transform: rotate(45deg) translateX(0px);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) translateX(-45px);
    opacity: 0.7;
  }
}
@keyframes bounce {
  0%, 50%, 100% {
    transform: translate(-50%, 0px);
    height: 20px;
  }
  20% {
    transform: translate(-25%, 85px);
    height: 28px;
  }
  25% {
    transform: translate(-25%, 110px);
    height: 12px;
  }
  70% {
    transform: translate(-75%, 85px);
    height: 28px;
  }
  75% {
    transform: translate(-75%, 108px);
    height: 12px;
  }
}
@keyframes rotate3 {
  0%, 50%, 100% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(90deg);
  }
  75% {
    transform: rotate(-90deg);
  }
}
@keyframes yinYang {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes wave {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes ballbns {
  0% {
    left: 0;
    transform: translateX(0%);
  }
  100% {
    left: 100%;
    transform: translateX(-100%);
  }
}
@keyframes balancing {
  0% {
    transform: rotate(-25deg);
  }
  50% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(25deg);
  }
}
/*------------------- 2.3. Theme Buttons -------------------*/
.theme-button,
input[type=submit],
button[type=submit] {
  font-family: var(--font-heading);
  color: var(--color-white);
  background: var(--thm-color);
  text-transform: inherit;
  border: none;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  padding: 15px 25px;
  border-radius: 8px;
}
.theme-button:hover,
input[type=submit]:hover,
button[type=submit]:hover {
  color: var(--color-white);
  background: var(--color-secondary);
}
.theme-button i,
input[type=submit] i,
button[type=submit] i {
  margin-left: 10px;
}

/*------------------- 2.4. Comment -------------------*/
.comments-area, .wp-block-comments {
  margin-top: 80px;
  padding: 30px;
  box-shadow: var(--main-shadow-light);
  border-radius: 20px;
}
.comments-area .comments-title, .wp-block-comments .comments-title {
  font-size: 27px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.comments-area ol.comment-list, .wp-block-comments ol.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.comments-area ol.comment-list .comment, .comments-area ol.comment-list .bypostauthor, .wp-block-comments ol.comment-list .comment, .wp-block-comments ol.comment-list .bypostauthor {
  display: block;
}
.comments-area ol.comment-list .comment ol.children, .comments-area ol.comment-list .bypostauthor ol.children, .wp-block-comments ol.comment-list .comment ol.children, .wp-block-comments ol.comment-list .bypostauthor ol.children {
  list-style: none;
  padding-left: 50px;
}
@media (max-width: 480px) {
  .comments-area ol.comment-list .comment ol.children, .comments-area ol.comment-list .bypostauthor ol.children, .wp-block-comments ol.comment-list .comment ol.children, .wp-block-comments ol.comment-list .bypostauthor ol.children {
    padding-left: 16px;
  }
}
.comments-area ol.comment-list .comment ol.children .comment-body, .comments-area ol.comment-list .bypostauthor ol.children .comment-body, .wp-block-comments ol.comment-list .comment ol.children .comment-body, .wp-block-comments ol.comment-list .bypostauthor ol.children .comment-body {
  border-bottom: 1px solid var(--color-border);
}
.comments-area ol.comment-list .comment .comment-body, .comments-area ol.comment-list .bypostauthor .comment-body, .wp-block-comments ol.comment-list .comment .comment-body, .wp-block-comments ol.comment-list .bypostauthor .comment-body {
  margin-top: 15px;
  padding: 15px 15px 15px 0;
  border-bottom: 1px solid var(--color-border);
  position: relative;
}
.comments-area ol.comment-list .comment .comment-body a, .comments-area ol.comment-list .bypostauthor .comment-body a, .wp-block-comments ol.comment-list .comment .comment-body a, .wp-block-comments ol.comment-list .bypostauthor .comment-body a {
  word-wrap: break-word;
  font-weight: 500;
}
.comments-area ol.comment-list .comment .comment-body .comment-meta, .comments-area ol.comment-list .bypostauthor .comment-body .comment-meta, .wp-block-comments ol.comment-list .comment .comment-body .comment-meta, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-meta {
  position: relative;
}
.comments-area ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard, .comments-area ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard, .wp-block-comments ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard {
  position: relative;
}
.comments-area ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard img, .comments-area ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard img, .wp-block-comments ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard img, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard img {
  border-radius: 50%;
  height: 90px;
  width: 90px;
  margin-top: -5px;
}
.comments-area ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard span.says, .comments-area ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard span.says, .wp-block-comments ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard span.says, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard span.says {
  display: none;
}
.comments-area ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard .fn, .comments-area ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard .fn, .wp-block-comments ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard .fn, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard .fn {
  font-size: 20px;
  position: absolute;
  left: 110px;
  top: -10px;
  text-transform: capitalize;
  font-family: var(--font-heading);
  font-weight: 600;
}
.comments-area ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard .fn a, .comments-area ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard .fn a, .wp-block-comments ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard .fn a, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard .fn a {
  font-weight: 600;
}
.comments-area ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard .fn::after, .comments-area ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard .fn::after, .wp-block-comments ol.comment-list .comment .comment-body .comment-meta .comment-author.vcard .fn::after, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-meta .comment-author.vcard .fn::after {
  content: "\f02e";
  font-family: "Font Awesome 6 Free";
  font-size: 13px;
  top: 0;
  margin-left: 10px;
  position: relative;
  line-height: 1;
  font-weight: 700;
}
.comments-area ol.comment-list .comment .comment-body .comment-meta .comment-metadata, .comments-area ol.comment-list .bypostauthor .comment-body .comment-meta .comment-metadata, .wp-block-comments ol.comment-list .comment .comment-body .comment-meta .comment-metadata, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-meta .comment-metadata {
  position: absolute;
  left: 110px;
  top: 20px;
}
.comments-area ol.comment-list .comment .comment-body .comment-meta .comment-metadata time, .comments-area ol.comment-list .bypostauthor .comment-body .comment-meta .comment-metadata time, .wp-block-comments ol.comment-list .comment .comment-body .comment-meta .comment-metadata time, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-meta .comment-metadata time {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}
@media (min-width: 500px) {
  .comments-area ol.comment-list .comment .comment-body .comment-meta .comment-metadata time, .comments-area ol.comment-list .bypostauthor .comment-body .comment-meta .comment-metadata time, .wp-block-comments ol.comment-list .comment .comment-body .comment-meta .comment-metadata time, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-meta .comment-metadata time {
    margin-top: 0px;
    display: inline-block;
  }
}
.comments-area ol.comment-list .comment .comment-body .comment-meta .comment-metadata span.edit-link, .comments-area ol.comment-list .bypostauthor .comment-body .comment-meta .comment-metadata span.edit-link, .wp-block-comments ol.comment-list .comment .comment-body .comment-meta .comment-metadata span.edit-link, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-meta .comment-metadata span.edit-link {
  display: none;
}
.comments-area ol.comment-list .comment .comment-body .comment-content, .comments-area ol.comment-list .bypostauthor .comment-body .comment-content, .wp-block-comments ol.comment-list .comment .comment-body .comment-content, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-content {
  position: relative;
  padding-left: 110px;
  margin-top: -25px;
}
@media (max-width: 500px) {
  .comments-area ol.comment-list .comment .comment-body .comment-content, .comments-area ol.comment-list .bypostauthor .comment-body .comment-content, .wp-block-comments ol.comment-list .comment .comment-body .comment-content, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-content {
    padding-left: 0;
    margin-top: 20px;
  }
}
.comments-area ol.comment-list .comment .comment-body .comment-content img, .comments-area ol.comment-list .bypostauthor .comment-body .comment-content img, .wp-block-comments ol.comment-list .comment .comment-body .comment-content img, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-content img {
  margin-top: 30px;
  margin-bottom: 30px;
}
.comments-area ol.comment-list .comment .comment-body .comment-content a, .comments-area ol.comment-list .bypostauthor .comment-body .comment-content a, .wp-block-comments ol.comment-list .comment .comment-body .comment-content a, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-content a {
  word-wrap: break-word;
  font-weight: 500;
}
.comments-area ol.comment-list .comment .comment-body .comment-content li, .comments-area ol.comment-list .bypostauthor .comment-body .comment-content li, .wp-block-comments ol.comment-list .comment .comment-body .comment-content li, .wp-block-comments ol.comment-list .bypostauthor .comment-body .comment-content li {
  font-weight: 500;
  margin: 8px 0;
}
.comments-area ol.comment-list .comment .comment-body .reply, .comments-area ol.comment-list .bypostauthor .comment-body .reply, .wp-block-comments ol.comment-list .comment .comment-body .reply, .wp-block-comments ol.comment-list .bypostauthor .comment-body .reply {
  position: absolute;
  right: 0;
  top: 8px;
}
@media (max-width: 480px) {
  .comments-area ol.comment-list .comment .comment-body .reply, .comments-area ol.comment-list .bypostauthor .comment-body .reply, .wp-block-comments ol.comment-list .comment .comment-body .reply, .wp-block-comments ol.comment-list .bypostauthor .comment-body .reply {
    position: relative;
  }
}
.comments-area ol.comment-list .comment .comment-body .reply a, .comments-area ol.comment-list .bypostauthor .comment-body .reply a, .wp-block-comments ol.comment-list .comment .comment-body .reply a, .wp-block-comments ol.comment-list .bypostauthor .comment-body .reply a {
  position: relative;
  padding-left: 25px;
  color: var(--color-secondary);
  font-weight: 600;
}
.comments-area ol.comment-list .comment .comment-body .reply a::after, .comments-area ol.comment-list .bypostauthor .comment-body .reply a::after, .wp-block-comments ol.comment-list .comment .comment-body .reply a::after, .wp-block-comments ol.comment-list .bypostauthor .comment-body .reply a::after {
  content: "\f122";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 3px;
  top: 0;
  font-weight: 700;
}
.comments-area ol.comment-list .comment:last-child .comment-body, .comments-area ol.comment-list .bypostauthor:last-child .comment-body, .wp-block-comments ol.comment-list .comment:last-child .comment-body, .wp-block-comments ol.comment-list .bypostauthor:last-child .comment-body {
  border-bottom: 0;
}
.comments-area em.comment-awaiting-moderation, .wp-block-comments em.comment-awaiting-moderation {
  font-weight: 500;
  color: var(--color-body);
  display: block;
  padding-left: 110px;
  margin-top: -25px;
  margin-bottom: 35px;
}
.comments-area button.tp-button i, .wp-block-comments button.tp-button i {
  font-size: 14px;
}

.comment-respond, .wp-block-comments-form {
  margin-top: 30px;
}
.comment-respond .comments-heading, .wp-block-comments-form .comments-heading {
  font-size: 30px;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: normal;
}
.comment-respond .comments-heading #cancel-comment-reply-link, .wp-block-comments-form .comments-heading #cancel-comment-reply-link {
  margin-left: 10px;
  font-size: 20px;
  font-weight: 700;
}
.comment-respond .comments-heading #cancel-comment-reply-link:hover, .wp-block-comments-form .comments-heading #cancel-comment-reply-link:hover {
  text-decoration: underline;
}
.comment-respond .comment-form-cookies-consent, .wp-block-comments-form .comment-form-cookies-consent {
  display: flex;
  align-items: center;
}
.comment-respond .comment-form-cookies-consent input, .wp-block-comments-form .comment-form-cookies-consent input {
  width: auto;
  margin: auto 0;
}
.comment-respond .comment-form-cookies-consent label, .wp-block-comments-form .comment-form-cookies-consent label {
  display: inline;
  margin-left: 10px;
}
.comment-form::-moz-placeholder, .wp-block-comments-form::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: var(--color-body);
  opacity: 1;
}
.comment-form::placeholder, .wp-block-comments-form::placeholder {
  /* Most modern browsers support this now. */
  color: var(--color-body);
}
.comment-form .comment-form-wrap, .wp-block-comments-form .comment-form-wrap {
  margin-top: 40px;
}
.comment-form .tp-comment-input, .wp-block-comments-form .tp-comment-input {
  position: relative;
}
.comment-form .tp-comment-input input,
.comment-form .tp-comment-input textarea, .wp-block-comments-form .tp-comment-input input,
.wp-block-comments-form .tp-comment-input textarea {
  box-shadow: var(--main-inset-shadow-light);
  color: var(--color-body);
  border-radius: 100px;
  padding: 14px 25px;
  border: 0;
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: normal;
  color: var(--color-body);
  position: relative;
  min-height: 55px;
}
.comment-form .tp-comment-input input:focus,
.comment-form .tp-comment-input textarea:focus, .wp-block-comments-form .tp-comment-input input:focus,
.wp-block-comments-form .tp-comment-input textarea:focus {
  box-shadow: var(--main-inset-shadow-light);
}
.comment-form .tp-comment-input textarea, .wp-block-comments-form .tp-comment-input textarea {
  border-radius: 20px;
}
.comment-form .tp-comment-input.comment-message, .wp-block-comments-form .tp-comment-input.comment-message {
  position: relative;
}
.comment-form .tp-comment-input.comment-message::after, .wp-block-comments-form .tp-comment-input.comment-message::after {
  content: "\f086";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--color-body);
}
.comment-form .tp-comment-input.name-cmt::after, .wp-block-comments-form .tp-comment-input.name-cmt::after {
  content: "\f007";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 20px;
  top: 15px;
  color: var(--color-body);
}
.comment-form .tp-comment-input.email-cmt::after, .wp-block-comments-form .tp-comment-input.email-cmt::after {
  content: "\f0e0";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 20px;
  top: 15px;
  color: var(--color-body);
}
.comment-form .tp-comment-input.website-cmt::after, .wp-block-comments-form .tp-comment-input.website-cmt::after {
  content: "\f0ac";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 20px;
  top: 15px;
  color: var(--color-body);
  font-weight: 700;
}

/* Use the mixin for #message-cmt */
#message-cmt::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: var(--color-body);
  opacity: 1;
}
#message-cmt::placeholder {
  /* Most modern browsers support this now. */
  color: var(--color-body);
}

/*------------------- 2.5. Share Box -------------------*/
.single-post-sticky-share-and-time-wrapper {
  background: var(--color-dark);
  border-radius: 0px 10px 10px 0;
  padding: 15px 10px;
  box-shadow: var(--main-shadow-light);
  position: fixed;
  left: 0;
  top: 50%;
  transform: translate(0px, -50%);
}
.single-post-sticky-share-and-time-wrapper .sticky-share-toggle {
  display: none;
  position: absolute;
  top: 15px;
  right: -45px;
  width: 45px;
  height: 45px;
  background: var(--color-dark);
  border: none;
  border-radius: 0 5px 5px 0;
  color: var(--color-white);
  font-size: 16px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}
.single-post-sticky-share-and-time-wrapper .sticky-share-toggle:hover {
  background: var(--thm-color);
}
.single-post-sticky-share-and-time-wrapper .sticky-share-toggle i {
  transition: transform 0.3s ease;
}
@media (max-width: 991px) {
  .single-post-sticky-share-and-time-wrapper {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translate(-100%, -50%);
    transition: left 0.3s ease, transform 0.3s ease;
    z-index: 1000;
  }
  .single-post-sticky-share-and-time-wrapper.mobile-open {
    left: 0;
    transform: translate(0, -50%);
    transition: left 0.3s ease, transform 0.3s ease;
  }
  .single-post-sticky-share-and-time-wrapper .sticky-share-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .single-post-sticky-share-and-time-wrapper.mobile-open {
    left: 0;
    transition: left 0.3s ease, transform 0.3s ease;
  }
  .single-post-sticky-share-and-time-wrapper.mobile-open .sticky-share-toggle i {
    transform: rotate(180deg);
  }
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper {
  width: 60px;
  height: 60px;
  margin-bottom: 40px;
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box i {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0px;
  color: var(--color-secondary);
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle {
  position: relative;
  width: 70px;
  height: 70px;
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle svg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle svg .progress-bg {
  stroke: hsla(0, 0%, 100%, 0.02);
  stroke-linecap: round;
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle svg .progress-fill {
  stroke: var(--thm-color);
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle svg .progress-fill.completed {
  stroke: var(--thm-color);
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle .reading-time-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle .reading-time-content .reading-time-text {
  color: var(--color-white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}
.single-post-sticky-share-and-time-wrapper .single-post-sticky-time-wrapper .single-post-sticky-time-box .reading-time-progress .reading-time-circle .reading-time-content .reading-time-text .reading-time-text-small {
  display: block;
}
.single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul li {
  margin-bottom: 12px;
}
.single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: var(--main-shadow-dark);
  transition: all 0.3s ease;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
  background: var(--color-dark);
}
.single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul li a:hover {
  background: var(--color-white);
  color: var(--color-dark);
}
.single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul li:nth-last-child(1), .single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul li:nth-last-child(2), .single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul li:nth-last-child(3) {
  opacity: 0;
  transform: translateY(20px) scale(0.8);
  pointer-events: none;
  height: 0;
  margin: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul.show-all li:nth-last-child(1), .single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul.show-all li:nth-last-child(2), .single-post-sticky-share-and-time-wrapper .post-share-buttons .social-share-wrapper ul.show-all li:nth-last-child(3) {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  height: auto;
  margin: 0;
  margin-bottom: 12px;
  overflow: visible;
  transition: all 0.3s ease;
}
.single-post-sticky-share-and-time-wrapper .post-share-buttons button.social-more-btn {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  box-shadow: var(--main-shadow-dark);
  transition: all 0.3s ease;
  color: var(--color-white);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
  background: var(--color-dark);
  align-items: center;
}

/*=================================
   03. Theme Layout
==================================*/
/*------------------- 3.1 Theme Header -------------------*/
/** Mobile Menu **/
.tp-mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: var(--color-secondary);
  z-index: 999999;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: var(--color-white);
  border-right: 3px solid var(--thm-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .mobile-logo {
  padding: 40px 0 30px;
  display: block;
  text-align: center;
  background: var(--thm-color);
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .mobile-logo a {
  color: var(--color-white);
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .mobile-logo svg {
  max-width: 185px;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu {
  overflow-y: auto;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul {
  margin: 0;
  padding: 0;
}
@media (max-width: 400px) {
  .tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul {
    padding: 0 20px;
  }
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul li {
  border-bottom: 1px solid var(--color-border);
  list-style: none;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul li:last-child {
  border-bottom: none;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul li ul li {
  padding-left: 10px;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul li ul li:first-child {
  border-top: 1px solid var(--color-border);
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul li ul li:last-child {
  border-bottom: none;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul li a {
  display: block;
  position: relative;
  padding: 12px 18px;
  line-height: 1.4;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--color-secondary);
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul li.tp-active > a {
  color: var(--thm-color);
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul li.tp-active > a .tp-mean-expand::before {
  content: "\f068";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul .tp-item-has-children > a {
  position: relative;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul .tp-item-has-children > a .tp-mean-expand {
  position: absolute;
  right: 15px;
  top: 50%;
  font-weight: 400;
  font-size: 12px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--thm-color);
  color: var(--color-white);
  border-radius: 50%;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-mobile-menu ul .tp-item-has-children > a .tp-mean-expand:before {
  content: "+";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-menu-toggle {
  position: absolute;
  right: -29.5px;
  top: 25px;
  width: 60px;
  height: 60px;
  color: var(--thm-color);
  background: var(--color-sidebarbg);
  border-radius: 50%;
  margin-right: 10px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  font-size: 25px;
  border: none;
}
.tp-mobile-menu-wrapper .tp-mobile-menu-area .tp-menu-toggle:hover {
  background-color: var(--color-white);
  color: var(--color-secondary);
}
@media (max-width: 400px) {
  .tp-mobile-menu-wrapper .tp-mobile-menu-area {
    max-width: 270px;
  }
}

.tp-mobile-menu-wrapper.tp-body-visible {
  opacity: 1;
  visibility: visible;
}
.tp-mobile-menu-wrapper.tp-body-visible .tp-mobile-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}
.tp-mobile-menu-wrapper.tp-body-visible .tp-menu-toggle {
  margin-right: 0;
}

.menu-expand {
  font-weight: 500;
  text-transform: capitalize;
  color: var(--color-secondary);
}
.menu-expand:hover {
  color: var(--thm-color);
}
.menu-expand i {
  margin-right: 8px;
}

/*** Main Header **/
.header-area {
  margin-bottom: 50px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .header-area {
    margin-top: 20px;
  }
}
.header-area .tp-header {
  position: relative;
  z-index: 41;
  width: 100%;
}
.header-area .tp-header .menu-area {
  /* 
  -------- End Mega Menu -----------
  */
  /* Theme Toggle Switch */
}
.header-area .tp-header .menu-area .menu-area-inner {
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow: var(--main-shadow-light);
  background-color: var(--color-bg);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991px) {
  .header-area .tp-header .menu-area {
    padding: 10px 0;
  }
}
.header-area .tp-header .menu-area .header-logo {
  padding: 10px 0;
}
.header-area .tp-header .menu-area .header-logo img {
  min-width: 50px;
}
.header-area .tp-header .menu-area .header-logo h2 {
  font-size: 26px;
  margin-bottom: 0;
  text-transform: capitalize;
  font-weight: 600;
  line-height: 1;
}
.header-area .tp-header .menu-area .header-logo h2 a {
  color: var(--color-secondary);
}
.header-area .tp-header .menu-area .header-logo h2 a:hover {
  color: var(--thm-color);
}
.header-area .tp-header .menu-area .main-menu ul > li > a {
  padding: 15px 0px;
}
.header-area .tp-header .menu-area .main-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.header-area .tp-header .menu-area .main-menu ul > li {
  margin: 0 22px;
  display: inline-block;
  position: relative;
}
.header-area .tp-header .menu-area .main-menu ul > li:last-child {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.header-area .tp-header .menu-area .main-menu ul > li:hover > ul.sub-menu,
.header-area .tp-header .menu-area .main-menu ul > li:hover ul.mega-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  z-index: 9;
}
.header-area .tp-header .menu-area .main-menu ul > li.menu-item-has-children > a::after {
  content: "\f078";
  position: relative;
  margin-left: 3px;
  top: -1px;
  display: inline-block;
  transform: rotate(0deg);
  font-size: 12px;
  font-family: "Font Awesome 5 Free";
  font-weight: 800;
}
.header-area .tp-header .menu-area .main-menu ul > li.menu-item-has-children ul li.menu-item-has-children > a::after {
  content: "\f078";
  transform: rotate(-89deg);
  top: 0;
  font-size: 70%;
  right: 0;
  float: right;
}
.header-area .tp-header .menu-area .main-menu ul li a {
  display: block;
  position: relative;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
}
.header-area .tp-header .menu-area .main-menu ul ul.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  padding: 0;
  background: var(--color-white);
  visibility: hidden;
  min-width: 190px;
  width: -moz-max-content;
  width: max-content;
  opacity: 0;
  z-index: -1;
  border: 0;
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.4s ease 0s;
}
.header-area .tp-header .menu-area .main-menu ul ul.sub-menu li {
  display: block;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--color-border);
}
.header-area .tp-header .menu-area .main-menu ul ul.sub-menu li:last-child {
  border: none;
}
.header-area .tp-header .menu-area .main-menu ul ul.sub-menu li a {
  font-size: 14px;
  line-height: 28px;
  position: relative;
  text-transform: capitalize;
  padding: 8px 15px;
  font-weight: 500;
}
.header-area .tp-header .menu-area .main-menu ul ul.sub-menu li a:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
}
.header-area .tp-header .menu-area .main-menu ul ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
}
.header-area .tp-header .menu-area .main-menu ul ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}
.header-area .tp-header .menu-area .main-menu li.mega ul ul {
  background: 0 0;
  width: auto;
}
.header-area .tp-header .menu-area .main-menu li.mega li {
  display: inline-block;
  vertical-align: top;
  margin-left: 0;
}
.header-area .tp-header .menu-area .main-menu li.mega li li {
  display: block;
  position: relative;
  left: 4px;
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega {
  position: inherit;
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega > ul {
  width: auto;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
  left: 0;
  right: 0;
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega > ul li.has-sub ul {
  display: block;
  position: relative;
  left: auto;
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega > ul > li {
  padding-bottom: 15px;
  box-sizing: border-box;
  display: inline-block;
}
.header-area .tp-header .menu-area .main-menu li.mega li li a {
  padding: 3px 15px;
  border-color: transparent;
  font-size: 14px;
  font-weight: normal;
}
.header-area .tp-header .menu-area .main-menu li.mega li.has-sub a:after {
  display: none;
}
.header-area .tp-header .menu-area .main-menu ul li.mega ul {
  opacity: 1;
  visibility: visible;
  top: auto;
  box-shadow: none;
}
.header-area .tp-header .menu-area .main-menu ul li.mega ul li a:hover,
.header-area .tp-header .menu-area .main-menu ul li.mega ul li.current-menu-item a {
  background: transparent;
  color: var(--theme-color);
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega > ul li.has-sub ul {
  padding-top: 13px;
  padding-bottom: 1px;
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega > ul li.has-sub ul {
  padding-top: 13px;
  padding-bottom: 1px;
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega > ul > li > a {
  padding: 11px 15px;
  border-bottom: 1px solid rgba(223, 223, 223, 0.87);
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega.column_2 > ul > li {
  width: 49% !important;
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega.column_3 > ul > li {
  width: 33% !important;
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega.column_4 > ul > li {
  width: 24.6% !important;
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega.column_5 > ul > li {
  width: 19.6% !important;
}
.header-area .tp-header .menu-area .main-menu > ul > li.mega.column_6 > ul > li {
  width: 16.3% !important;
}
.header-area .tp-header .menu-area .main-menu ul li.mega > ul {
  padding: 10px;
  left: 0;
}
.header-area .tp-header .menu-area .main-menu li.mega > ul.sub-menu ul.sub-menu {
  opacity: 1;
  transform: scaleY(1);
  position: relative;
  left: 0;
  top: 10px;
}
.header-area .tp-header .menu-area .main-menu li.mega > ul.sub-menu li {
  border-color: transparent;
  left: 0;
}
.header-area .tp-header .menu-area .main-menu ul li.mega ul li.menu-item-has-children > a:after {
  display: none;
}
.header-area .tp-header .menu-area .tp-menu-toggle {
  width: auto;
  height: auto;
  padding: 0;
  font-size: 31px;
  border: none;
  display: inline-block;
  background: var(--color-sidebarbg);
  color: var(--thm-color);
  margin-right: 10px;
  border: none;
}
.header-area .tp-header .menu-area .header-button-wrapper {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media only screen and (max-width: 600px) {
  .header-area .tp-header .menu-area .header-button-wrapper .header-search-button {
    display: none;
  }
}
.header-area .tp-header .menu-area .header-button-wrapper .header-search-button .button.search-open {
  width: 40px;
  height: 40px;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  border-radius: 100%;
  box-shadow: var(--main-shadow-light);
  color: var(--color-secondary);
  transition: 0.4s ease;
  cursor: pointer;
}
.header-area .tp-header .menu-area .header-button-wrapper .header-search-button .button.search-open:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  transition: 0.4s ease;
}
@media only screen and (max-width: 600px) {
  .header-area .tp-header .menu-area .header-button-wrapper .header-button {
    display: none;
  }
}
.header-area .tp-header .menu-area .header-button-wrapper .header-button .theme-button {
  border-radius: 50px;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--color-secondary);
  color: var(--color-white);
  transition: 0.4s ease;
  cursor: pointer;
}
.header-area .tp-header .menu-area .header-button-wrapper .header-button .theme-button:hover {
  background-color: var(--thm-color);
  color: var(--color-white);
  transition: 0.4s ease;
}
.header-area .tp-header .menu-area .header-light-and-dark-mode .theme-toggle-switch {
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.header-area .tp-header .menu-area .header-light-and-dark-mode .theme-toggle-input {
  opacity: 0;
  width: 0;
  height: 0;
}
.header-area .tp-header .menu-area .header-light-and-dark-mode .theme-toggle-label {
  width: 80px;
  height: 34px;
  background: var(--color-bg);
  border-radius: 15px;
  box-shadow: var(--main-shadow-light);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
}
.header-area .tp-header .menu-area .header-light-and-dark-mode .theme-toggle-slider {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 27px;
  height: 27px;
  background: var(--color-bg);
  border-radius: 50%;
  box-shadow: var(--main-shadow-dark);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-area .tp-header .menu-area .header-light-and-dark-mode .theme-toggle-icon {
  position: absolute;
  color: var(--color-dark);
  transition: all 0.3s ease;
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  align-items: center;
}
.header-area .tp-header .menu-area .header-light-and-dark-mode .theme-toggle-icon-dark {
  left: 13px;
}
.header-area .tp-header .menu-area .header-light-and-dark-mode .theme-toggle-icon-light {
  opacity: 1;
  transform: scale(1);
  right: 13px;
}
.header-area .tp-header .menu-area .header-light-and-dark-mode .theme-toggle-input:checked + .theme-toggle-label .theme-toggle-slider {
  transform: translateX(40px);
}
.header-area .tp-header .menu-area .header-light-and-dark-mode .theme-toggle-input:checked + .theme-toggle-label .theme-toggle-icon-light {
  opacity: 1;
  transform: scale(1);
}
.header-area .tp-header .menu-area.sticky {
  position: fixed;
  top: 30px;
  left: 0;
  right: 0;
  z-index: 9999;
  animation: slideDown 0.3s ease-out;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .header-area .tp-header .menu-area.sticky {
    top: 0px;
  }
}

@media (min-width: 768px) {
  .logged-in .header-area .menu-area.sticky {
    top: 50px;
  }
}
@media (max-width: 767px) {
  .logged-in .header-area .menu-area.sticky {
    top: 0px;
  }
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.header-area {
  transition: all 0.3s ease;
}
.header-area .menu-area {
  transition: all 0.3s ease;
}
.header-area .menu-area.sticky {
  animation: slideDown 0.3s ease-out;
}

[data-theme=dark] .theme-toggle-icon-light svg {
  fill: var(--color-dark);
}
[data-theme=dark] .theme-toggle-icon-dark svg {
  fill: var(--color-dark);
}

.header-search-popup {
  position: fixed;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  top: 0;
  left: 0;
  transform: translateY(-130%);
  transition: transform 600ms ease, opacity 600ms ease;
}
.header-search-popup.active {
  transform: translateY(0%);
}
.header-search-popup .header-search-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--color-secondary);
  cursor: pointer;
  z-index: -1;
}
.header-search-popup .header-search-popup-content {
  width: 100%;
  max-width: 550px;
}
.header-search-popup .header-search-popup-content form {
  display: flex;
  flex-wrap: wrap;
  position: relative;
  background-color: var(--color-bg);
  overflow: hidden;
}
.header-search-popup .header-search-popup-content form input {
  border: none;
  outline: none;
  padding: 20px 20px;
  margin-bottom: 0;
}
.header-search-popup .header-search-popup-content form button {
  border: none;
  outline: none;
  padding: 0;
  width: 70px;
  height: 68px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0;
  background-color: var(--thm-color);
  color: var(--color-white);
  font-size: 19px;
  align-content: center;
  flex-wrap: wrap;
}
.header-search-popup .header-search-popup-content form button i {
  margin-left: 0;
  margin-right: 0;
}

/*------------------- 3.2 Breadcroumb -------------------*/
.breadcrumb-area {
  margin-bottom: 80px;
}
@media (min-width: 1220px) {
  .breadcrumb-area .container-1220 {
    max-width: 1220px;
  }
}
@media (max-width: 1220px) {
  .breadcrumb-area .container-1220 {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.breadcrumb-area .breadcrumb-content {
  text-align: center;
  padding: 70px 0;
  border-radius: 21px;
  background: var(--color-bg);
  box-shadow: var(--main-shadow-light);
}
.breadcrumb-area .breadcrumb-content .page-title {
  margin: 0;
  padding: 0;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
  color: var(--color-secondary);
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .breadcrumb-area .breadcrumb-content .page-title {
    font-size: 28px;
    line-height: 38px;
  }
}
.breadcrumb-area .breadcrumb-content .page-title span {
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  line-height: inherit;
  text-transform: inherit;
}
.breadcrumb-area .breadcrumb-content .breadcrumb-content-static {
  max-width: 70%;
  margin: 0 auto;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-body);
  text-align: center;
  margin-top: 16px;
}
.breadcrumb-area .breadcrumb-content .bre-sub {
  margin-top: 16px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  color: var(--color-secondary);
}
.breadcrumb-area .breadcrumb-content .bre-sub a {
  color: var(--color-secondary);
}
.breadcrumb-area .breadcrumb-content .bre-sub .florira-breadcrumb {
  margin: 0;
  padding: 0;
  margin-top: 10px;
}
.breadcrumb-area .breadcrumb-content .bre-sub .florira-breadcrumb .breadcrumb-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  justify-content: center;
}
@media (max-width: 767px) {
  .breadcrumb-area .breadcrumb-content .bre-sub .florira-breadcrumb .breadcrumb-list {
    justify-content: center;
    text-align: center;
  }
}
.breadcrumb-area .breadcrumb-content .bre-sub .florira-breadcrumb .breadcrumb-item {
  margin: 0;
  padding: 0;
  display: inline-block;
}
.breadcrumb-area .breadcrumb-content .bre-sub .florira-breadcrumb .breadcrumb-item a {
  color: var(--color-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
  opacity: 0.8;
}
.breadcrumb-area .breadcrumb-content .bre-sub .florira-breadcrumb .breadcrumb-item a:hover {
  color: var(--thm-color);
  opacity: 1;
}
.breadcrumb-area .breadcrumb-content .bre-sub .florira-breadcrumb .breadcrumb-item.current {
  color: var(--color-body);
  font-weight: 500;
  opacity: 1;
}
.breadcrumb-area .breadcrumb-content .bre-sub .florira-breadcrumb .breadcrumb-separator-item {
  margin: 0 8px;
  padding: 0;
  display: inline-block;
  color: var(--color-body);
  opacity: 0.7;
}
@media (max-width: 767px) {
  .breadcrumb-area .breadcrumb-content .bre-sub .florira-breadcrumb .breadcrumb-separator-item {
    margin: 0 6px;
  }
}
@media (max-width: 480px) {
  .breadcrumb-area .breadcrumb-content .bre-sub .florira-breadcrumb .breadcrumb-separator-item {
    margin: 0 4px;
  }
}
.breadcrumb-area .breadcrumb-content .bre-sub .florira-breadcrumb .breadcrumb-separator {
  color: var(--color-body);
  opacity: 0.7;
  font-size: 12px;
}

.single-post .breadcrumb-area {
  margin-bottom: 40px;
}
.single-post .breadcrumb-area .breadcrumb-content {
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  text-align: left;
}
.single-post .breadcrumb-area .breadcrumb-content .florira-breadcrumb .breadcrumb-list {
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .single-post .breadcrumb-area .breadcrumb-content .florira-breadcrumb .breadcrumb-list {
    justify-content: center;
    text-align: center;
  }
}

/*------------------- 3.3 Blog Item -------------------*/
.sticky .post-content-wrapper {
  position: relative;
}
.sticky .post-content-wrapper::after {
  position: absolute;
  content: "\f08d";
  font-family: "Font Awesome 6 Free";
  font-size: 40px;
  right: 0px;
  top: 0px;
  transform: rotate(45deg);
  font-weight: 700;
  color: var(--thm-color);
}

.global-blog-style .post-thumbnail-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.global-blog-style .post-thumbnail-wrapper a {
  width: 100%;
}
.global-blog-style .post-thumbnail-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.global-blog-style .post-thumbnail-wrapper .post-read-and-date {
  position: absolute;
  background-color: var(--color-bg);
  font-size: 12px;
  font-weight: 500;
  line-height: 17px;
  padding: 6px 12px;
  border-radius: 6px;
  font-family: var(--font-heading);
  color: var(--color-secondary);
}
.global-blog-style .post-thumbnail-wrapper .post-read-time {
  top: 10px;
  right: 10px;
  margin-right: -200px;
  transition: margin-right 0.3s ease-in-out;
}
.global-blog-style .post-thumbnail-wrapper .post-date {
  top: 10px;
  left: 10px;
}
.global-blog-style .post-thumbnail-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}
.global-blog-style .post-meta {
  margin-bottom: 20px;
}
.global-blog-style .post-meta ul {
  margin: initial;
  padding: initial;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  list-style: none;
  align-items: center;
}
.global-blog-style .post-meta ul li.post-meta-category {
  line-height: 0;
}
.global-blog-style .post-meta ul li.post-meta-category a {
  padding: 8px 10px;
  box-shadow: var(--main-shadow-light);
  border-radius: 6px;
  background-color: var(--color-bg);
  color: var(--color-body);
  font-family: var(--font-heading);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
.global-blog-style .post-meta ul li.post-meta-category a:hover {
  background-color: rgba(var(--thm-color-rgb), 0.14);
  color: var(--thm-color);
}
.global-blog-style .post-meta ul li {
  text-transform: capitalize;
  line-height: 20px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-heading);
  position: relative;
}
.global-blog-style .post-meta ul li::after {
  content: "";
  position: absolute;
  bottom: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--thm-color);
  border-radius: 100%;
  right: -15px;
}
.global-blog-style .post-meta ul li .author.vcard a {
  color: var(--thm-color);
  text-transform: capitalize;
}
.global-blog-style .post-meta ul li a {
  color: var(--color-body);
}
.global-blog-style .post-meta ul li a:hover {
  color: var(--thm-color);
}
.global-blog-style .post-meta ul li i {
  color: var(--thm-color);
  margin-right: 8px;
  font-size: 16px;
}
.global-blog-style .post-meta ul li:last-child {
  margin-right: 0;
}
.global-blog-style .post-meta ul li:last-child::after {
  display: none;
}
.global-blog-style .post-meta.post-details-meta {
  margin-bottom: 20px;
}
.global-blog-style .updated:not(.published) {
  display: none;
}

.global-blog-style.format-gallery .post-thumbnail-wrapper .post-read-time {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--color-bg);
}
.global-blog-style.format-gallery .post-thumbnail-wrapper .swiper-button-next,
.global-blog-style.format-gallery .post-thumbnail-wrapper .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: var(--thm-color);
  border-radius: 5px;
  font-weight: bold;
  color: var(--color-white);
}
.global-blog-style.format-gallery .post-thumbnail-wrapper .swiper-button-next:hover,
.global-blog-style.format-gallery .post-thumbnail-wrapper .swiper-button-prev:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.global-blog-style.format-gallery .post-thumbnail-wrapper .swiper-button-next::after,
.global-blog-style.format-gallery .post-thumbnail-wrapper .swiper-button-prev::after {
  font-size: 20px;
}

.global-blog-style.format-video .post-thumbnail-wrapper {
  position: relative;
  z-index: 0;
}
.global-blog-style.format-video .post-thumbnail-wrapper .post-video-button-wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 100px;
  height: 100px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  right: 0;
  left: 0;
}
.global-blog-style.format-video .post-thumbnail-wrapper .post-video-button-wrapper a {
  width: 100px;
  height: 100px;
  background: var(--color-white);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 35px;
  color: var(--thm-color);
  align-content: center;
}
.global-blog-style.format-video .post-thumbnail-wrapper .post-video-button-wrapper a:hover {
  background-color: var(--thm-color);
  color: var(--color-white);
}
.global-blog-style.format-video .post-thumbnail-wrapper img {
  position: relative;
  z-index: -1;
}
.global-blog-style.format-video .post-thumbnail-wrapper::after {
  content: "";
  background-color: var(--color-secondary);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  mix-blend-mode: multiply;
  opacity: 0.58;
}

.blog-post-item {
  margin-bottom: 30px;
}
.blog-post-item .blog-post-wrapper {
  background-color: var(--color-bg);
  box-shadow: var(--main-shadow-light);
  border-radius: 20px;
  overflow: hidden;
  padding: 20px;
  display: grid;
  grid-template-columns: 340px calc(100% - 340px - 1.5rem);
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
  box-sizing: border-box;
  width: 100%;
}
.blog-post-item .blog-post-wrapper.no-thumbnail {
  grid-template-columns: 100%;
}
@media (max-width: 767px) {
  .blog-post-item .blog-post-wrapper {
    grid-template-columns: 100%;
  }
}
.blog-post-item.list-post-slider-item .blog-post-wrapper {
  grid-template-columns: 460px calc(100% - 460px - 3.5rem);
  -moz-column-gap: 3.5rem;
       column-gap: 3.5rem;
}
.blog-post-item.list-post-slider-item .blog-post-wrapper.no-thumbnail {
  grid-template-columns: 100%;
}
@media (max-width: 767px) {
  .blog-post-item.list-post-slider-item .blog-post-wrapper {
    grid-template-columns: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-post-item.list-post-slider-item .blog-post-wrapper {
    grid-template-columns: 340px calc(100% - 340px - 1.5rem);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
.blog-post-item.list-post-slider-item .blog-post-wrapper .post-thumbnail-wrapper {
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  .blog-post-item.list-post-slider-item .blog-post-wrapper .post-thumbnail-wrapper {
    margin-bottom: 24px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-post-item.list-post-slider-item .blog-post-wrapper .post-thumbnail-wrapper {
    margin-bottom: 0;
  }
}
.blog-post-item.list-post-slider-item .blog-post-wrapper .post-thumbnail-wrapper a {
  width: 100%;
}
.blog-post-item.list-post-slider-item .blog-post-wrapper .post-thumbnail-wrapper a img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.blog-post-item.list-post-slider-item .blog-post-wrapper .post-content-wrapper .post-title {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 600;
  line-height: 55px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog-post-item.list-post-slider-item .blog-post-wrapper .post-content-wrapper .post-title {
    font-size: 30px;
    line-height: 35px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-post-item.list-post-slider-item .blog-post-wrapper .post-content-wrapper .post-title {
    font-size: 40px;
    line-height: 45px;
  }
}
.blog-post-item.overlay-post-item {
  box-shadow: var(--main-shadow-light);
  border-radius: 20px;
  padding: 20px;
}
.blog-post-item.overlay-post-item .blog-post-wrapper {
  height: 460px;
  overflow: hidden;
  align-items: flex-end;
  position: relative;
  z-index: 1;
  grid-template-columns: 100%;
  padding: 40px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: var(--main-shadow-light);
  border-radius: 10px;
}
.blog-post-item.overlay-post-item .blog-post-wrapper:after {
  content: "";
  width: 100%;
  position: absolute;
  height: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.6) 100%);
  left: 0;
  top: 0;
  border-radius: 10px;
  z-index: -1;
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-thumbnail-wrapper {
  margin-bottom: 0;
  overflow: unset;
  position: unset;
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-thumbnail-wrapper .post-date {
  left: 40px;
  top: 30px;
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-thumbnail-wrapper .post-read-time {
  right: 40px;
  top: 30px;
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper {
  padding: 0;
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-meta ul li {
  color: var(--color-white);
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-meta ul li a {
  color: var(--color-white);
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-meta ul li a:hover {
  color: var(--thm-color);
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-meta ul .post-meta-category a {
  color: var(--color-secondary);
  box-shadow: none;
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-meta ul .post-meta-category a:hover {
  color: var(--thm-color);
  background-color: var(--color-white);
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-title a {
  color: var(--color-white);
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-title a:hover {
  color: var(--thm-color);
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-excerpt {
  color: var(--color-white);
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-comment-button .post-comment-button-icon {
  box-shadow: none;
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-comment-button .post-comment-button-text {
  color: var(--color-white);
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-read-more .theme-button {
  background-color: var(--thm-color);
  color: var(--color-white);
}
.blog-post-item.overlay-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-read-more .theme-button:hover {
  background-color: var(--color-white);
  color: var(--thm-color);
}
.blog-post-item.overlay-post-item.list-post-slider-item .blog-post-wrapper {
  align-items: flex-end;
}
.blog-post-item.grid-post-item {
  margin-bottom: 30px;
  width: 100%;
  box-sizing: border-box;
}
.blog-post-item.grid-post-item .blog-post-wrapper {
  display: block;
  grid-template-columns: none;
  -moz-column-gap: initial;
       column-gap: initial;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  height: auto;
  min-height: auto;
  overflow: visible;
}
.blog-post-item.grid-post-item .blog-post-wrapper .post-content-wrapper {
  padding: 15px 0px;
}
.blog-post-item.grid-post-item .blog-post-wrapper .post-content-wrapper .post-excerpt p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.blog-post-item.grid-post-item .blog-post-wrapper .post-content-wrapper .post-title {
  margin-bottom: 15px;
  font-size: 20px;
  line-height: 27px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-secondary);
}
.blog-post-item.grid-post-item .blog-post-wrapper.has-thumbnail .post-content-wrapper {
  padding: 0px 10px 4px 10px;
}
.blog-post-item.grid-related-post-item {
  margin-bottom: 30px;
}
.blog-post-item.grid-related-post-item .blog-post-wrapper {
  display: block;
  grid-template-columns: none;
  -moz-column-gap: initial;
       column-gap: initial;
  width: 100%;
  padding: 15px;
}
.blog-post-item.grid-related-post-item .blog-post-wrapper .post-content-wrapper {
  padding: 0px 15px 10px 15px;
}
@media (max-width: 767px) {
  .blog-post-item.grid-related-post-item .blog-post-wrapper .post-content-wrapper {
    padding: 0 10px 10px 10px;
  }
}
.blog-post-item.grid-related-post-item .blog-post-wrapper.has-thumbnail .post-content-wrapper {
  padding: 0px 15px 10px 15px;
}
@media (max-width: 767px) {
  .blog-post-item.grid-related-post-item .blog-post-wrapper.has-thumbnail .post-content-wrapper {
    padding: 0 10px 10px 10px;
  }
}
.blog-post-item.list-post-item .blog-post-wrapper {
  align-items: center;
}
.blog-post-item.list-post-item .blog-post-wrapper .post-thumbnail-wrapper {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .blog-post-item.list-post-item .blog-post-wrapper .post-thumbnail-wrapper {
    margin-bottom: 24px;
  }
}
.blog-post-item.list-post-item .blog-post-wrapper .post-content-wrapper {
  padding: 0;
}
@media (max-width: 767px) {
  .blog-post-item.list-post-item .blog-post-wrapper .post-content-wrapper {
    padding: 0 10px 10px 10px;
  }
}
.blog-post-item .blog-post-wrapper .post-content-wrapper {
  padding: 10px 0px;
}
.blog-post-item .blog-post-wrapper .post-content-wrapper .post-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 7px;
  word-break: break-word;
  -ms-word-break: break-word;
}
.blog-post-item .blog-post-wrapper .post-content-wrapper .post-excerpt p {
  margin-bottom: 22px;
}
.blog-post-item .blog-post-wrapper .post-content-wrapper .post-read-more {
  line-height: 0;
}
.blog-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}
.blog-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-comment-button {
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-comment-button .post-comment-button-icon {
  width: 45px;
  height: 45px;
  box-shadow: var(--main-shadow-light);
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-bg);
}
.blog-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-comment-button .post-comment-button-icon .florira-icon-comment {
  background: url(../image/comment-icon.svg) no-repeat center center;
  background-size: contain;
  display: block;
  height: inherit;
  width: 22px;
}
.blog-post-item .blog-post-wrapper .post-content-wrapper .post-read-more-wrapper .post-comment-button .post-comment-button-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  font-family: var(--font-heading);
  color: var(--color-body);
}
.blog-post-item .blog-post-wrapper:hover .post-thumbnail-wrapper .post-read-time {
  margin-right: 0;
  transition: margin-right 0.3s ease-in-out;
}
.blog-post-item .blog-post-wrapper.no-thumbnail {
  grid-template-columns: 100%;
  padding: 30px;
}
.blog-post-item .blog-post-wrapper.no-thumbnail .post-content-wrapper {
  padding: 0;
}
.blog-post-item:last-child .blog-post-wrapper {
  margin-bottom: 0px;
}
.blog-post-item:hover .post-thumbnail-wrapper img {
  transform: scale(1.2) rotate(5deg);
  transition: transform 0.3s ease-in-out;
}

.post-list-slider {
  margin: -20px;
  padding: 20px;
  overflow: hidden;
  padding-bottom: 0;
}
.post-list-slider .blog-list-slider-pagination.swiper-pagination-clickable {
  position: absolute;
  right: 50px;
  left: auto;
  width: auto;
  bottom: 50px;
  z-index: 99;
}
.post-list-slider .blog-list-slider-pagination.swiper-pagination-clickable span.swiper-pagination-bullet {
  width: 30px;
  height: 8px;
  border-radius: 4px;
  background-color: #b1b1b1;
}
.post-list-slider .blog-list-slider-pagination.swiper-pagination-clickable span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--thm-color);
}
.post-list-slider .blog-list-slider-navigation .blog-list-slider-navigation-icon {
  width: 60px;
  height: 60px;
  background: var(--color-bg);
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  box-shadow: var(--main-shadow-light);
  position: absolute;
  top: 50%;
  z-index: 1;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
  opacity: 0;
}
.post-list-slider .blog-list-slider-navigation .blog-list-slider-navigation-icon:hover {
  background: var(--thm-color);
  color: var(--color-white);
}
.post-list-slider .blog-list-slider-navigation .blog-list-slider-navigation-icon.blog-list-slider-next {
  right: -30px;
  left: auto;
}
.post-list-slider .blog-list-slider-navigation .blog-list-slider-navigation-icon.blog-list-slider-prev {
  left: -30px;
}
.post-list-slider:hover .blog-list-slider-navigation-icon {
  opacity: 1;
}

@media (max-width: 991px) {
  .page-layout-right-sidebar .sidebar-widget-area {
    margin-top: 70px;
  }
}
.page-layout-right-sidebar .all-posts-wrapper,
.page-layout-right-sidebar .post-pagination,
.page-layout-right-sidebar article.post-single,
.page-layout-right-sidebar .comments-area {
  padding-right: 10px;
}
@media (max-width: 991px) {
  .page-layout-right-sidebar .all-posts-wrapper,
  .page-layout-right-sidebar .post-pagination,
  .page-layout-right-sidebar article.post-single,
  .page-layout-right-sidebar .comments-area {
    padding-right: 0px;
  }
}

.page-layout-left-sidebar .all-posts-wrapper,
.page-layout-left-sidebar .post-pagination,
.page-layout-left-sidebar article.post-single,
.page-layout-left-sidebar .comments-area {
  padding-left: 10px;
}
@media (max-width: 991px) {
  .page-layout-left-sidebar .all-posts-wrapper,
  .page-layout-left-sidebar .post-pagination,
  .page-layout-left-sidebar article.post-single,
  .page-layout-left-sidebar .comments-area {
    padding-left: 0px;
  }
}
@media (max-width: 991px) {
  .page-layout-left-sidebar .sidebar-widget-area {
    margin-bottom: 70px;
  }
}

@media (max-width: 991px) {
  .page-layout-grid-rs .sidebar-widget-area {
    margin-top: 70px;
  }
}

@media (max-width: 991px) {
  .page-layout-grid-ls .sidebar-widget-area {
    margin-bottom: 70px;
  }
}

.page-layout-grid .all-posts-wrapper,
.page-layout-grid .tp-post-all-grid,
.page-layout-grid-ls .all-posts-wrapper,
.page-layout-grid-ls .tp-post-all-grid,
.page-layout-grid-rs .all-posts-wrapper,
.page-layout-grid-rs .tp-post-all-grid,
.blog-grid-post-wrapper .all-posts-wrapper,
.blog-grid-post-wrapper .tp-post-all-grid {
  position: relative;
}

.blog-grid-post-wrapper .tp-post-all-grid {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.blog-grid-post-wrapper .grid-post-item {
  box-sizing: border-box;
  float: none;
  display: block;
}
.blog-grid-post-wrapper.elementor-editor-active, .elementor-editor-active .blog-grid-post-wrapper,
.blog-grid-post-wrapper .elementor-editor-preview, .elementor-editor-preview .blog-grid-post-wrapper {
  overflow: hidden;
  box-sizing: border-box;
}
.blog-grid-post-wrapper.elementor-editor-active .tp-post-all-grid, .elementor-editor-active .blog-grid-post-wrapper .tp-post-all-grid,
.blog-grid-post-wrapper .elementor-editor-preview .tp-post-all-grid, .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid {
  display: block;
  -moz-columns: 1;
       columns: 1;
  -moz-column-gap: 30px;
       column-gap: 30px;
  width: calc(100% - 10px);
  max-width: calc(100% - 10px);
  margin: 0 auto;
  box-sizing: border-box;
  contain: layout;
}
.blog-grid-post-wrapper.elementor-editor-active .tp-post-all-grid .grid-post-item, .elementor-editor-active .blog-grid-post-wrapper .tp-post-all-grid .grid-post-item,
.blog-grid-post-wrapper .elementor-editor-preview .tp-post-all-grid .grid-post-item, .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid .grid-post-item {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  width: 100%;
  max-width: 100%;
  margin: 0 0 30px 0;
  float: none;
  display: inline-block;
  vertical-align: top;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  box-sizing: border-box;
}
.blog-grid-post-wrapper.elementor-editor-active .tp-post-all-grid[data-columns="2"], .elementor-editor-active .blog-grid-post-wrapper .tp-post-all-grid[data-columns="2"],
.blog-grid-post-wrapper .elementor-editor-preview .tp-post-all-grid[data-columns="2"], .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid[data-columns="2"] {
  -moz-columns: 2;
       columns: 2;
}
.blog-grid-post-wrapper.elementor-editor-active .tp-post-all-grid[data-columns="3"], .elementor-editor-active .blog-grid-post-wrapper .tp-post-all-grid[data-columns="3"],
.blog-grid-post-wrapper .elementor-editor-preview .tp-post-all-grid[data-columns="3"], .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid[data-columns="3"] {
  -moz-columns: 3;
       columns: 3;
}
@media (max-width: 768px) {
  .blog-grid-post-wrapper.elementor-editor-active .tp-post-all-grid[data-columns="2"],
  .blog-grid-post-wrapper.elementor-editor-active .tp-post-all-grid[data-columns="3"], .elementor-editor-active .blog-grid-post-wrapper .tp-post-all-grid[data-columns="2"],
  .elementor-editor-active .blog-grid-post-wrapper .tp-post-all-grid[data-columns="3"],
  .blog-grid-post-wrapper .elementor-editor-preview .tp-post-all-grid[data-columns="2"],
  .blog-grid-post-wrapper .elementor-editor-preview .tp-post-all-grid[data-columns="3"], .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid[data-columns="2"],
  .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid[data-columns="3"] {
    -moz-columns: 1;
         columns: 1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid-post-wrapper.elementor-editor-active .tp-post-all-grid[data-columns="3"], .elementor-editor-active .blog-grid-post-wrapper .tp-post-all-grid[data-columns="3"],
  .blog-grid-post-wrapper .elementor-editor-preview .tp-post-all-grid[data-columns="3"], .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid[data-columns="3"] {
    -moz-columns: 2;
         columns: 2;
  }
}
.blog-grid-post-wrapper body.elementor-editor-active, .elementor-editor-preview .blog-grid-post-wrapper {
  overflow: hidden;
  box-sizing: border-box;
}
.blog-grid-post-wrapper body.elementor-editor-active .tp-post-all-grid, .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid {
  display: block;
  -moz-columns: 1;
       columns: 1;
  -moz-column-gap: 30px;
       column-gap: 30px;
  width: calc(100% - 10px);
  max-width: calc(100% - 10px);
  margin: 0 auto;
  box-sizing: border-box;
  contain: layout;
}
.blog-grid-post-wrapper body.elementor-editor-active .tp-post-all-grid .grid-post-item, .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid .grid-post-item {
  position: static;
  transform: none;
  left: auto;
  top: auto;
  width: 100%;
  max-width: 100%;
  margin: 0 0 30px 0;
  float: none;
  display: inline-block;
  vertical-align: top;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  box-sizing: border-box;
}
.blog-grid-post-wrapper body.elementor-editor-active .tp-post-all-grid[data-columns="2"], .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid[data-columns="2"] {
  -moz-columns: 2;
       columns: 2;
}
.blog-grid-post-wrapper body.elementor-editor-active .tp-post-all-grid[data-columns="3"], .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid[data-columns="3"] {
  -moz-columns: 3;
       columns: 3;
}
@media (max-width: 768px) {
  .blog-grid-post-wrapper body.elementor-editor-active .tp-post-all-grid[data-columns="2"], .blog-grid-post-wrapper body.elementor-editor-active .tp-post-all-grid[data-columns="3"], .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid[data-columns="2"], .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid[data-columns="3"] {
    -moz-columns: 1;
         columns: 1;
  }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .blog-grid-post-wrapper body.elementor-editor-active .tp-post-all-grid[data-columns="3"], .elementor-editor-preview .blog-grid-post-wrapper .tp-post-all-grid[data-columns="3"] {
    -moz-columns: 2;
         columns: 2;
  }
}
.blog-grid-post-wrapper .grid-post-column-1 {
  width: 100%;
  margin-bottom: 30px;
  margin-right: 0;
}
.blog-grid-post-wrapper .grid-post-column-2 {
  width: 100%;
  margin-bottom: 30px;
  margin-right: 0;
}
@media (min-width: 768px) {
  .blog-grid-post-wrapper .grid-post-column-2 {
    width: calc(50% - 15px);
    margin-right: 30px;
  }
  .blog-grid-post-wrapper .grid-post-column-2:nth-child(2n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .page-layout-left-sidebar .blog-grid-post-wrapper .grid-post-column-2, .page-layout-right-sidebar .blog-grid-post-wrapper .grid-post-column-2, .elementor-widget-sidebar ~ * .blog-grid-post-wrapper .grid-post-column-2, .elementor-section:has(.elementor-widget-sidebar) .blog-grid-post-wrapper .grid-post-column-2 {
    width: calc(50% - 15px);
    margin-right: 30px;
  }
  .page-layout-left-sidebar .blog-grid-post-wrapper .grid-post-column-2:nth-child(2n), .page-layout-right-sidebar .blog-grid-post-wrapper .grid-post-column-2:nth-child(2n), .elementor-widget-sidebar ~ * .blog-grid-post-wrapper .grid-post-column-2:nth-child(2n), .elementor-section:has(.elementor-widget-sidebar) .blog-grid-post-wrapper .grid-post-column-2:nth-child(2n) {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .page-layout-left-sidebar .blog-grid-post-wrapper .grid-post-column-2, .page-layout-right-sidebar .blog-grid-post-wrapper .grid-post-column-2, .elementor-widget-sidebar ~ * .blog-grid-post-wrapper .grid-post-column-2, .elementor-section:has(.elementor-widget-sidebar) .blog-grid-post-wrapper .grid-post-column-2 {
    width: 100%;
    margin-right: 0;
  }
}
.blog-grid-post-wrapper .grid-post-column-3 {
  width: 100%;
  margin-bottom: 30px;
  margin-right: 0;
}
@media (min-width: 768px) {
  .blog-grid-post-wrapper .grid-post-column-3 {
    width: calc(50% - 15px);
    margin-right: 30px;
  }
  .blog-grid-post-wrapper .grid-post-column-3:nth-child(2n) {
    margin-right: 0;
  }
  .blog-grid-post-wrapper .grid-post-column-3:nth-child(3n) {
    margin-right: 30px;
  }
}
@media (min-width: 992px) {
  .blog-grid-post-wrapper .grid-post-column-3 {
    width: calc(33.333% - 20px);
    margin-right: 30px;
  }
  .blog-grid-post-wrapper .grid-post-column-3:nth-child(2n) {
    margin-right: 30px;
  }
  .blog-grid-post-wrapper .grid-post-column-3:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .page-layout-left-sidebar .blog-grid-post-wrapper .grid-post-column-3, .page-layout-right-sidebar .blog-grid-post-wrapper .grid-post-column-3, .elementor-widget-sidebar ~ * .blog-grid-post-wrapper .grid-post-column-3, .elementor-section:has(.elementor-widget-sidebar) .blog-grid-post-wrapper .grid-post-column-3 {
    width: calc(50% - 15px);
    margin-right: 30px;
  }
  .page-layout-left-sidebar .blog-grid-post-wrapper .grid-post-column-3:nth-child(2n), .page-layout-right-sidebar .blog-grid-post-wrapper .grid-post-column-3:nth-child(2n), .elementor-widget-sidebar ~ * .blog-grid-post-wrapper .grid-post-column-3:nth-child(2n), .elementor-section:has(.elementor-widget-sidebar) .blog-grid-post-wrapper .grid-post-column-3:nth-child(2n) {
    margin-right: 0;
  }
  .page-layout-left-sidebar .blog-grid-post-wrapper .grid-post-column-3:nth-child(3n), .page-layout-right-sidebar .blog-grid-post-wrapper .grid-post-column-3:nth-child(3n), .elementor-widget-sidebar ~ * .blog-grid-post-wrapper .grid-post-column-3:nth-child(3n), .elementor-section:has(.elementor-widget-sidebar) .blog-grid-post-wrapper .grid-post-column-3:nth-child(3n) {
    margin-right: 30px;
  }
}
@media (min-width: 1200px) {
  .page-layout-left-sidebar .blog-grid-post-wrapper .grid-post-column-3, .page-layout-right-sidebar .blog-grid-post-wrapper .grid-post-column-3, .elementor-widget-sidebar ~ * .blog-grid-post-wrapper .grid-post-column-3, .elementor-section:has(.elementor-widget-sidebar) .blog-grid-post-wrapper .grid-post-column-3 {
    width: calc(33.333% - 20px);
    margin-right: 30px;
  }
  .page-layout-left-sidebar .blog-grid-post-wrapper .grid-post-column-3:nth-child(2n), .page-layout-right-sidebar .blog-grid-post-wrapper .grid-post-column-3:nth-child(2n), .elementor-widget-sidebar ~ * .blog-grid-post-wrapper .grid-post-column-3:nth-child(2n), .elementor-section:has(.elementor-widget-sidebar) .blog-grid-post-wrapper .grid-post-column-3:nth-child(2n) {
    margin-right: 30px;
  }
  .page-layout-left-sidebar .blog-grid-post-wrapper .grid-post-column-3:nth-child(3n), .page-layout-right-sidebar .blog-grid-post-wrapper .grid-post-column-3:nth-child(3n), .elementor-widget-sidebar ~ * .blog-grid-post-wrapper .grid-post-column-3:nth-child(3n), .elementor-section:has(.elementor-widget-sidebar) .blog-grid-post-wrapper .grid-post-column-3:nth-child(3n) {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .blog-grid-post-wrapper .elementor-widget-container .blog-grid-post-wrapper .grid-post-column-3 {
    width: calc(50% - 15px);
    margin-right: 30px;
  }
  .blog-grid-post-wrapper .elementor-widget-container .blog-grid-post-wrapper .grid-post-column-3:nth-child(2n) {
    margin-right: 0;
  }
  .blog-grid-post-wrapper .elementor-widget-container .blog-grid-post-wrapper .grid-post-column-3:nth-child(3n) {
    margin-right: 30px;
  }
}
@media (max-width: 575px) {
  .blog-grid-post-wrapper .grid-post-column-1,
  .blog-grid-post-wrapper .grid-post-column-2,
  .blog-grid-post-wrapper .grid-post-column-3 {
    width: 100%;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media (min-width: 768px) {
  .page-layout-grid .grid-post-item {
    width: calc(33.333% - 7px);
    margin-right: 10px;
    margin-bottom: 30px;
  }
  .page-layout-grid .grid-post-item:nth-child(3n) {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .page-layout-grid-ls .grid-post-item {
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-bottom: 30px;
  }
  .page-layout-grid-ls .grid-post-item:nth-child(2n) {
    margin-right: 0;
  }
}

@media (min-width: 768px) {
  .page-layout-grid-rs .grid-post-item {
    width: calc(50% - 5px);
    margin-right: 10px;
    margin-bottom: 30px;
  }
  .page-layout-grid-rs .grid-post-item:nth-child(2n) {
    margin-right: 0;
  }
}

.blog-post-item .sticky .post-content-wrapper::before {
  font-size: 30px;
  right: 30px;
  top: 30px;
}
.blog-post-item .post-title {
  font-size: 24px;
  margin-bottom: 15px;
  line-height: 34px;
  margin-top: 0;
}
.blog-post-item .audio-iframe-wrapper iframe {
  height: auto;
}
.blog-post-item .blog-post-wrapper .post-thumbnail-wrapper {
  overflow: hidden;
  margin-bottom: 24px;
}
.blog-post-item .blog-post-wrapper .post-thumbnail-wrapper .post-featured-icon {
  width: 58px;
  height: 58px;
  background: var(--color-bg);
  color: var(--color-secondary);
  border-radius: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  position: absolute;
  top: 25px;
  left: 25px;
}
.blog-post-item .blog-post-wrapper embed,
.blog-post-item .blog-post-wrapper iframe {
  height: auto;
  min-height: 300px;
}
.blog-post-item.list-post-slider-item .blog-post-wrapper .post-thumbnail-wrapper {
  margin-bottom: 0;
}
.blog-post-item .blog-post-item .post-meta ul li {
  font-size: 16px;
  margin-right: 10px;
  font-weight: 600;
}
.blog-post-item .blog-post-item .post-meta ul li i {
  font-size: 15px;
}

/*===================================
    Theme Blog Single
====================================*/
.post-details-wrapper .post-single iframe {
  margin-bottom: 18px;
}
.post-details-wrapper .post-single .blog-single-top-wrapper {
  padding: 30px;
  box-shadow: var(--main-shadow-light);
  border-radius: 20px;
  margin-bottom: 30px;
}
.post-details-wrapper .post-single .blog-single-top-wrapper .blog-single-top-wrapper-inner .post-thumbnail-wrapper {
  margin-bottom: 26px;
}
.post-details-wrapper .post-single .blog-single-top-wrapper .blog-single-top-wrapper-inner .post-thumbnail-wrapper img {
  border-radius: 10px;
}
.post-details-wrapper .post-single .blog-single-top-wrapper .blog-single-top-wrapper-inner .post-title {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 55px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
@media (max-width: 575px) {
  .post-details-wrapper .post-single .blog-single-top-wrapper .blog-single-top-wrapper-inner .post-title {
    font-size: 28px;
    line-height: 38px;
  }
}
.post-details-wrapper .post-single .blog-single-top-wrapper .blog-single-top-wrapper-inner .post-meta {
  margin-bottom: 0;
}
.post-details-wrapper .post-single .blog-single-top-wrapper .blog-single-top-wrapper-inner .post-meta ul .post-date a {
  padding: 8px 10px;
  box-shadow: var(--main-shadow-light);
  border-radius: 6px;
  background-color: var(--thm-color);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
}
.post-details-wrapper .post-single .blog-single-top-wrapper .blog-single-top-wrapper-inner .post-meta ul .post-date a:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.post-details-wrapper .post-single .post-content-wrapper {
  padding: 40px 30px;
  box-shadow: var(--main-shadow-light);
  border-radius: 20px;
  margin-bottom: 30px;
}
.post-details-wrapper .post-single .post-content-wrapper .entry-content {
  margin-bottom: 30px;
}
.post-details-wrapper .post-single .post-content-wrapper .entry-content p {
  margin-bottom: 25px;
}
.post-details-wrapper .post-single .post-content-wrapper .entry-content p:last-child {
  margin-bottom: 0;
}
.post-details-wrapper .post-single .post-content-wrapper .entry-content a {
  font-weight: 500;
}
.post-details-wrapper .post-single .post-content-wrapper footer.post-footer {
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.post-details-wrapper .post-single .post-content-wrapper footer.post-footer .post-tags {
  flex-grow: 1;
}
.post-details-wrapper .post-single .post-content-wrapper footer.post-footer .post-tags span.tag-title {
  color: var(--color-secondary);
  font-weight: 500;
  margin-right: 10px;
  font-family: var(--font-heading);
}
.post-details-wrapper .post-single .post-content-wrapper footer.post-footer .post-tags a {
  display: inline-block;
  margin-right: 2px;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 10px;
  color: var(--color-body);
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
}
.post-details-wrapper .post-single .post-content-wrapper footer.post-footer .post-tags a:hover {
  color: var(--color-white);
  background-color: var(--thm-color);
  border-color: transparent;
}

/*===================================
    Author Box
====================================*/
.author-info-wrapper {
  padding: 40px;
  box-shadow: var(--main-shadow-light);
  margin-top: 30px;
  border-radius: 10px;
}
@media (max-width: 425px) {
  .author-info-wrapper {
    padding: 25px;
  }
}
.author-info-wrapper .author-info-inner {
  display: flex;
}
@media (max-width: 767px) {
  .author-info-wrapper .author-info-inner {
    display: block;
  }
}
.author-info-wrapper .author-info-inner .author-info-left {
  margin-right: 30px;
}
@media (max-width: 767px) {
  .author-info-wrapper .author-info-inner .author-info-left {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.author-info-wrapper .author-info-inner .author-info-left .author-img {
  width: 180px;
  height: 180px;
  border-radius: 10px;
}
@media (max-width: 425px) {
  .author-info-wrapper .author-info-inner .author-info-left .author-img {
    margin: 0 auto;
  }
}
.author-info-wrapper .author-info-inner .author-info-left .author-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 425px) {
  .author-info-wrapper .author-info-inner .author-info-right .author-info-content {
    text-align: center;
  }
}
.author-info-wrapper .author-info-inner .author-info-right .author-info-content .author-info-title {
  font-size: 24px;
  text-transform: capitalize;
  line-height: 40px;
  margin: 0;
}
.author-info-wrapper .author-info-inner .author-info-right .author-info-content .author-dec {
  margin-top: 10px;
  margin-bottom: 16px;
}
.author-info-wrapper .author-info-inner .author-info-right .author-info-content .author-social-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 425px) {
  .author-info-wrapper .author-info-inner .author-info-right .author-info-content .author-social-info ul {
    justify-content: center;
  }
}
.author-info-wrapper .author-info-inner .author-info-right .author-info-content .author-social-info ul li a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: var(--main-shadow-light);
  transition: all 0.3s ease;
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
}
.author-info-wrapper .author-info-inner .author-info-right .author-info-content .author-social-info ul li a:hover {
  background-color: var(--thm-color);
  color: var(--color-white);
  box-shadow: var(--main-shadow-dark);
}

.related-posts-wrapper {
  margin-bottom: 40px;
  margin-top: 60px;
}
.related-posts-wrapper .related-posts-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin-bottom: 30px;
}

/*------------------- 3.4 Post Paginations -------------------*/
/*===================================
    Post Prev Next Buttons
====================================*/
.tp-post-navication-thum {
  padding: 30px 0;
  border-top: 1px solid;
  border-color: var(--color-border);
}
.tp-post-navication-thum .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 425px) {
  .tp-post-navication-thum .nav-links {
    flex-direction: column;
  }
}
.tp-post-navication-thum .nav-links a.nav-label {
  font-weight: 500;
  color: var(--color-secondary);
  font-size: 18px;
  font-family: var(--font-heading);
}
.tp-post-navication-thum .nav-links a.nav-label:hover {
  color: var(--thm-color);
}
.tp-post-navication-thum .nav-links .nav-holder {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.tp-post-navication-thum .nav-links .nav-holder .nav-label-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 6px;
}
.tp-post-navication-thum .nav-links .nav-holder .nav-label-wrapper a.nav-title {
  font-size: 14px;
  font-family: var(--font-heading);
  font-weight: 400;
  color: var(--color-body);
  line-height: normal;
  overflow-wrap: anywhere;
}
.tp-post-navication-thum .nav-links .nav-holder .nav-label-wrapper a.nav-title:hover {
  color: var(--thm-color);
}
.tp-post-navication-thum .nav-links .nav-holder .nav-thumb {
  width: 80px;
  height: 80px;
  border-radius: 10px;
}
.tp-post-navication-thum .nav-links .nav-holder .nav-thumb a {
  display: block;
  width: 80px;
  height: 80px;
}
.tp-post-navication-thum .nav-links .nav-holder .nav-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.tp-post-navication-thum .nav-links .nav-previous,
.tp-post-navication-thum .nav-links .nav-next {
  width: 50%;
}
@media (max-width: 425px) {
  .tp-post-navication-thum .nav-links .nav-previous,
  .tp-post-navication-thum .nav-links .nav-next {
    width: 100%;
  }
}
.tp-post-navication-thum .nav-links .nav-next.post-thum-nav .nav-holder {
  justify-content: flex-end;
}
.tp-post-navication-thum .nav-links .nav-next.post-thum-nav .nav-label-wrapper {
  align-items: flex-end;
  text-align: right;
}

.wp-block-query-pagination,
.page-links {
  margin: 20px 0;
}
.wp-block-query-pagination .page-numbers,
.wp-block-query-pagination .post-page-numbers,
.page-links .page-numbers,
.page-links .post-page-numbers {
  margin-right: 10px;
  display: inline-flex;
  height: 40px;
  width: 40px;
  border: 2px solid transparent;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  color: var(--color-secondary);
  background: var(--color-white);
  border-radius: 100%;
}
.wp-block-query-pagination .page-numbers:hover,
.wp-block-query-pagination .post-page-numbers:hover,
.page-links .page-numbers:hover,
.page-links .post-page-numbers:hover {
  background: var(--thm-color);
  color: var(--color-white);
}
.wp-block-query-pagination .page-numbers.current,
.wp-block-query-pagination .post-page-numbers.current,
.page-links .page-numbers.current,
.page-links .post-page-numbers.current {
  background: var(--thm-color);
  color: var(--color-white);
}

.post-pagination ul,
.wp-block-query-pagination-numbers ul,
.woocommerce nav.woocommerce-pagination ul,
.comments-pagination ul, .custom-pagination ul {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 10px;
}
.post-pagination ul li,
.wp-block-query-pagination-numbers ul li,
.woocommerce nav.woocommerce-pagination ul li,
.comments-pagination ul li, .custom-pagination ul li {
  display: inline-block;
}
.post-pagination ul li a,
.post-pagination ul li span,
.wp-block-query-pagination-numbers ul li a,
.wp-block-query-pagination-numbers ul li span,
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span,
.comments-pagination ul li a,
.comments-pagination ul li span, .custom-pagination ul li a,
.custom-pagination ul li span {
  display: inline-flex;
  height: 40px;
  width: 40px;
  border: 2px solid transparent;
  line-height: 40px;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  color: var(--color-secondary);
  background: var(--color-white);
  border-radius: 5px;
}
.post-pagination ul li a:hover,
.post-pagination ul li span.current, .post-pagination ul li a.current,
.wp-block-query-pagination-numbers ul li a:hover,
.wp-block-query-pagination-numbers ul li span.current,
.wp-block-query-pagination-numbers ul li a.current,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a.current,
.comments-pagination ul li a:hover,
.comments-pagination ul li span.current,
.comments-pagination ul li a.current, .custom-pagination ul li a:hover,
.custom-pagination ul li span.current, .custom-pagination ul li a.current {
  background: var(--thm-color);
  color: var(--color-white);
}
.post-pagination ul li a i,
.post-pagination ul li span i,
.wp-block-query-pagination-numbers ul li a i,
.wp-block-query-pagination-numbers ul li span i,
.woocommerce nav.woocommerce-pagination ul li a i,
.woocommerce nav.woocommerce-pagination ul li span i,
.comments-pagination ul li a i,
.comments-pagination ul li span i, .custom-pagination ul li a i,
.custom-pagination ul li span i {
  font-size: 16px;
  line-height: 40px;
}

.post-pagination {
  margin-top: 50px;
}

nav.navigation.comments-pagination {
  padding-top: 35px;
  padding-bottom: 25px;
}

.custom-pagination {
  margin-top: 30px;
}

/*------------------- 3.5 Error Page -------------------*/
.not-found-content .not-found-text-wrapper .text-404 h2 {
  font-size: 150px;
  line-height: 100%;
}
.not-found-content .not-found-text-wrapper .error-button.button {
  margin-top: 30px;
}

/*------------------- 3.6 Author Page -------------------*/
.author-section {
  padding-bottom: 50px;
}
.author-section .author-wrapper-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: var(--main-shadow-light);
  padding: 40px 50px;
  border-radius: 10px;
  background-color: var(--color-bg);
  gap: 60px;
}
@media (max-width: 768px) {
  .author-section .author-wrapper-top {
    padding: 35px;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .author-section .author-wrapper-top {
    padding: 38px 25px;
    gap: 30px;
    text-align: center;
    flex-direction: column;
  }
}
.author-section .author-wrapper-top .author-avatar {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  overflow: hidden;
}
.author-section .author-wrapper-top .author-avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.author-section .author-wrapper-top .author-content-wrapper .author-name {
  font-size: 26px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 0;
  line-height: normal;
  color: var(--color-secondary);
}
.author-section .author-wrapper-top .author-content-wrapper .author-designation {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: normal;
  color: var(--thm-color);
}
.author-section .author-wrapper-top .author-content-wrapper .author-description {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-body);
  margin: 20px 0 27px 0;
}
.author-section .author-wrapper-top .author-content-wrapper .author-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
}
@media (max-width: 600px) {
  .author-section .author-wrapper-top .author-content-wrapper .author-social {
    justify-content: center;
  }
}
.author-section .author-wrapper-top .author-content-wrapper .author-social a {
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background-color: var(--color-bg);
  display: flex;
  box-shadow: var(--main-shadow-light);
  align-items: center;
  justify-content: center;
  color: var(--color-secondary);
  transition: all 0.3s ease;
}
.author-section .author-wrapper-top .author-content-wrapper .author-social a:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

/*------------------- 3.6 Sidebar -------------------*/
/*===================================
 Sidebar Area Widget
====================================*/
@media (max-width: 991px) {
  .layout-right-sidebar .sidebar-widget-area {
    margin-top: 80px;
  }
}

@media (max-width: 991px) {
  .layout-left-sidebar .sidebar-widget-area {
    margin-bottom: 80px;
  }
}

.sidebar-widget-area .sidebar-sticky-area {
  align-self: flex-start; /* allow sticky child to work */
  position: sticky;
  top: 114px;
}
.sidebar-widget-area .widget {
  margin-bottom: 30px;
  padding: 40px 30px;
  overflow: hidden;
  background: var(--color-bg);
  border: none;
  border-radius: 20px;
  box-shadow: var(--main-shadow-light);
}
.sidebar-widget-area .widget:last-child {
  margin-bottom: 0;
}
.sidebar-widget-area .widget .floriracore-widget-post-thum .recent-post-title {
  color: var(--color-secondary);
  font-size: 18px;
  line-height: normal;
  font-weight: 500;
  margin-bottom: 7px;
}
.sidebar-widget-area .widget .floriracore-widget-post-thum .recent-post-title:hover {
  color: var(--thm-color);
}
.sidebar-widget-area .widget .floriracore-widget-post-thum .recent-widget-date {
  color: var(--color-body);
  font-size: 14px;
  line-height: 17px;
}
.sidebar-widget-area .widget .floriracore-widget-post-thum li .sidebar-blogPost-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 0px;
}
.sidebar-widget-area .widget .floriracore-widget-post-thum li img {
  height: 85px;
  width: 85px;
  min-width: 85px;
}
.sidebar-widget-area .widget.widget_archive select, .sidebar-widget-area .widget.widget_categories select {
  margin-bottom: 10px;
}
.sidebar-widget-area .widget.widget_rss .widget-title {
  margin-bottom: 12px;
}
.sidebar-widget-area .widget.widget_text .widget-title {
  margin-bottom: 15px;
}
.sidebar-widget-area .widget.widget_rss ul li:last-child {
  padding-bottom: 0 !important;
}
.sidebar-widget-area .widget.widget_search {
  padding: 40px;
}
.sidebar-widget-area .widget.widget_search .widget-title {
  display: none;
}
.sidebar-widget-area .widget .widget-title {
  text-transform: capitalize;
  position: relative;
  color: var(--color-secondary);
  margin-bottom: 24px;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}
.sidebar-widget-area .widget .widget-title a {
  color: var(--color-secondary);
}
.sidebar-widget-area .widget ul li a {
  position: relative;
}
.sidebar-widget-area .widget ul li a .post-count-number {
  width: 34px;
  height: 30px;
  border-radius: 5px;
  background-color: var(--color-bg);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  position: absolute;
  font-family: var(--font-heading);
  box-shadow: var(--main-shadow-light);
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
.sidebar-widget-area .widget ul li a:hover .post-count-number {
  background-color: var(--thm-color);
  color: var(--color-white);
  box-shadow: none;
}
.sidebar-widget-area .widget.widget_archive li a,
.sidebar-widget-area .widget .wp-block-archives li a, .sidebar-widget-area .widget.widget_categories li a,
.sidebar-widget-area .widget .wp-block-categories li a, .sidebar-widget-area .widget.widget_pages li a, .sidebar-widget-area .widget.widget_meta li a, .sidebar-widget-area .widget.widget_nav_menu li a,
.sidebar-widget-area .widget .widget_block .wp-block-page-list li a,
.sidebar-widget-area .widget .wp-block-page-list li a,
.sidebar-widget-area .widget .post-single ul.wp-block-archives-list.extraclass.wp-block-archives li a {
  display: block;
  color: var(--color-secondary);
  line-height: normal;
  position: relative;
  padding: 15px;
  box-shadow: var(--main-inset-shadow-light);
  margin-bottom: 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
}
.sidebar-widget-area .widget.widget_archive li a:hover,
.sidebar-widget-area .widget .wp-block-archives li a:hover, .sidebar-widget-area .widget.widget_categories li a:hover,
.sidebar-widget-area .widget .wp-block-categories li a:hover, .sidebar-widget-area .widget.widget_pages li a:hover, .sidebar-widget-area .widget.widget_meta li a:hover, .sidebar-widget-area .widget.widget_nav_menu li a:hover,
.sidebar-widget-area .widget .widget_block .wp-block-page-list li a:hover,
.sidebar-widget-area .widget .wp-block-page-list li a:hover,
.sidebar-widget-area .widget .post-single ul.wp-block-archives-list.extraclass.wp-block-archives li a:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
  box-shadow: var(--main-shadow-light);
}
.sidebar-widget-area .widget ul li:last-child:not(ul ul li) a {
  margin-bottom: 0;
}
.sidebar-widget-area .widget ul li ul li {
  margin-left: 15px;
}
.sidebar-widget-area .widget.widget_recent_comments ul li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-border);
}
.sidebar-widget-area .widget.widget_recent_comments ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.sidebar-widget-area .widget.widget_recent_comments ul li .comment-author-link a {
  color: var(--thm-color);
}
.sidebar-widget-area .widget.widget_recent_comments ul li .comment-author-link a:hover {
  color: var(--color-secondary);
}
.sidebar-widget-area .widget.widget_block {
  padding: 35px 40px 40px 40px;
}
.sidebar-widget-area .widget.widget_block h2 {
  font-size: 20px;
  color: var(--color-secondary);
  padding: 20px 32px 0 39px;
  margin: -22px -40px 20px -40px;
  font-weight: 600;
  position: relative;
  line-height: 30px;
}
.sidebar-widget-area .widget.widget_block .wp-block-latest-comments {
  padding-left: 0;
  margin-top: 17px;
}
.sidebar-widget-area .widget.widget_block .wp-block-latest-posts__list li a {
  width: 100%;
}
.sidebar-widget-area .widget.widget_block .wp-block-page-list li a {
  width: 100%;
}
.sidebar-widget-area .widget.widget_block.widget_recent_comments ol,
.sidebar-widget-area .widget.widget_block.widget_recent_comments li {
  padding-left: 0;
}
.sidebar-widget-area .widget.widget_block.widget_tag_cloud .wp-block-tag-cloud {
  margin-bottom: 0;
}
.sidebar-widget-area .widget.widget_block .wp-block-search .wp-block-search__label {
  display: none;
}
.sidebar-widget-area .widget select {
  margin-bottom: 0;
}
.sidebar-widget-area .wp-block-calendar,
.sidebar-widget-area .wp-block-calendar .calendar_wrap,
.sidebar-widget-area .calendar_wrap {
  margin-bottom: 0px;
}
.sidebar-widget-area .wp-block-calendar table,
.sidebar-widget-area .wp-block-calendar .calendar_wrap table,
.sidebar-widget-area .calendar_wrap table {
  margin-bottom: 0;
}
.sidebar-widget-area .widget_recent_comments li,
.sidebar-widget-area .wp-block-latest-comments__comment {
  padding-left: 0px;
  position: relative;
  color: var(--color-secondary);
  font-weight: 500;
}
.sidebar-widget-area .widget_recent_entries li {
  border-color: transparent;
  padding: 10px 0 10px;
}
.sidebar-widget-area .widget_recent_entries li a {
  margin: 0;
  line-height: 26px;
}
.sidebar-widget-area label.wp-block-archives__label {
  display: none;
}
.sidebar-widget-area .widget.widget_recent_comments li a:hover {
  color: var(--thm-color);
}
.sidebar-widget-area .wp-block-archives-dropdown,
.sidebar-widget-area .wp-block-categories-dropdown {
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .sidebar-widget-area .widget_block.widget_search {
    margin-top: 55px;
  }
}
.sidebar-widget-area .widget.widget_block .wp-block-group.is-layout-flow.wp-block-group-is-layout-flow .has-dates li,
.sidebar-widget-area .widget.widget_block .wp-block-group.is-layout-flow.wp-block-group-is-layout-flow .has-dates li a {
  padding-left: 0;
}
.sidebar-widget-area .widget.widget_block .wp-block-group.is-layout-flow.wp-block-group-is-layout-flow .has-dates li:before,
.sidebar-widget-area .widget.widget_block .wp-block-group.is-layout-flow.wp-block-group-is-layout-flow .has-dates li a:before {
  content: "";
}

/*------------------- 3.7 Footer -------------------*/
.site-footer {
  margin-top: 80px;
}

.footer-widget-area {
  background-color: transparent;
  padding-top: 90px;
  padding-bottom: 60px;
  border-top: 1px solid var(--color-border);
}
.footer-widget-area .widget {
  margin-bottom: 45px;
  color: var(--color-secondary);
}
.footer-widget-area .widget .widget-title,
.footer-widget-area .widget .wp-block-heading {
  padding-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  font-family: var(--font-heading);
  color: var(--color-secondary);
  margin-bottom: 0;
  text-transform: capitalize;
}
.footer-widget-area .widget a {
  color: var(--color-secondary);
}
.footer-widget-area .widget a:hover {
  color: var(--thm-color);
}
.footer-widget-area .widget .wp-block-archives-dropdown label {
  display: none;
}
.footer-widget-area .widget.widget_tag_cloud a,
.footer-widget-area .widget .wp-block-tag-cloud a, .footer-widget-area .widget.widget_product_tag_cloud a {
  color: var(--color-white);
  background-color: var(--color-secondary);
  border: 1px solid transparent;
  border-radius: 5px;
}
.footer-widget-area .widget.widget_tag_cloud a:hover,
.footer-widget-area .widget .wp-block-tag-cloud a:hover, .footer-widget-area .widget.widget_product_tag_cloud a:hover {
  color: var(--color-white);
  background-color: var(--thm-color);
  border-color: transparent;
}
.footer-widget-area .widget .wp-block-calendar table caption,
.footer-widget-area .widget .calendar_wrap table caption {
  background-color: var(--thm-color);
  color: var(--color-white);
}
.footer-widget-area .widget .wp-block-calendar table thead tr th,
.footer-widget-area .widget .calendar_wrap table thead tr th {
  color: var(--thm-color);
}
.footer-widget-area .widget .wp-block-calendar table tbody tr td a,
.footer-widget-area .widget .calendar_wrap table tbody tr td a {
  color: var(--color-white);
}
.footer-widget-area .widget .wp-block-calendar table tbody tr td a:hover,
.footer-widget-area .widget .calendar_wrap table tbody tr td a:hover {
  color: var(--color-secondary);
}
.footer-widget-area .widget .wp-block-calendar .wp-calendar-nav a,
.footer-widget-area .widget .calendar_wrap .wp-calendar-nav a {
  color: var(--color-white);
}
.footer-widget-area .widget .wp-block-calendar .wp-calendar-nav a:hover,
.footer-widget-area .widget .calendar_wrap .wp-calendar-nav a:hover {
  color: var(--color-secondary);
}
.footer-widget-area .widget.widget_recent_comments ul li {
  margin: 10px 0;
}
.footer-widget-area .widget.widget_recent_comments ul li .comment-author-link a {
  color: var(--thm-color);
}
.footer-widget-area .widget.widget_recent_comments ul li .comment-author-link a:hover {
  color: var(--color-secondary);
}
.footer-widget-area .widget ul li {
  padding: 5px 0;
}
.footer-widget-area .widget ul li:first-child {
  padding-top: 0;
}
.footer-widget-area .widget ul li:first-of-type {
  margin-top: 10px;
}
.footer-widget-area .widget ul li a {
  position: relative;
  width: 100%;
  color: var(--color-secondary);
}
.footer-widget-area .widget ul li a:hover {
  color: var(--thm-color);
}
.footer-widget-area .widget ul li .post-count-number {
  color: var(--color-secondary);
}
.footer-widget-area .widget ul li.widget_nav_menu ul ul li:first-of-type {
  margin-top: 10px;
}
.footer-widget-area .widget ul li ul li {
  margin-left: 15px;
}
.footer-widget-area .widget.widget_block .wp-block-latest-comments {
  padding-left: 0;
}
.footer-widget-area .widget.widget_block .wp-block-latest-comments li a {
  color: var(--color-secondary);
}
.footer-widget-area .widget.widget_block .wp-block-latest-comments li a:hover {
  color: var(--thm-color);
}
.footer-widget-area .widget.widget_block .wp-block-latest-comments li a.wp-block-latest-comments__comment-author {
  text-transform: capitalize;
}
.footer-widget-area .widget.widget_block .wp-block-latest-comments li time {
  color: var(--thm-color);
  font-size: 15px;
}
.footer-widget-area .widget.widget_block .wp-block-latest-comments li .wp-block-latest-comments__comment-excerpt {
  font-size: 16px;
  margin-left: 0;
}
.footer-widget-area .widget.widget_archive li a::before,
.footer-widget-area .widget .wp-block-archives-list li a::before,
.footer-widget-area .widget .wp-block-archives li a::before,
.footer-widget-area .widget .wp-block-categories-list li a::before,
.footer-widget-area .widget .wp-block-categories li a::before,
.footer-widget-area .widget .wp-block-page-list li a::before,
.footer-widget-area .widget .wc-block-product-categories-list li a::before, .footer-widget-area .widget.widget_pages li a::before, .footer-widget-area .widget.widget_categories li a::before, .footer-widget-area .widget.widget_meta li a::before, .footer-widget-area .widget.widget_nav_menu li a::before {
  content: "\f101";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 98%;
  left: 0;
  margin-right: 15px;
}
.footer-widget-area .widget.widget_rss .widget-title a,
.footer-widget-area .widget.widget_rss cite {
  color: var(--color-secondary);
}
.footer-widget-area .widget.widget_rss .widget-title a:after,
.footer-widget-area .widget.widget_rss cite:after {
  background-color: var(--thm-color);
}
.footer-widget-area .widget.widget_rss li {
  margin-bottom: 15px;
}
.footer-widget-area .widget.widget_rss li .rss-date {
  color: var(--thm-color);
}
.footer-widget-area .widget.widget_rss li a {
  color: var(--color-secondary);
}
.footer-widget-area .widget.widget_rss li a:hover {
  color: var(--thm-color);
}
.footer-widget-area .widget .wp-block-rss li:first-child {
  margin-top: 0;
}
.footer-widget-area .widget .wp-block-rss__item-title a {
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.footer-widget-area .widget .wp-block-rss__item-title a:hover {
  color: var(--thm-color);
}
.footer-widget-area .widget .wp-block-rss__item-publish-date, .footer-widget-area .widget .wp-block-rss__item-author {
  color: var(--thm-color);
  font-size: 15px;
}
.footer-widget-area .widget .wp-block-rss__item-excerpt {
  margin-top: 10px;
}
.footer-widget-area .widget.widget_archive select, .footer-widget-area .widget.widget_categories select {
  margin-top: 12px;
}
.footer-widget-area .widget .wp-block-search__label {
  display: none;
}
.footer-widget-area .widget .wp-block-search__button.wp-element-button {
  padding: 19px 22px;
}
.footer-widget-area .widget .wp-block-search__button.has-icon {
  background-color: var(--color-secondary) !important;
  margin: 0;
}
.footer-widget-area .widget .wc-block-product-categories-list li {
  position: relative;
}
.footer-widget-area .widget .wc-block-product-categories-list li span.wc-block-product-categories-list-item-count {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  transform: translate(0, 12px);
}
.footer-widget-area .widget .search-button button.search-submit {
  border: 1px solid var(--thm-color);
}
.footer-widget-area .widget .search-button button.search-submit:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
  border-color: transparent;
}
.footer-widget-area .wp-block-calendar .wp-calendar-table,
.footer-widget-area .wp-block-calendar .calendar_wrap .wp-calendar-table {
  margin: 0;
}
.footer-widget-area .wp-block-calendar table thead tr th {
  color: var(--color-secondary);
}
.footer-widget-area .wp-block-latest-posts__post-author, .footer-widget-area .wp-block-latest-posts__post-date {
  color: var(--color-secondary);
  font-size: 15px;
}
.footer-widget-area .wp-block-latest-posts__post-title {
  margin-bottom: 10px;
}
.footer-widget-area .wp-block-latest-posts__featured-image {
  margin-bottom: 10px;
}
.footer-widget-area .wp-block-latest-posts__read-more {
  margin-top: 10px;
}
.footer-widget-area .wp-block-latest-posts.wp-block-latest-posts__list .wp-block-latest-posts__featured-image a,
.footer-widget-area .wp-block-latest-posts.wp-block-latest-posts__list .wp-block-latest-posts__post-title,
.footer-widget-area .wp-block-latest-posts.wp-block-latest-posts__list .wp-block-latest-posts__read-more {
  padding: 0 !important;
}
.footer-widget-area .wp-block-latest-posts.wp-block-latest-posts__list li a {
  color: var(--color-secondary);
}
.footer-widget-area .wp-block-latest-posts.wp-block-latest-posts__list li a:hover {
  color: var(--thm-color);
}
.footer-widget-area .wp-block-latest-posts.wp-block-latest-posts__list li a:before {
  top: 50%;
  left: 0;
}
.footer-widget-area .wp-block-latest-posts.wp-block-latest-posts__list .wp-block-pages-list__item__link:first-of-type {
  padding-top: 10px;
}
.footer-widget-area .wp-block-latest-posts__list.has-dates.wp-block-latest-posts a.wp-block-latest-posts__read-more {
  padding: 0 !important;
}
.footer-widget-area .wp-block-latest-posts .wp-block-latest-comments__comment {
  margin-bottom: 0;
  padding: 5px 0;
  position: relative;
}
.footer-widget-area .wp-block-latest-posts .wp-block-latest-comments__comment.has-avatars.has-dates.has-excerpts {
  margin-bottom: 10px;
}
.footer-widget-area strong,
.footer-widget-area p {
  color: var(--color-secondary);
}

.footer-copyright-wrapper {
  background-color: transparent;
  padding-top: 30px;
  padding-bottom: 30px;
  text-align: center;
  color: var(--color-secondary);
  border-top: 1px solid var(--color-border);
}
.footer-copyright-wrapper a {
  color: var(--color-secondary);
}
.footer-copyright-wrapper a:hover {
  color: var(--thm-color);
}

/*------------------- 3.8 Author Box -------------------*/
.themepul-author-widget .themepul-author-widget-inner .themepul-author-widget-image {
  border-radius: 10px;
  overflow: hidden;
  max-width: 100%;
  height: 300px;
  width: 100%;
}
.themepul-author-widget .themepul-author-widget-inner .themepul-author-widget-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.themepul-author-widget .themepul-author-widget-inner .themepul-author-widget-content {
  margin: 22px 0;
  text-align: center;
}
.themepul-author-widget .themepul-author-widget-inner .themepul-author-widget-content .themepul-author-widget-name {
  font-size: 30px;
  font-weight: 600;
  line-height: 45px;
  margin: 0;
  font-family: var(--font-heading);
  text-transform: capitalize;
  color: var(--color-secondary);
}
.themepul-author-widget .themepul-author-widget-inner .themepul-author-widget-content .themepul-author-widget-role {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  font-family: var(--font-body);
  color: var(--color-body);
}
.themepul-author-widget .themepul-author-widget-inner .themepul-author-widget-content .themepul-author-widget-bio {
  margin-top: 7px;
  color: var(--color-body);
}
.themepul-author-widget .themepul-author-widget-inner .themepul-author-widget-social {
  text-align: center;
}
.themepul-author-widget .themepul-author-widget-inner .themepul-author-widget-social .themepul-author-widget-social-title {
  color: var(--thm-color);
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 187.5% */
  text-transform: capitalize;
}
.themepul-author-widget .themepul-author-widget-inner .themepul-author-widget-social .themepul-author-widget-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
  flex-wrap: wrap;
}
.themepul-author-widget .themepul-author-widget-inner .themepul-author-widget-social .themepul-author-widget-social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  box-shadow: var(--main-shadow-light);
  transition: all 0.3s ease;
  color: var(--color-secondary);
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
}
.themepul-author-widget .themepul-author-widget-inner .themepul-author-widget-social .themepul-author-widget-social-links a:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

/*------------------- 3.9 Experience Book -------------------*/
.themepul-experience-book-widget.themepul-scroll-wrapper {
  max-height: 533px;
  overflow: auto;
  /* Hide scrollbar for Firefox */
  scrollbar-width: none; /* Firefox */
  /* Hide scrollbar for IE, Edge (legacy) */
  -ms-overflow-style: none; /* Internet Explorer 10+ */
}
.themepul-experience-book-widget.themepul-scroll-wrapper::-webkit-scrollbar {
  display: none;
}
.themepul-experience-book-widget .themepul-experience-book-inner {
  padding-left: 28px;
  position: relative;
}
.themepul-experience-book-widget .themepul-experience-book-inner:after {
  content: "";
  width: 2px;
  height: 100%;
  background: var(--color-white);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 10px;
  box-shadow: var(--main-shadow-light);
  transform: translate(6px, 0);
}
.themepul-experience-book-widget .themepul-experience-book-inner .themepul-experience-book-item {
  margin-bottom: 40px;
  position: relative;
}
.themepul-experience-book-widget .themepul-experience-book-inner .themepul-experience-book-item::after {
  width: 14px;
  height: 14px;
  position: absolute;
  content: "";
  background: var(--thm-color);
  left: 0;
  top: 0;
  transform: translate(-28px, 9px);
  border-radius: 100%;
  z-index: 99;
  box-shadow: var(--main-shadow-light);
  border: 3px solid var(--color-white);
}
.themepul-experience-book-widget .themepul-experience-book-inner .themepul-experience-book-item:last-child {
  margin-bottom: 0px;
}
.themepul-experience-book-widget .themepul-experience-book-inner .themepul-experience-book-item__logo {
  margin-bottom: 10px;
}
.themepul-experience-book-widget .themepul-experience-book-inner .themepul-experience-book-item__logo-name {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
}
.themepul-experience-book-widget .themepul-experience-book-inner .themepul-experience-book-item__time-range {
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px;
  margin-bottom: 0px;
}
.themepul-experience-book-widget .themepul-experience-book-inner .themepul-experience-book-item__title {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 8px;
}
.themepul-experience-book-widget .themepul-experience-book-inner .themepul-experience-book-item__position {
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

/*------------------- 3.10 Experience Tools -------------------*/
.themepul-experience-tools-widget .themepul-experience-tools-inner .themepul-experience-tools-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 30px;
}
.themepul-experience-tools-widget .themepul-experience-tools-inner .themepul-experience-tools-item:last-child {
  margin-bottom: 0px;
}
.themepul-experience-tools-widget .themepul-experience-tools-inner .themepul-experience-tools-item__logo-inner {
  width: 40px;
  height: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: var(--main-shadow-light);
  padding: 10px;
  margin-top: 5px;
}
.themepul-experience-tools-widget .themepul-experience-tools-inner .themepul-experience-tools-item__logo-inner i {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0px;
  color: var(--color-secondary);
}
.themepul-experience-tools-widget .themepul-experience-tools-inner .themepul-experience-tools-item__title {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 5px;
}
.themepul-experience-tools-widget .themepul-experience-tools-inner .themepul-experience-tools-item__description {
  color: var(--color-body);
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin-bottom: 0px;
}

/*------------------- 3.11 Elementor Widget -------------------*/
.themepul-company-about .company-about-title {
  font-size: 40px;
  margin: 0;
  padding: 0;
  margin-bottom: -10px;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 25px;
}
.themepul-company-about .company-about-content {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  margin: 25px 0;
  color: var(--color-body);
}
.themepul-company-about .company-social-media {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: flex-start;
  gap: 15px;
}
.themepul-company-about .company-social-media a {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: var(--main-shadow-light);
  border-radius: 5px;
  transition: all 0.3s ease;
}
.themepul-company-about .company-social-media a:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.themepul-footer-list .footer-list-title {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 30px;
  margin-bottom: 25px;
}
.themepul-footer-list .footer-items-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}
.themepul-footer-list .footer-items-list .footer-list-item a {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 36px;
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  gap: 7px;
}
.themepul-footer-list .footer-items-list .footer-list-item a i {
  font-size: 13px;
}
.themepul-footer-list .footer-items-list .footer-list-item a:hover {
  color: var(--thm-color);
}

.themepul-post-categoyr-wrapper .themepul-post-category-list {
  display: flex;
  align-items: center;
  align-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.themepul-post-categoyr-wrapper .themepul-post-category-list a {
  padding: 10px 25px;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  line-height: 30px;
  background-color: var(--color-bg);
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: var(--main-shadow-light);
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 7px;
}
.themepul-post-categoyr-wrapper .themepul-post-category-list a .themepul-post-cat-count {
  font-size: 12px;
  font-weight: 600;
  line-height: 30px;
  color: var(--color-secondary);
  width: 30px;
  height: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: var(--color-bg);
  box-shadow: var(--main-shadow-light);
}
.themepul-post-categoyr-wrapper .themepul-post-category-list a:hover {
  background-color: var(--thm-color);
  color: var(--color-white);
  box-shadow: none;
}
.themepul-post-categoyr-wrapper .themepul-post-category-list a:hover .themepul-post-cat-count {
  color: var(--color-white);
  background-color: var(--color-secondary);
  box-shadow: none;
}

.themepul-author-widget-wrapper {
  padding: 20px 20px 30px 20px;
  overflow: hidden;
  background: var(--color-bg);
  border: none;
  border-radius: 20px;
  box-shadow: var(--main-shadow-light);
}

.themepul-experience-book-wrapper,
.themepul-experience-tools-wrapper {
  padding: 40px 30px;
  overflow: hidden;
  background: var(--color-bg);
  border: none;
  border-radius: 20px;
  box-shadow: var(--main-shadow-light);
}
.themepul-experience-book-wrapper .themepul-experience-book-widget__title,
.themepul-experience-book-wrapper .themepul-experience-tools-widget__title,
.themepul-experience-tools-wrapper .themepul-experience-book-widget__title,
.themepul-experience-tools-wrapper .themepul-experience-tools-widget__title {
  text-transform: capitalize;
  position: relative;
  color: var(--color-secondary);
  margin-bottom: 24px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.wpcf7-form .wpcf7-form-control-wrap input[type=text],
.wpcf7-form .wpcf7-form-control-wrap input[type=email],
.wpcf7-form .wpcf7-form-control-wrap input[type=url],
.wpcf7-form .wpcf7-form-control-wrap input[type=number],
.wpcf7-form .wpcf7-form-control-wrap input[type=tel],
.wpcf7-form .wpcf7-form-control-wrap input[type=date],
.wpcf7-form .wpcf7-form-control-wrap select,
.wpcf7-form .wpcf7-form-control-wrap textarea {
  border-radius: 100px;
  background: var(--color-bg);
  box-shadow: var(--main-inset-shadow-light);
  position: relative;
}
.wpcf7-form .wpcf7-form-control-wrap input[type=text]::-moz-placeholder, .wpcf7-form .wpcf7-form-control-wrap input[type=email]::-moz-placeholder, .wpcf7-form .wpcf7-form-control-wrap input[type=url]::-moz-placeholder, .wpcf7-form .wpcf7-form-control-wrap input[type=number]::-moz-placeholder, .wpcf7-form .wpcf7-form-control-wrap input[type=tel]::-moz-placeholder, .wpcf7-form .wpcf7-form-control-wrap input[type=date]::-moz-placeholder, .wpcf7-form .wpcf7-form-control-wrap select::-moz-placeholder, .wpcf7-form .wpcf7-form-control-wrap textarea::-moz-placeholder {
  color: var(--color-secondary);
}
.wpcf7-form .wpcf7-form-control-wrap input[type=text]::placeholder,
.wpcf7-form .wpcf7-form-control-wrap input[type=email]::placeholder,
.wpcf7-form .wpcf7-form-control-wrap input[type=url]::placeholder,
.wpcf7-form .wpcf7-form-control-wrap input[type=number]::placeholder,
.wpcf7-form .wpcf7-form-control-wrap input[type=tel]::placeholder,
.wpcf7-form .wpcf7-form-control-wrap input[type=date]::placeholder,
.wpcf7-form .wpcf7-form-control-wrap select::placeholder,
.wpcf7-form .wpcf7-form-control-wrap textarea::placeholder {
  color: var(--color-secondary);
}
.wpcf7-form .wpcf7-form-control-wrap textarea {
  border-radius: 20px;
}
.wpcf7-form .wpcf7-form-control-wrap::after {
  content: "";
  position: absolute;
  right: 25px;
  top: -2px;
  color: var(--color-secondary);
  font-family: "Font Awesome 6 Free";
}
.wpcf7-form .wpcf7-form-control-wrap select {
  padding-right: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 16px;
}
.wpcf7-form .username .wpcf7-form-control-wrap::after {
  content: "\f007";
}
.wpcf7-form .useremail .wpcf7-form-control-wrap::after {
  content: "\f0e0";
}
.wpcf7-form .userurl .wpcf7-form-control-wrap::after {
  content: "\f08e";
}
.wpcf7-form .userphone .wpcf7-form-control-wrap::after {
  content: "\f095";
}
.wpcf7-form .userdate .wpcf7-form-control-wrap::after {
  content: "\f073";
}
.wpcf7-form .usermessage .wpcf7-form-control-wrap {
  display: block;
}
.wpcf7-form .usermessage .wpcf7-form-control-wrap::after {
  content: "\f0e5";
  top: 20px;
}

.subscribe-wrapper .wpcf7-form-control-wrap input[type*=email] {
  border-radius: 5px;
  box-shadow: var(--main-shadow-light);
}
.subscribe-wrapper .wpcf7-form-control-wrap span.wpcf7-list-item.first.last {
  margin: 0;
}
.subscribe-wrapper input[type=submit] {
  position: absolute;
  right: 8px;
  top: 5px;
  padding: 13px 30px;
}
.subscribe-wrapper span.wpcf7-spinner {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.themepul-section-title-wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.themepul-section-title-wrapper__inner {
  width: 100%;
}
.themepul-section-title-wrapper__small-title {
  font-size: 13px;
  font-weight: 500;
  line-height: 26px;
  font-family: var(--font-heading);
  background: var(--thm-color);
  padding: 2px 16px;
  clear: both;
  border-radius: 15px;
  color: var(--color-white);
  margin-bottom: 10px;
  display: inline-flex;
  text-transform: capitalize;
}
.themepul-section-title-wrapper__main-title {
  font-size: 50px;
  line-height: 55px;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--color-secondary);
  margin-bottom: 10px;
}
.themepul-section-title-wrapper__description {
  font-size: 16px;
  font-weight: 400;
  line-height: 26px;
  font-family: var(--font-body);
  color: var(--color-body);
}

.themepul-post-category-two-wrapper {
  margin-bottom: 30px;
  padding: 40px 30px;
  overflow: hidden;
  background: var(--color-bg);
  border: none;
  border-radius: 20px;
  box-shadow: var(--main-shadow-light);
}
.themepul-post-category-two-wrapper .themepul-post-category-two-title {
  color: var(--color-secondary);
  font-family: var(--font-heading);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  margin-bottom: 24px;
}
.themepul-post-category-two-wrapper .themepul-post-category-two-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.themepul-post-category-two-wrapper .themepul-post-category-two-list ul li a {
  display: block;
  color: var(--color-secondary);
  line-height: normal;
  position: relative;
  padding: 15px;
  box-shadow: var(--main-inset-shadow-light);
  margin-bottom: 12px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
}
.themepul-post-category-two-wrapper .themepul-post-category-two-list ul li a .themepul-post-cat-count {
  width: 34px;
  height: 30px;
  border-radius: 5px;
  background-color: var(--color-bg);
  color: var(--color-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 110%;
  position: absolute;
  font-family: var(--font-heading);
  box-shadow: var(--main-shadow-light);
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}
.themepul-post-category-two-wrapper .themepul-post-category-two-list ul li a:hover {
  color: var(--color-white);
  background-color: var(--color-secondary);
  box-shadow: var(--main-shadow-light);
}
.themepul-post-category-two-wrapper .themepul-post-category-two-list ul li a:hover .themepul-post-cat-count {
  background-color: var(--thm-color);
  color: var(--color-white);
  box-shadow: none;
}

.custom-shadow {
  box-shadow: var(--main-shadow-light);
}/*# sourceMappingURL=themes.css.map */