@charset "UTF-8";
/*=================================
    CSS Index Here
==================================*/
/*

01. Theme Base
    1.1. Mixin
    1.2. Function
    1.3. Variable
    1.4. Typography
    1.5. Extend
    1.7. Wordpress Default
02. Reset
    2.1. Container
    2.2. Grid
    2.3. Input
    2.4. Slick Slider
    2.5. Mobile Menu
03. Utilities
    3.1. Preloader
    3.2. Buttons
    3.3. Titles
    3.4. Common
    3.6. Font
    3.7. Background
    3.8. Text Color
    3.9. Overlay
    3.10. Animation

04. Template Style
    4.1. Widget
    4.2. Header
    4.3. Footer
    4.4. Breadcumb
    4.5. Pagination
    4.6. Blog
    4.7. Comments
    4.8. Hero Area
    4.9. Error    
    4.00. Popup Search
    4.00. Popup Side Menu
    4.00. Wocommerce
    4.00. Subscribe
    4.00. Cart
    4.00. Checkout
    4.00. Wishlist
    4.00. Contact
    4.00. About
    4.00. Team
    4.00. Testimonial
    4.00. Counter
    4.00. Client
    4.00. Simple Sections
    4.00. Video
    4.00. Category
    4.00. Faq
    4.00. feature
    4.00. CTA
    4.00. Service
    4.00. Pricing
    4.00. Why choose Us
    4.00. Project
    4.00. Event
    4.00. Gallery
    4.00. Schedule

05. Spacing

*/
/*=================================
    CSS Index End
==================================*/


/*=================================
   01. Theme Base
==================================*/
/*------------------- 1.1. Mixin -------------------*/
/*------------------- 1.2. Function -------------------*/
/*------------------- 1.3. Variable-------------------*/
:root {
  --theme-color: #7b4cde;
  --title-color: #000D38;
  --body-color: #7B7E86;
  --smoke-color: #E5E9F5;
  --smoke-color2: #F9FAFF;
  --smoke-color3: #F1F3FF;
  --smoke-color4: #F4F4F4;
  --smoke-color5: #F0F2F4;
  --black-color: #00061E;
  --gray-color: #B4B7C6;
  --white-color: #ffffff;
  --light-color: #D9D9D9;
  --yellow-color: #FFB539;
  --success-color: #28a745;
  --error-color: #dc3545;
  --theme-border-color: #E3E3E3;
  --title-font: "Open Sans", Arial, Helvetica, sans-serif;
  --body-font: "Kumbh Sans", Arial, Helvetica, sans-serif;
  --icon-font: "Font Awesome 6 Free";
  --main-container: 1170px;
  --container-gutters: 24px;
  --section-space: 60px;
  --section-space-mobile: 30px;
  --section-title-space: 40px;
  --ripple-ani-duration: 5s;
}

/*------------------- 1.5. Typography -------------------*/
html,
body {
  scroll-behavior: smooth !important;
}

.style-underline-none{
  text-decoration: none !important ;
}

body {
  font-family: var(--body-font);
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  line-height: 26px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  /***scroll-bar***/
}
body::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
body::-webkit-scrollbar-track {
  background: rgba(251, 212, 81, 0.1);
}
body::-webkit-scrollbar-thumb {
  background: var(--theme-color);
  border-radius: 0px;
}

iframe {
  border: none;
  width: 100%;
}

.slick-slide:focus,
button:focus,
a:focus,
a:active,
input,
input:hover,
input:focus,
input:active,
textarea,
textarea:hover,
textarea:focus,
textarea:active {
  outline: none;
}

input:focus {
  outline: none;
  box-shadow: none;
}
.slick-slide:focus,
button:focus,
a:focus,
input:focus,
textarea:focus{
outline: 2px dotted var(--title-color);
}

img:not([draggable]),
embed,
object,
video {
  max-width: 100%;
  height: auto;
}

ul {
  list-style-type: disc;
}

ol {
  list-style-type: decimal;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid var(--theme-border-color);
}

th {
  font-weight: 700;
  color: var(--title-color);
}

td,
th {
  border: 1px solid var(--theme-border-color);
  padding: 9px 12px;
}
.additional_information_tab a {
  color: var(--title-color);
  text-decoration: none;
  transition: all ease 0.4s;
}



a {
  color: var(--title-color);
  text-decoration: none;
  outline: 0;
  transition: all ease 0.4s;
}
a:hover {
  color: var(--title-color);
}
a:active, a:focus {
  outline: 2px dotted var(--title-color) !important;
}
a:hover {
  text-decoration: none;
  outline: 0;
}
a:active {
	color: #191970;
}

a:hover,
a:active {
	outline: 0;
}
.additional_information_tab a:active, .additional_information_tab a:focus {
  border-bottom: 3px solid var(--theme-color);
}

.additional_information_tab a:hover {
  text-decoration: none;
  border-bottom: 3px solid var(--theme-color);
}

.additional_information_tab a {
  color: var(--title-color);
  text-decoration: none;
  outline: 0;
  transition: all ease 0.4s;
}

button {
  transition: all ease 0.4s;
}
button:active, button:focus {
  border-bottom: 3px solid var(--theme-color);
}

img {
  border: none;
  max-width: 100%;
}

ins {
  text-decoration: none;
}

pre {
  font-family: var(--body-font);
  background: #f5f5f5;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}

span.ajax-loader:empty,
p:empty {
  display: none;
}

p {
  font-family: var(--title-font);
  margin: 0 0 18px 0;
  color: var(--body-color);
  line-height: 1.75;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a,
p a,
span a {
  font-size: inherit;
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.h1,
h1,
.h2,
h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  font-family: var(--title-font);
  color: var(--title-color);
  text-transform: none;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 15px 0;
}

.h1,
h1 {
  font-size: 40px;
  line-height: 1.167;
}

.h2,
h2 {
  font-size: 36px;
  line-height: 1.227;
}

.h3,
h3 {
  font-size: 30px;
  line-height: 1.278;
}

.h4,
h4 {
  font-size: 24px;
  line-height: 1.333;
}

.h5,
h5 {
  font-size: 22px;
  line-height: 1.417;
}

.h6,
h6 {
  font-size: 18px;
  line-height: 1.5;
}

.font-size-28 {
  font-size: 28px;
  /* Extra small devices */
}
@media (max-width: 575px) {
  .font-size-28 {
    font-size: 24px;
  }
  .form-submit input#submit{
    font-size: 13px;
    width: 60% !important;
  }
}

.font-size-22 {
  font-size: 22px;
}

.font-size-20 {
  font-size: 20px;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-14 {
  font-size: 14px !important;
}

/* Extra small devices */
@media (max-width: 575px) {
  .h2, h2 {
    font-size: 24px;
  }
}
/*------------------- 1.6. Extend -------------------*/
/*------------------- 1.7. Wordpress Default -------------------*/
.admin-bar .header-layout1 .sticky-wrapper.sticky {
  top: 32px;
}
@media (max-width: 575px) {
  .admin-bar .header-layout1 .sticky-wrapper.sticky {
    top: 0;
  }
}
.wp-block-search__label {
  position: relative;
  font-size: 24px;
  font-weight: 500 !important;
  font-family: var(--title-font);
  line-height: 1em;
  margin: -0.12em 0 25px 0;
}

p.has-drop-cap {
  margin-bottom: 20px;
}

.page--item p:last-child .alignright {
  clear: right;
}

.blog-title,
.pagi-title,
.breadcumb-title {
  word-break: break-word;
}

.blocks-gallery-caption,
.wp-block-embed figcaption,
.wp-block-image figcaption {
  color: var(--body-color);
}

.bypostauthor,
.gallery-caption {
  display: block;
}

.page-links,
.clearfix {
  clear: both;
}

.page--item {
  margin-bottom: 30px;
}
.page--item p {
  line-height: 1.8;
}
.page--item .th-comment-form {
  padding: 0;
}
.page--item .th-comments-wrap {
  margin-left: 0;
  margin-right: 0;
  margin-top: 30px;
}

.content-none-search {
  margin-top: 30px;
}

.wp-block-button.aligncenter {
  text-align: center;
}

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

.alignright {
  display: inline;
  float: right;
  margin-bottom: 10px;
  margin-left: 1.5em;
  margin-right: 1em;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.gallery {
  margin-bottom: 1.5em;
  width: 100%;
}

.gallery-item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  width: 100%;
  padding: 0 5px;
}

.wp-block-columns {
  margin-bottom: 1em;
}

figure.gallery-item {
  margin-bottom: 10px;
  display: inline-block;
}

figure.wp-block-gallery {
  margin-bottom: 14px;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
  max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
  max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
  max-width: 11.11%;
}

.gallery-caption {
  display: block;
  font-size: 12px;
  color: var(--body-color);
  line-height: 1.5;
  padding: 0.5em 0;
}

.wp-block-cover p:not(.has-text-color),
.wp-block-cover-image-text,
.wp-block-cover-text {
  color: var(--white-color);
}

.wp-block-cover {
  margin-bottom: 15px;
}

.wp-caption-text {
  text-align: center;
}

.wp-caption {
  margin-bottom: 1.5em;
  max-width: 100%;
}
.wp-caption .wp-caption-text {
  margin: 0.5em 0;
  font-size: 14px;
}

.wp-block-media-text,
.wp-block-media-text.alignwide,
figure.wp-block-gallery {
  margin-bottom: 30px;
}

.editor-styles-wrapper .has-large-font-size,
.has-large-font-size {
  line-height: 2.4;
}

.wp-block-latest-comments a {
  color: inherit;
}

.wp-block-button {
  margin-bottom: 10px;
}
.wp-block-button:last-child {
  margin-bottom: 0;
}
.wp-block-button .wp-block-button__link {
  color: #fff;
}
.wp-block-button .wp-block-button__link:hover {
  color: #fff;
  background-color: var(--theme-color);
}
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border-color: var(--title-color);
  color: var(--title-color);
}
.dark-theme .wp-block-button.is-style-outline .wp-block-button__link {
  border-color: var(--theme-color);
  color: var(--white-color);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: #fff;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.wp-block-button.is-style-squared .wp-block-button__link {
  border-radius: 0;
}

ol.wp-block-latest-comments li {
  margin: 15px 0;
}

ul.wp-block-latest-posts {
  padding: 0;
  margin: 0;
  margin-bottom: 15px;
}
ul.wp-block-latest-posts a {
  color: inherit;
}
ul.wp-block-latest-posts a:hover {
  color: var(--theme-color);
}
ul.wp-block-latest-posts li {
  margin: 15px 0;
}

.wp-block-search {
  display: flex;
  flex-wrap: wrap;
}
.wp-block-search .wp-block-search__inside-wrapper {
  border-radius: 4px;
  overflow: hidden;
  background: #ffffff;
  margin-top: 10px;
}
.wp-block-search .wp-block-search__input {
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  border: none;
  border: 1px solid #F2F2F2;
  text-align: left;
}
footer .wp-block-search .wp-block-search__input {
border: none !important;
}
.dark-theme .wp-block-search .wp-block-search__input {
  border: none;
}
.wp-block-search .wp-block-search__button {
  margin: 2px;
  min-width: 110px;
  border: none;
  color: #fff;
  border-radius: 4px;
  background-color: var(--theme-color);
}
.wp-block-search .wp-block-search__button.has-icon {
  min-width: 55px;
}
.wp-block-search .wp-block-search__button:hover {
  background-color: var(--title-color);
}

.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper {
  padding: 0;
  border: none;
}
.wp-block-search.wp-block-search__button-inside .wp-block-search__inside-wrapper .wp-block-search__input {
  padding: 0 8px 0 25px;
}

ul.wp-block-rss a {
  color: inherit;
}

.wp-block-group.has-background {
  padding: 15px 15px 1px;
  margin-bottom: 30px;
}

.wp-block-table td,
.wp-block-table th {
  border-color: rgba(0, 0, 0, 0.1);
}

.wp-block-table.is-style-stripes {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.wp-block-table.is-style-stripes {
  border: 0;
  margin-bottom: 30px;
  border-bottom: 0;
}
.wp-block-table.is-style-stripes th, .wp-block-table.is-style-stripes td {
  border-color: var(--theme-border-color);
}

.logged-in .will-sticky .sticky-active.active,
.logged-in .preloader .btn {
  top: 32px;
}
@media (max-width: 782px) {
  .logged-in .will-sticky .sticky-active.active,
  .logged-in .preloader .btn {
    top: 46px;
  }
}
@media (max-width: 600px) {
  .logged-in .will-sticky .sticky-active.active,
  .logged-in .preloader .btn {
    top: 0;
  }
}

.post-password-form {
  margin-bottom: 30px;
  margin-top: 20px;
}
.post-password-form p {
  display: flex;
  position: relative;
  gap: 15px;
  /* Extra small devices */
}
@media (max-width: 575px) {
  .post-password-form p {
    flex-wrap: wrap;
  }
}
.post-password-form label {
  display: flex;
  align-items: center;
  flex: auto;
  margin-bottom: 0;
  line-height: 1;
  margin-top: 0;
  gap: 15px;
  /* Extra small devices */
}
@media (max-width: 575px) {
  .post-password-form label {
    flex-wrap: wrap;
  }
}
.post-password-form input {
  width: 100%;
  border: none;
  height: 55px;
  padding-left: 25px;
  color: var(--body-color);
  border: 1px solid var(--theme-border-color);
}
.post-password-form input[type=submit] {
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  width: 140px;
  border: none;
  color: #fff;
  background-color: var(--theme-color);
  text-align: center;
}
.post-password-form input[type=submit]:hover {
  background-color: var(--title-color);
}

.page-links {
  clear: both;
  margin: 0 0 1.5em;
  padding-top: 1em;
}
.page-links > .page-links-title {
  margin-right: 10px;
}
.page-links > span:not(.page-links-title):not(.screen-reader-text),
.page-links > a {
  display: inline-block;
  padding: 5px 13px;
  background-color: var(--white-color);
  color: var(--title-color);
  border: 1px solid rgba(0, 0, 0, 0.08);
  margin-right: 10px;
}
.page-links > span:not(.page-links-title):not(.screen-reader-text):hover,
.page-links > a:hover {
  opacity: 0.8;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: transparent;
}
.page-links > span:not(.page-links-title):not(.screen-reader-text).current,
.page-links > a.current {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: transparent;
}
.page-links span.screen-reader-text {
  display: none;
}

.blog-single .wp-block-archives-dropdown {
  margin-bottom: 30px;
}
.blog-single.format-quote, .blog-single.format-link, .blog-single.tag-sticky-2, .blog-single.sticky {
  position: relative;
}
.blog-single.format-quote .blog-content, .blog-single.format-link .blog-content, .blog-single.tag-sticky-2 .blog-content, .blog-single.sticky .blog-content {
  background-color: var(--smoke-color);
  border: none;
  padding: 40px;
  border-radius: 15px;
}
.blog-single.format-quote .blog-content:before, .blog-single.format-link .blog-content:before, .blog-single.tag-sticky-2 .blog-content:before, .blog-single.sticky .blog-content:before {
  display: none;
}
.blog-single.format-quote:before, .blog-single.format-link:before, .blog-single.tag-sticky-2:before, .blog-single.sticky:before {
  content: "\f0c1";
  position: absolute;
  font-family: "Font Awesome 6 Pro";
  font-size: 5rem;
  opacity: 0.3;
  right: 15px;
  line-height: 1;
  top: 15px;
  color: var(--theme-color);
  z-index: 1;
}
.blog-single.tag-sticky-2::before, .blog-single.sticky::before {
  content: "\f08d";
  position: absolute;
  font-family: var(--icon-font);
  font-size: 16px;
  font-weight: 500;
  opacity: 1;
  right: 0;
  top: 0;
  color: var(--white-color);
  background-color: var(--theme-color);
  z-index: 1;
  height: 44px;
  width: 44px;
  line-height: 44px;
  text-align: center;
  border-radius: 0 15px 0 4px;
}
.blog-single.format-quote blockquote, .blog-single.format-quote .wp-block-quote {
  background: var(--white-color);
  margin-bottom: 0;
}
.blog-single.format-quote:before {
  content: "\f10e";
  top: 0;
}
.blog-single .blog-content .wp-block-categories-dropdown.wp-block-categories,
.blog-single .blog-content .wp-block-archives-dropdown {
  display: block;
  margin-bottom: 30px;
}
.blog-single.format-chat .entry-content > p:nth-child(2n) {
  background: var(--smoke-color);
  padding: 5px 20px;
}

.blog-details .blog-single:before {
  display: none;
}
.blog-details .blog-single .blog-content {
  background-color: transparent;
  overflow: hidden;
}
.blog-details .blog-single .blog-content p:last-child {
  margin-bottom: 0;
}
.blog-details .blog-single.format-chat .blog-meta {
  margin-bottom: 20px;
}
.blog-details .blog-single.format-chat .blog-content > p:nth-child(2n) {
  background: var(--smoke-color);
  padding: 5px 20px;
}
.blog-details .blog-single.tag-sticky-2, .blog-details .blog-single.sticky, .blog-details .blog-single.format-quote, .blog-details .blog-single.format-link {
  box-shadow: none;
  background-color: transparent;
}
.blog-details .blog-single.tag-sticky-2:before, .blog-details .blog-single.sticky:before, .blog-details .blog-single.format-quote:before, .blog-details .blog-single.format-link:before {
  display: none;
}

.blog-single .wp-block-tag-cloud {
  margin-bottom: 20px;
}
.blog-single .wp-block-tag-cloud a {
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: none;
}

.th-search {
  background-color: #f3f3f3;
  margin-bottom: 30px;
  border: 1px solid #f3f3f3;
}
.th-search .search-grid-content {
  padding: 30px;
  /* Small devices */
}
@media (max-width: 767px) {
  .th-search .search-grid-content {
    padding: 20px;
  }
}
.th-search .search-grid-title {
  font-size: 20px;
  margin-bottom: 5px;
  margin-top: 0;
}
.th-search .search-grid-title a {
  color: inherit;
}
.th-search .search-grid-title a:hover {
  color: var(--theme-color);
}
.th-search .search-grid-meta > * {
  display: inline-block;
  margin-right: 15px;
  font-size: 14px;
}
.th-search .search-grid-meta > *:last-child {
  margin-right: 0;
}
.th-search .search-grid-meta a,
.th-search .search-grid-meta span {
  color: var(--body-color);
}

/* Large devices */
@media (max-width: 1199px) {
  .blog-single.format-quote:before, .blog-single.format-link:before, .blog-single.tag-sticky-2:before, .blog-single.sticky:before {
    font-size: 14px;
    padding: 8px 16px;
  }
  .blog-single.format-quote:before {
    top: 15px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .blog-single.format-quote:before, .blog-single.format-link:before, .blog-single.tag-sticky-2:before, .blog-single.sticky:before {
    font-size: 14px;
    padding: 8px 16px;
  }
}
@media (max-width: 768px) {
  .wp-block-latest-comments {
    padding-left: 10px;
  }
  .page--content.clearfix + .th-comment-form {
    margin-top: 24px;
  }
}
.site {
  overflow-x: visible;
}

/*=================================
    02. Reset
==================================*/
/*------------------- 2.1. Container -------------------*/
/* Medium Large devices */
@media (max-width: 1399px) {
  :root {
    --main-container: 1250px;
  }
}
.container2 {
  max-width: 1330px;
  margin: auto;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: calc(var(--main-container) + var(--container-gutters));
  }
  .container2 {
    max-width: 1330px;
  }
}
@media only screen and (min-width: 1300px) {
  .container2.px-0,
  .container-xxl.px-0,
  .container-xl.px-0,
  .container-lg.px-0,
  .container-md.px-0,
  .container-sm.px-0,
  .container.px-0 {
    max-width: var(--main-container);
  }
  .container2 {
    max-width: 1330px;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .container2 {
    max-width: 1140px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .container2 {
    max-width: 960px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .container2 {
    max-width: 720px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .container2 {
    max-width: 540px;
  }
}
@media only screen and (max-width: 1600px) {
  .container-fluid.px-0 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .container-fluid.px-0 .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .container2 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}
/*------------------- 2.2. Grid -------------------*/
.slick-track > [class*=col] {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.gy-20 {
  --bs-gutter-y: 20px;
}

.gy-30 {
  --bs-gutter-y: 30px;
}

.gy-40 {
  --bs-gutter-y: 40px;
}

.gy-50 {
  --bs-gutter-y: 50px;
}

.gy-80 {
  --bs-gutter-y: 80px;
}

.gx-10 {
  --bs-gutter-x: 10px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

.gx-90 {
  --bs-gutter-x: 90px;
  /* Medium Large devices */
}
@media (max-width: 1399px) {
  .gx-90 {
    --bs-gutter-x: 24px;
  }
}

@media (min-width: 1299px) {
  .gx-60 {
    --bs-gutter-x: 60px;
  }
}
@media (min-width: 1399px) {
  .gx-30 {
    --bs-gutter-x: 30px;
  }
  .gx-25 {
    --bs-gutter-x: 25px;
  }
  .gx-40 {
    --bs-gutter-x: 40px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .gy-80 {
    --bs-gutter-y: 40px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .gy-50 {
    --bs-gutter-y: 40px;
  }
}
/*------------------- 2.3. Input -------------------*/
select,
.single-select,
.form-control,
.form-select,
textarea,
input {
  height: 48px;
  padding: 0 30px;
  border: 1px solid transparent;
  color: var(--body-color);
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  font-family: var(--title-font);
  transition: 0.4s ease-in-out;
  padding-right: 45px;
  border-radius: 5px;
}
.form-submit input#submit {
  background: var(--theme-color);
  color: var(--white-color);
  border-radius: 10px;
}
.comment-respond .comment-form{
  padding: 15px;
}
form#commentform{
  padding: 0px;
}
select:focus,
.single-select:focus,
.form-control:focus,
.form-select:focus,
textarea:focus,
input:focus {
  outline: 0;
  box-shadow: none;
  border-color: var(--theme-color);
  background-color: var(--smoke-color);
}
select::-moz-placeholder,
.single-select::-moz-placeholder,
.form-control::-moz-placeholder,
.form-select::-moz-placeholder,
textarea::-moz-placeholder,
input::-moz-placeholder {
  color: var(--body-color);
}
select::-webkit-input-placeholder,
.single-select::-webkit-input-placeholder,
.form-control::-webkit-input-placeholder,
.form-select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
input::-webkit-input-placeholder {
  color: var(--body-color);
}
select:-ms-input-placeholder,
.single-select:-ms-input-placeholder,
.form-control:-ms-input-placeholder,
.form-select:-ms-input-placeholder,
textarea:-ms-input-placeholder,
input:-ms-input-placeholder {
  color: var(--body-color);
}
select::placeholder,
.single-select::placeholder,
.form-control::placeholder,
.form-select::placeholder,
textarea::placeholder,
input::placeholder {
  color: var(--body-color);
}
select.style2,
.single-select.style2,
.form-control.style2,
.form-select.style2,
textarea.style2,
input.style2 {
  height: auto;
  border: none;
  border: 2px solid var(--theme-color);
  padding: 14.5px 30px;
  background-color: transparent;
  line-height: initial;
}
select.style2 option,
.single-select.style2 option,
.form-control.style2 option,
.form-select.style2 option,
textarea.style2 option,
input.style2 option {
  background-color: var(--title-color);
  color: var(--body-color);
  padding: 2px 15px;
}
select.style2::-moz-placeholder,
.single-select.style2::-moz-placeholder,
.form-control.style2::-moz-placeholder,
.form-select.style2::-moz-placeholder,
textarea.style2::-moz-placeholder,
input.style2::-moz-placeholder {
  color: var(--body-color);
}
select.style2::-webkit-input-placeholder,
.single-select.style2::-webkit-input-placeholder,
.form-control.style2::-webkit-input-placeholder,
.form-select.style2::-webkit-input-placeholder,
textarea.style2::-webkit-input-placeholder,
input.style2::-webkit-input-placeholder {
  color: var(--body-color);
}
select.style2:-ms-input-placeholder,
.single-select.style2:-ms-input-placeholder,
.form-control.style2:-ms-input-placeholder,
.form-select.style2:-ms-input-placeholder,
textarea.style2:-ms-input-placeholder,
input.style2:-ms-input-placeholder {
  color: var(--body-color);
}
select.style2::placeholder,
.single-select.style2::placeholder,
.form-control.style2::placeholder,
.form-select.style2::placeholder,
textarea.style2::placeholder,
input.style2::placeholder {
  color: var(--body-color);
}
select.style-white,
.single-select.style-white,
.form-control.style-white,
.form-select.style-white,
textarea.style-white,
input.style-white {
  background: var(--white-color);
}
select.style-border,
.single-select.style-border,
.form-control.style-border,
.form-select.style-border,
textarea.style-border,
input.style-border {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 0;
  color: var(--white-color);
}
select.style-border::placeholder,
.single-select.style-border::placeholder,
.form-control.style-border::placeholder,
.form-select.style-border::placeholder,
textarea.style-border::placeholder,
input.style-border::placeholder {
  color: var(--white-color);
}
select.style-border2,
.single-select.style-border2,
.form-control.style-border2,
.form-select.style-border2,
textarea.style-border2,
input.style-border2 {
  background: transparent;
  border: 1px solid #E8E8E8;
  border-radius: 0;
  color: var(--title-color);
}
select.style3,
.single-select.style3,
.form-control.style3,
.form-select.style3,
textarea.style3,
input.style3 {
  background: var(--smoke-color3);
}

.form-text {
  font-size: 16px;
}
.form-text a {
  color: var(--title-color);
  font-weight: 500;
}

.single-select,
.form-select,
select {
  display: block;
  width: 100%;
  line-height: 55px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 26px center;
  background-repeat: no-repeat;
  background-size: 16px 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.single-select:after,
.form-select:after,
select:after {
  right: 30px;
  height: 8px;
  width: 8px;
}
.single-select .list,
.form-select .list,
select .list {
  width: 100%;
}

textarea.form-control,
textarea {
  min-height: 150px;
  padding-top: 16px;
  padding-bottom: 17px;
}
textarea.form-control.style2,
textarea.style2 {
  min-height: 100px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}
.form-group > i {
  display: inline-block;
  position: absolute;
  right: 25px;
  top: 21px;
  font-size: 16px;
  color: var(--body-color);
}
.form-group > i.fa-envelope {
  padding-top: 1px;
}
.form-group > i.fa-comment {
  margin-top: -2px;
}
.form-group > i.fa-chevron-down {
  width: 17px;
  background-color: var(--smoke-color);
}
.form-group.form-icon-left > i {
  display: inline-block;
  position: absolute;
  left: 25px;
  right: auto;
  top: 20px;
  font-size: 16px;
  color: var(--body-color);
  line-height: 1;
}
.form-group.form-icon-left > i.fa-envelope {
  padding-top: 0px;
}
.form-group.form-icon-left > i.fa-comment {
  margin-top: -2px;
}
.form-group.form-icon-left > i.fa-chevron-down {
  width: 17px;
  background-color: var(--smoke-color);
}
.form-group.form-icon-left input {
  padding: 0 30px 0 55px;
}
.form-group.has-label > i {
  top: 50px;
}
.form-group.has-icon .form-control {
  padding-left: 70px;
}
.form-group.has-icon .input-icon {
  display: inline-block;
  position: absolute;
  left: 40px;
  top: 18px;
  font-size: 16px;
  color: var(--body-color);
}
.form-group.has-icon .input-icon:hover {
  color: var(--theme-color);
}
.form-group.radius-group input {
  border-radius: 100px;
}
.form-group.style-2 .form-control {
  padding: 0 30px 0 55px;
}
.form-group.style-2 textarea.form-control {
  padding: 16px 30px 30px 55px;
}
.form-group.style-3 .form-control {
  padding: 0 60px 0 30px;
}
.form-group.style-4 i {
  color: var(--theme-color);
}
.form-group.style-4 .form-control {
  padding: 0 30px 0 60px;
  border: 1px solid #E3E1DC;
  height: 60px;
  line-height: 60px;
  color: var(--body-color);
}
.form-group.style-4 .form-control::placeholder {
  color: var(--body-color);
  font-size: 14px;
  font-weight: 300;
}
.form-group.style-4 textarea.form-control {
  line-height: normal;
  padding: 15px 30px 30px 60px;
}

input[type=date] {
  padding: 0 25px 0 25px;
  position: relative;
}

input[type=date]::-webkit-calendar-picker-indicator {
  background: transparent;
  position: absolute;
  left: 0px;
  height: 100%;
  width: 100%;
  z-index: 1;
  cursor: pointer;
}

[class*=col-].form-group > i {
  right: calc(var(--bs-gutter-x) / 2 + 25px);
}
[class*=col-].form-group .form-icon-left {
  left: calc(var(--bs-gutter-x) / 2 + 30px);
  right: auto;
}

option:checked, option:focus, option:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}



input[type=checkbox] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
  border-radius: 10px;
}
input[type=checkbox]:checked ~ label:before {
  content: "\f00c";
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
input[type=checkbox] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  display: block;
}
input[type=checkbox] ~ label:before {
  content: "";
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  left: 0px;
  top: 3.5px;
  background-color: transparent;
  border: 1px solid var(--gray-color);
  height: 18px;
  width: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 12px;
}
input[type=checkbox].style2 ~ label {
  color: #8B929C;
  padding-left: 23px;
  margin-bottom: -0.5em;
}
input[type=checkbox].style2 ~ label:before {
  background-color: white;
  border: 1px solid rgb(247, 204, 215);
  height: 14px;
  width: 14px;
  line-height: 14px;
  border-radius: 3px;
  top: 6px;
}
input[type=checkbox].style2:checked ~ label:before {
  color: var(--theme-color);
}

input[type=radio] {
  visibility: hidden;
  opacity: 0;
  display: inline-block;
  vertical-align: middle;
  width: 0;
  height: 0;
  display: none;
}
input[type=radio] ~ label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  line-height: 1;
  display: inline-block;
  font-weight: 600;
  margin-bottom: 0;
}
input[type=radio] ~ label::before {
  content: "\f111";
  position: absolute;
  font-family: var(--icon-font);
  left: 0;
  top: -2px;
  width: 20px;
  height: 20px;
  padding-left: 0;
  font-size: 0.6em;
  line-height: 19px;
  text-align: center;
  border: 1px solid var(--theme-color);
  border-radius: 100%;
  font-weight: 700;
  background: var(--white-color);
  color: transparent;
  transition: all 0.2s ease;
}
input[type=radio]:checked ~ label::before {
  border-color: var(--theme-color);
  background-color: var(--theme-color);
  color: var(--white-color);
}

label {
  margin-bottom: 0.5em;
  margin-top: -0.3em;
  display: block;
  color: var(--title-color);
  font-family: var(--title-font);
  font-size: 16px;
}

textarea.is-invalid,
select.is-invalid,
input.is-invalid,
.was-validated input:invalid {
  border: 1px solid var(--error-color) !important;
  background-position: right calc(0.375em + 0.8875rem) center;
  background-image: none;
}
textarea.is-invalid:focus,
select.is-invalid:focus,
input.is-invalid:focus,
.was-validated input:invalid:focus {
  outline: 0;
  box-shadow: none;
}

textarea.is-invalid {
  background-position: top calc(0.375em + 0.5875rem) right calc(0.375em + 0.8875rem);
}

.row.no-gutters > .form-group {
  margin-bottom: 0;
}

.form-messages {
  display: none;
}
.form-messages.mb-0 * {
  margin-bottom: 0;
}
.form-messages.success {
  color: var(--success-color);
  display: block;
}
.form-messages.error {
  color: var(--error-color);
  display: block;
}
.form-messages pre {
  padding: 0;
  background-color: transparent;
  color: inherit;
}

/*------------------- 2.4. Slick Slider -------------------*/
.slick-track > [class*=col] {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-top: var(--bs-gutter-y);
}

.slick-track {
  min-width: 100%;
}

.slick-list {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.slick-slide img {
  display: inline-block;
}

.slick-dots {
  list-style-type: none;
  padding: 0;
  margin: 40px 0 0px 0;
  line-height: 0;
  text-align: center;
  height: max-content;
}
.slick-dots li {
  display: inline-block;
  margin-right: 8px;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots button {
  font-size: 0;
  padding: 0;
  width: 15px;
  height: 15px;
  line-height: 0;
  border-radius: 9999px;
  border: none;
  background-color: var(--light-color);
  transition: all ease 0.4s;
  position: relative;
}
.slick-dots button:hover {
  border-color: var(--theme-color);
}
.slick-dots .slick-active button {
  background-color: var(--theme-color);
}
.slick-dots .slick-active button::before {
  opacity: 1;
  visibility: visible;
}

.slick-arrow {
  --pos-x: 40px;
  display: inline-block;
  padding: 0;
  background-color: var(--white-color);
  color: var(--title-color);
  position: absolute;
  top: 50%;
  border: none;
  border-radius: 50%;
  left: var(--pos-x, 120px);
  width: var(--icon-size, 55px);
  height: var(--icon-size, 55px);
  line-height: var(--icon-size, 55px);
  font-size: var(--icon-font-size, 18px);
  margin-top: calc(var(--icon-size, 55px) / -2);
  z-index: 2;
  opacity: 0.2;
}
.slick-arrow.default {
  position: relative;
  --pos-x: 0;
  margin-top: 0;
}
.slick-arrow.slick-next {
  right: var(--pos-x, 120px);
  left: auto;
}
.slick-arrow:hover {
  opacity: 1;
  background: var(--theme-color);
  color: var(--white-color);
}

.arrow-margin .slick-arrow {
  top: calc(50% - 30px);
}

.arrow-wrap .slick-arrow {
  opacity: 0;
  visibility: hidden;
}
.arrow-wrap:hover .slick-arrow {
  opacity: 1;
  visibility: visible;
}

/* Medium devices */
@media (max-width: 991px) {
  .slick-arrow {
    display: none;
  }
  .slick-dots {
    margin: 40px 0 0 0;
  }
  .icon-box .slick-arrow {
    margin-right: 0;
  }
}
/*------------------- 2.5. Mobile Menu -------------------*/
.mobile-menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  width: 0;
  width: 100%;
  height: 100%;
  transition: all ease 0.8s;
  opacity: 0;
  visibility: hidden;
}
.mobile-menu-wrapper .mobile-logo {
  padding-bottom: 30px;
  padding-top: 40px;
  display: block;
  text-align: center;
  border-bottom: 1px solid var(--theme-border-color);
}
.mobile-menu-wrapper .mobile-logo svg {
  max-width: 185px;
}
.mobile-menu-wrapper .menu-toggle {
  border: none;
  font-size: 16px;
  position: absolute;
  right: -16.5px;
  top: 25px;
  padding: 0;
  line-height: 1;
  width: 33px;
  height: 33px;
  line-height: 36px;
  font-size: 14px;
  z-index: 1;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 50%;
  cursor: pointer;
}

.mobile-menu-wrapper .menu-toggle:focus {
  outline: 2px solid #005fcc; /* Adds a visible focus outline for keyboard users */
  outline-offset: 2px;
}
.mobile-menu-wrapper .menu-toggle:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

.mobile-menu-wrapper .mobile-menu-area {
  width: 100%;
  max-width: 310px;
  background-color: var(--white-color);
  border-right: 3px solid var(--theme-color);
  height: 100%;
  position: relative;
  left: -110%;
  opacity: 0;
  visibility: hidden;
  transition: all ease 1s;
  z-index: 1;
}
.mobile-menu-wrapper.body-visible {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-wrapper.body-visible .mobile-menu-area {
  left: 0;
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 33px;
  text-align: left;
}
.mobile-menu::-webkit-scrollbar {
  display: none;
}
.mobile-menu ul {
  margin: 0;
  padding: 0 0;
}
.mobile-menu ul li {
  border-bottom: 1px solid var(--theme-border-color);
  list-style-type: none;
}
.mobile-menu ul li li:first-child {
  border-top: 1px solid var(--theme-border-color);
}
.mobile-menu ul li a {
  display: inline-flex;
  position: relative;
  padding: 12px 0;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 600;
  color: var(--title-color);
  text-decoration: none;
}
.mobile-menu ul li.active-class > a {
  color: var(--theme-color);
}
.mobile-menu ul li.active-class > a:before {
  background: var(--theme-color);
  border-color: var(--theme-color);
}
.mobile-menu ul li ul li {
  padding-left: 20px;
}
.mobile-menu ul li ul li:last-child {
  border-bottom: none;
}
.mobile-menu ul .submenu-item-has-children > a .mean-expand-class {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 10px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin-top: -10.5px;
  display: inline-block;
  text-align: center;
  background-color: var(--smoke-color);
  color: var(--title-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}
.mobile-menu ul .submenu-item-has-children > button.mean-expand-class:before {
  content: "\f067";
  font-family: var(--icon-font);
  font-weight: 700;
}
.mobile-menu ul .submenu-item-has-children.active-class > button.mean-expand-class:before {
  content: "\f068";
}

button.mean-expand-class:focus {
  outline: 2px solid var(--theme-color);
  outline-offset: 2px;
  margin-left: 10px;
}
.mobile-menu > ul {
  padding: 0 40px;
}
.mobile-menu > ul > li:last-child {
  border-bottom: none;
}
button.mean-expand-class {
  background: transparent;
  border: none;
  font-size: 14px;
}

.posts-navigation .nav-links>.nav-next>a,
.post-navigation .nav-links>.nav-next>a {
  display: flex;
  justify-content: flex-end;

}

@media (max-width: 400px) {
  .mobile-menu-wrapper .mobile-menu-area {
    width: 100%;
    max-width: 270px;
  }
  .mobile-menu > ul {
    padding: 0 20px;
  }
  .styles1{
    height: auto;
  }
 
}

@media(max-width:500px){
  img.custom-logo {
  
    width: 100%;
    height: 100px;
  }
  .styles1{
    height: auto;
  }
}
.styles1{
  height: 330px;
}

/*=================================
    03. Utilities
==================================*/
/*------------------- 3.1. Preloader -------------------*/
.preloader {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 9999999;
  background-color: var(--white-color);
}
.preloader .btn {
  padding: 15px 20px;
  border-radius: 0;
  font-size: 14px;
  text-transform: capitalize;
}
.preloader .btn:after {
  border-radius: 0;
}

.preloader-inner {
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  line-height: 1;
}
.preloader-inner img {
  display: block;
  margin: 0 auto 30px auto;
}

.loader, .loader:before, .loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  animation-fill-mode: both;
  animation: bblFadInOut 1.8s infinite ease-in-out;
}

.loader {
  color: var(--theme-color);
  font-size: 7px;
  position: relative;
  text-indent: -9999em;
  transform: translateZ(0);
  animation-delay: -0.16s;
  display: inline-block;
}

.loader:before,
.loader:after {
  content: "";
  position: absolute;
  top: 0;
}

.loader:before {
  left: -3.5em;
  animation-delay: -0.32s;
}

.loader:after {
  left: 3.5em;
}

@keyframes bblFadInOut {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
/*------------------- 3.2. Buttons -------------------*/
.btn {
  position: relative;
  z-index: 2;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  padding: 18.5px 31px;
  border-radius: 5px;
  overflow: hidden;
  /* Medium Large devices */
}
.btn:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--title-color);
  transition: 0.5s;
  z-index: -1;
  transform: translateX(-100%);
}
.btn:focus, .btn:hover, .btn.active {
  color: var(--white-color);
  outline: none;
  box-shadow: none;
}
.btn:focus:before, .btn:hover:before, .btn.active:before {
  transform: translateX(0%);
}
.btn.style2 {
  background: var(--title-color);
}
.btn.style2:before {
  background: var(--theme-color);
}
.btn.style-small {
  font-size: 16px;
  padding: 10px 12px;
}
.btn.btn-border {
  color: var(--title-color);
  padding: 19.5px 21px 19.5px 25px;
}
.btn.btn-border:before {
  background: transparent;
  border: 1px solid var(--black-color);
}
.btn.btn-border:active, .btn.btn-border:focus, .btn.btn-border:hover {
  color: var(--white-color);
}
.btn.btn-border:active:before, .btn.btn-border:focus:before, .btn.btn-border:hover:before {
  background-color: var(--black-color);
}
.btn.btn-border2 {
  color: var(--theme-color);
  padding: 19.5px 40px 19.5px 40px;
}
.btn.btn-border2:before {
  background: transparent;
  border: 1px solid var(--theme-color);
}
.btn.btn-border2:active, .btn.btn-border2:focus, .btn.btn-border2:hover {
  color: var(--white-color);
}
.btn.btn-border2:active:before, .btn.btn-border2:focus:before, .btn.btn-border2:hover:before {
  background-color: var(--theme-color);
}
.btn.btn-border3 {
  color: var(--white-color);
  padding: 19.5px 21px 19.5px 25px;
}
.btn.btn-border3:before {
  background: transparent;
  border: 1px solid var(--white-color);
}
.btn.btn-border3:active, .btn.btn-border3:focus, .btn.btn-border3:hover {
  color: var(--theme-color);
}
.btn.btn-border3:active:before, .btn.btn-border3:focus:before, .btn.btn-border3:hover:before {
  background-color: var(--white-color);
}
.btn.btn-border4 {
  color: var(--title-color);
  border: 1px solid var(--title-color);
  border-radius: 0;
  font-family: var(--title-font);
}
.btn.btn-border4:before {
  display: none;
}
.btn.btn-border4:active, .btn.btn-border4:focus, .btn.btn-border4:hover {
  color: var(--white-color);
  background: var(--title-color);
}
.btn.style-r0:before {
  border-radius: 0;
}
.btn.style-radius-30 {
  border-radius: 30px;
  font-weight: 600;
}
.btn.style-radius-30:before {
  border-radius: 30px;
}
.btn.btn-fw {
  width: 100%;
}
.btn.btn-fw:before, .btn.btn-fw:after {
  display: none;
}
.btn.btn-fw:hover {
  background-color: var(--title-color);
}
@media (max-width: 1299px) {
  .btn {
    padding: 18.5px 20px;
  }
}

.icon-btn {
  display: inline-block;
  width: var(--btn-size, 32px);
  height: var(--btn-size, 32px);
  line-height: var(--btn-size, 32px);
  font-size: var(--btn-font-size, 14px);
  background-color: var(--gray-color);
  color: var(--title-color);
  text-align: center;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: 0.4s ease-in-out;
  padding: 0 5px;
}
.icon-btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.icon-btn.btn-border {
  background: transparent;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
}
.icon-btn.btn-border:hover {
  background: var(--theme-color);
  color: var(--white-color);
}

.play-btn {
  display: inline-block;
  position: relative;
  z-index: 1;
}
.play-btn > i {
  display: inline-block;
  width: var(--icon-size, 100px);
  height: var(--icon-size, 100px);
  line-height: var(--icon-size, 100px);
  text-align: center;
  background-color: rgba(24, 24, 24, 0.63);
  border: 0;
  color: var(--white-color);
  font-size: var(--icon-font-size, 30px);
  border-radius: 50%;
  z-index: 1;
  transition: all ease 0.4s;
}
.play-btn > i:before {
  margin-left: 2px;
}
.play-btn:after, .play-btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  border: 0;
  z-index: -1;
  border-radius: 50%;
  transition: all ease 0.4s;
}
.play-btn:after {
  animation-delay: 2s;
}
.play-btn:hover i {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.play-btn.style2 {
  --icon-size: 36px;
  --icon-font-size: 12px;
}
.play-btn.style3 {
  --icon-size: 60px;
  --icon-font-size: 24px;
}
.play-btn.style3 > i {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 20px;
}
.play-btn.style3:hover > i {
  background-color: var(--white-color);
  color: var(--theme-color);
}
input.search-field,
.wp-block-search__inside-wrapper>input {
  color: #7b7e86;
  border-right: none;
}
.link-btn {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 2px;
  margin-bottom: -2px;
  color: var(--title-color);
}
.link-btn i {
  margin-left: 5px;
  font-size: 0.9rem;
}
.link-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--theme-color);
  transition: all ease 0.4s;
}
.link-btn:hover {
  color: var(--theme-color);
}
.link-btn:hover::before {
  width: 100%;
}
.link-btn.style2 {
  font-weight: 500;
  font-family: var(--body-font);
  color: var(--title-color);
  display: inline-flex;
  text-transform: capitalize;
}
.link-btn.style2:before {
  background-color: var(--title-color);
  bottom: -3px;
  left: 0px;
  height: 1px;
  width: 100%;
}
.link-btn.style2:hover {
  color: var(--theme-color);
}
.link-btn.style2:hover:before {
  background-color: var(--theme-color);
  width: calc(100% - 55px);
}

.line-btn {
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  line-height: 0.8;
  position: relative;
  padding-bottom: 4px;
  margin-bottom: -1px;
  text-transform: uppercase;
  color: var(--theme-color);
}
.line-btn i {
  margin-left: 5px;
  font-size: 0.9rem;
}
.line-btn:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: var(--theme-color);
  transition: all ease 0.4s;
}
.line-btn:hover {
  color: var(--title-color);
}
.line-btn:hover::before {
  background-color: var(--title-color);
  width: 45px;
}

.scroll-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 10000;
  opacity: 1;
  visibility: hidden;
  transform: translateY(45px);
  transition: all 300ms linear;
}
.scroll-top:after {
  content: "\f062";
  font-family: var(--icon-font);
  font-weight: 700;
  position: absolute;
  text-align: center;
  line-height: 50px;
  font-size: 20px;
  color: var(--theme-color);
  left: 0;
  top: 0;
  height: 50px;
  width: 50px;
  cursor: pointer;
  display: block;
  z-index: 1;
  border: 2px solid var(--theme-color);
  box-shadow: none;
  border-radius: 50%;
}
.scroll-top svg {
  color: var(--theme-color);
  border-radius: 50%;
  background: var(--white-color);
}
.scroll-top svg path {
  fill: none;
}
.scroll-top .progress-circle path {
  stroke: var(--theme-color);
  stroke-width: 20px;
  box-sizing: border-box;
  transition: all 400ms linear;
}
.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Small devices */
@media (max-width: 767px) {
  .btn {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    padding: 17px 25px;
  }
  .scroll-btn img {
    width: 70px;
  }
  .scroll-btn.show {
    bottom: -50px;
  }

.single-blog-post.style3.styles1 {
  height: 310px;
  margin-top: 10px;
}
.single-blog-post.style3, .col-xl-3.no-padding .single-blog-post {
  margin-top: 10px;
}
img.blogs-images-sizes{
height: 300px !important;
}
.whats-news-first>img.post-img-whats-news-first{
  height: 300px !important;
}
.post-img.whats-news-img-two>img.whats-news-second-img{
  height: 250px !important;
}
}
.no-padding {
  padding: 0px !important;
}
/*------------------- 3.3. Titles -------------------*/
.sec-title {
  margin-bottom: calc(var(--section-title-space) - 11px);
  margin-top: 0;
  font-weight: 500;
  text-transform: capitalize;
}

.sec-title2 {
  margin-top: -0.3em;
  font-weight: 500;
  font-size: 48px;
  text-transform: capitalize;
  /* Medium Large devices */
  /* Large devices */
  /* Small devices */
}
@media (max-width: 1399px) {
  .sec-title2 {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  .sec-title2 {
    font-size: 36px;
  }
}
@media (max-width: 767px) {
  .sec-title2 {
    font-size: 32px;
  }
}

.sub-title {
  color: var(--title-color);
  text-transform: uppercase;
  font-size: 14px;
  position: relative;
  font-weight: 700;
  font-family: var(--body-font);
  letter-spacing: 0.7px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  margin-top: -0.4em;
}
.sub-title:before {
  content: "";
  position: relative;
  height: 8px;
  width: 8px;
  display: inline-block;
  background: var(--theme-color);
  margin-right: 15px;
  box-shadow: 0px 3px 11px 0px rgba(255, 61, 131, 0.4);
  border-radius: 1px;
}
.sub-title.style2 {
  display: block;
  letter-spacing: 4.2px;
  margin-top: -0.4em;
}
.sub-title.style2:after {
  display: none;
}

.box-title {
  font-size: 24px;
  line-height: 1.417;
  font-weight: 600;
  margin-top: -0.3em;
}
.box-title a {
  color: inherit;
}
.box-title a:hover {
  color: var(--theme-color);
}

.sec-text {
  font-size: 16px;
  margin-top: 30px;
  line-height: 1.667;
  margin-bottom: 0;
}

.sec-btn, .title-line {
  margin-bottom: calc(var(--section-title-space) - 11px) !important;
}
.sec-btn.mb-0, .title-line.mb-0 {
  margin-bottom: 0 !important;
}

.title-area {
  margin-bottom: calc(var(--section-title-space) - 17px);
  position: relative;
  z-index: 2;
}
.title-area.mb-0 .sec-title {
  margin-bottom: 17px;
}
.title-area .btn {
  margin-top: 36px;
}
.title-area .checklist {
  margin-top: 30px;
}

.white-title {
  color: #fff;
  font-weight: 700;
  position: relative;
  padding-bottom: 9px;
  margin-bottom: 19px;
}
.white-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  height: 2px;
  width: 50px;
}

.page-title {
  font-size: 40px;
  font-weight: 500;
  margin-top: -0.3em;
}

.page-subtitle {
  font-size: 30px;
  font-weight: 500;
}

.shadow-text {
  font-size: 120px;
  font-weight: 500;
  font-family: var(--title-font);
  color: rgba(0, 0, 0, 0.03);
}

/* Large devices */
@media (max-width: 1199px) {
  .sec-btn,
  .title-line {
    --section-title-space: 55px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .title-area,
  .sec-title {
    --section-title-space: 50px;
  }
  .sec-btn,
  .title-line {
    --section-title-space: 50px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .sec-btn,
  .title-line {
    --section-title-space: 45px;
  }
}
hr.title-line {
  margin-top: 0;
  background-color: transparent;
  border: 1px dashed var(--theme-border-color);
  opacity: 1;
}
hr.title-line.style2 {
  border: 1px dashed #363636;
}

/*------------------- 3.4. Common -------------------*/
.shape-mockup-wrap {
  z-index: 2;
  position: relative;
}

.shape-mockup {
  position: absolute;
  z-index: -1;
}
.shape-mockup.z-index-3 {
  z-index: 3;
}

.z-index-step1 {
  position: relative;
  z-index: 4 !important;
}

.z-index-common {
  position: relative;
  z-index: 3;
}

.z-index-3 {
  z-index: 3;
}

.z-index-n1 {
  z-index: -1;
}

.media-body {
  flex: 1;
}

.style-italic {
  font-style: italic;
}

.badge {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  text-align: center;
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 0.2em 0.45em;
  font-size: 0.6em;
  border-radius: 50%;
  top: 7px;
  left: 12px;
  font-weight: 400;
  transition: 0.3s ease-in-out;
}

.social-btn {
  display: flex;
  gap: 10px;
}
.social-btn a {
  height: var(--icon-size, 45px);
  width: var(--icon-size, 45px);
  line-height: 45px;
  display: inline-block;
  color: var(--white-color);
  text-align: center;
  font-size: 16px;
  border-radius: 50%;
  border: 0;
  background: #15284C;
}
.social-btn a:hover {
  background: var(--white-color);
  color: var(--theme-color);
}
.social-btn.style2 a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}
.social-btn.style3 {
  gap: 20px;
}
.social-btn.style3 a {
  background: transparent;
  width: auto;
  height: auto;
  line-height: normal;
  border-radius: 0;
  color: var(--title-color);
  border: 0;
  font-size: 16px;
}
.social-btn.style3 a:hover {
  background: transparent;
  color: var(--theme-color);
}
.social-btn.style4 {
  flex-wrap: wrap;
  gap: 20px;
}
.social-btn.style4 a {
  --icon-size: 80px;
  line-height: 80px;
  border-radius: 5px;
  font-size: 30px;
  background: var(--theme-color);
  color: var(--white-color);
}
.social-btn.style4 a:has(.fa-facebook-f) {
  background: #0262D0;
}
.social-btn.style4 a:has(.fa-twitter) {
  background: #1DA1F2;
}
.social-btn.style4 a:has(.fa-linkedin-in) {
  background: #0072B1;
}
.social-btn.style4 a:has(.fa-instagram) {
  background: #160711;
}
.social-btn.style4 a:has(.fa-pinterest-p) {
  background: #C8232C;
}
.social-btn.style4 a:has(.fa-vimeo-v) {
  background: #1AB7EA;
}
.social-btn.style4 a:hover {
  background: var(--theme-color);
}
.social-btn.style5 {
  gap: 12px;
}
.social-btn.style5 a {
  --icon-size: 35px;
  line-height: 35px;
  background: var(--theme-color);
  border-radius: 50%;
  color: var(--white-color);
  font-size: 16px;
}
.social-btn.style5 a:has(.fa-facebook-f) {
  background: #1877F2; /* Official Facebook blue */
}
.social-btn.style5 a:has(.fa-x-twitter) {
  background: #000000; /* Official X (Twitter) black */
}
.social-btn.style5 a:has(.fa-linkedin-in) {
  background: #0A66C2; /* Official LinkedIn blue */
}
.social-btn.style5 a:has(.fa-vimeo) {
  background: #1AB7EA; /* Official Vimeo blue */
}
.social-btn.style5 a:has(.fa-instagram) {
  background: #E4405F; /* Official Instagram gradient primary */
}
.social-btn.style5 a:has(.fa-youtube) {
  background: #FF0000; /* Official YouTube red */
}


.social-btn.style5 a:hover {
  background: var(--theme-color);
}
.social-btn.color-theme a {
  color: var(--body-color);
  border-color: var(--theme-color);
}

/* Extra small devices */
@media (max-width: 375px) {
  .social-btn.style4 a {
    --icon-size: 60px;
    line-height: 60px;
    border-radius: 5px;
    font-size: 24px;
  }
}
.global-carousel.slider-shadow .slick-list {
  padding: 30px 0px 40px 0px !important;
  margin: -30px 0px -40px 0px;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.btn-group .btn {
  border-radius: 0;
  flex: none;
}
.btn-group.style2 {
  gap: 20px 70px;
  /* Small devices */
}
@media (max-width: 767px) {
  .btn-group.style2 {
    gap: 20px 30px;
  }
}

/*******Magnific Image*******/
.mfp-zoom-in .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.7;
}

.mfp-zoom-in.mfp-removing .mfp-content {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/*cursor follow************/
.cursor {
  position: fixed;
  background-color: var(--theme-color);
  width: 10px;
  height: 10px;
  border-radius: 100%;
  z-index: 1;
  transition: 0.3s cubic-bezier(0.75, -1.27, 0.3, 2.33) transform, 0.2s cubic-bezier(0.75, -0.27, 0.3, 1.33) opacity;
  user-select: none;
  pointer-events: none;
  z-index: 10000;
  transform: scale(1);
}
.cursor.active {
  opacity: 1;
  transform: scale(0);
}
.cursor.menu-active {
  opacity: 1;
  transform: scale(0);
}
.cursor.hovered {
  opacity: 1;
}

/*------------------- 3.6. Font -------------------*/
.font-icon {
  font-family: var(--icon-font);
}

.font-title {
  font-family: var(--title-font);
}

.font-body {
  font-family: var(--body-font);
}

.fw-extralight {
  font-weight: 100;
}

.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700;
}

.fw-extrabold {
  font-weight: 800;
}

.fs-md {
  font-size: 18px;
}

.fs-xs {
  font-size: 14px;
}

.text-underline {
  text-decoration: underline;
}

/*------------------- 3.7. Background -------------------*/
.bg-theme {
  background-color: var(--theme-color) !important;
}

.bg-theme2 {
  background-color: var(--theme-color) !important;
}

.bg-smoke {
  background-color: var(--smoke-color) !important;
}

.bg-smoke2 {
  background-color: var(--smoke-color2) !important;
}

.bg-smoke3 {
  background-color: var(--smoke-color3) !important;
}

.bg-smoke4 {
  background-color: var(--smoke-color4) !important;
}

.bg-smoke5 {
  background-color: var(--smoke-color5) !important;
}

.bg-white {
  background-color: var(--white-color) !important;
}

.bg-black {
  background-color: var(--black-color) !important;
}

.bg-title {
  background-color: var(--title-color) !important;
}

.background-image,
[data-bg-src] {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.bg-fluid {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center center;
}

.bg-auto {
  background-size: auto auto;
}

.bg-top-center {
  background-size: auto;
  background-position: top center;
}

.bg-repeat {
  background-size: auto;
  background-repeat: repeat;
}

/*------------------- 3.8. Text Color -------------------*/
.text-theme {
  color: var(--theme-color) !important;
}

.text-theme2 {
  color: var(--theme-color) !important;
}

.text-title {
  color: var(--title-color) !important;
}

.text-body {
  color: var(--body-color) !important;
}

.text-white {
  color: var(--white-color) !important;
}

.text-light {
  color: var(--light-color) !important;
}

.text-yellow {
  color: var(--yellow-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

.text-error {
  color: var(--error-color) !important;
}

.text-inherit {
  color: inherit;
}
.text-inherit:hover {
  color: var(--theme-color);
}

a.text-theme:hover,
.text-reset:hover {
  text-decoration: underline;
}

/*------------------- 3.9. Overlay -------------------*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.position-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

[data-overlay] {
  position: relative;
  z-index: 2;
}
[data-overlay] [class^=col-],
[data-overlay] [class*=col-] {
  z-index: 1;
}

[data-overlay]:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

[data-overlay=theme]:before {
  background-color: var(--theme-color);
}

[data-overlay=title]:before {
  background-color: var(--title-color);
}

[data-overlay=white]:before {
  background-color: var(--white-color);
}

[data-overlay=black]:before {
  background-color: var(--black-color);
}

[data-overlay=overlay1]:before {
  background-color: #131B23;
}

[data-opacity="1"]:before {
  opacity: 0.1;
}

[data-opacity="2"]:before {
  opacity: 0.2;
}

[data-opacity="3"]:before {
  opacity: 0.3;
}

[data-opacity="4"]:before {
  opacity: 0.4;
}

[data-opacity="5"]:before {
  opacity: 0.5;
}

[data-opacity="6"]:before {
  opacity: 0.6;
}

[data-opacity="7"]:before {
  opacity: 0.7;
}

[data-opacity="8"]:before {
  opacity: 0.8;
}

[data-opacity="9"]:before {
  opacity: 0.9;
}

[data-opacity="10"]:before {
  opacity: 1;
}

/*------------------- 3.10. Animation -------------------*/
.ripple-animation, .play-btn:after, .play-btn:before {
  animation-duration: var(--ripple-ani-duration);
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-name: ripple;
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.movingX {
  animation: movingX 8s linear infinite;
}

@keyframes movingX {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}
.moving {
  animation: moving 8s linear infinite;
}

@keyframes moving {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}
.jump {
  animation: jumpAni 7s linear infinite;
}

.jump1 {
  animation: jumpAni 6s linear infinite;
}

.jump2 {
  animation: jumpAni 5s linear infinite;
}

.jump3 {
  animation: jumpAni 4s linear infinite;
}

@keyframes jumpAni {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.jump-reverse {
  animation: jumpReverseAni 7s linear infinite;
}

@keyframes jumpReverseAni {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0);
  }
}
.spin {
  animation: spin 15s linear infinite;
}

.spin-slow {
  animation: spin 50s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-positive {
  0% {
    width: 0;
  }
}
.scalein.slider-animated {
  --animation-name: scalein;
}

.slidetopleft.slider-animated {
  --animation-name: slidetopleft;
}

.slidebottomright.slider-animated {
  --animation-name: slidebottomright;
}

.slideinleft.slider-animated {
  --animation-name: slideinleft;
}

.slideinright.slider-animated {
  --animation-name: slideinright;
}

.slideinup.slider-animated {
  --animation-name: slideinup;
}

.slideindown.slider-animated {
  --animation-name: slideindown;
}

.rollinleft.slider-animated {
  --animation-name: rollinleft;
}

.rollinright.slider-animated {
  --animation-name: rollinright;
}

.scalein,
.slidetopleft,
.slidebottomright,
.slideinleft,
.slideinright,
.slideindown,
.slideinup,
.rollinleft,
.rollinright {
  opacity: 0;
  animation-fill-mode: both;
  animation-iteration-count: 1;
  animation-duration: 1s;
  animation-delay: 0.3s;
  animation-name: var(--animation-name);
}

.slider-animated {
  opacity: 1;
}

@keyframes slideinup {
  0% {
    opacity: 0;
    transform: translateY(70px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideinright {
  0% {
    opacity: 0;
    transform: translateX(70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slideindown {
  0% {
    opacity: 0;
    transform: translateY(-70px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes slideinleft {
  0% {
    opacity: 0;
    transform: translateX(-70px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes slidebottomright {
  0% {
    opacity: 0;
    transform: translateX(100px) translateY(100px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes slidetopleft {
  0% {
    opacity: 0;
    transform: translateX(-100px) translateY(-100px);
  }
  100% {
    transform: translateX(0) translateY(0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
  0% {
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
  }
  75% {
    border-top-color: #fff;
    border-left-color: #fff;
    border-right-color: #fff;
    border-bottom-color: transparent;
  }
  100% {
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
    border-left-color: transparent;
  }
}
/*=================================
    04. Template Style
==================================*/
/*------------------- 4.1. Widget  -------------------*/
.widget_nav_menu ul,
.widget_meta ul,
.widget_pages ul,
.widget_archive ul,
.widget_price_filter ul,
.wp-block-page-list ul,
.widget_categories ul {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
}
.widget_nav_menu .menu,
.widget_nav_menu > ul,
.widget_meta .menu,
.widget_meta > ul,
.widget_pages .menu,
.widget_pages > ul,
.widget_archive .menu,
.widget_archive > ul,
.widget_price_filter .menu,
.widget_price_filter > ul,
.wp-block-page-list .menu,
.wp-block-page-list > ul,
.widget_categories .menu,
.widget_categories > ul {
  margin: -3px 0 0px 0;
}
.widget_nav_menu a,
.widget_meta a,
.widget_pages a,
.widget_archive a,
.widget_price_filter a,
.wp-block-page-list a,
.widget_categories a {
  display: block;
  border: none;
  margin: 20px 0px 0px 0px;
  padding: 0px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--title-font);
  line-height: 1.313;
  color: var(--body-color);
  position: relative;
  display: flex;
  align-items: center;
}
.widget_nav_menu a i,
.widget_meta a i,
.widget_pages a i,
.widget_archive a i,
.widget_price_filter a i,
.wp-block-page-list a i,
.widget_categories a i {
  margin-right: 12px;
  transition: 0.4s all;
}
.widget_nav_menu a.active, .widget_nav_menu a:hover,
.widget_meta a.active,
.widget_meta a:hover,
.widget_pages a.active,
.widget_pages a:hover,
.widget_archive a.active,
.widget_archive a:hover,
.widget_price_filter a.active,
.widget_price_filter a:hover,
.wp-block-page-list a.active,
.wp-block-page-list a:hover,
.widget_categories a.active,
.widget_categories a:hover {
  color: var(--theme-color);
}
.widget_nav_menu a.active i, .widget_nav_menu a:hover i,
.widget_meta a.active i,
.widget_meta a:hover i,
.widget_pages a.active i,
.widget_pages a:hover i,
.widget_archive a.active i,
.widget_archive a:hover i,
.widget_price_filter a.active i,
.widget_price_filter a:hover i,
.wp-block-page-list a.active i,
.wp-block-page-list a:hover i,
.widget_categories a.active i,
.widget_categories a:hover i {
  color: var(--theme-color);
  opacity: 1;
}
.widget_nav_menu a.active ~ span, .widget_nav_menu a:hover ~ span,
.widget_meta a.active ~ span,
.widget_meta a:hover ~ span,
.widget_pages a.active ~ span,
.widget_pages a:hover ~ span,
.widget_archive a.active ~ span,
.widget_archive a:hover ~ span,
.widget_price_filter a.active ~ span,
.widget_price_filter a:hover ~ span,
.wp-block-page-list a.active ~ span,
.wp-block-page-list a:hover ~ span,
.widget_categories a.active ~ span,
.widget_categories a:hover ~ span {
  color: var(--theme-color);
}
.widget_nav_menu a.active:after, .widget_nav_menu a:hover:after,
.widget_meta a.active:after,
.widget_meta a:hover:after,
.widget_pages a.active:after,
.widget_pages a:hover:after,
.widget_archive a.active:after,
.widget_archive a:hover:after,
.widget_price_filter a.active:after,
.widget_price_filter a:hover:after,
.wp-block-page-list a.active:after,
.wp-block-page-list a:hover:after,
.widget_categories a.active:after,
.widget_categories a:hover:after {
  opacity: 1;
}
.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_archive li,
.widget_price_filter li,
.wp-block-page-list li,
.widget_categories li {
  display: block;
  position: relative;
}
.widget_nav_menu li > span,
.widget_meta li > span,
.widget_pages li > span,
.widget_archive li > span,
.widget_price_filter li > span,
.wp-block-page-list li > span,
.widget_categories li > span {
  font-size: 16px;
  position: absolute;
  right: 0;
  top: 0px;
  background: transparent;
  border-radius: 0;
  height: auto;
  width: auto;
  line-height: initial;
  text-align: center;
  color: var(--body-color);
  transition: all ease 0.4s;
}
.widget_nav_menu li:last-child a,
.widget_meta li:last-child a,
.widget_pages li:last-child a,
.widget_archive li:last-child a,
.widget_price_filter li:last-child a,
.wp-block-page-list li:last-child a,
.widget_categories li:last-child a {
  margin-bottom: 0px;
  padding-bottom: 0;
  border-bottom: 0;
}
.widget_nav_menu .wp-block-navigation__submenu-container,
.widget_nav_menu .sub-menu,
.widget_nav_menu .children,
.widget_meta .wp-block-navigation__submenu-container,
.widget_meta .sub-menu,
.widget_meta .children,
.widget_pages .wp-block-navigation__submenu-container,
.widget_pages .sub-menu,
.widget_pages .children,
.widget_archive .wp-block-navigation__submenu-container,
.widget_archive .sub-menu,
.widget_archive .children,
.widget_price_filter .wp-block-navigation__submenu-container,
.widget_price_filter .sub-menu,
.widget_price_filter .children,
.wp-block-page-list .wp-block-navigation__submenu-container,
.wp-block-page-list .sub-menu,
.wp-block-page-list .children,
.widget_categories .wp-block-navigation__submenu-container,
.widget_categories .sub-menu,
.widget_categories .children {
  margin-left: 18px;
}
.widget_nav_menu .wp-block-navigation__submenu-container li a,
.widget_nav_menu .sub-menu li a,
.widget_nav_menu .children li a,
.widget_meta .wp-block-navigation__submenu-container li a,
.widget_meta .sub-menu li a,
.widget_meta .children li a,
.widget_pages .wp-block-navigation__submenu-container li a,
.widget_pages .sub-menu li a,
.widget_pages .children li a,
.widget_archive .wp-block-navigation__submenu-container li a,
.widget_archive .sub-menu li a,
.widget_archive .children li a,
.widget_price_filter .wp-block-navigation__submenu-container li a,
.widget_price_filter .sub-menu li a,
.widget_price_filter .children li a,
.wp-block-page-list .wp-block-navigation__submenu-container li a,
.wp-block-page-list .sub-menu li a,
.wp-block-page-list .children li a,
.widget_categories .wp-block-navigation__submenu-container li a,
.widget_categories .sub-menu li a,
.widget_categories .children li a {
  margin: 15px 0 0px;
}

.widget_nav_menu a,
.widget_meta a,
.widget_pages a {
  padding-right: 20px;
}

.widget_nav_menu .sub-menu {
  margin-left: 10px;
}

.wp-block-page-list {
  padding: 0;
  margin: -3px 0 0px 0;
}

.product_list_widget .star-rating {
  width: auto;
  font-size: 12px;
}
.product_list_widget li a {
  color: var(--title-color);
}
.product_list_widget li a:hover {
  color: var(--theme-color);
}
.product_list_widget li:last-child {
  padding-bottom: 0 !important;
}

.wp-block-archives {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.wp-block-archives a:not(:hover) {
  color: inherit;
}

.blog-single ul.wp-block-archives li {
  margin: 5px 0;
}

.widget {
  margin-bottom: 30px;
  position: relative;
  padding: var(--widget-padding-x, 30px);
  background: #f7f8fa;
  border: 0;
  border-radius: 20px;
}
.widget[data-overlay]:before {
  z-index: -1;
}

.widget_title {
  position: relative;
  font-size: 24px;
  font-weight: 500;
  font-family: var(--title-font);
  line-height: 1em;
  margin: -0.12em 0 28px 0;
}

.widget .search-form {
  position: relative;
  display: flex;
  background: var(--white-color);
  border-radius: 5px;
}
.widget .search-form label {
  margin-top: 0;
  margin-bottom: 0;
}
.widget .search-form input {
  background: var(--white-color);
  border: 0;
  flex: 1;
  color: var(--body-color);
  font-size: 16px;
  font-weight: 400;
  border-radius: 5px;
  padding: 0 70px 0 20px;
}
.widget .search-form .search-submit {
  background: var(--theme-color);
  padding: 0 20px;
  color: var(--white-color);
}
.widget .search-form input::placeholder {
  color: var(--body-color);
}
.widget .search-form button {
  position: absolute;
  right: 0px;
  top: 0px;
  border: none;
  font-size: 18px;
  background-color: var(--theme-color);
  color: var(--white-color);
  display: inline-block;
  height: 55px;
  width: 65px;
  line-height: 55px;
  border-radius: 5px;
}
.widget .search-form button:hover {
  color: var(--title-color);
}

.widget-author {
  padding-top: 60px;
  padding-bottom: 60px;
  text-align: center;
}
.widget-author .widget-author-thumb {
  margin-bottom: 30px;
}
.widget-author .widget_title {
  font-size: 30px;
  margin-bottom: 4px;
}
.widget-author .widget_title:after {
  display: none;
}
.widget-author .widget-author-desig {
  font-size: 18px;
  font-weight: 400;
  font-family: var(--title-font);
  color: var(--body-color);
  display: block;
}
.widget-author .social-btn {
  display: inline-flex;
  margin-top: 22px;
}
footer .widget h6.wp-block-heading{
  color: var(--white-color);
}
footer label.wp-block-search__label{
  color: var(--white-color);
}

/* ======================= Category Widget Code Starts =================== */
.selected-category-posts-widget {
  list-style: none;
  padding: 0;
  margin: 0;
}
.selected-category-posts-widget .widget-post-details.col-9{
  box-shadow: none;
}
.selected-category-posts-widget .widget-post-details a.widget-post-title{
  color: var(--title-color);
  text-decoration: none;
  font-weight: 700;
}
.dark-theme .selected-category-posts-widget .widget-post-details a.widget-post-title{
  color: var(--white-color);
}
.selected-category-posts-widget .widget-post-details a.widget-post-title:hover {
  color: var(--theme-color);
  text-decoration: underline;
}


.wp-block-tag-cloud,
.tagcloud {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
.wp-block-tag-cloud .title,
.tagcloud .title {
  font-size: 16px;
  font-weight: 500;
  font-family: var(--title-font);
  color: var(--title-color);
}
.wp-block-tag-cloud a,
.tagcloud a {
  display: inline-block;
  border: 0;
  font-size: 14px !important;
  font-weight: 400;
  font-family: var(--body-font);
  height: 25px;
  line-height: 25px;
  padding: 0px 14px;
  color: var(--white-color);
  background-color: var(--theme-color);
  border-radius: 3px;
}
.wp-block-tag-cloud a:hover,
.tagcloud a:hover {
  background-color: var(--title-color);
  color: var(--white-color) !important;
  border-color: var(--title-color);
}

.widget_gallery .insta-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.widget_gallery a {
  position: relative;
  border-radius: 0px;
  display: inline-block;
  flex: none;
}
.widget_gallery a img {
  border-radius: 0px;
  width: 100%;
}
.widget_gallery a:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: var(--theme-color);
  border-radius: 0px;
  transition: 0.4s;
  opacity: 0;
}
.widget_gallery a i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  opacity: 0;
  transition: 0.4s;
  color: var(--white-color);
  font-size: 20px;
}
.widget_gallery a:hover i {
  opacity: 1;
}
.widget_gallery a:hover:after {
  opacity: 0.7;
}

.base {
  border-radius: 6px;
  position: absolute;
  left: 1302px;
  top: 2098px;
  width: 80px;
  height: 78px;
  z-index: 209;
}

.recent-post-tab {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}
.recent-post-tab .tab-btn {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--title-font);
  background: var(--title-color);
  color: var(--white-color);
  border-radius: 5px;
  border: 0;
  padding: 8px 13px;
}
.recent-post-tab .tab-btn.active {
  background: var(--theme-color);
}

.recent-post {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background: transparent;
  border-radius: 6px;
  transition: 0.4s;
}
.recent-post:last-child {
  margin-bottom: 0px;
  border: 0;
}
.recent-post .media-img {
  margin-right: 16px;
  width: 80px;
  overflow: hidden;
  border-radius: 5px;
}
.recent-post .media-img img {
  width: 100%;
  height: 80px;
  border-radius: 5px;
  transition: 0.4s ease-in-out;
  margin: 5px auto;
}
.recent-post .post-title {
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 6px;
  font-family: var(--title-font);
  text-transform: capitalize;
}
.recent-post .recent-post-meta {
  margin-bottom: -2px;
}
.recent-post .recent-post-meta a {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--body-font);
  color: var(--body-color);
  margin-bottom: 0px;
  display: block;
}
.recent-post .recent-post-meta a i {
  margin-right: 3px;
  transition: 0.4s;
}
.recent-post .recent-post-meta a:hover {
  color: var(--theme-color);
}
.recent-post .recent-post-meta a:hover i {
  color: var(--theme-color);
}
.recent-post:hover .media-img img {
  transform: scale(1.1);
}

.trending-post {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  background: transparent;
  border-radius: 6px;
  transition: 0.4s;
}
.trending-post:last-child {
  margin-bottom: 0px;
  border: 0;
}
.trending-post .media-img {
  margin-right: 16px;
  width: 80px;
  overflow: hidden;
  border-radius: 5px;
}
.trending-post .media-img img {
  width: 100%;
  height: 80px;
  border-radius: 5px;
  transition: 0.4s ease-in-out;
  margin: 5px auto;
}
.trending-post .post-title {
  font-weight: 500;
  font-size: 16px;
  margin: 0 0 6px;
  font-family: var(--title-font);
  text-transform: capitalize;
}
.trending-post .trending-post-meta {
  margin-bottom: -2px;
}
.trending-post .trending-post-meta a {
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: var(--body-font);
  color: var(--body-color);
  margin-bottom: 0px;
  display: block;
}
.trending-post .trending-post-meta a i {
  margin-right: 3px;
  transition: 0.4s;
}
.trending-post .trending-post-meta a:hover {
  color: var(--theme-color);
}
.trending-post .trending-post-meta a:hover i {
  color: var(--theme-color);
}
.trending-post:hover .media-img img {
  transform: scale(1.1);
}
.dark-theme .widget-trending-post .trending-post-wrap .media-body h4.post-title a {
  color: white;
}
footer .widget-trending-post .trending-post-wrap .media-body h4.post-title a {
  color: white;
}
.sidebar-widget-area .widget.widget-trending-post {
  padding: 0px;
}
.widget_banner {
  padding: 0;
}

.widget-project-details {
  background: rgba(199, 134, 101, 0.08);
  border: 0;
  margin-bottom: 0;
}
.widget-project-details .widget_title {
  margin-bottom: 30px;
}
.widget-project-details .widget_title:after {
  display: none;
}
.widget-project-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.widget-project-details ul li {
  display: flex;
  gap: 20px;
  align-items: center;
}
.widget-project-details ul li:not(:last-child) {
  border-bottom: 1px solid #EEDFD7;
  padding-bottom: 25px;
  margin-bottom: 25px;
}
.widget-project-details ul li .icon {
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50%;
  background: var(--white-color);
  text-align: center;
  color: var(--theme-color);
}
.widget-project-details ul li .title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  display: block;
  margin-bottom: -1px;
  margin-top: -0.6em;
}
.widget-project-details ul li h6 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: -0.3em;
}

/*Price Filter --------------*/
.price_slider_wrapper {
  margin-top: 0;
}
.price_slider_wrapper .price_label {
  margin-bottom: -0.6em;
  display: flex;
  align-items: center;
  font-size: 14px;
}
.price_slider_wrapper .price_label span {
  display: inline-block;
  color: var(--body-color);
}
.price_slider_wrapper .ui-slider {
  height: 4px;
  position: relative;
  width: 100%;
  background-color: #e0e0e0;
  border: none;
  margin-top: 10px;
  margin-bottom: 20px;
  cursor: pointer;
  border-radius: 0;
}
.price_slider_wrapper .ui-slider-range {
  border: none;
  cursor: pointer;
  position: absolute;
  top: 0;
  height: 100%;
  z-index: 1;
  display: block;
  background-color: var(--theme-color);
}
.price_slider_wrapper .ui-slider-handle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  text-align: center;
  line-height: 10.5px;
  padding: 0;
  border: none;
  cursor: pointer;
  position: absolute;
  margin-top: -5px;
  z-index: 2;
  background-color: var(--white-color);
  border: 1px solid var(--theme-color);
  transform: translateX(-1px);
}
.price_slider_wrapper .ui-slider-handle:focus {
  outline: none;
  box-shadow: 1.5px 2.598px 10px 0px rgba(0, 0, 0, 0.15);
}
.price_slider_wrapper .ui-slider-handle:last-child {
  transform: translateX(-9px);
}
.price_slider_wrapper button,
.price_slider_wrapper .button {
  background: transparent;
  color: var(--title-color);
  font-weight: 600;
  line-height: 1.6;
  text-transform: capitalize;
  text-align: center;
  border-radius: 50px;
  border: none;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 2;
  padding: 0;
  font-size: 16px;
  transition: 0.4s ease-in;
  margin-left: auto;
}
.price_slider_wrapper button:hover,
.price_slider_wrapper .button:hover {
  color: var(--theme-color);
}
.price_slider_wrapper button:hover:after, .price_slider_wrapper button:hover:before,
.price_slider_wrapper .button:hover:after,
.price_slider_wrapper .button:hover:before {
  display: none;
}

.widget_checklist input[type=checkbox] ~ label {
  color: var(--body-color);
}
.widget_checklist input[type=checkbox] ~ label:before {
  height: 16px;
  width: 16px;
  line-height: 15px;
  font-size: 10px;
  border-radius: 2px;
}

.product_list_widget .recent-post {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 0;
  border-bottom: none;
}
.product_list_widget .recent-post:last-child {
  margin-bottom: 0;
}
.product_list_widget .recent-post .media-img {
  width: 65px;
  margin-right: 15px;
  flex: none;
}
.product_list_widget .recent-post .recent-post-meta a {
  font-size: 12px;
  margin-top: -7px;
}
.product_list_widget .recent-post .post-title,
.product_list_widget .recent-post-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 7px;
  margin-top: -4px;
}
.product_list_widget .recent-post .post-title a,
.product_list_widget .recent-post-title a {
  color: inherit;
}
.product_list_widget .recent-post .post-title a:hover,
.product_list_widget .recent-post-title a:hover {
  color: var(--theme-color);
}
.product_list_widget .star-rating {
  font-size: 12px;
  margin-bottom: 0px;
}

.sidebar-area select,
.sidebar-area input {
  background-color: var(--white-color);
  border: 1px solid var(--theme-border-color);
}

.widget_shopping_cart .widget_title {
  margin-bottom: 30px;
  border-bottom: none;
}
.widget_shopping_cart ul {
  margin: 0;
  padding: 0;
}
.widget_shopping_cart ul li {
  list-style-type: none;
}
.widget_shopping_cart .mini_cart_item {
  position: relative;
  padding: 30px 30px 30px 90px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0;
  text-align: left;
}
.widget_shopping_cart .mini_cart_item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.widget_shopping_cart .cart_list a:not(.remove) {
  display: block;
  color: var(--body-color);
  font-size: 16px;
  font-weight: 500;
  font-family: var(--title-font);
  font-weight: 600;
  color: var(--title-color);
}
.widget_shopping_cart .cart_list a:not(.remove):hover {
  color: var(--theme-color);
}
.widget_shopping_cart .cart_list a.remove {
  position: absolute;
  top: 50%;
  left: 95%;
  transform: translateY(-50%);
  color: var(--body-color);
}
.widget_shopping_cart .cart_list a.remove:hover {
  color: var(--theme-color);
}
.widget_shopping_cart .cart_list img {
  width: 75px;
  height: 75px;
  position: absolute;
  left: 0;
  top: 18px;
}
.widget_shopping_cart .quantity {
  display: inline-flex;
  white-space: nowrap;
  vertical-align: top;
  margin-right: 20px;
  font-size: 14px;
  font-weight: 500;
}
.widget_shopping_cart .total {
  margin-top: 20px;
  font-size: 18px;
  color: var(--title-color);
  font-family: var(--body-font);
}
.widget_shopping_cart .total strong {
  font-family: var(--title-font);
}
.widget_shopping_cart .amount {
  padding-left: 5px;
}

.widget_schedule ul {
  padding: 0;
  margin: 0;
  margin-bottom: -10px;
}
.widget_schedule ul li {
  list-style: none;
  background: #FFFFFF;
  border: 1px solid rgba(237, 237, 237, 0.89);
  box-shadow: 0px 16px 51px rgba(0, 0, 0, 0.07);
  border-radius: 15px;
  margin-bottom: 15px;
  height: 55px;
  line-height: 55px;
  padding: 0 20px;
}
.widget_schedule ul li i {
  margin-right: 6px;
}
.widget_schedule ul li.unavailable {
  color: var(--theme-color);
}

.wp-block-calendar tbody td,
.wp-block-calendar th {
  padding: 10px;
}

.wp-block-calendar,
.calendar_wrap {
  position: relative;
  background-color: #fff;
  padding-bottom: 0;
  border: none;
}
.wp-block-calendar span[class*=wp-calendar-nav],
.calendar_wrap span[class*=wp-calendar-nav] {
  position: absolute;
  top: 9px;
  left: 20px;
  font-size: 14px;
  color: var(--white-color);
  font-weight: 400;
  z-index: 1;
  line-height: 1.7;
}
.wp-block-calendar span[class*=wp-calendar-nav] a,
.calendar_wrap span[class*=wp-calendar-nav] a {
  color: inherit;
  margin-top: 0;
  margin-bottom: 0;
}
.wp-block-calendar span.wp-calendar-nav-next,
.calendar_wrap span.wp-calendar-nav-next {
  left: auto;
  right: 20px;
}
.wp-block-calendar caption,
.calendar_wrap caption {
  caption-side: top;
  text-align: center;
  color: var(--white-color);
  background-color: var(--theme-color);
}
.wp-block-calendar th,
.calendar_wrap th {
  font-size: 14px;
  padding: 5px 5px;
  border: none;
  text-align: center;
  border-right: 1px solid #eee;
  color: var(--title-color);
  font-weight: 500;
}
.wp-block-calendar th:first-child,
.calendar_wrap th:first-child {
  border-left: 1px solid #eee;
}
.wp-block-calendar th:last-child,
.calendar_wrap th:last-child {
  border-right: 1px solid #eee;
}
.wp-block-calendar table th,
.calendar_wrap table th {
  font-weight: 500;
}
.wp-block-calendar td,
.calendar_wrap td {
  font-size: 14px;
  padding: 5px 5px;
  color: #01133c;
  border: 1px solid #eee;
  text-align: center;
  background-color: transparent;
  transition: all ease 0.4s;
}
.wp-block-calendar #today,
.calendar_wrap #today {
  color: var(--theme-color);
  background-color: var(--white-color);
  border-color: #ededed;
}
.wp-block-calendar thead,
.calendar_wrap thead {
  background-color: #fff;
}
.wp-block-calendar .wp-calendar-table,
.calendar_wrap .wp-calendar-table {
  margin-bottom: 0;
}
.wp-block-calendar .wp-calendar-nav .pad,
.calendar_wrap .wp-calendar-nav .pad {
  display: none;
}
.wp-block-calendar a,
.calendar_wrap a {
  color: inherit;
  text-decoration: none;
}
.wp-block-calendar a:hover,
.calendar_wrap a:hover {
  color: var(--title-color);
}

/***wp-calender***/
.wp-block-calendar {
  margin-bottom: 30px;
  border: none;
  padding-bottom: 0;
}
.wp-block-calendar table caption {
  color: var(--white-color);
}

/********widget_recent_comments********/
.widget_recent_comments ul,
.wp-block-latest-comments ul {
  list-style-type: none;
  padding-left: 0;
}

ul.widget_recent_comments,
ol.widget_recent_comments,
.wp-block-latest-comments {
  margin-top: -0.11em;
  padding-left: 0;
  color: darkgrey;
}

.widget_recent_comments ol,
.widget_recent_comments ul,
.wp-block-latest-comments ol,
.wp-block-latest-comments ul {
  margin-bottom: 0;
}
.widget_recent_comments li,
.wp-block-latest-comments li {
  margin-bottom: 0;
  color: var(--body-color);
  padding-left: 30px;
  position: relative;
}
.widget_recent_comments li:before,
.wp-block-latest-comments li:before {
  content: "\f086";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--theme-color);
  font-family: var(--icon-font);
}
.widget_recent_comments.has-avatars li,
.wp-block-latest-comments.has-avatars li {
  padding-left: 0;
  padding-bottom: 0 !important;
}
.widget_recent_comments.has-avatars li:before,
.wp-block-latest-comments.has-avatars li:before {
  display: none;
}
.widget_recent_comments .avatar,
.wp-block-latest-comments .avatar {
  margin-top: 0.4em;
}
.widget_recent_comments li:not(:last-child),
.wp-block-latest-comments li:not(:last-child) {
  padding-bottom: 12px;
}
.widget_recent_comments article,
.wp-block-latest-comments article {
  line-height: 1.5;
}
.widget_recent_comments a,
.wp-block-latest-comments a {
  color: inherit;
}
.widget_recent_comments a:hover,
.wp-block-latest-comments a:hover {
  color: var(--theme-color);
}

/******widget_recent_entries******/
.widget_recent_entries ul {
  margin: -0.3em 0 0 0;
  padding: 0;
  list-style: none;
}
.widget_recent_entries ul li > a {
  color: var(--body-color);
  font-weight: 500;
  display: inline-block;
}
.widget_recent_entries ul li > a:hover {
  color: var(--theme-color);
}
.widget_recent_entries ul li span.post-date {
  font-size: 14px;
}
.widget_recent_entries ul li:not(:last-child) {
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

/*******widget_rss*******/
ul.widget_rss, ul.wp-block-rss,
ol.widget_rss,
ol.wp-block-rss {
  padding-left: 0;
}

.widget_rss,
.wp-block-rss {
  list-style-type: none;
}
.widget_rss ul,
.wp-block-rss ul {
  margin: -0.2em 0 -0.5em 0;
  padding: 0;
  list-style: none;
}
.widget_rss ul .rsswidget,
.wp-block-rss ul .rsswidget {
  color: var(--title-color);
  font-family: var(--theme-font);
  font-size: 18px;
  display: block;
  margin-bottom: 10px;
}
.widget_rss ul .rssSummary,
.wp-block-rss ul .rssSummary {
  font-size: 14px;
  margin-bottom: 7px;
  line-height: 1.5;
}
.widget_rss ul a,
.wp-block-rss ul a {
  display: block;
  font-weight: 600;
  color: inherit;
}
.widget_rss ul a:hover,
.wp-block-rss ul a:hover {
  color: var(--theme-color);
}
.widget_rss ul .rss-date,
.wp-block-rss ul .rss-date {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 400;
  color: var(--title-color);
}
.widget_rss ul .rss-date:before,
.wp-block-rss ul .rss-date:before {
  content: "\f073";
  font-family: var(--icon-font);
  margin-right: 10px;
  font-weight: 300;
  color: var(--theme-color);
}
.widget_rss ul cite,
.wp-block-rss ul cite {
  font-weight: 500;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 14px;
}
.widget_rss ul cite:before,
.wp-block-rss ul cite:before {
  content: "";
  position: relative;
  top: -1px;
  left: 0;
  width: 20px;
  height: 2px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  background-color: var(--theme-color);
}
.widget_rss li:not(:last-child),
.wp-block-rss li:not(:last-child) {
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 16px;
}
.widget_rss a:hover,
.wp-block-rss a:hover {
  color: var(--theme-color);
}

.wp-block-latest-comments__comment:first-child {
  margin-top: 0;
}
.wp-block-latest-comments__comment:last-child {
  margin-bottom: 0;
}
.wp-block-latest-comments__comment:last-child .wp-block-latest-comments__comment-excerpt p {
  margin-bottom: -0.3em;
}

ul.wp-block-latest-posts li:first-child {
  margin-top: 0;
}
ul.wp-block-latest-posts li:last-child {
  margin-bottom: -0.3em;
}

/* Large devices */
@media (max-width: 1199px) {
  .widget {
    --widget-padding-y: 30px;
    --widget-padding-x: 30px;
  }
  .widget_title {
    font-size: 22px;
  }
  .author-widget-wrap .name {
    font-size: 22px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .sidebar-area {
    padding-top: 40px;
  }
  .widget {
    --widget-padding-y: 40px;
    --widget-padding-x: 40px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .widget_info {
    padding: 0;
  }
  .author-widget-wrap {
    padding: 0;
  }
  .widget_info .widget_title {
    padding: 24px 30px 19px 28px;
  }
  .info-list {
    padding: 0 30px 30px;
  }
  .widget {
    padding: 30px;
  }
  .widget_banner {
    padding: 0;
  }
  .widget_estimate .estimate-wrap span {
    margin-bottom: 16px;
  }
  .widget_estimate .content p {
    margin-bottom: 25px;
  }
  .widget_estimate .content h5 {
    margin-bottom: 23px;
  }
  .widget_estimate .content .checklist {
    margin-bottom: 30px;
  }
}
/* Extra small devices */
@media (max-width: 375px) {
  .widget_schedule ul li {
    font-size: 14px;
  }
  .recent-post .post-title {
    font-size: 18px;
  }
}
@media (max-width: 330px) {
  .recent-post .post-title {
    font-size: 16px;
    line-height: 24px;
  }
  .recent-post .recent-post-meta a {
    font-size: 12px;
  }
  .recent-post .media-img {
    width: 67px;
  }
  .recent-post .media-img {
    margin-right: 15px;
  }
  .widget_schedule ul li {
    font-size: 12px;
    padding: 0 15px;
  }
}
/*social-widget********/
.social-widget {
  display: grid;
  gap: 15px 30px;
  grid-template-columns: repeat(2, 1fr);
  border: 0;
  padding: 0;
  background: transparent;
}
.social-widget .single-social-widget {
  display: flex;
  gap: 12px;
  border-radius: 2px;
  background: var(--white-color);
  box-shadow: 0px 1px 5.2px -1px rgba(0, 0, 0, 0.1);
  padding: 7px 10px;
}
.social-widget .single-social-widget:hover {
  box-shadow: 0px 1px 5.2px -1px rgba(0, 0, 0, 0.3);
}
.social-widget .social-icon {
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  flex: none;
  font-size: 14px;
  color: var(--white-color);
  background: var(--theme-color);
}
.social-widget .social-icon:has(.fa-facebook-f) {
  background: #0262D0;
}
.social-widget .social-icon:has(.fa-twitter) {
  background: #46C8FF;
}
.social-widget .social-icon:has(.fa-instagram) {
  background: #000000;
}
.social-widget .social-icon:has(.fa-vimeo-v) {
  background: #87D4FF;
}
.social-widget .social-icon:has(.fa-linkedin) {
  background: #0F75A8;
}
.social-widget .social-icon:has(.fa-youtube) {
  background: #F21313;
}
.social-widget .social-widget-title {
  font-size: 14px;
  font-weight: 400;
  margin-top: -0.3em;
  margin-bottom: -0.6em;
}
.social-widget .follower {
  font-size: 10px;
  font-weight: 400;
  color: var(--body-color);
  display: block;
  margin-top: 10px;
  margin-bottom: -0.9em;
}
.social-widget.style2 .single-social-widget .social-icon {
  background: var(--white-color);
}
.social-widget.style2 .single-social-widget .social-widget-details .social-widget-title {
  color: var(--white-color);
}
.social-widget.style2 .single-social-widget .social-widget-details .follower {
  color: var(--white-color);
}
.social-widget.style2 .single-social-widget:has(.fa-facebook-f) {
  background: #0262D0;
}
.social-widget.style2 .single-social-widget:has(.fa-facebook-f) .social-icon i {
  color: #0262D0;
}
.social-widget.style2 .single-social-widget:has(.fa-twitter) {
  background: #46C8FF;
}
.social-widget.style2 .single-social-widget:has(.fa-twitter) .social-icon i {
  color: #46C8FF;
}
.social-widget.style2 .single-social-widget:has(.fa-instagram) {
  background: #000000;
}
.social-widget.style2 .single-social-widget:has(.fa-instagram) .social-icon i {
  color: #000000;
}
.social-widget.style2 .single-social-widget:has(.fa-vimeo-v) {
  background: #87D4FF;
}
.social-widget.style2 .single-social-widget:has(.fa-vimeo-v) .social-icon i {
  color: #87D4FF;
}
.social-widget.style2 .single-social-widget:has(.fa-linkedin) {
  background: #0F75A8;
}
.social-widget.style2 .single-social-widget:has(.fa-linkedin) .social-icon i {
  color: #0F75A8;
}
.social-widget.style2 .single-social-widget:has(.fa-youtube) {
  background: #F21313;
}
.social-widget.style2 .single-social-widget:has(.fa-youtube) .social-icon i {
  color: #F21313;
}

.ad-widget {
  border: 1px solid var(--theme-border-color);
  padding: 30px;
  display: block;
}

.footer-widget {
  margin-bottom: 50px !important;
}
.footer-widget,
.footer-widget .widget {
  padding: 0;
  border: none;
  padding-bottom: 0;
  background-color: transparent;
  box-shadow: none;
}
.footer-widget .wp-block-search__label,
.footer-widget .widget_title {
  max-width: 270px;
  border-bottom: none;
  margin: -0.2em 0 37px 0;
  font-size: 24px;
  font-weight: 500;
  color: var(--white-color) !important;
  position: relative;
}
.footer-widget.widget_meta ul, .footer-widget.widget_pages ul, .footer-widget.widget_archive ul, .footer-widget.widget_recent_entries ul, .footer-widget.widget_categories ul, .footer-widget.widget_nav_menu ul {
  margin-top: -5px;
}
.footer-widget.widget_meta .list-column2, .footer-widget.widget_pages .list-column2, .footer-widget.widget_archive .list-column2, .footer-widget.widget_recent_entries .list-column2, .footer-widget.widget_categories .list-column2, .footer-widget.widget_nav_menu .list-column2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 100px;
  /* Large devices */
}
@media (max-width: 1199px) {
  .footer-widget.widget_meta .list-column2, .footer-widget.widget_pages .list-column2, .footer-widget.widget_archive .list-column2, .footer-widget.widget_recent_entries .list-column2, .footer-widget.widget_categories .list-column2, .footer-widget.widget_nav_menu .list-column2 {
    gap: 20px 20px;
  }
}
.footer-widget.widget_meta .menu,
.footer-widget.widget_meta > ul, .footer-widget.widget_pages .menu,
.footer-widget.widget_pages > ul, .footer-widget.widget_archive .menu,
.footer-widget.widget_archive > ul, .footer-widget.widget_recent_entries .menu,
.footer-widget.widget_recent_entries > ul, .footer-widget.widget_categories .menu,
.footer-widget.widget_categories > ul, .footer-widget.widget_nav_menu .menu,
.footer-widget.widget_nav_menu > ul {
  margin-bottom: -5px;
}
.footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_recent_entries a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  font-family: var(--body-font);
  color: var(--body-color);
  display: block;
  max-width: 100%;
  width: max-content;
  background-color: transparent;
  border: none;
  position: relative;
}
.footer-widget.widget_meta a:before, .footer-widget.widget_meta a:after, .footer-widget.widget_pages a:before, .footer-widget.widget_pages a:after, .footer-widget.widget_archive a:before, .footer-widget.widget_archive a:after, .footer-widget.widget_recent_entries a:before, .footer-widget.widget_recent_entries a:after, .footer-widget.widget_categories a:before, .footer-widget.widget_categories a:after, .footer-widget.widget_nav_menu a:before, .footer-widget.widget_nav_menu a:after {
  display: none;
}
.footer-widget.widget_meta a:hover, .footer-widget.widget_pages a:hover, .footer-widget.widget_archive a:hover, .footer-widget.widget_recent_entries a:hover, .footer-widget.widget_categories a:hover, .footer-widget.widget_nav_menu a:hover {
  background-color: transparent;
  color: var(--theme-color);
}
.footer-widget.widget_meta li, .footer-widget.widget_pages li, .footer-widget.widget_archive li, .footer-widget.widget_recent_entries li, .footer-widget.widget_categories li, .footer-widget.widget_nav_menu li {
  border: 0 !important;
  padding-bottom: 0 !important;
}
.footer-widget.widget_meta li:last-child a, .footer-widget.widget_pages li:last-child a, .footer-widget.widget_archive li:last-child a, .footer-widget.widget_recent_entries li:last-child a, .footer-widget.widget_categories li:last-child a, .footer-widget.widget_nav_menu li:last-child a {
  margin-bottom: 0;
}
.footer-widget.widget_meta .wp-block-navigation__submenu-container,
.footer-widget.widget_meta .sub-menu,
.footer-widget.widget_meta .children, .footer-widget.widget_pages .wp-block-navigation__submenu-container,
.footer-widget.widget_pages .sub-menu,
.footer-widget.widget_pages .children, .footer-widget.widget_archive .wp-block-navigation__submenu-container,
.footer-widget.widget_archive .sub-menu,
.footer-widget.widget_archive .children, .footer-widget.widget_recent_entries .wp-block-navigation__submenu-container,
.footer-widget.widget_recent_entries .sub-menu,
.footer-widget.widget_recent_entries .children, .footer-widget.widget_categories .wp-block-navigation__submenu-container,
.footer-widget.widget_categories .sub-menu,
.footer-widget.widget_categories .children, .footer-widget.widget_nav_menu .wp-block-navigation__submenu-container,
.footer-widget.widget_nav_menu .sub-menu,
.footer-widget.widget_nav_menu .children {
  margin-left: 10px;
}
.footer-widget.widget_meta .wp-block-navigation__submenu-container li a,
.footer-widget.widget_meta .sub-menu li a,
.footer-widget.widget_meta .children li a, .footer-widget.widget_pages .wp-block-navigation__submenu-container li a,
.footer-widget.widget_pages .sub-menu li a,
.footer-widget.widget_pages .children li a, .footer-widget.widget_archive .wp-block-navigation__submenu-container li a,
.footer-widget.widget_archive .sub-menu li a,
.footer-widget.widget_archive .children li a, .footer-widget.widget_recent_entries .wp-block-navigation__submenu-container li a,
.footer-widget.widget_recent_entries .sub-menu li a,
.footer-widget.widget_recent_entries .children li a, .footer-widget.widget_categories .wp-block-navigation__submenu-container li a,
.footer-widget.widget_categories .sub-menu li a,
.footer-widget.widget_categories .children li a, .footer-widget.widget_nav_menu .wp-block-navigation__submenu-container li a,
.footer-widget.widget_nav_menu .sub-menu li a,
.footer-widget.widget_nav_menu .children li a {
  border-bottom: 0;
  margin: 0 0px 19px 0px;
  padding: 0 0 0 23px;
}
.footer-widget .recent-post {
  margin-bottom: 24px;
  padding: 0;
  border: 0;
}
.footer-widget .recent-post .media-img {
  width: 100px;
  border-radius: 10px;
}
.footer-widget .recent-post .post-title {
  color: var(--white-color);
  font-size: 18px;
  font-weight: 500;
  margin: 10px 0 0 0;
}
.footer-widget .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}
.footer-widget .recent-post .recent-post-meta a {
  font-weight: 300;
  line-height: 1.2;
  color: var(--white-color);
  font-size: 14px;
}
.footer-widget .recent-post .recent-post-meta i {
  transition: 0.4s;
}
.footer-widget .recent-post .recent-post-meta a:hover {
  color: var(--theme-color);
}
.footer-widget .recent-post .recent-post-meta a:hover i {
  color: var(--theme-color);
}
.footer-widget.widget_shopping_cart .total, .footer-widget.widget_rss ul .rss-date, .footer-widget.widget_rss ul cite, .footer-widget.widget_rss ul .rsswidget,
.footer-widget .product_list_widget li a, .footer-widget.widget_shopping_cart .cart_list a:not(.remove) {
  color: var(--white-color);
}
.footer-widget blockquote:before, .footer-widget .wp-block-quote:before {
  left: 40px;
  top: 40px;
}
.footer-widget .wp-block-search .wp-block-search__inside-wrapper {
  border: 0;
  border-radius: 0;
}
.footer-widget .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button {
  margin-left: 10px;
}
.footer-widget .wp-block-search .wp-block-search__inside-wrapper .wp-block-search__button:hover {
  background: var(--white-color);
  color: var(--theme-color);
}
.footer-widget .widget_nav_menu a,
.footer-widget .widget_meta a,
.footer-widget .widget_pages a,
.footer-widget .widget_archive a,
.footer-widget .widget_categories a {
  border-bottom: 1px solid #363636;
}
.footer-widget .widget_nav_menu .wp-block-navigation__submenu-container li a, .footer-widget .widget_nav_menu .sub-menu li a, .footer-widget .widget_nav_menu .children li a, .footer-widget .widget_meta .wp-block-navigation__submenu-container li a, .footer-widget .widget_meta .sub-menu li a, .footer-widget .widget_meta .children li a, .footer-widget .widget_pages .wp-block-navigation__submenu-container li a, .footer-widget .widget_pages .sub-menu li a, .footer-widget .widget_pages .children li a, .footer-widget .widget_archive .wp-block-navigation__submenu-container li a, .footer-widget .widget_archive .sub-menu li a, .footer-widget .widget_archive .children li a, .footer-widget .wp-block-page-list .wp-block-navigation__submenu-container li a, .footer-widget .wp-block-page-list .sub-menu li a, .footer-widget .wp-block-page-list .children li a, .footer-widget .widget_categories .wp-block-navigation__submenu-container li a, .footer-widget .widget_categories .sub-menu li a, .footer-widget .widget_categories .children li a {
  border-bottom: 1px solid #363636;
}
.footer-widget.woocommerce .widget_shopping_cart .total, .footer-widget.woocommerce.widget_shopping_cart .total {
  border-top: 3px double #363636;
}

.widget-contact .contact-info-list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: -10px;
}
.widget-contact .contact-info-list li {
  line-height: 32px;
  color: var(--body-color);
}

.widget-about .footer-logo {
  margin-bottom: 37px;
}
.widget-about .about-text {
  max-width: 350px;
  margin-top: -0.65em;
  margin-bottom: 27px;
}

.footer-text {
  margin-top: -0.45em;
  margin-bottom: 12px;
  color: var(--body-color);
  font-weight: 300;
}

.sidebar-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.sidebar-gallery .gallery-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--white-color);
  visibility: hidden;
  opacity: 0;
  transform: translate(-50%, 20px);
}
.sidebar-gallery .gallery-btn:hover {
  color: var(--theme-color);
}
.sidebar-gallery .gallery-thumb {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}
.sidebar-gallery .gallery-thumb:before {
  content: "";
  height: calc(100% - 14px);
  width: calc(100% - 14px);
  background-color: var(--title-color);
  opacity: 0.8;
  position: absolute;
  top: 7px;
  left: 7px;
  border-radius: 10px;
  transform: scaleX(0);
  transition: 0.4s ease-in-out;
}
.sidebar-gallery .gallery-thumb img {
  width: 100%;
  border-radius: 10px;
}
.sidebar-gallery .gallery-thumb:hover:before {
  transform: scaleX(1);
}
.sidebar-gallery .gallery-thumb:hover .gallery-btn {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.newsletter-form {
  position: relative;
  /* Extra small devices */
}
.newsletter-form .form-group {
  margin-bottom: 15px;
}
.newsletter-form .form-group > i {
  right: auto;
  left: 24px;
  top: 19px;
}
.newsletter-form .form-group input {
  height: 60px;
  padding: 0 160px 0 30px;
  background: var(--white-color);
  border: 1px solid #E6E8EA;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 400;
  box-shadow: 0px 6px 26px 0px #E4E8F1;
}
.newsletter-form .btn {
  position: absolute;
  right: 10px;
  top: 10px;
  padding: 11px 30px;
  border-radius: 10px;
  cursor:  pointer !important;
}
@media (max-width: 575px) {
  .newsletter-form .form-group input {
    padding: 0 30px;
  }
  .newsletter-form .btn {
    position: relative;
    right: 0;
    top: 0;
    margin-top: 20px;
  }
}

.newsletter-widget {
  max-width: 387px;
}
.newsletter-widget .newsletter-form {
  margin-top: 20px;
}
.newsletter-widget .newsletter-form .form-group input {
  box-shadow: none;
  height: 65px;
  border-radius: 15px;
}
.newsletter-widget .newsletter-form .btn {
  font-size: 16px;
  padding: 14.5px 24px;
  box-shadow: 0px 4px 40px 0px rgba(2, 83, 206, 0.35);
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .footer-text,
  .widget-about .about-text {
    font-size: 14px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .footer-widget.widget_meta a, .footer-widget.widget_pages a, .footer-widget.widget_archive a, .footer-widget.widget_categories a, .footer-widget.widget_nav_menu a {
    margin-bottom: 16px;
  }
  .footer-info-list li:not(:last-child) {
    margin-bottom: 15px;
  }
  .sidebar-gallery {
    max-width: 350px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .footer-widget .widget_title {
    margin-bottom: 35px;
  }
  .widget-about .about-text {
    margin-bottom: 20px;
  }
  .social-box.mb-30 {
    margin-bottom: 25px;
  }
  .widget_event-location {
    padding: 30px;
  }
}
/*------------------- 4.2. Header  -------------------*/
.nav-header {
  position: relative;
  z-index: 41;
}

.dark-logo {
  display: none;
}

.sticky-wrapper {
  transition: 0.4s ease-in-out;
}
.sticky-wrapper.sticky {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--white-color);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.07);
  animation: stickyAni 0.4s ease-in-out;
}
header p.site-description{
  color: var(--title-color);
  margin: 0;
}
@keyframes stickyAni {
  0% {
    transform: translate3d(0, -40px, 0) scaleY(0.8);
    opacity: 0.7;
  }
  100% {
    transform: translate3d(0, 0, 0) scaleY(1);
    opacity: 1;
  }
}
/* theme switcher ---------------------------------- */


.theme-switcher {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  width: 62px;
  background-color:#f0f0f0;
  border-radius: 50px;
  position: relative;
  cursor: pointer;
  transition: background-color 0.4s ease-in-out;
}

.theme-switcher button {
  height: 25px;
  width: 25px;
  background-color:#000;
  border-radius: 50%;
  border: none;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: all 0.4s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}
.theme-switcher button img {
  width: 20px;
  height: 20px;
  position: absolute;
  left: 3px;
  bottom: 3px;
}
.theme-switcher.active {
  background-color: #333;
}
.theme-switcher.active button {
  left: calc(100% - 28px);
  background: var(--white-color);
}
.theme-switcher .dark-mode-icon {
  display: none;
}

.theme-switcher.active .dark-mode-icon {
  display: block;
}

.theme-switcher.active .light-mode-icon {
  display: none;
}

.theme-switcher:focus, .menu-toggle.icon-btn:focus{
  outline: 2px dotted var(--theme-color) !important;
}
/****header-top*****/
.main-menu a {
  display: block;
  position: relative;
  font-weight: 500;
  font-size: 16px;
  font-family: var(--title-font);
  color: var(--title-color);
}
.main-menu a:hover {
  color: var(--theme-color);
}
.dark-theme .main-menu a{
  color: var(--white-color);
}
.main-menu > ul > li {
  margin: 0 24px;
}
.main-menu > ul > li > a {
  padding: 16px 0;
}
.main-menu > ul > li > a:hover {
  color: var(--theme-color);
}
.main-menu ul {
  margin: 0;
  padding: 0;
}
.main-menu ul li {
  list-style-type: none;
  display: inline-block;
  position: relative;
}
.main-menu ul li:last-child {
  margin-right: 0 !important;
}
.main-menu ul li:first-child {
  margin-left: 0 !important;
}
.main-menu ul li a:focus-within ~ ul.sub-menu, .main-menu ul li a:focus ~ ul.sub-menu, .main-menu ul li a:active ~ ul.sub-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  z-index: 9;
}
.main-menu ul li:focus-within > ul.sub-menu, .main-menu ul li:focus > ul.sub-menu, .main-menu ul li:active > ul.sub-menu, .main-menu ul li:hover > ul.sub-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  z-index: 9;
}
.main-menu ul li.menu-item-has-children > a:after {
  content: "\f067";
  display: inline-block;
  position: relative;
  font-family: var(--icon-font);
  margin-left: 4px;
  font-weight: 600;
  top: 0;
  font-size: 14px;
  color: var(--title-color);
  transition: 0.3s ease-in-out;
}
.dark-theme .main-menu ul li.menu-item-has-children > a:after{
  color: var(--white-color);
}
.main-menu ul li.menu-item-has-children > a:hover:after {
  content: "\f068";
  transform: rotate(180deg);
  color: var(--white-color);
}
.main-menu ul.sub-menu {
  position: absolute;
  text-align: left;
  top: 100%;
  left: 0;
  background-color: var(--white-color);
  visibility: hidden;
  min-width: 190px;
  width: max-content;
  padding: 7px;
  left: -14px;
  opacity: 0;
  z-index: -1;
  border: 0;
  box-shadow: 0px 4px 15px rgba(1, 15, 28, 0.06);
  border-radius: 0;
  border-top: 2px solid var(--theme-color);
  transform: scaleY(0);
  transform-origin: top center;
  transition: all 0.4s ease 0s;
}
.main-menu ul.sub-menu a span {
  font-size: 12px;
  padding: 0px 5px;
  margin-left: 4px;
  background-color: var(--theme-color);
  color: var(--white-color);
  padding: 2px 5px;
  border-radius: 4px;
  position: relative;
  top: -1px;
}
.main-menu ul.sub-menu {
  padding: 13px 15px 13px 13px;
  left: -27px;
  border-radius: 20px;
}
.main-menu ul.sub-menu li {
  display: block;
  margin: 0 0;
  padding: 0px 9px;
}
.main-menu ul.sub-menu li a {
  position: relative;
  padding: 10px;
  display: flex;
  background-color: transparent;
  margin: 8px auto;
  color: var(--title-color);
}
.main-menu ul.sub-menu li a:after {
  margin-left: auto;
}
.main-menu ul.sub-menu li ul.sub-menu {
  left: 100%;
  right: auto;
  top: 0;
  margin: 0 0;
  margin-left: 15px;
}
.main-menu ul.sub-menu li ul.sub-menu li ul {
  left: 100%;
  right: auto;
}
.sticky-wrapper.sticky .menu-area.header-middle-middle .theme-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.menu-area.header-middle-middle .col.col-sm-6.col-md-4.col-lg-4.col-xl-12.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
.dark-theme .sticky-wrapper.sticky .menu-area.header-middle-middle {
  background: rebeccapurple;
}
.dark-theme .header-layout1 .header-top{
  background: rebeccapurple;
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .main-menu > ul > li {
    margin: 0 15px;
  }
}
.simple-icon {
  border: none;
  background-color: transparent;
  color: var(--title-color);
  padding: 0;
  font-size: 16px;
  position: relative;
}
.simple-icon .badge {
  padding: 0.2em 0.4em;
  font-size: 0.5em;
  top: -5px;
  right: 0px;
}
.simple-icon:has(.badge) {
  padding-right: 8px;
}
.simple-icon:hover {
  color: var(--theme-color);
}

.header-button {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-logo {
  padding-top: 15px;
  padding-bottom: 15px;
}
.header-logo .site-title {
  margin-bottom: 0;
}
.header-middle-logo .site-title {
  margin-bottom: 0;
}
.header-middle-logo .site-description {
  margin-bottom: 0;
}
.header-news-slider {
  display: flex;
  overflow: hidden;
  align-items: center;
  font-family: var(--title-font);
}
.header-news-slider strong {
  font-weight: 700;
  font-size: 16px;
  margin-right: 26px;
  padding-right: 26px;
  line-height: initial;
  position: relative;
  color: var(--white-color);
  flex: none;
}
.header-news-slider strong:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  background: var(--white-color);
  height: 17px;
  width: 1px;
  opacity: 0.6;
}
.header-news-slider .global-carousel {
  width: 100%;
}
.header-news-slider a {
  color: var(--white-color);
  font-weight: 500;
  opacity: 0.8;
}
.header-news-slider a:hover {
  color: var(--theme-color);
}

.header-links > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}
.header-links li {
  display: inline-block;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--title-font);
}
.header-links li:not(:last-child) {
  margin: 0 20px 0 0;
}
.header-links li > img {
  margin-right: 10px;
}
.header-links li > i {
  margin-right: 10px;
}
.header-links li,
.header-links span,
.header-links p,
.header-links a {
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.header-links a:hover {
  color: var(--theme-color);
}
.header-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-right {
  align-items: center;
  gap: 15px;
}

/* Header 1 ---------------------------------- */
.header-layout1 .header-top {
  background: white;
  padding: 20px 0px;
  
}
.top-news-ticker-content a, .social-btn.style3 a{
  text-decoration: none;
}
.header-links .social-btn.style3 a {
  color: var(--white-color);
}
.header-links .social-btn.style3 {
  gap: 10px;
  flex-wrap: wrap;
}
.header-links .social-btn.style3 a .fa-facebook-f {
  background: #1877F2; /* Facebook Blue */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-x-twitter {
  background: #000000; /* Twitter Blue */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-linkedin-in {
  background: #0077B5; /* LinkedIn Blue */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-instagram {
  background: radial-gradient(circle at 30% 30%, #fdf497, #fdf497, #fd5949, #d6249f, #285aeb); /* Instagram Gradient */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-pinterest {
  background: #E60023; /* Pinterest Red */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-dribbble {
  background: #EA4C89; /* Dribbble Pink */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-behance {
  background: #1769FF; /* Behance Blue */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-tiktok {
  background: linear-gradient(45deg, #25F4EE, #FE2C55); /* TikTok Gradient */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-snapchat {
  background: #FFFC00; /* Snapchat Yellow */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-youtube {
  background: #FF0000; /* YouTube Red */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-weixin {
  background: #1AAD19; /* WeChat Green */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-telegram {
  background: #0088CC; /* Telegram Blue */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-reddit {
  background: #FF4500; /* Reddit Orange */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-quora {
  background: #B92B27; /* Quora Red */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-discord {
  background: #5865F2; /* Discord Blue */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}

.header-links .social-btn.style3 a .fa-whatsapp {
  background: #25D366; /* WhatsApp Green */
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Font Awesome 6 Free';
  font-size: 14px;
  padding: 10px;
}


.site-header.nav-header.header-layout1 .header-top .header-top-logo.site-branding{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.site-header.nav-header.header-layout1 .header-top form.search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}

.site-header.nav-header.header-layout1 .header-top form.search-form label{
  margin: 0;
}

@media (min-width: 992px) { /* lg and larger */
  .site-header.nav-header.header-layout1 .header-middle .menu-area.header-middle-middle .mainmenu-dflex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 1200px) { /* xl and larger */
  .site-header.nav-header.header-layout1 .header-middle .menu-area.header-middle-middle .mainmenu-dflex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

.header-layout1 .header-middle> .container{
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.dark-theme .header-layout1 .header-middle{
  background: rebeccapurple;
}


.header-layout1 .sticky-wrapper .header-logo {
  display: none;
}
.header-layout1 .sticky-wrapper.sticky .header-logo{
  display: block;
}

.header-layout1 .sticky-wrapper.bg-title .simple-icon,
.header-layout1 .sticky-wrapper.bg-title .main-menu > ul > li.menu-item-has-children > a:after,
.header-layout1 .sticky-wrapper.bg-title .main-menu > ul > li > a {
  color: var(--white-color);
}
.header-layout1 .sticky-wrapper.bg-title .theme-switcher {
  background: #252833;
}
.header-layout1 .sticky-wrapper.bg-title .theme-switcher button {
  background: var(--white-color);
}
/* <style Header Search Form > */
.header-top .search-form {
display: flex;
align-items: center;
background: #F5F5F5;
border-radius: 6px;
padding: 8px 12px;
max-width: 300px;
margin: 0 auto;
}

.header-top .search-field {
flex: 1;
border: none;
background: transparent;
font-size: 16px;
color: #6B7280;
outline: none;
padding: 8px 20px;
}

.header-top .search-field::placeholder {
color: #9CA3AF;
}

.header-top .search-submit {
background: none;
border: none;
cursor: pointer;
color: #374151;
font-size: 18px;
}

.header-top .search-submit:hover {
color: #111827;
}

.header-top .search-form:focus-within {
box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}

/* </style header search form> */

/* Medium devices */
@media (max-width: 991px) {
  .header-layout1 .sticky-wrapper .header-logo {
    display: block;
  }
}


/* =================== Header Two Css Starts ======================== */
.dark-theme .header-layout2 .header-middle .icon-btn:hover {
  background: var(--theme-color);
  color: var(--title-color);
}
@media (min-width: 992px) { /* lg and larger */
  .site-header.nav-header.header-layout2 .header-middle .menu-area.header-middle-middle .mainmenu-dflex {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (min-width: 1200px) { /* xl and larger */
  .site-header.nav-header.header-layout2 .header-middle .menu-area.header-middle-middle .mainmenu-dflex {
    display: flex;
    justify-content: left;
    align-items: center;
  }
}


.header-layout2 .header-links .social-btn.style3 {
  gap: 7px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.header-layout2 .header-top .header-links ul{
  display: flex;
  justify-content: flex-end;
}
.header-layout2 .header-top span.header-datetime{
  font-size: 18px;
  color: var(--title-color);
  font-weight: 500;
}
.dark-theme .header-layout2 .header-top span.header-datetime{
  color: var(--white-color);
}
.site-header.nav-header.header-layout2 .header-top form.search-form {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  padding: 0;
}
.header-layout2 .header-top{
  border-bottom: 1px solid #ddd;
  padding: 14.5px 0;
}
.header-layout2 .header-middle{
  border-bottom: 1px solid #ddd;
}
.header-layout2 .header-middle .menu-area.header-middle-middle> .container{
  padding: 0 !important;
}

.admin-bar .header-layout2 .sticky-wrapper.sticky {
  top: 32px;
}
.admin-bar .header-layout2 .sticky-wrapper.sticky {
  top: 32px;
}
@media (max-width: 575px) {
  .admin-bar .header-layout2 .sticky-wrapper.sticky {
    top: 0;
  }
}
.header-layout2 .sticky-wrapper .header-logo {
  display: none;
}
.header-layout2 .sticky-wrapper.sticky .header-logo{
  display: block;
}
.header-layout2 .header-top .search-form.default label{
  margin: 0 ;
}
.header-layout2 .menu-area.header-middle-middle .header-button {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: flex-end;
}
.site-header.nav-header.header-layout2 .header-top .header-top-logo.site-branding {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header-button a.nav-link.position-relative.cart-icon svg{
  color: var(--theme-color);
}
.dark-theme .header-button a.nav-link.position-relative.cart-icon svg{
  color: var(--white-color);
}
.dark-theme .header-layout2 .mobile-menu-wrapper.body-visible .mobile-menu-area{
  background: var(--theme-color);
}
.header-layout2 .theme-switcher button {
  background: var(--white-color);
}
.header-layout2 .theme-switcher.active button {
  background: var(--black-color);
}
@media (max-width: 991px) {
  .header-layout2 .sticky-wrapper .header-logo {
      display: block;
  }
}
.header-layout2 .header-links .social-btn.style3 a{
  color: var(--theme-color);
}
.header-layout2 .header-links .social-btn.style3 a .fa-facebook-f{
  background: transparent;
  color: #1877F2;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}

.header-layout2 .header-links .social-btn.style3 a .fa-x-twitter {
  background: transparent; 
  color: #000000;/* Twitter Blue */
  width: 20px;
  height:20px;
  font-family: 'Font Awesome 6 Free';
}
.dark-theme .header-layout2 .header-links .social-btn.style3 a .fa-x-twitter{
  color: #ddd;
}
.header-layout2 .header-links .social-btn.style3 a .fa-linkedin-in {
  color: #0077B5; /* LinkedIn Blue */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}

.header-layout2 .header-links .social-btn.style3 a .fa-instagram {
  color: radial-gradient(circle at 30% 30%, #fdf497, #fdf497, #fd5949, #d6249f, #285aeb); /* Instagram Gradient */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}

.header-layout2 .header-links .social-btn.style3 a .fa-pinterest {
  color: #E60023; /* Pinterest Red */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}

.header-layout2 .header-links .social-btn.style3 a .fa-dribbble {
  color: #EA4C89; /* Dribbble Pink */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}

.header-layout2 .header-links .social-btn.style3 a .fa-behance {
  color: #1769FF; /* Behance Blue */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}

.header-layout2 .header-links .social-btn.style3 a .fa-tiktok {
  color: linear-gradient(45deg, #25F4EE, #FE2C55); /* TikTok Gradient */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}

.header-layout2 .header-links .social-btn.style3 a .fa-snapchat {
  color: #FFFC00; /* Snapchat Yellow */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}

.header-layout2 .header-links .social-btn.style3 a .fa-youtube {
  color: #FF0000; /* YouTube Red */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';

}

.header-layout2 .header-links .social-btn.style3 a .fa-weixin {
  color: #1AAD19; /* WeChat Green */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}

.header-layout2 .header-links .social-btn.style3 a .fa-telegram {
  color: #0088CC; /* Telegram Blue */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';

}

.header-layout2 .header-links .social-btn.style3 a .fa-reddit {
  color: #FF4500; /* Reddit Orange */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}

.header-layout2 .header-links .social-btn.style3 a .fa-quora {
  color: #B92B27; /* Quora Red */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}

.header-layout2 .header-links .social-btn.style3 a .fa-discord {
  color: #5865F2; /* Discord Blue */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';

}

.header-layout2 .header-links .social-btn.style3 a .fa-whatsapp {
  color: #25D366; /* WhatsApp Green */
  background: transparent;
  width: 20px;
  height: 20px;
  font-family: 'Font Awesome 6 Free';
}
/* =================== Header Two Css Ends ======================== */



/*------------------- 4.3. Footer  -------------------*/
.footer-wrapper {
  background: #041027;
}

.copyright-wrap {
  padding: 26px 0;
  background: #141A3F;
}

.widget-area {
  padding: 80px 0 30px;
}

.copyright-text {
  margin: 0;
  color: var(--white-color);
  font-weight: 400;
  font-size: 16px;
}
.copyright-text a {
  color: var(--theme-color);
}
.copyright-text a:hover {
  color: var(--white-color);
}

.footer-links ul {
  padding: 0;
  margin: 0;
}
.footer-links li {
  font-family: var(--body-font);
  display: inline-block;
  margin-right: 30px;
}
.footer-links li:last-child {
  margin-right: 0;
  border-right: 0;
}
.footer-links a {
  font-family: inherit;
  color: var(--body-color);
}
.footer-links a:hover {
  color: var(--white-color);
}

.footer-layout1 {
  position: relative;
  padding-top: 55px;
  --body-color: #8A99B4;
}

.footer-layout2 {
  position: relative;
  background: transparent;
  background-position: top;
  --body-color: #A8AFBC;
  padding-top: 142px;
  /* Large devices */
}
.footer-layout2 .widget_title {
  position: relative;
  padding-bottom: 20px;
}
.footer-layout2 .widget_title:after {
  content: "";
  position: absolute;
  height: 2px;
  width: 50px;
  background: var(--white-color);
  left: 0;
  bottom: 0;
}
.footer-layout2 .social-btn a {
  border: 1px solid #2F3D57;
  background: transparent;
}
.footer-layout2 .social-btn a:hover {
  border-color: var(--white-color);
  background: var(--white-color);
}
.footer-layout2 .copyright-wrap {
  background: transparent;
  border-top: 1px solid rgba(48, 48, 48, 0.49);
}
.footer-layout2 .copyright-text {
  color: var(--body-color);
}
@media (max-width: 1199px) {
  .footer-layout2 {
    background-size: cover;
    background-color: #0f182a;
    padding-top: 20px;
  }
}

/* Medium devices */
@media (max-width: 991px) {
  .widget-area {
    padding: 60px 0 10px;
  }
}
/*------------------- 4.4. Breadcumb  -------------------*/
.breadcumb-menu {
  max-width: 100%;
  padding: 0;
  list-style-type: none;
  position: relative;
  margin: -0.4em 0 -0.4em;
}
.breadcumb-menu li {
  display: inline-block;
  padding-right: 3px;
  list-style: none;
  position: relative;
}
.breadcumb-menu li:after {
  content: ">";
  position: relative;
  margin-left: 7px;
  font-weight: 400;
  font-size: 16px;
  color: var(--title-color);
}
.breadcumb-menu li:last-child {
  padding-right: 0;
  margin-right: 0;
  color: var(--title-color);
}
.breadcumb-menu li:last-child:after {
  display: none;
}
.breadcumb-menu li,
.breadcumb-menu a,
.breadcumb-menu span {
  white-space: normal;
  color: inherit;
  word-break: break-word;
  font-weight: 400;
  font-size: 16px;
  font-family: var(--body-font);
  color: var(--theme-color);
}
.breadcumb-menu a:hover {
  color: var(--theme-color);
}

.breadcumb-title {
  color: var(--title-color);
  margin: -0.25em 0 -0.2em 0;
  line-height: 1.1;
  font-size: 60px;
  font-weight: 400;
  z-index: 1;
  position: relative;
  /* Medium Large devices */
  /* Large devices */
  /* Small devices */
}
@media (max-width: 1399px) {
  .breadcumb-title {
    font-size: 48px;
  }
}
@media (max-width: 1199px) {
  .breadcumb-title {
    font-size: 44px;
  }
}
@media (max-width: 767px) {
  .breadcumb-title {
    font-size: 40px;
  }
}

.breadcumb-wrapper {
  background-size: cover;
  padding: 50px 0;
  overflow: hidden;
  position: relative;
  z-index: auto;
  background-color: transparent;
  /* Small devices */
}
.breadcumb-wrapper .breadcumb-content {
  border-radius: 5px;
  border: 1px solid var(--theme-color);
  box-shadow: 5px 5px 33px 0px rgba(24, 24, 27, 0.11);
  padding: 23px;
}
@media (max-width: 767px) {
  .breadcumb-wrapper {
    text-align: center;
  }
}

/* Extra small devices */
@media (max-width: 575px) {
  .breadcumb-title {
    font-size: 40px;
  }
  .breadcumb-menu li, .breadcumb-menu a, .breadcumb-menu span {
    font-size: 14px;
  }
}
/*------------------- 4.5. Pagination  -------------------*/
.pagination {
  margin-bottom: 30px;
  margin-top: 50px;
}
.pagination ul {
  margin: 0;
  padding: 0;
}

.shop-grid-area .pagination ul{
  display: flex;
}
.pagination li {
  display: inline-block;
  margin: 0 3px;
  list-style-type: none;
}
.pagination li:last-child {
  margin-right: 0;
}
.pagination li:first-child {
  margin-left: 0;
}
.pagination span,
.pagination a {
  display: inline-block;
  text-align: center;
  position: relative;
  color: var(--body-color);
  background-color: transparent;
  border: 1px solid var(--theme-border-color);
  line-height: 45px;
  width: 45px;
  height: 45px;
  z-index: 1;
  font-size: 16px;
  font-weight: 400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.pagination span.active, .pagination span:hover,
.pagination a.active,
.pagination a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
  border-color: var(--theme-color);
  box-shadow: none;
}

.ovation-post-navication-thum {
  margin-top: 30px;
}
.ovation-post-navication-thum .nav-links .nav-previous a,
.ovation-post-navication-thum .nav-links .nav-next a {
  padding: 15px 30px;
  background-color: var(--white-color);
  color: var(--title-color);
  display: inline-block;
  border: 1px solid #EDEDED;
  box-shadow: 0px 16px 51px rgba(0, 0, 0, 0.07);
  border-radius: 5px;
}
.ovation-post-navication-thum .nav-links .nav-previous a:hover,
.ovation-post-navication-thum .nav-links .nav-next a:hover {
  background: var(--theme-color);
  color: var(--white-color);
}
.ovation-post-navication-thum .nav-links {
  display: flex;
  justify-content: space-between;
}
.ovation-post-navication-thum .nav-links .nav-thumb a {
  padding: 0;
  box-shadow: none;
  border: 0;
}

/* Small devices */
@media (max-width: 767px) {
  .pagination {
    margin-top: 40px;
  }
}
@media (max-width: 330px) {
  .pagination li {
    margin: 0 2px;
  }
  .pagination span, .pagination a {
    width: 35px;
    height: 35px;
    line-height: 34px;
    font-size: 14px;
  }
}
.post-footer {
  clear: both;
  margin-top: 30px;
}

/*------------------- 4.6. Blog  -------------------*/
blockquote,
.wp-block-quote {
  font-size: 36px;
  line-height: 1.56;
  padding: 50px 40px 40px 40px;
  font-weight: 500;
  display: block;
  position: relative;
  background-color: #F1EFFC;
  overflow: hidden;
  margin: 50px 0;
  color: var(--title-color);
  font-style: italic;
  border-radius: 0;
  border: 0;
  border-left: 4px solid var(--theme-color);
}
blockquote p,
.wp-block-quote p {
  font-family: var(--title-font);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px;
  letter-spacing: -0.6px;
  margin-top: -0.3em;
  margin-bottom: 20px;
  color: var(--title-color);
  width: 100%;
  position: relative;
  z-index: 3;
}
blockquote p a,
.wp-block-quote p a {
  color: inherit;
}
blockquote p cite,
.wp-block-quote p cite {
  margin-top: 20px;
}
blockquote cite,
.wp-block-quote cite {
  display: block;
  font-size: 16px;
  position: relative;
  border-color: inherit;
  line-height: 1;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: -0.1em;
  font-style: normal;
  color: var(--title-color);
  font-family: var(--title-font);
}
blockquote cite span,
.wp-block-quote cite span {
  font-size: 12px;
  font-weight: 400;
  display: block;
  margin-bottom: 8px;
}
blockquote .desig,
.wp-block-quote .desig {
  font-size: 13px;
  font-weight: 400;
  font-family: var(--body-font);
  font-style: initial;
  text-transform: uppercase;
  color: var(--body-color);
  margin-top: 8px;
  margin-bottom: -0.4em;
  display: block;
}
blockquote .hash-tag,
.wp-block-quote .hash-tag {
  font-size: 16px;
  font-weight: 300;
  font-style: normal;
  font-family: var(--body-font);
  margin-bottom: 32px;
}
blockquote .hash-tag a,
.wp-block-quote .hash-tag a {
  color: var(--body-color);
}
blockquote .hash-tag a:hover,
.wp-block-quote .hash-tag a:hover {
  color: var(--theme-color);
}
blockquote .blockquote-author,
.wp-block-quote .blockquote-author {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
blockquote .quote-icon,
.wp-block-quote .quote-icon {
  position: absolute;
  right: 50px;
  bottom: 50px;
  width: 150px;
}
blockquote.style-left-icon, blockquote.is-large, blockquote.is-style-large, blockquote.has-text-align-right,
.wp-block-quote.style-left-icon,
.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
.wp-block-quote.has-text-align-right {
  padding: 170px 50px 50px;
}
blockquote.style-left-icon,
.wp-block-quote.style-left-icon {
  font-size: 18px;
  color: var(--body-color);
  font-weight: 400;
  line-height: 1.556;
  background-color: var(--smoke-color);
  padding-left: 160px;
}
blockquote.style-left-icon:before,
.wp-block-quote.style-left-icon:before {
  right: unset;
  left: 56px;
  top: 60px;
  font-size: 6rem;
  font-weight: 400;
  line-height: 4rem;
  color: var(--theme-color);
  text-shadow: none;
}
blockquote.style-left-icon cite,
.wp-block-quote.style-left-icon cite {
  color: var(--title-color);
}
blockquote.style-left-icon cite:before,
.wp-block-quote.style-left-icon cite:before {
  background-color: var(--title-color);
  top: 8px;
}
blockquote.is-large cite:before, blockquote.is-style-large cite:before,
.wp-block-quote.is-large cite:before,
.wp-block-quote.is-style-large cite:before {
  top: unset;
  bottom: 13px;
}
blockquote.has-text-align-right,
.wp-block-quote.has-text-align-right {
  border: 0;
}
blockquote.has-text-align-right:before,
.wp-block-quote.has-text-align-right:before {
  right: 50px;
  left: unset;
}

.wp-block-pullquote {
  padding: 0;
}

.wp-block-pullquote.is-style-solid-color blockquote p {
  margin-bottom: 20px;
}

.wp-block-pullquote blockquote:before,
.wp-block-pullquote.is-style-solid-color blockquote:before {
  left: 50%;
  transform: translate(-50%, 0px);
}

.wp-block-column blockquote,
.wp-block-column .wp-block-quote {
  padding: 100px 15px 30px 15px;
}
.wp-block-column blockquote:before,
.wp-block-column .wp-block-quote:before {
  width: 50px;
  height: 50px;
  line-height: 50px;
  top: 30px;
  left: 30px;
  font-size: 30px;
}
.wp-block-column blockquote.style-left-icon, .wp-block-column blockquote.is-large:not(.is-style-plain), .wp-block-column blockquote.is-style-large:not(.is-style-plain), .wp-block-column blockquote.has-text-align-right,
.wp-block-column .wp-block-quote.style-left-icon,
.wp-block-column .wp-block-quote.is-large:not(.is-style-plain),
.wp-block-column .wp-block-quote.is-style-large:not(.is-style-plain),
.wp-block-column .wp-block-quote.has-text-align-right {
  padding: 100px 15px 30px 15px;
}

.post-meta-item,
.blog-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
  margin-top: -0.4em;
}
.post-meta-item span,
.post-meta-item a,
.blog-meta span,
.blog-meta a {
  display: inline-block;
  font-size: 16px;
  font-weight: 400;
  color: var(--body-color);
  position: relative;
}

.post-meta-item span i,
.post-meta-item a i,
.blog-meta span i,
.blog-meta a i {
  margin-right: 8px;
  color: var(--theme-color);
}
.post-meta-item span:last-child,
.post-meta-item a:last-child,
.blog-meta span:last-child,
.blog-meta a:last-child {
  margin-right: 0 !important;
}
.post-meta-item span a,
.blog-meta span a {
  margin-right: 0 !important;
}
.post-meta-item a:hover,
.blog-meta a:hover {
  color: var(--theme-color);
}
.post-meta-item .blog-meta-author,
.blog-meta .blog-meta-author {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}
.post-meta-item .blog-meta-author img,
.blog-meta .blog-meta-author img {
  border-radius: 50%;
  height: 35px;
  width: 35px;
  object-fit: cover;
}
.post-meta-item:has(.blog-meta-author),
.blog-meta:has(.blog-meta-author) {
  margin-top: 0;
}

.blog-audio img,
.blog-img img,
.blog-video img {
  transition: 0.4s ease-in-out;
  border-radius: 0;
}

.blog-title a {
  color: inherit;
}
.blog-title a:hover {
  color: var(--theme-color);
}

.blog-inner-title {
  margin-top: -0.25em;
  margin-bottom: 25px;
}
.blog-inner-title i {
  color: var(--theme-color);
  margin-right: 4px;
}

.post-details,
.blog-single {
  background: transparent;
  position: relative;
  border-radius: 20px;
  box-shadow: 5px 5px 33px rgba(2, 2, 2, 0.08);
}
.post-details .post-img,
.post-details .blog-img,
.blog-single .post-img,
.blog-single .blog-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 3;
  border-radius: 10px 10px 0 0;
}
.post-details .post-img img,
.post-details .blog-img img,
.blog-single .post-img img,
.blog-single .blog-img img {
  min-width: 100%;
  border-radius: 10px 10px 0 0;
  transform: scale(1.02);
  transition: 0.4s ease-in-out;
}
.post-details .post-content,
.post-details .blog-text,
.blog-single .post-content,
.blog-single .blog-text {
  margin-bottom: 24px;
}
.post-details .post-contents,
.post-details .blog-content,
.blog-single .post-contents,
.blog-single .blog-content {
  margin: 0 0 0 0;
  position: relative;
  padding: 30px;
}
.post-details .blog-audio,
.blog-single .blog-audio {
  line-height: 1;
}
.post-details .blog-audio,
.post-details .blog-img,
.post-details .blog-video,
.blog-single .blog-audio,
.blog-single .blog-img,
.blog-single .blog-video {
  position: relative;
  overflow: hidden;
  background-color: var(--smoke-color);
}
.post-details .post-img .slick-arrow,
.post-details .blog-img .slick-arrow,
.blog-single .post-img .slick-arrow,
.blog-single .blog-img .slick-arrow {
  --pos-x: 30px;
  --icon-size: 45px;
  border: none;
  background-color: var(--white-color);
  color: var(--theme-color);
  border-radius: 5px;
}
.post-details .post-img .slick-arrow:hover,
.post-details .blog-img .slick-arrow:hover,
.blog-single .post-img .slick-arrow:hover,
.blog-single .blog-img .slick-arrow:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.post-details .read-more-btn,
.post-details .line-btn,
.blog-single .read-more-btn,
.blog-single .line-btn {
  display: block;
  max-width: fit-content;
  margin-bottom: -1px;
}
.post-details .read-more-btn,
.blog-single .read-more-btn {
  margin-bottom: -8px;
  color: var(--theme-color);
}
.post-details .blog-post-wrap,
.blog-single .blog-post-wrap {
  background: var(--smoke-color3);
  border-radius: 6px;
  padding: 60px;
  cursor: pointer;
  transition: 0.4s;
}
.post-details .blog-post-wrap:hover,
.blog-single .blog-post-wrap:hover {
  background: var(--theme-color);
}
.post-details .blog-post-wrap:hover h5,
.blog-single .blog-post-wrap:hover h5 {
  color: var(--white-color);
}
.post-details .blog-post-wrap h5,
.blog-single .blog-post-wrap h5 {
  margin-bottom: 0;
  transition: 0.4s;
}
.post-details:hover .blog-img .slick-arrow,
.blog-single:hover .blog-img .slick-arrow {
  opacity: 1;
  visibility: visible;
}

.blog-author {
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  background: #F1EFFC;
  border-radius: 15px;
}
.blog-author .auhtor-img {
  border-radius: 15px;
  overflow: hidden;
  border-radius: 50%;
}
.blog-author .author-name {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 2px;
}
.blog-author .author-name a {
  color: var(--title-color);
}
.blog-author .author-desig {
  font-size: 16px;
  font-weight: 400;
  color: var(--theme-color);
  font-family: var(--body-font);
}
.blog-author .author-text {
  margin-top: 8px;
  margin-bottom: -0.3em;
  font-weight: 300;
}
.blog-author .social-btn {
  margin-top: 25px;
}

.post-content-tags {
  padding: 30px 0 0px;
}
.post-content-tags .post-tag-social {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.post-content-tags .post-share {
  display: flex;
  align-items: center;
  gap: 20px;
}
.post-content-tags .post-share label {
  margin-bottom: -0.3em;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--title-color);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .blog-single .blog-title {
    font-size: 28px;
  }
  .blog-single .blog-post-wrap {
    padding: 30px;
  }
  .blog-meta span, .blog-meta a {
    margin-right: 23px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .blog-meta span,
  .blog-meta a {
    font-size: 14px;
    margin-right: 20px;
  }
  .blog-single .blog-post-wrap {
    padding: 20px;
  }
  .blog-single .blog-post-wrap h5 {
    font-size: 18px;
  }
  blockquote, .wp-block-quote {
    padding: 40px;
  }
  blockquote:before, .wp-block-quote:before {
    left: 40px;
    top: 40px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  blockquote cite,
  .wp-block-quote cite {
    font-size: 18px;
  }
  .blog-meta span,
  .blog-meta a {
    margin-right: 6px;
  }
  .blog-single .blog-title {
    font-size: 24px;
    line-height: 1.3;
  }
  .blog-single .blog-text {
    margin-bottom: 22px;
  }
  .blog-single .blog-bottom {
    padding-top: 15px;
  }
  .blog-single .blog-content {
    padding-top: 30px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .blog-meta span,
  .blog-meta a {
    margin-right: 5px;
  }
  .share-links-title {
    display: block;
    margin-bottom: 10px;
  }
  .blog-author {
    display: block;
  }
  .blog-author .auhtor-img {
    margin-bottom: 10px;
    display: inline-block;
  }
  blockquote, .wp-block-quote {
    padding: 30px;
    margin: 30px 0;
  }
  blockquote p, .wp-block-quote p {
    font-size: 22px;
    line-height: inherit;
  }
}
/*------------------- 4.7. Comments  -------------------*/
.comment-form {
  margin-top: var(--blog-space-y, 50px);
  position: relative;
  padding: 35px;
}
.comment-form .row {
  --bs-gutter-x: 20px;
}
.comment-form .form-title {
  margin-top: -0.35em;
  margin-bottom: 30px;
}
.comment-form .form-title a#cancel-comment-reply-link {
  font-size: 0.7em;
  text-decoration: underline;
}
.comment-form .form-text {
  margin-bottom: 25px;
}
.comment-form .form-group {
  margin-bottom: 30px;
}

.blog-comment-area {
  margin-bottom: 25px;
}

.blog-inner-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
}

.comments-wrap {
  margin-top: var(--blog-space-y, 50px);
  margin-bottom: 30px;
  padding: 10px;
}
.comments-wrap .description p:last-child {
  margin-bottom: -0.5em;
}
.comments-wrap .comment-respond {
  margin: 0;
}
.comments-wrap .comment-respond .comment-reply-title {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: -30px;
}
.dark-theme .comments-wrap .comment-respond .comment-form {
  background: transparent;
}
.comments-wrap pre {
  background: #ededed;
  color: #666;
  font-size: 14px;
  margin: 20px 0;
  overflow: auto;
  padding: 20px;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.comments-wrap li {
  margin: 0;
}
.comments-wrap .post-comment {
  padding: 0;
  position: relative;
  display: flex;
  margin-bottom: 40px;
  padding-bottom: 36px;
  position: relative;
  border-bottom: 1px solid var(--theme-border-color);
}
.comments-wrap .post-comment ol,
.comments-wrap .post-comment ul,
.comments-wrap .post-comment dl {
  margin-bottom: 1rem;
}
.comments-wrap .post-comment ol ol,
.comments-wrap .post-comment ol ul,
.comments-wrap .post-comment ul ol,
.comments-wrap .post-comment ul ul {
  margin-bottom: 0;
}
.comments-wrap ul.comment-list {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 0;
}
.comments-wrap ul.comment-list ul ul,
.comments-wrap ul.comment-list ul ol,
.comments-wrap ul.comment-list ol ul,
.comments-wrap ul.comment-list ol ol {
  margin-bottom: 0;
}
.comments-wrap .comment-avater {
  margin-right: 25px;
  overflow: hidden;
  border-radius: 50%;
  height: fit-content;
}
.comments-wrap .comment-avater img {
  width: 100%;
}
.comments-wrap .comment-content {
  flex: 1;
  margin-top: -6px;
  position: relative;
}
.comments-wrap .commented-on {
  font-size: 14px;
  display: inline-block;
  margin-bottom: 2px;
  font-weight: 400;
  color: var(--body-color);
  font-family: var(--title-font);
}
.comments-wrap .commented-on i {
  margin-right: 7px;
  font-size: 0.9rem;
}
.comments-wrap .name {
  margin-bottom: 7px;
  font-size: 20px;
  font-weight: 500;
}
.comments-wrap .comment-top {
  display: flex;
  justify-content: space-between;
}
.comments-wrap .text {
  margin-bottom: -0.3em;
  font-weight: 300;
}
.comments-wrap .children {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-left: 135px;
}
.comments-wrap .reply_and_edit {
  margin-bottom: -0.46em;
  position: absolute;
  right: 0;
  top: 20px;
}
.comments-wrap .reply_and_edit a {
  margin-right: 10px;
  color: var(--theme-color);
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--title-font);
}
.comments-wrap .reply_and_edit a:hover {
  color: var(--theme-color);
}
.comments-wrap .reply_and_edit a i {
  margin-left: 3px;
  margin-right: 0;
}
.comments-wrap .reply_and_edit a:last-child {
  margin-right: 0;
}
.comments-wrap .reply-btn {
  font-weight: 700;
  font-size: 12px;
  color: var(--body-color);
  font-family: var(--title-font);
  display: inline-block;
}
.comments-wrap .reply-btn i {
  margin-right: 7px;
}
.comments-wrap .reply-btn:hover {
  color: var(--theme-color);
}
.comments-wrap .star-rating {
  font-size: 12px;
  margin-bottom: 10px;
}

ul.comment-list .comment-item:last-child:not(.children .comment-item) > .post-comment {
  border-bottom: none;
  padding-bottom: 0;
}
ul.comment-list .comment-item:first-child:not(.children .comment-item) > .post-comment {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--theme-border-color);
}

.comments-wrap.comment-form {
  margin: 0;
}

/* Large devices */
@media (max-width: 1199px) {
  .blog-single {
    --blog-space-y: 40px;
  }
  .comments-wrap .children {
    margin-left: 40px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .comments-wrap .post-comment {
    display: block;
  }
  .comments-wrap .comment-avater {
    height: 100px;
    width: 100px;
    margin-bottom: 30px;
  }
}



.comment-form-wrapper{
  background: transparent;
  border-radius: 20px;
  border: 1px solid rgba(118, 124, 132, 0.17);
  box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.06);
}


/*--------------------------------------------------------------
# Comment Css
--------------------------------------------------------------*/
.comments-title {
  font-size: 27px;
  border-bottom: 2px solid var(--border-color);
  padding-bottom: 15px;
  margin-bottom: 30px;
}

ol.comment-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.comment ol.children {
  list-style: none;
  padding-left: 50px;
}

.comment span.says {
  display: none;
}

.comment-author.vcard,
footer.comment-meta {
  position: relative;
}

.comment-author.vcard img {
  border-radius: 50%;
  height: 90px;
  width: 90px;
  margin-top: -5px;
}
/* css for user img  */
img.avatar.avatar-32.photo {
  width: 70px;
  height: 70px;
}
.comment-author.vcard .fn {
  font-size: 20px;
  position: absolute;
  left: 110px;
  top: -10px;
  text-transform: capitalize;
  font-family: var(--body-font);
  font-weight: 600;
}

.comment-author.vcard .fn a {
  font-weight: 600;
  font-size: 16px;
}

.bypostauthor {
  display: block;
}

.bypostauthor .comment-author.vcard .fn:after {
  content: "\f02e";
  font-family: "Font Awesome 5 Free";
  font-size: 13px;
  top: 0;
  margin-left: 10px;
  position: relative;
  line-height: 1;
  font-weight: 900;
}

.comment-metadata {
  position: absolute;
  left: 110px;
  top: 20px;
}

.comment-metadata time {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
}

em.comment-awaiting-moderation {
  font-weight: 500;
  color: #1d1d1d;
  display: block;
  padding-left: 110px;
  margin-top: -25px;
  margin-bottom: 35px;
}

.comment-metadata span.edit-link,
span.edit-link {
  display: none;
}

.comment .comment-content {
  position: relative;
  padding-left: 110px;
  margin-top: -25px;
}

.comment article {
  margin-top: 15px;
  padding: 15px 15px 15px 0;
  border-bottom: 2px solid var(--border-color);
  position: relative;
}

.comment-list li:last-child .comment-body {
  border-bottom: 0;
}

.comment-list li .children .comment-body {
  border-bottom: 2px solid var(--border-color);
}

.comment-content img {
  margin-top: 30px;
  margin-bottom: 30px;
}

.comment-body .reply {
  position: absolute;
  right: 0;
  top: 8px;
}

.comments-area .reply a {
  position: relative;
  padding-left: 25px;
  color: var(--black-color);
  font-weight: 600;
}
.comments-area .reply a:hover {
  color: var(--theme-color);
}

.comment-body .reply a:before {
  content: "\f3e5";
  font-family: Font Awesome\ 6 Pro;
  position: absolute;
  left: 3px;
  top: 0;
}

.comment-content a,
.comment-body a {
  word-wrap: break-word;
  font-weight: 500;
}

.comment-content li {
  font-weight: 500;
  margin: 8px 0;
}

/*--------------------------------------------------------------
# Comment Respond Form
--------------------------------------------------------------*/
.comments-heading {
  font-size: 25px;
  margin-bottom: 5px;
}

#cancel-comment-reply-link {
  margin-left: 10px;
  font-size: 20px;
  font-weight: 700;
}

#cancel-comment-reply-link:hover {
  text-decoration: underline;
}

.comment-respond {
  margin-top: 30px;
  padding: 35px 45px 30px 45px;
   background-color: var(--smoke-color2);
  color: var(--black-color);
  border-radius: 20px;
}
.comment-respond .comment-form {
  padding: 0;
}

.tp-comment-input {
  position: relative;
  margin-bottom: 30px;
}

.tp-comment-input input,
.tp-comment-input textarea {
  margin-bottom: 0;
}

.tp-comment-input i {
  position: absolute;
  right: 20px;
  font-size: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #647589;
}

.comment-message.tp-comment-input i {
  top: 30px;
}

li.comment .comment-respond {
  margin-bottom: 45px;
  margin-top: 45px;
}

.comment-form .comment-form-wrap {
  margin: 25px -45px 0 -45px;
  border-top: 2px solid var(--border-color);
  padding: 0;
}

.comment-message textarea {
  height: auto;
  border-radius: 15px;
}

.comment-form-cookies-consent label {
  display: inline;
  margin-left: 10px;
}

.comment-form .comment-message {
  margin-top: 10px;
}

.comment-form-wrap ::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #647589;
}

.comment-form-wrap :-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #647589;
  opacity: 1;
}

.comment-form-wrap ::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #647589;
  opacity: 1;
}

.comment-form-wrap :-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #647589;
}

.comment-form-wrap ::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #647589;
}

.comment-form-wrap ::placeholder {
  /* Most modern browsers support this now. */
  color: #647589;
}

#message-cmt::placeholder {
  /* Most modern browsers support this now. */
  color: #647589;
}

.comments-area button.tp-button i {
  font-size: 14px;
}

@media (min-width: 500px) {
  .comment-metadata time {
    margin-top: 10px;
    display: inline-block;
  }
}
li.pingback,
li.trackback {
  border: 2px solid var(--border-color);
  padding: 10px;
  margin-bottom: 20px;
}

/*------------------- 4.8. Hero Area  -------------------*/
/* Hero Global ---------------------------------- */
.hero-post .post-preview {
  display: flex;
  gap: 40px;
  background: #F9FAFB;
  padding: 0;
  border-radius: 12px;
  align-items: center;
}

.hero-post .post-preview__image img {
  width: 100%;
  height: auto;
  border-radius: 12px 0 0 12px;
}

.hero-post .post-preview__content {
  flex: 1;
  padding: 0 20px 0 0;
}
.hero-post .post-preview__image{
  border-radius: 12px 0 0 12px;
}
.hero-post .post-category {
  display: inline-block;
  color: var(--title-color);
  background-color: var(--white-color);
  font-size: 12px;
  padding: 7px 15px;
  border-radius: 7px;
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
  border: 1px solid var(--theme-color);
}
.hero-post .post-category:hover {
  background: transparent;
  color: var(--title-color);
}

@media (max-width: 991px) {
  .hero-post .post-preview {
    flex-direction: column;
  }
  .hero-post .post-preview__image img{
    height: 300px;
  }
  .hero-post .post-preview__content .extra-div{
    align-items: flex-start;
    position: static !important;
    bottom: 0 !important;

  }
  .hero-post .post-preview__content{
    padding: 0 20px 0 20px;
  }
  .hero-post .post-preview__image, .hero-post .post-preview__image img{
    border-radius: 12px 12px 0 0 ;
}
}


/* =============== Hero Post ============= */
.hero-post .post-preview h2.post-title.hero-post-title a{
  font-family: var(--title-font);
  color: var(--title-color) ;
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
  text-decoration: none;
}
.hero-post .post-preview h2.post-title.hero-post-title a:hover{
  color: var(--theme-color);
}

.hero-post .post-excerpt {
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 20px;
}

.hero-post .post-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: 20px;
}

.hero-post .author-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.hero-post .post-preview__content .extra-div {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  bottom: -30px;
  padding-right: 20px;
}
.hero-post .post-button {
  display: inline-block;
  background:var(--theme-color);
  color: var(--white-color);
  padding: 10px 20px;
  border-radius: 7px;
  text-decoration: none;
  font-weight: 700;
  text-align: center;
}

.hero-post .post-button:hover {
  background: var(--title-color);
}

.hero-post .post-date {
  font-size: 12px;
  color: var(--body-color);
  text-align: right;
}


/*------------------- 4.9. Error  -------------------*/
.error-wrap .error-title {
  font-size: 160px;
  font-weight: 700;
  margin-top: 54px;
  margin-bottom: 0;
}
.error-wrap .error-subtitle {
  font-size: 48px;
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 48px;
}
.error-wrap .newsletter-form .form-group input {
  height: 90px;
  border: 1px solid var(--theme-border-color);
  box-shadow: none;
  padding: 0 200px 0 30px;
}
.error-wrap .newsletter-form .btn {
  right: 20px;
  top: 20px;
  padding: 13px 40px;
  border-radius: 5px;
  font-size: 24px;
  font-weight: 500;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .error-wrap .error-title {
    font-size: 100px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .error-wrap .error-title {
    font-size: 70px;
  }
  .error-wrap .error-subtitle {
    font-size: 38px;
  }
  .error-wrap .newsletter-form .form-group input {
    height: 70px;
  }
  .error-wrap .newsletter-form .btn {
    right: 15px;
    top: 15px;
    padding: 11px 40px;
    font-size: 18px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .error-wrap .error-title {
    font-size: 60px;
  }
  .error-wrap .error-subtitle {
    font-size: 28px;
    margin-bottom: 28px;
  }
  .error-wrap .newsletter-form .form-group input {
    height: 60px;
  }
  .error-wrap .newsletter-form .btn {
    right: 10px;
    top: 10px;
    padding: 12px 40px;
    font-size: 16px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .error-wrap .error-title {
    font-size: 50px;
  }
  .error-wrap .error-subtitle {
    margin-top: 15px;
    font-size: 24px;
  }
  .error-wrap .newsletter-form .btn {
    right: 0;
    top: 0;
  }
  .error-wrap .newsletter-form .form-group input {
    padding: 0 30px;
  }
}
/*------------------- 4.00. Popup Search  -------------------*/
.popup-search-box {
  position: fixed;
  top: 0;
  left: 50%;
  background-color: rgba(0, 0, 0, 0.95);
  height: 0;
  width: 0;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transform: translateX(-50%);
  transition: all ease 0.4s;
}
.popup-search-box button.searchClose {
  width: 50px;
  height: 50px;
  line-height: 52px;
  position: absolute;
  top: 40px;
  right: 40px;
  background-color: var(--theme-color);
  font-size: 16px;
  border-radius: 10px;
  transform: rotate(0);
  transition: all ease 0.4s;
  color: var(--white-color);
  border: 0;
}
.popup-search-box button.searchClose:hover {
  color: var(--body-color);
  background-color: #fff;
  border-color: transparent;
  border-color: transparent;
  transform: rotate(90deg);
}
.popup-search-box form {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  padding-bottom: 40px;
  cursor: auto;
  width: 100%;
  max-width: 700px;
  transform: translate(-50%, 50%) scale(0);
  transition: transform ease 0.4s;
  /* Large devices */
}
@media (max-width: 1199px) {
  .popup-search-box form {
    max-width: 600px;
  }
}
.popup-search-box form input {
  font-size: 18px;
  height: 70px;
  width: 100%;
  border: none;
  background-color: var(--white-color);
  border: 2px solid var(--theme-color);
  padding: 0 80px 0 30px;
  color: var(--title-color);
  border-radius: 50px;
}
.popup-search-box form input::-moz-placeholder {
  color: var(--theme-color);
}
.popup-search-box form input::-webkit-input-placeholder {
  color: var(--theme-color);
}
.popup-search-box form input:-ms-input-placeholder {
  color: var(--theme-color);
}
.popup-search-box form input::placeholder {
  color: var(--theme-color);
}
.popup-search-box form button {
  position: absolute;
  top: 0px;
  background-color: transparent;
  border: none;
  color: var(--theme-color);
  font-size: 16px;
  right: 12px;
  cursor: pointer;
  width: 70px;
  height: 70px;
  transition: all ease 0.4s;
  transform: scale(1.001);
}
.popup-search-box form button:hover {
  transform: scale(1.1);
}
.popup-search-box.show {
  opacity: 1;
  visibility: visible;
  width: 100.1%;
  height: 100%;
  transition: all ease 0.4s;
  border-radius: 0;
}
.popup-search-box.show form {
  transition-delay: 0.5s;
  transform: translate(-50%, -50%) scale(1);
}

/* Small devices */
@media (max-width: 767px) {
  .popup-search-box form {
    width: 80%;
  }
  .popup-search-box form input {
    height: 60px;
  }
  .popup-search-box form button {
    width: 60px;
    line-height: 62px;
    height: 60px;
  }
}
/*------------------- 4.00. Popup Newsletter  -------------------*/
.popup-subscribe {
  max-width: 808px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  background-color: var(--smoke-color);
  position: relative;
  transition: 0.4s ease-in-out;
  animation: newsLetter 1.2s ease;
  border-radius: 10px;
  /* Small devices */
}
.popup-subscribe-area {
  position: fixed;
  inset: 0;
  align-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  transition: 0.4s ease-in-out;
  transition-delay: 0.6s;
  display: grid;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.popup-subscribe-area.show {
  visibility: visible;
  pointer-events: all;
  opacity: 1;
}
.popup-subscribe-area.hide {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
.popup-subscribe .popupClose {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 999;
}
@media (max-width: 767px) {
  .popup-subscribe {
    flex-direction: column;
  }
}
.popup-subscribe .widget {
  margin-bottom: 0 !important;
  max-width: none;
}
.popup-subscribe .newsletter-form .icon-btn {
  position: absolute;
  right: 15px;
  top: 12px;
}
.popup-subscribe .newsletter-form input {
  padding: 0 60px 0 30px;
}
.popup-subscribe input[type=checkbox] ~ label {
  margin-bottom: -0.5em;
  font-size: 14px;
}
.popup-subscribe .widget_title {
  color: var(--title-color);
  font-size: 30px;
  margin-bottom: 30px;
}
.popup-subscribe .box-content {
  padding: 50px;
  flex: 1;
  display: block;
  /* Medium devices */
  /* Small devices */
}
@media (max-width: 991px) {
  .popup-subscribe .box-content {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .popup-subscribe .box-content {
    text-align: center;
    padding: 40px 20px;
  }
}
.popup-subscribe .box-img {
  height: 100%;
  /* Medium devices */
  /* Small devices */
}
.popup-subscribe .box-img img {
  height: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .popup-subscribe .box-img {
    width: 336px;
  }
}
@media (max-width: 767px) {
  .popup-subscribe .box-img {
    width: 100%;
  }
  .popup-subscribe .box-img img {
    width: 100%;
  }
}

@keyframes newsLetter {
  0% {
    transform: scale(0.5);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes newsLetterclose {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.6);
    opacity: 0;
  }
}
.popup-subscribe-area.hide .popup-subscribe {
  animation: newsLetterclose 1s ease;
}

/*------------------- 4.00. Popup Side Menu  -------------------*/
.sidemenu-wrapper {
  position: fixed;
  z-index: 99999;
  right: 0;
  top: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
  transition: all ease 0.8s;
}
.sidemenu-wrapper .closeButton {
  display: inline-block;
  border: 2px solid;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  padding: 0;
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white-color);
  border-radius: 50%;
  transform: rotate(0);
  transition: all ease 0.4s;
}
.sidemenu-wrapper .closeButton:hover {
  color: var(--theme-color);
  border-color: var(--theme-color);
  transform: rotate(90deg);
}
.sidemenu-wrapper .sidemenu-content {
  background-color: var(--white-color);
  width: 450px;
  margin-left: auto;
  padding: 80px 30px;
  height: 100%;
  overflow-y: scroll;
  position: relative;
  right: -500px;
  cursor: auto;
  transition-delay: 1s;
  transition: right ease 1s;
}
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.1);
  background-color: #F5F5F5;
}
.sidemenu-wrapper .sidemenu-content::-webkit-scrollbar {
  width: 2px;
  background-color: #F5F5F5;
}
.sidemenu-wrapper .widget {
  padding: 0;
  border: none;
  background-color: transparent;
}
.sidemenu-wrapper .widget .recent-post .post-title,
.sidemenu-wrapper .widget .widget_title {
  color: var(--title-color);
}
.sidemenu-wrapper .widget .recent-post .recent-post-meta a {
  color: var(--body-color);
}
.sidemenu-wrapper.show {
  opacity: 1;
  visibility: visible;
  width: 100%;
  transition: all ease 0.8s;
}
.sidemenu-wrapper.show .sidemenu-content {
  right: 0;
  opacity: 1;
  visibility: visible;
}

/* Small devices */
@media (max-width: 767px) {
  .sidemenu-wrapper .sidemenu-content {
    width: 320px;
    padding: 80px 20px;
  }
}
/*home4 sidebar menu************/
.sidebar-menu-wrapper {
  position: fixed;
  z-index: 9;
  left: 0;
  top: 0;
  height: 100%;
  width: 370px;
  background-color: rgba(0, 0, 0, 0.75);
  transition: all ease 0.8s;
  border-right: 1px solid #4B4D47;
}
.sidebar-menu-wrapper .sidebar-menu-area {
  padding: 70px 70px;
  width: 100%;
}
.sidebar-menu-wrapper .sidebar-menu-bottom a {
  font-size: 16px;
  font-weight: 400;
  color: var(--white-color);
}
.sidebar-menu-wrapper .sidebar-menu-bottom a:hover {
  color: var(--theme-color);
}
.sidebar-menu-wrapper .menu-toggle {
  display: none;
  background: var(--title-color);
}

.sidebar-menu-height {
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
}
.sidebar-menu-height .sidebar-menu-bottom {
  margin-top: auto;
  padding: 0 70px 70px;
}

.sidebar-menu {
  overflow-y: scroll;
  max-height: calc(100vh - 200px);
  padding-bottom: 40px;
  margin-top: 105px;
  text-align: left;
}
.sidebar-menu::-webkit-scrollbar {
  display: none;
}
.sidebar-menu ul {
  margin: 0;
  padding: 0 0;
}
.sidebar-menu ul li {
  border-bottom: 0;
  list-style-type: none;
}
.sidebar-menu ul li li:first-child {
  border-top: 0;
}
.sidebar-menu ul li a {
  display: block;
  position: relative;
  padding: 14px 0;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 500;
  color: var(--white-color);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.sidebar-menu ul li a:before {
  display: none;
}
.sidebar-menu ul li.active-class > a {
  color: var(--theme-color);
}
.sidebar-menu ul li.active-class > a:before {
  background: var(--theme-color);
  border-color: var(--theme-color);
}
.sidebar-menu ul li ul li {
  padding-left: 20px;
}
.sidebar-menu ul li ul li:last-child {
  border-bottom: none;
}
.sidebar-menu ul .submenu-item-has-children > a .mean-expand-class {
  position: absolute;
  right: 0;
  top: 50%;
  font-weight: 400;
  font-size: 15px;
  width: 25px;
  height: 25px;
  line-height: 25px;
  margin-top: -12.5px;
  display: inline-block;
  text-align: center;
  background-color: transparent;
  color: var(--white-color);
  box-shadow: 0 0 20px -8px rgba(173, 136, 88, 0.5);
  border-radius: 50%;
}
.sidebar-menu ul .submenu-item-has-children > a .mean-expand-class:before {
  content: "\f067";
  font-family: var(--icon-font);
  font-weight: 700;
}
.sidebar-menu ul .submenu-item-has-children.active-class > a .mean-expand-class:before {
  content: "\f068";
}
.sidebar-menu > ul {
  padding: 0;
}
.sidebar-menu > ul > li:last-child {
  border-bottom: none;
}

/* Medium devices */
@media (max-width: 991px) {
  .sidebar-menu-wrapper {
    width: 300px;
  }
  .sidebar-menu-wrapper .sidebar-menu-area {
    padding: 40px;
  }
  .sidebar-menu-height .sidebar-menu-bottom {
    padding: 0 40px 40px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .sidebar-menu-wrapper {
    width: fit-content;
  }
  .sidebar-menu-wrapper .sidebar-logo {
    display: none;
  }
  .sidebar-menu-wrapper .menu-toggle {
    display: block;
  }
  .sidebar-menu-height .sidebar-menu-bottom {
    display: none;
  }
  .sidebar-menu ul {
    display: none;
  }
  .sidebar-menu-wrapper .sidebar-menu-area {
    padding: 30px;
  }
}
/*------------------- 4.00. Wocommerce  -------------------*/

div#review_form> .comment-respond > .comment-form{
  background: transparent;
  border-radius: 10px;
  border: 1px solid rgba(118, 124, 132, 0.17);
  box-shadow: 0px 0px 33px 0px rgba(0, 0, 0, 0.06);
}


.woocommerce-message,
.woocommerce-info {
  position: relative;
  padding: 11px 20px 11px 50px;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
  border-radius: 0;
}
.woocommerce-message a,
.woocommerce-info a {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 700;
}
.woocommerce .woocommerce-info a.woocommerce-Button.wc-forward.button,
.woocommerce .woocommerce-info a.button.wc-forward{
  border: none;
  font-family: var(--body-font);
  color: #ddd;
  font-size: 15px;
  font-weight: 700;
}
.woocommerce .woocommerce-info a.woocommerce-Button.wc-forward.button:hover,
.woocommerce .woocommerce-info a.button.wc-forward:hover{
color: var(--title-color);
}
.woocommerce-message a:hover,
.woocommerce-info a:hover {
  color: var(--title-color);
}

.woocommerce header.woocommerce-Address-title.title a.edit{
  text-decoration: none;
  font-weight: 700;
  color: var(--theme-color);
}
.woocommerce header.woocommerce-Address-title.title a.edit:hover{
color: var(--title-color);
text-decoration: underline;
}
.woocommerce-message:before,
.woocommerce-info:before {
  content: "\f06a";
  font-family: 'FontAwesome';
  font-weight: 400;
  margin-right: 10px;
  font-size: 18px;
  position: absolute;
  left: 20px;
  top: 11px;
}

.woocommerce-notices-wrapper .woocommerce-message {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.woocommerce-notices-wrapper .woocommerce-message:before {
  content: "\f14a";
  font-weight: 300;
}

.woocommerce-form-login-toggle .woocommerce-info {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.woocommerce-form-login-toggle .woocommerce-info a {
  color: inherit;
}
.woocommerce-form-login-toggle .woocommerce-info a:hover {
  color: var(--title-color);
}

.woocommerce-form-register,
.woocommerce-form-coupon,
.woocommerce-form-login {
  padding: 35px 40px 35px 40px;
  background-color: var(--white-color);
  box-shadow: 0px 6px 30px rgba(1, 15, 28, 0.1);
  margin-bottom: 0;
  /* Extra small devices */
}
@media (max-width: 575px) {
  .woocommerce-form-register,
  .woocommerce-form-coupon,
  .woocommerce-form-login {
    padding: 40px 20px;
  }
}
.woocommerce-form-register .form-group,
.woocommerce-form-coupon .form-group,
.woocommerce-form-login .form-group {
  margin-bottom: 20px;
}
.woocommerce-form-register .form-group:last-child,
.woocommerce-form-coupon .form-group:last-child,
.woocommerce-form-login .form-group:last-child {
  margin-bottom: 0;
}

.woocommerce-form-login {
  margin-bottom: 30px;
}

.woocommerce-error {
  background-color: var(--error-color);
  color: #fff;
  list-style: none;
  padding: 10px 26px;
  margin: 0 0 30px 0;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}

nav.woocommerce-MyAccount-navigation li {
  border: 1px solid #ddd;
  margin: 0;
  border-top: none;
  list-style: none;
}
nav.woocommerce-MyAccount-navigation li:first-child {
  border-top: 1px solid #ddd;
}
nav.woocommerce-MyAccount-navigation li a {
  color: var(--title-color);
  font-weight: 700;
  padding: 7px 17px;
  display: block;
  text-decoration: none;
}
nav.woocommerce-MyAccount-navigation li.is-active a,
nav.woocommerce-MyAccount-navigation li a:hover {
  color: var(--white-color);
  background-color: var(--theme-color);
}

.woocommerce nav.woocommerce-MyAccount-navigation ul{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.woocommerce-MyAccount-content p a{
  text-decoration: none;
  color: var(--theme-color);
  font-weight: 700;
}
.woocommerce-MyAccount-content h3 {
  margin-top: -0.3em;
}
.woocommerce-MyAccount-content .btn {
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 14px;
  padding: 10px 25px;
  font-weight: 700;
}
.woocommerce-MyAccount-content .btn:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

table.variations,
.woocommerce-grouped-product-list-item {
  border-collapse: separate;
  border-spacing: 0 15px;
  margin-bottom: 5px;
  align-items: center;
  border: none;
}
table.variations td,
.woocommerce-grouped-product-list-item td {
  border: none;
  vertical-align: middle;
  padding: 0 5px;
}
table.variations td:first-child,
.woocommerce-grouped-product-list-item td:first-child {
  padding: 0;
}
table.variations label,
.woocommerce-grouped-product-list-item label {
  margin: 0;
  font-size: 14px;
  text-transform: capitalize;
}
table.variations label a,
.woocommerce-grouped-product-list-item label a {
  color: var(--title-color);
}
.dark-theme .woocommerce-grouped-product-list-item label a, 
.dark-theme .woocommerce-Price-amount.amount bdi,
.dark-theme .wp-block-woocommerce-cart-order-summary-block,
.dark-theme .wc-block-components-product-price,
.dark-theme .wc-block-components-quantity-selector,
.dark-them table.wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link  {
  color: var(--white-color);
}


table.variations label a:hover,
.woocommerce-grouped-product-list-item label a:hover {
  color: var(--theme-color);
}
table.variations .label,
.woocommerce-grouped-product-list-item .label {
  border: none;
}
table.variations__label,
.woocommerce-grouped-product-list-item__label {
  border: none !important;
  font-weight: 600;
}
table.variations__price,
.woocommerce-grouped-product-list-item__price {
  border: none !important;
}
table.variations__price .price,
table.variations__price .amount,
.woocommerce-grouped-product-list-item__price .price,
.woocommerce-grouped-product-list-item__price .amount {
  font-size: 18px !important;
}
table.variations del,
.woocommerce-grouped-product-list-item del {
  margin-left: 12px;
}

.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
  border: 1px solid var(--border-color);
}
.woocommerce-product-attributes th p:last-child,
.woocommerce-product-attributes td p:last-child {
  margin-bottom: 0;
}

.woocommerce-grouped-product-list.group_table {
  border-collapse: collapse;
  margin-bottom: 15px;
}
.woocommerce-grouped-product-list.group_table .woocommerce-Price-amount.amount {
  font-size: 16px;
  color: var(--title-color);
}
.woocommerce-grouped-product-list.group_table label {
  margin: 0 0 0 10px;
  margin: 0 0 0 10px;
  font-family: var(--title-font);
  font-size: 18px;
}
.woocommerce-grouped-product-list.group_table .qty-input {
  border-color: #e3e6e9;
}
.woocommerce-grouped-product-list.group_table tr {
  border-bottom: 1px solid #e3e6e9;
}
.woocommerce-grouped-product-list.group_table tr:last-child {
  border-bottom: none;
}
.woocommerce-grouped-product-list.group_table td {
  padding: 30px 5px;
}

table.variations {
  width: max-content;
  position: relative;
}
table.variations td {
  padding: 0;
}
table.variations td.label {
  padding-right: 10px;
  width: max-content;
}
table.variations select {
  width: max-content;
  font-weight: 400;
  line-height: 1.5;
  vertical-align: middle;
  margin: 0;
  padding-right: 54px;
  padding-left: 20px;
  height: 50px;
}
table.variations .reset_variations {
  margin-left: 5px;
  display: inline-block;
  position: absolute;
  left: 100%;
  bottom: 25px;
}

.woosq-product .product .woocommerce-grouped-product-list-item__quantity,
.woosq-product .product .woocommerce-grouped-product-list-item__label,
.woosq-product .product .woocommerce-grouped-product-list-item__price {
  width: auto !important;
}

.woocommerce-variation.single_variation {
  margin-bottom: 30px;
}
.woocommerce-variation.single_variation .price {
  color: var(--title-color);
  font-weight: 700;
}

.wooscp-table-items td.woocommerce-product-attributes-item__value {
  padding-left: 15px !important;
}
.wooscp-table-items a.added_to_cart.wc-forward {
  margin-left: 15px;
  text-decoration: underline;
}

.tinvwl_added_to_wishlist.tinv-modal.tinv-modal-open {
  z-index: 1111;
}

table.woocommerce-product-attributes {
  margin-bottom: 30px;
}

#woosq-popup .product_meta {
  margin-top: 20px;
}
#woosq-popup .product_title {
  font-size: 24px;
  margin-bottom: 5px;
}
#woosq-popup .single-product .product .actions {
  align-items: center;
  display: flex;
  gap: 20px;
}
#woosq-popup .single-product .product .actions > div {
  height: auto;
  overflow: visible;
  width: max-content;
}
#woosq-popup .single-product .product .actions > div .quantity.style2.woocommerce-grouped-product-list-item__quantity {
  width: max-content;
}

.login-tab {
  margin-bottom: 30px;
  justify-content: center;
}
.login-tab button.nav-link {
  background-color: var(--smoke-color);
  color: var(--title-color);
  padding: 11px 39px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 15px ​15px 0;
}
.login-tab button.nav-link.active {
  background-color: var(--theme-color);
  color: var(--white-color);
}

.star-rating {
  overflow: hidden;
  position: relative;
  width: 100px;
  height: 1.2em;
  line-height: 1.2em;
  display: block;
  font-family: var(--icon-font);
  font-weight: 700;
  font-size: 12px;
}
.star-rating:before {
  content: "\f005\f005\f005\f005\f005";
  color: #e1e1e1;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  letter-spacing: 3px;
}
.star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.star-rating span:before {
  content: "\f005\f005\f005\f005\f005";
  top: 0;
  position: absolute;
  left: 0;
  color: #feb62a;
  letter-spacing: 3px;
}

.rating-select label {
  margin: 0;
  margin-right: 10px;
}
.rating-select p.stars {
  margin-bottom: 0;
  line-height: 1;
}
.rating-select p.stars a {
  position: relative;
  height: 14px;
  width: 18px;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
}
.rating-select p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 18px;
  height: 14px;
  line-height: 1;
  font-family: var(--icon-font);
  content: "\f005";
  font-weight: 400;
  text-indent: 0;
  color: var(--yellow-color);
}
.rating-select p.stars a:hover ~ a::before {
  content: "\f005";
  font-weight: 400;
}
.rating-select p.stars:hover a::before {
  content: "\f005";
  font-weight: 700;
}
.rating-select p.stars.selected a.active::before {
  content: "\f005";
  font-weight: 700;
}
.rating-select p.stars.selected a.active ~ a::before {
  content: "\f005";
  font-weight: 400;
}
.rating-select p.stars.selected a:not(.active)::before {
  content: "\f005";
  font-weight: 700;
}

/* Small devices */
@media (max-width: 767px) {
  .woocommerce-message,
  .woocommerce-info {
    font-size: 14px;
    line-height: 22px;
    padding: 10px 15px 10px 37px;
  }
  .woocommerce-message:before,
  .woocommerce-info:before {
    font-size: 16px;
    top: 10px;
    left: 15px;
  }
}
.woocommerce .widget_shopping_cart .cart_list li, .woocommerce.widget_shopping_cart .cart_list li {
  padding-left: 3em;
}

.woocommerce a.remove {
  height: 1em;
  width: 1em;
  line-height: 18px;
}

/*------------------- 4.00. Subscribe  -------------------*/
.subscribe-wrap {
  border-radius: 10px;
  border: 1px solid rgba(204, 215, 237, 0.46);
  background: var(--white-color);
  padding: 60px 70px;
  margin-bottom: -55px;
  position: relative;
  z-index: 1;
  /* Large devices */
  /* Medium devices */
  /* Small devices */
}
@media (max-width: 1199px) {
  .subscribe-wrap {
    padding: 60px 50px;
  }
}
@media (max-width: 991px) {
  .subscribe-wrap {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .subscribe-wrap {
    padding: 40px;
  }
}

/*------------------- 4.00. Cart  -------------------*/
.woocommerce-cart-form {
  text-align: center;
}

.cart_table {
  border: 1px solid #eaf0f2;
  margin-bottom: 45px;
}
.cart_table thead {
  background-color: #ecf0f1;
}
.cart_table thead th {
  border: none !important;
}
.cart_table td:before,
.cart_table th {
  font-family: var(--title-font);
  color: var(--title-color);
  font-weight: 800;
  border: none;
  padding: 27px 15px;
}
.cart_table td:before {
  content: attr(data-title);
  position: absolute;
  left: 15px;
  top: 50%;
  vertical-align: top;
  padding: 0;
  transform: translateY(-50%);
  display: none;
}
.cart_table td {
  border: none;
  border-bottom: 1px solid #f3f3f3;
  color: #8b8b8b;
  padding: 20px 10px;
  position: relative;
  vertical-align: middle;
}
.cart_table .product-quantity {
  color: var(--title-color);
}
.cart_table .product-quantity input {
  position: relative;
  top: -2px;
}
.cart_table .cart-productname {
  font-weight: 400;
  font-family: var(--body-font);
  color: var(--body-color);
}
.cart_table .cart-productimage {
  display: inline-block;
  border: 2px solid var(--smoke-color);
}
.cart_table .remove {
  color: var(--theme-color);
  font-size: 18px;
}
.cart_table .quantity {
  display: inline-flex;
  align-items: center;
}
.cart_table .qty-btn {
  border: 2px solid var(--smoke-color) !important;
  background-color: transparent;
  color: #b8c6d0;
  padding: 0;
  width: 30px;
  height: 30px;
  line-height: 28px;
  font-size: 16px;
  border-radius: 4px;
}
.cart_table .qty-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.cart_table .qty-input {
  vertical-align: middle;
  border: 2px solid var(--smoke-color);
  width: 70px;
  height: 30px;
  font-size: 14px;
  text-align: center;
  color: var(--title-color);
  font-weight: 700;
  margin: 0 10px;
  border-radius: 4px;
  padding: 0;
  /* Firefox */
}
.cart_table .qty-input::-moz-placeholder {
  color: var(--title-color);
}
.cart_table .qty-input::-webkit-input-placeholder {
  color: var(--title-color);
}
.cart_table .qty-input:-ms-input-placeholder {
  color: var(--title-color);
}
.cart_table .qty-input::placeholder {
  color: var(--title-color);
}
.cart_table .qty-input::-webkit-outer-spin-button, .cart_table .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart_table .actions {
  text-align: right;
  vertical-align: middle;
}
.cart_table .actions > .as-btn {
  font-size: 16px;
  padding: 20px 28px;
  margin-right: 15px;
}
.cart_table .actions > .as-btn:last-child {
  margin-right: 0;
}
.cart_table .as-cart-coupon {
  float: left;
  margin: 0;
  width: 455px;
  max-width: 100%;
  display: flex;
}
.cart_table .as-cart-coupon input {
  width: calc(100% - 200px);
  margin-right: 10px;
}
.cart_table .as-cart-coupon .as-btn {
  font-size: 16px;
  padding: 20px 25px;
  width: max-content;
}

.cart_totals {
  border: 1px solid #ecf0f1;
}
.cart_totals th,
.cart_totals td {
  vertical-align: top;
  padding: 20px 20px;
  border: none;
  border-bottom: 1px solid #ecf0f1;
  font-size: 14px;
  color: var(--title-color);
  width: 55%;
}
.cart_totals th:first-child,
.cart_totals td:first-child {
  width: 45%;
  background-color: #f9fbfb;
  font-weight: 700;
  font-size: 14px;
  color: #333333;
}
.cart_totals .shipping-calculator-button {
  display: inline-block;
  border-bottom: 1px solid;
  color: var(--title-color);
  font-weight: 700;
}
.cart_totals .shipping-calculator-button:hover {
  color: var(--theme-color);
}
.cart_totals .woocommerce-shipping-destination {
  margin-bottom: 10px;
}
.cart_totals .woocommerce-shipping-methods {
  margin-bottom: 0;
}
.cart_totals .shipping-calculator-form {
  display: none;
  margin-top: 20px;
}
.cart_totals .shipping-calculator-form .form-control,
.cart_totals .shipping-calculator-form .single-select {
  margin-bottom: 20px;
}
.cart_totals .shipping-calculator-form .as-btn {
  padding: 5px 30px;
}
.cart_totals .amount {
  font-weight: 700;
}
.cart_totals .order-total .amount {
  color: var(--theme-color);
}

/* Medium devices */
@media (max-width: 991px) {
  .cart_table th {
    padding: 23px 8px;
    font-size: 14px;
  }
  .cart_table .cart-productname {
    font-size: 14px;
  }
  .cart_table .as-cart-coupon {
    width: 100%;
    margin-bottom: 20px;
    justify-content: center;
  }
  .cart_table .actions {
    text-align: center;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .cart_table {
    text-align: left;
    min-width: auto;
    border-collapse: separate;
    border-spacing: 0 20px;
    border: none;
  }
  .cart_table thead {
    display: none;
  }
  .cart_table td {
    padding: 15px;
    display: block;
    width: 100%;
    padding-left: 25%;
    text-align: right;
    border: 1px solid #f3f3f3;
    border-bottom: none;
  }
  .cart_table td::before {
    display: block;
  }
  .cart_table td:last-child {
    border-bottom: 1px solid #f3f3f3;
  }
  .cart_table td.actions {
    padding-left: 15px;
    text-align: center;
  }
  .cart_table td.actions > .as-btn {
    margin-top: 10px;
    margin-right: 0;
    display: block;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
  .cart_table td.actions > .as-btn:last-child {
    margin-right: auto;
  }
  .cart_table .as-cart-coupon {
    width: 100%;
    text-align: center;
    float: none;
    justify-content: center;
    display: block;
    padding-bottom: 10px;
  }
  .cart_table .as-cart-coupon input {
    width: 100%;
    margin-bottom: 10px;
  }
  .cart_totals th,
  .cart_totals td {
    padding: 15px 10px;
  }
  .cart_totals th:first-child,
  .cart_totals td:first-child {
    width: 17%;
    line-height: 1.4;
  }
}
/*------------------- 4.00. Checkout  -------------------*/
.woocommerce-checkout .form-group,
.woocommerce-checkout .form-row {
  margin-bottom: 0;
}
.woocommerce-checkout .form-select,
.woocommerce-checkout .select2-container,
.woocommerce-checkout .form-control {
  margin-bottom: 0;
}
.woocommerce-checkout .select2-container--open .select2-dropdown--below {
  margin-top: -35px;
}
.woocommerce-checkout .select2-container--open .select2-dropdown--above {
  position: relative;
  bottom: -30px;
}
.woocommerce-checkout .select2-dropdown {
  border: 1px solid #e3e6e9;
  border-top: none;
}
.woocommerce-checkout .select2-container--default .select2-selection--single {
  border-radius: 0;
}
.woocommerce-checkout .select2-container--default .select2-selection--single .select2-selection__rendered,
.woocommerce-checkout .select2-container--default .select2-selection--single .form-control:focus {
  color: var(--body-color);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #eee;
  padding: 0;
}

.woocommerce-form-login select,
.woocommerce-form-login .form-select,
.woocommerce-form-login .form-control,
.woocommerce-form-login .select2,
.woocommerce-form-login .select2-container,
.woocommerce-form-coupon select,
.woocommerce-form-coupon .form-select,
.woocommerce-form-coupon .form-control,
.woocommerce-form-coupon .select2,
.woocommerce-form-coupon .select2-container,
.woocommerce-checkout select,
.woocommerce-checkout .form-select,
.woocommerce-checkout .form-control,
.woocommerce-checkout .select2,
.woocommerce-checkout .select2-container {
  margin-bottom: var(--bs-gutter-x);
}

#ship-to-different-address {
  margin-top: 15px;
}

.select2-container--default .select2-selection--single {
  height: 60px;
  border: 1px solid #e3e6e9;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 60px;
  padding-left: 30px;
  padding-right: 25px;
}

.woocommerce-billing-fields .form-row {
  margin-bottom: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
  content: "\f107";
  font-family: var(--icon-font);
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  margin: 0;
  border: none;
  top: 0;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 60px;
  line-height: 60px;
  margin-right: 30px;
}

span.select2-selection.select2-selection--single:focus {
  outline: none;
}

.shipping-calculator-form .form-select,
.shipping-calculator-form .form-control {
  height: 40px;
  padding-left: 15px;
  font-size: 16px;
  line-height: 40px;
  border-radius: 0;
  background-position: right 13px center;
}
.shipping-calculator-form .as-btn {
  font-size: 14px;
  padding: 0 20px;
  width: max-content;
  height: 40px;
}

.checkout-ordertable th,
.checkout-ordertable td {
  border: 1px solid #ededed;
  text-align: right;
  padding: 5px 20px;
  vertical-align: top;
  font-size: 14px;
  font-weight: 600;
  color: #2c3e50;
}
.checkout-ordertable th {
  font-weight: 800;
  text-align: left;
}
.checkout-ordertable ul {
  margin: 0;
  padding: 0;
}
.checkout-ordertable .order-total .amount {
  color: var(--theme-color);
}
.checkout-ordertable input[type=hidden] ~ label {
  color: var(--theme-color);
}

.woocommerce-checkout .form-group input:not(:last-child) {
  margin-bottom: var(--bs-gutter-x);
}

.woocommerce-checkout-payment {
  text-align: left;
}
.woocommerce-checkout-payment ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.woocommerce-checkout-payment ul li {
  padding-top: 12px;
  border-bottom: 1px solid #d8d8d8;
  border-radius: 4px;
  font-size: 16px;
}
.woocommerce-checkout-payment ul input[type=radio] ~ label {
  margin-bottom: 17px;
  color: var(--body-color);
}
.woocommerce-checkout-payment ul input[type=radio] ~ label img {
  margin-bottom: -2px;
  margin-left: 10px;
}
.woocommerce-checkout-payment .place-order {
  padding-top: 30px;
}
.woocommerce-checkout-payment .payment_box {
  color: #a1b1bc;
  background-color: #ecf0f1;
  border: 1px solid #d8d8d8;
  border-bottom: none;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 4px;
  display: none;
}
.woocommerce-checkout-payment .payment_box p {
  margin: 0;
}

.as-checkout-wrapper form.woocommerce-form {
  margin-bottom: 25px;
}

/* Small devices */
@media (max-width: 767px) {
  tfoot.checkout-ordertable th {
    display: none;
  }
  .woocommerce-checkout-payment ul input[type=radio] ~ label img {
    max-width: 150px;
  }
  .checkout-ordertable th,
  .checkout-ordertable td {
    padding: 5px 20px 5px 60px;
  }
}
/*------------------- 4.00. Wishlist  -------------------*/
.tinv-wishlist input[type=checkbox] {
  display: inline-block;
  opacity: 1;
  visibility: visible;
  vertical-align: middle;
  width: auto;
  height: auto;
}
.tinv-wishlist .tinv-header {
  margin-top: -0.8rem;
}
.tinv-wishlist .cart-empty {
  padding: 12px 25px;
  background-color: #eee;
  border-radius: 5px;
  font-weight: 700;
  font-size: 14px;
}
.tinv-wishlist p.return-to-shop .button {
  display: inline-block;
  background-color: var(--theme-color);
  color: #fff;
  font-size: 14px;
  padding: 10px 25px;
  margin-top: 10px;
  font-weight: 700;
}
.tinv-wishlist p.return-to-shop .button:Hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.tinv-wishlist table {
  border: none;
}
.tinv-wishlist table th {
  color: var(--title-color);
}
.tinv-wishlist table td, .tinv-wishlist table th {
  padding: 15.3px 10px;
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}
.tinv-wishlist table thead {
  background-color: var(--smoke-color);
}
.tinv-wishlist .product-cb,
.tinv-wishlist .product-remove {
  width: 40px;
  text-align: center;
}
.tinv-wishlist .product-thumbnail {
  width: 110px;
}
.tinv-wishlist .stock.in-stock {
  margin-bottom: 0;
}
.tinv-wishlist ins {
  text-decoration: none;
}
.tinv-wishlist .product-remove button {
  border: none;
  height: 22px;
  width: 22px;
  text-align: center;
  font-size: 12px;
  line-height: 22px;
  border-radius: 0;
  padding-top: 0;
}
.tinv-wishlist .product-remove button i {
  line-height: 22px;
  font-size: 16px;
}
.tinv-wishlist .tinvwl-mobile {
  display: none;
}
.tinv-wishlist .social-buttons {
  display: flex;
  max-width: 295px;
  margin-left: auto;
  align-items: center;
}
.tinv-wishlist .social-buttons ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: auto;
  display: flex;
  gap: 6px;
}
.tinv-wishlist table.tinvwl-table-manage-list {
  font-size: 16px;
}
.tinv-wishlist .product-stock .stock {
  display: block;
}
.tinv-wishlist .product-stock span {
  display: inline;
}
.tinv-wishlist .product-stock i {
  margin-right: 5px;
}
.tinv-wishlist .tinv-modal .icon_big_times {
  margin-bottom: 5px;
  color: var(--theme-color);
}
.tinv-wishlist button.button {
  border: none;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-weight: 600;
  background-color: var(--theme-color);
  color: #fff;
  padding: 1px 15px;
  min-width: 140px;
}
.tinv-wishlist button.button.mask-btn {
  padding: 0;
}
.tinv-wishlist button.button .btn-text-mask {
  padding: 0.5px 21px;
}
.tinv-wishlist button.button:hover {
  background-color: var(--title-color);
  color: #fff;
}
.tinv-wishlist button.button i {
  font-size: 14px !important;
  margin-right: 3px !important;
}
.tinv-wishlist th,
.tinv-wishlist td.product-name {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--title-font);
}
.tinv-wishlist td.product-name a {
  color: var(--body-color);
}
.tinv-wishlist td.product-name a:hover {
  color: var(--theme-color);
}
.tinv-wishlist td.product-price del {
  margin-left: 8px;
  font-size: 0.9em;
}
.tinv-wishlist .social-buttons > span {
  font-weight: 700;
  margin-right: 10px;
  font-family: var(--title-font);
  color: var(--title-color);
}
.tinv-wishlist .social-buttons li {
  display: inline-block;
  margin-right: 0;
}
.tinv-wishlist .social-buttons li a.social {
  background-color: var(--theme-color);
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  display: inline-block;
  text-align: center;
  border-radius: 50px;
  margin-left: 3px;
}
.tinv-wishlist .social-buttons li a.social:first-child {
  margin-left: 0;
}
.tinv-wishlist .social-buttons li a.social i {
  line-height: inherit;
}
.tinv-wishlist .social-buttons li a.social:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}

/* Medium devices */
@media (max-width: 991px) {
  .tinvwl-full {
    display: none;
  }
  .tinv-wishlist .tinvwl-mobile {
    display: block;
  }
  .tinvwl-txt {
    display: none !important;
  }
  .product-stock {
    width: 40px;
    text-align: center;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .tinv-wishlist table {
    table-layout: fixed;
    border-bottom: 1px solid var(--theme-border-color);
  }
  .tinv-wishlist table.tinvwl-table-manage-list tbody td.product-remove, .tinv-wishlist table.tinvwl-table-manage-list thead th:not(.product-name) {
    display: none;
  }
  .tinv-wishlist table td, .tinv-wishlist table th {
    border: 1px solid var(--border-color);
  }
  .tinv-wishlist table.tinvwl-table-manage-list tbody td {
    display: block;
    width: 100% !important;
    text-align: center;
  }
  .product-name {
    text-align: center;
  }
  .tinv-wishlist table td,
  .tinv-wishlist table th {
    border-bottom: none;
  }
  .tinv-wishlist table tfoot {
    border-bottom: 1px solid var(--theme-border-color);
  }
  .tinv-wishlist .social-buttons {
    max-width: 100%;
    margin-left: unset;
    flex-direction: column;
  }
  .tinv-wishlist .social-buttons ul {
    margin-left: unset;
    margin-top: 5px;
  }
  .tinvwl-txt {
    display: inline-block !important;
  }
}
/*------------------- 4.00. Contact  -------------------*/
/*contact page******************/
.contact-info-wrap {
  border-radius: 15px;
  border: 1px solid var(--theme-border-color);
  padding: 80px 50px;
  /* Extra small devices */
}
@media (max-width: 575px) {
  .contact-info-wrap {
    padding: 40px 30px;
  }
}
.contact-info-wrap .contact-info-inner {
  position: relative;
  /* Medium Large devices */
}
.contact-info-wrap .contact-info-inner::after {
  content: "";
  position: absolute;
  height: 80px;
  width: 1px;
  background: var(--theme-border-color);
  left: -40px;
  top: 50%;
  transform: translate(0, -50%);
}
.contact-info-wrap .contact-info-inner:first-child::after {
  display: none;
}
@media (max-width: 1399px) {
  .contact-info-wrap .contact-info-inner::after {
    display: none;
  }
}

.contact-info {
  padding: 0;
  display: flex;
  align-items: center;
  gap: 25px;
  /* Extra small devices */
}
.contact-info .contact-info_icon {
  background: var(--smoke-color3);
  border-radius: 50%;
  height: 80px;
  width: 80px;
  line-height: 80px;
  text-align: center;
  position: relative;
  display: inline-block;
  color: var(--theme-color);
  font-size: 24px;
}
.contact-info .contact-info_title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 12px;
}
.contact-info .contact-info_text a {
  color: var(--body-color);
}
@media (max-width: 575px) {
  .contact-info {
    display: block;
  }
  .contact-info .contact-info_icon {
    margin-bottom: 20px;
  }
}

.map-sec {
  line-height: 0;
  filter: grayscale(1);
  margin-bottom: -200px;
}
.map-sec iframe {
  width: 100%;
  height: 600px;
  /* Small devices */
}
@media (max-width: 767px) {
  .map-sec iframe {
    height: 300px;
  }
}

.contact-form-area {
  background: var(--smoke-color3);
  padding: 80px;
  border-radius: 15px;
  /* Extra small devices */
}
@media (max-width: 575px) {
  .contact-form-area {
    padding: 40px 30px;
  }
}

/*------------------- 4.00. About  -------------------*/
/* About area ---------------------------------- */
/*------------------- 4.00. post  -------------------*/
.blog-post-slider .slick-dots {
  position: absolute;
  left: 42px;
  top: 30px;
  display: inline-block;
  margin: 0;
  width: auto;
}

/* .top-news-slider { */
  /* Medium devices */
  /* Small devices */
  /* Extra small devices */
/* } */
.top-news-slider .slick-dots {
  position: absolute;
  right: 12px;
  top: -72px;
  display: inline-block;
  margin: 0;
  width: auto;
  padding: 0 0 0 24px;
  background: var(--white-color);
}
.top-news-slider.slider-shadow .slick-dots {
  top: -42px;
}
@media (max-width: 991px) {
  .top-news-slider .slick-dots {
    top: -62px;
  }
  .top-news-slider.slider-shadow .slick-dots {
    top: -32px;
  }
}
@media (max-width: 767px) {
  .top-news-slider .slick-dots {
    top: -57px;
  }
}
@media (max-width: 575px) {
  .top-news-slider .slick-dots {
    position: initial;
    width: 100%;
    padding: 0;
    margin: 40px 0 0;
  }
}

.bg-smoke2 .top-news-slider .slick-dots {
  background: var(--smoke-color2);
}

.single-blog-post {
  position: relative;
  overflow: hidden;
}
.single-blog-post .post-img {
  overflow: hidden;
  position: relative;
  display: block;
  border-radius: 5px;
}

.single-blog-post .post-img:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  top: 0;
  left: 0;
}
.single-blog-post .post-img img {
  border-radius: 5px;
  transition: 0.4s;
  width: 100%;
  height: 190px;
  object-fit: cover;
}
.single-blog-post .post-img.img-radius-0 {
  border-radius: 0;
}
.single-blog-post .post-img.img-radius-0 img {
  border-radius: 0;
}
.single-blog-post .post-category {
  position: absolute;
  right: 30px;
  top: 30px;
  z-index: 1;
}
.single-blog-post .post-wrap-details {
  position: absolute;
  right: 30px;
  left: 30px;
  bottom: 30px;
}
.single-blog-post .post-author,
.single-blog-post .post-date {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-family: var(--title-font);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.single-blog-post .post-title {
  font-weight: 600;
  margin-bottom: -0.3em;
  line-height: 1.357;
}
.single-blog-post .post-title a {
  background-image: linear-gradient(to left, var(--white-color), var(--white-color));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  transition: 0.4s ease-in-out;
}
.single-blog-post .post-title a:hover {
  background-size: 100% 2px;
}
.single-blog-post .post-title a.text-title {
  background-image: linear-gradient(to left, var(--title-color), var(--title-color));
}
.single-blog-post .post-content {
  margin-bottom: -0.3em;
}
.single-blog-post .blog-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 15px;
  justify-content: space-between;
}
.single-blog-post .blog-post-meta span,
.single-blog-post .blog-post-meta a,
.single-blog-post .blog-post-meta .post-author,
.single-blog-post .blog-post-meta .post-date {
  color: var(--body-color);
  font-size: 14px;
  font-weight: 400;
}
.single-blog-post .blog-post-meta span:hover,
.single-blog-post .blog-post-meta a:hover,
.single-blog-post .blog-post-meta .post-author:hover,
.single-blog-post .blog-post-meta .post-date:hover {
  color: var(--theme-color);
}
.single-blog-post:hover .post-img img {
  transform: scale(1.1);
}


.post-category.style-blue {
  background: #0035EF;
}
.post-category.style-white {
  background: var(--white-color);
  color: var(--title-color) !important;
}
.post-category.style-pink {
  background: #FD15F4;
}
.post-category.style-dark-pink {
  background: #BE063D;
}
.post-category.style-red {
  background: #F01D1D;
}
.post-category.style-dark-red {
  background: #960101;
}
.post-category.style-purple {
  background: #4D00EF;
}
.post-category.style-dark-green {
  background: #172E0B;
}
.post-category.style-light-purple {
  background: #8571FF;
}
.post-category.style-light-blue {
  background: #3278FF;
}
.post-category.style-pest {
  background: #155458;
}
.post-category.style-megenda {
  background: #138DC0;
}
.post-category:hover {
  color: var(--theme-color) !important;
  background: var(--white-color) !important;
}



.dark-theme .video-post-section .post-category.style-white{
  color: var(--black-color) !important;
}
/*post style 2********/
.single-blog-post.style2 .post-wrap-details {
  left: 20px;
  bottom: 20px;
}
.single-blog-post.style2 .post-category {
  right: 20px;
  top: 20px;
}
.single-blog-post.style2 .post-date {
  font-size: 14px;
  font-family: var(--body-font);
  font-weight: 400;
  color: #ffffff !important;
}
.single-blog-post.style2 .post-title {
  font-weight: 500;
}

/*post style 3********/
.single-blog-post.style3 {
  border-radius: 5px;
  background: var(--white-color);
  box-shadow: 1px 1px 6.9px -2px rgba(0, 0, 0, 0.1);

}
.single-blog-post.style3 .post-img {
  border-radius: 0;
}
.single-blog-post.style3 .post-img img {
  border-radius: 5px 5px 0 0;
}
.single-blog-post.style3 .post-category {
  right: 20px;
  top: 20px;
}
.single-blog-post.style3 .post-wrap-details {
  position: initial;
  padding: 20px;
}
.single-blog-post.style3 .post-title {
  font-weight: 500;
}

/*post style 4********/
.single-blog-post.style4 {
  border-radius: 0px;
}
.single-blog-post.style4 .post-img {
  border-radius: 5px;
}
.single-blog-post.style4 .post-category {
  right: 15px;
  top: 15px;
}
.single-blog-post.style4 .post-wrap-details {
  position: initial;
}
.single-blog-post.style4 .post-title {
  font-weight: 500;
}
.single-blog-post.style4 .blog-post-meta {
  justify-content: start;
  gap: 5px 20px;
}

/*post style grid********/
.single-post-grid-wrap .single-blog-post:not(:last-child) {
  margin-bottom: 30px;
}

.single-post-grid-wrap2 .single-blog-post:not(:last-child) {
  margin-bottom: 20px;
}

.single-blog-post.style-grid {
  display: flex;
  gap: 20px;
  align-items: center;
}
.single-blog-post.style-grid .post-img {
  flex: none;
}
.single-blog-post.style-grid .post-img img {
  min-height: auto;
}
.single-blog-post.style-grid .post-img:after {
  display: none;
}
.single-blog-post.style-grid .post-img.video-wrap:after {
  display: block;
  background: rgba(0, 0, 0, 0.5);
}
.single-blog-post.style-grid .post-img.img-rounded {
  border-radius: 50%;
}
.single-blog-post.style-grid .post-img.img-rounded img {
  border-radius: 50%;
}
.single-blog-post.style-grid .post-img.img-radius-5 {
  border-radius: 5px;
}
.single-blog-post.style-grid .post-img.img-radius-5 img {
  border-radius: 5px;
}
.single-blog-post.style-grid .post-category {
  position: initial;
  color: var(--white-color);
  font-weight: 400;
  font-family: var(--body-font);
  display: inline-block;
  padding: 8px;
  border-radius: 7px;
}

.single-blog-post.style-grid .post-category:hover {
  color: var(--theme-color);
}
.single-blog-post.style-grid .post-author,
.single-blog-post.style-grid .post-date {
  color: var(--body-color);
  font-family: var(--body-font);
}
.single-blog-post.style-grid .post-wrap-details {
  position: initial;
}

/*post style grid style2********/
.single-blog-post.style-grid2 {
  display: flex;
  gap: 30px;
  align-items: center;
}
.single-blog-post.style-grid2 .post-img {
  flex: none;
}
.single-blog-post.style-grid2 .post-img img {
  min-height: auto;
}
.single-blog-post.style-grid2 .post-img:after {
  display: none;
}
.single-blog-post.style-grid2 .post-img.video-wrap:after {
  display: block;
  background: rgba(0, 0, 0, 0.5);
}
.single-blog-post.style-grid2 .post-img.img-rounded {
  border-radius: 50%;
}
.single-blog-post.style-grid2 .post-img.img-rounded img {
  border-radius: 50%;
}
.single-blog-post.style-grid2 .post-img.img-radius-5 {
  border-radius: 5px;
}
.single-blog-post.style-grid2 .post-img.img-radius-5 img {
  border-radius: 5px;
}
.single-blog-post.style-grid2 .post-category {
  position: initial;
}
.single-blog-post.style-grid2 .post-category:hover {
  background: var(--theme-color);
  color: var(--white-color);
}
.single-blog-post.style-grid2 .post-date {
  color: var(--body-color);
  display: block;
  font-weight: 400;
  font-family: var(--body-font);
}
.single-blog-post.style-grid2 .post-wrap-details {
  position: initial;
}

/* Small devices */
@media (max-width: 767px) {
  .single-blog-post.style-grid2 {
    flex-wrap: wrap;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .single-blog-post .post-img img {
    min-height: 250px;
  }
  .single-blog-post .post-wrap-details {
    left: 20px;
  }
}
/* Extra small devices */
@media (max-width: 375px) {
  .single-blog-post.style-grid {
    flex-wrap: wrap;
  }
}
/*Blog Tab***********/
.blog-tab {
  position: relative;
  z-index: 2;
}
.blog-tab .play-btn {
  pointer-events: none;
}
.blog-tab .tab-btn {
  margin-top: 30px;
  cursor: pointer;
}
.blog-tab .tab-btn:first-child {
  margin-top: 0;
}
.blog-tab:after {
  content: "";
  height: 100%;
  width: 4px;
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  position: absolute;
  bottom: 0;
  right: -80px;
}
.blog-tab .indicator {
  position: absolute;
  right: -80px;
  top: calc(30px + var(--pos-y));
  background-color: var(--theme-color);
  border-radius: 99px;
  height: var(--height-set);
  width: 4px;
  transition: 0.4s ease-in-out;
  z-index: 2;
}
.blog-tab .single-blog-post .video-wrap .icon {
  width: 35px;
  position: absolute;
  transition: 0.4s;
  left: 10px;
  bottom: 10px;
  opacity: 0;
}
.blog-tab .single-blog-post .video-wrap .icon img {
  transform: none;
}
.blog-tab .single-blog-post .video-wrap .play-btn {
  transform: translate(-50%, -50%) scale(1);
}

.tab-btn.active .single-blog-post .post-img .icon {
  visibility: visible;
  opacity: 1;
  z-index: 2;
}
.tab-btn.active .single-blog-post .post-img .play-btn {
  transform: translate(-50%, -50%) scale(0);
}

/* Extra large devices */
@media (max-width: 1500px) {
  .blog-tab:after,
  .blog-tab .indicator {
    right: -30px;
  }
}
/* Medium Large devices */
@media (max-width: 1399px) {
  .blog-tab:after,
  .blog-tab .indicator {
    right: -70px;
  }
}
/* Medium Large devices */
@media (max-width: 1299px) {
  .blog-tab:after,
  .blog-tab .indicator {
    display: none;
  }
}
/*Blog Category***********/
.blog-category-wrap {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.single-blog-category-wrap {
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.single-blog-category-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.single-blog-category-wrap .blog-category-wrap-details {
  position: absolute;
  text-align: center;
}
.single-blog-category-wrap .blog-category-wrap-title {
  display: block;
  font-size: 30px;
  font-family: var(--title-font);
  font-weight: 700;
  color: var(--white-color);
}
.single-blog-category-wrap .blog-category-wrap-text {
  color: var(--white-color);
  display: block;
  margin-bottom: -0.3em;
  margin-top: 10px;
}
.single-blog-category-wrap:hover img {
  transform: scale(1.1);
}

/*------------------- 4.00. Team  -------------------*/
/* Team 1 ---------------------------------- */
.team-card {
  text-align: center;
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.team-card_img {
  position: relative;
  display: block;
}
.team-card_img img {
  border-radius: 10px;
  transition: 0.4s;
  width: 100%;
}
.team-card_details {
  border-radius: 10px;
  background: var(--white-color);
  box-shadow: 0px 8px 38px 0px rgba(6, 18, 41, 0.12);
  position: absolute;
  width: -webkit-fill-available;
  margin: 20px;
  bottom: 0;
  padding: 30px;
  transition: 0.4s;
  opacity: 0;
  transform: translate(0, 20px);
}
.team-card_title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 0px;
  margin-top: -0.25em;
}
.team-card_title a {
  color: var(--title-color);
}
.team-card_title a:hover {
  color: var(--theme-color);
}
.team-card_desig {
  font-size: 14px;
  font-weight: 400;
  color: var(--theme-color);
  display: block;
  margin-bottom: -0.5em;
  border-bottom: 1px solid #F1F1F1;
  padding-bottom: 14px;
  margin-bottom: 20px;
}
.team-card .social-btn {
  justify-content: center;
}
.team-card .social-btn a {
  --icon-size: 37px;
  line-height: 37px;
  font-size: 14px;
  color: var(--theme-color);
  background: #F1EFFC;
}
.team-card .social-btn a:hover {
  background: var(--title-color);
  color: var(--white-color);
}
.team-card:hover .team-card_details {
  opacity: 1;
  transform: translate(0);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .team-card_details {
    padding: 23px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .team-card_details {
    padding: 30px;
  }
}
/* Small devices */
/* Team Details ---------------------------------- */
.single-team-details .team-about-card {
  border: 1px solid #E3E5DE;
  padding: 60px;
  margin-bottom: 60px;
}
.single-team-details .team-about-card .team-about-card_box {
  padding-left: 40px;
}
.single-team-details .team-about-card .team-about-card_box .team-about-card_title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 8px;
}
.single-team-details .team-about-card .team-about-card_box .team-about-card_desig {
  font-size: 14px;
  font-weight: 400;
  font-family: var(--body-color);
  color: var(--body-color);
  margin-bottom: 22px;
}
.single-team-details .team-about-card .team-about-card_box .team-about-card_text {
  font-weight: 300;
  margin-bottom: 22px;
}
.single-team-details .team-about-card .team-about-card_box .social-btn {
  border-bottom: 1px solid #E3E5DE;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.single-team-details .team-about-card .team-about-card_box .team-about-card_info {
  display: flex;
  gap: 20px;
  align-items: center;
}
.single-team-details .team-about-card .team-about-card_box .team-about-card_info .icon {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  line-height: 50px;
  border: 1px solid #E3E5DE;
  text-align: center;
}
.single-team-details .team-about-card .team-about-card_box .team-about-card_info p {
  font-size: 22px;
  font-weight: 400;
  font-family: var(--title-font);
  color: var(--title-color);
  margin-bottom: -0.5em;
}
.single-team-details .team-about-card .team-about-card_box .team-about-card_info p span {
  display: block;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--body-font);
  color: var(--body-color);
  margin-bottom: -5px;
  margin-top: -9px;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .single-team-details .team-about-card {
    padding: 20px;
    margin-bottom: 40px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .single-team-details .team-about-card {
    padding: 40px;
  }
  .single-team-details .team-about-card .team-about-card_box {
    padding-left: 0;
    margin-top: 30px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .single-team-details .team-about-card {
    padding: 20px;
  }
}
/*------------------- 4.00. Tab  -------------------*/
.tab-menu1 {
  border: 0;
  gap: 10px;
  justify-content: center;
}
.tab-menu1 .tab-btn {
  background: transparent;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--body-font);
  border: 0;
  border-radius: 0;
  color: var(--body-color);
  padding: 5px 10px;
  margin: 0 6px;
}
.tab-menu1 .tab-btn.active {
  background: var(--theme-color);
  color: var(--white-color);
}

/*------------------- 4.00. Testimonial  -------------------*/
/* Testimonial 1 ---------------------------------- */
.testi-box {
  background: var(--white-color);
  border-radius: 10px;
  overflow: hidden;
}
.testi-box_thumb {
  border-radius: 50%;
  position: relative;
  display: inline-block;
}
.testi-box_thumb img {
  border-radius: 50%;
}
.testi-box_text {
  line-height: 1.667;
  font-size: 18px;
  font-weight: 400;
  padding: 43px 30px 40px;
}
.testi-box_profile {
  background: #F1EFFC;
  padding: 30px;
  display: flex;
  gap: 24px;
  align-items: center;
}
.testi-box_profile .testi-box_name {
  margin-bottom: -2px;
  margin-top: -0.3em;
  font-size: 24px;
  font-weight: 500;
  color: var(--title-color);
}
.testi-box_profile .testi-box_desig {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--title-font);
  color: var(--theme-color);
  display: block;
  margin-bottom: -0.3em;
}

/* Extra small devices */
@media (max-width: 375px) {
  .testi-box_text {
    font-size: 16px;
    padding: 33px 25px 30px;
  }
  .testi-box_profile .testi-box_name {
    font-size: 20px;
  }
  .testi-box_profile {
    padding: 25px;
    gap: 20px;
  }
}
/*------------------- 4.00. Counter  -------------------*/
/*------------------- 4.00. Blog  -------------------*/
/* Blog Card ---------------------------------- */
.post-single,
.blog-card {
  background: transparent;
  position: relative;
  border-radius: 10px;
  box-shadow: 5px 5px 33px rgba(2, 2, 2, 0.08);
}
.post-single .post-title,
.post-single .blog-title,
.blog-card .post-title,
.blog-card .blog-title {
  font-weight: 500;
  color: var(--title-color);
  margin-bottom: 25px;
  padding: 10px 0;
  font-size: 36px;
  margin-top: 10px;
}
.post-single .post-title a:hover,
.post-single .blog-title a:hover,
.blog-card .post-title a:hover,
.blog-card .blog-title a:hover {
  color: var(--theme-color);
}
.post-single .post-img,
.post-single .blog-img,
.blog-card .post-img,
.blog-card .blog-img {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 3;
  border-radius: 10px 10px 0 0;
}
.post-single .post-img img,
.post-single .blog-img img,
.blog-card .post-img img,
.blog-card .blog-img img {
  width: 100%;
  max-width: 100%;
  height: 525px;
  border-radius: 10px 10px 0 0;
  transform: scale(1.02);
  transition: 0.4s ease-in-out;
}
.post-single .post-contents,
.post-single .blog-content,
.blog-card .post-contents,
.blog-card .blog-content {
  border-radius: 0;
  padding: 30px;
  position: relative;
  z-index: 2;
  transition: 0.4s;
}
.post-single .post-meta-item,
.post-single .blog-meta,
.blog-card .post-meta-item,
.blog-card .blog-meta {
  align-items: center;
  display: inline-flex;
}
.post-single .post-meta-item a,
.post-single .blog-meta a,
.blog-card .post-meta-item a,
.blog-card .blog-meta a {
  font-weight: 400;
  font-family: var(--body-font);
  color: var(--body-color);
  margin-right: 0;
}
.post-single .post-meta-item i, .post-single .post-meta-item svg,
.post-single .blog-meta i,
.post-single .blog-meta svg,
.blog-card .post-meta-item i,
.blog-card .post-meta-item svg,
.blog-card .blog-meta i,
.blog-card .blog-meta svg {
  font-size: 14px;
  transition: 0.4s;
}
.post-single .post-meta-item a:hover,
.post-single .blog-meta a:hover,
.blog-card .post-meta-item a:hover,
.blog-card .blog-meta a:hover {
  color: var(--theme-color);
}
.post-single .post-meta-item a:hover i, .post-single .post-meta-item a:hover svg,
.post-single .blog-meta a:hover i,
.post-single .blog-meta a:hover svg,
.blog-card .post-meta-item a:hover i,
.blog-card .post-meta-item a:hover svg,
.blog-card .blog-meta a:hover i,
.blog-card .blog-meta a:hover svg {
  color: var(--theme-color);
}
.post-single .blog-text,
.blog-card .blog-text {
  margin-bottom: 47px;
}
.post-single .blog-text p,
.blog-card .blog-text p {
  margin-bottom: -0.3em;
  font-weight: 300;
  line-height: 26px;
  font-size: 15px;
}
.post-single .post-button,
.blog-card .post-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid var(--theme-border-color);
  padding-top: 23px;
  gap: 20px;
}
.post-single:hover .post-img img,
.post-single:hover .blog-img img,
.blog-card:hover .post-img img,
.blog-card:hover .blog-img img {
  transform: scale(1.08);
}
.post-single.style-slider,
.blog-card.style-slider {
  position: relative;
  border: 0;
  border-radius: 10px;
}
.post-single.style-slider .post-img,
.post-single.style-slider .blog-img,
.blog-card.style-slider .post-img,
.blog-card.style-slider .blog-img {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.post-single.style-slider .post-img:after,
.post-single.style-slider .blog-img:after,
.blog-card.style-slider .post-img:after,
.blog-card.style-slider .blog-img:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: var(--title-color);
  opacity: 0.25;
  top: 0;
  left: 0;
}
.post-single.style-slider .post-contents,
.post-single.style-slider .blog-content,
.blog-card.style-slider .post-contents,
.blog-card.style-slider .blog-content {
  position: absolute;
  bottom: 0;
  z-index: 3;
  width: 100%;
  text-align: center;
  padding: 30px 160px 72px;
}
.post-single.style-slider .post-category,
.blog-card.style-slider .post-category {
  border-radius: 30px;
  padding: 10px 30px;
}
.post-single.style-slider .post-title,
.post-single.style-slider .blog-title,
.blog-card.style-slider .post-title,
.blog-card.style-slider .blog-title {
  font-size: 48px;
  font-weight: 500;
  color: var(--white-color);
  margin-top: 28px;
  margin-bottom: 17px;
}
.post-single.style-slider .post-meta-item,
.post-single.style-slider .blog-meta,
.blog-card.style-slider .post-meta-item,
.blog-card.style-slider .blog-meta {
  margin-bottom: 0;
}
.post-single.style-slider .post-meta-item a,
.post-single.style-slider .blog-meta a,
.blog-card.style-slider .post-meta-item a,
.blog-card.style-slider .blog-meta a {
  font-size: 16px;
  color: var(--white-color);
}

/* Medium Large devices */
@media (max-width: 1299px) {
  .post-single .post-contents,
  .blog-card .blog-content {
    padding: 35px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .post-single.style-slider .post-contents, .post-single.style-slider .blog-content, .blog-card.style-slider .post-contents, .blog-card.style-slider .blog-content {
    padding: 30px 60px 72px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .post-single.style-slider .post-contents, .post-single.style-slider .blog-content, .blog-card.style-slider .post-contents, .blog-card.style-slider .blog-content {
    padding: 30px 40px 42px;
  }
  .post-single.style-slider .post-title, .post-single.style-slider .blog-title, .blog-card.style-slider .post-title, .blog-card.style-slider .blog-title {
    font-size: 38px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .post-single.style-slider .post-contents, .post-single.style-slider .blog-content, .blog-card.style-slider .post-contents, .blog-card.style-slider .blog-content {
    padding: 30px 30px 32px;
  }
  .post-single.style-slider .post-title, .post-single.style-slider .blog-title, .blog-card.style-slider .post-title, .blog-card.style-slider .blog-title {
    font-size: 28px;
    margin-top: 18px;
  }
  .post-single.style-slider .post-category, .blog-card.style-slider .post-category {
    border-radius: 30px;
    padding: 7px 20px;
  }
  .post-single .post-title, .post-single .blog-title, .blog-card .post-title, .blog-card .blog-title {
    font-size: 28px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .post-single .post-contents,
  .blog-card .blog-content {
    padding: 30px;
  }
  .post-single.style-slider .post-contents, .post-single.style-slider .blog-content, .blog-card.style-slider .post-contents, .blog-card.style-slider .blog-content {
    position: inherit;
    text-align: left;
    padding: 30px;
  }
  .post-single.style-slider .post-contents .blog-meta a, .post-single.style-slider .blog-content .blog-meta a, .blog-card.style-slider .post-contents .blog-meta a, .blog-card.style-slider .blog-content .blog-meta a {
    color: var(--body-color);
  }
  .post-single.style-slider .post-contents .post-title,
  .post-single.style-slider .post-contents .blog-title, .post-single.style-slider .blog-content .post-title,
  .post-single.style-slider .blog-content .blog-title, .blog-card.style-slider .post-contents .post-title,
  .blog-card.style-slider .post-contents .blog-title, .blog-card.style-slider .blog-content .post-title,
  .blog-card.style-slider .blog-content .blog-title {
    color: var(--title-color);
  }
}
/* Extra small devices */
@media (max-width: 375px) {
  .post-single .post-contents,
  .blog-card .blog-content {
    padding: 30px 20px;
  }
  .post-single.style-slider .post-contents, .post-single.style-slider .blog-content, .blog-card.style-slider .post-contents, .blog-card.style-slider .blog-content {
    padding: 30px 20px;
  }
}
/* Blog grid ---------------------------------- */
.blog-grid {
  display: flex;
  border: 1px solid var(--theme-border-color);
  position: relative;
  border-radius: 0px;
  overflow: hidden;
}
.blog-grid-wrap {
  display: grid;
  grid-template-areas: "one one one one one one two two two two two two" "one one one one one one three three three three three three";
}
.blog-grid .blog-img {
  position: relative;
  min-width: 280px;
  height: 100%;
  overflow: hidden;
  margin: -1px;
}
.blog-grid .blog-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  transition: 0.4s ease-in-out;
}
.blog-grid .blog-content {
  padding: 45px 40px;
  align-self: center;
}
.blog-grid .post-meta-item, .blog-grid .blog-meta {
  margin-bottom: 10px;
}
.blog-grid .blog-title {
  font-size: 24px;
  margin-bottom: 21px;
  margin-top: 0px;
  line-height: 32px;
  font-weight: 400;
}
.blog-grid .link-btn {
  font-size: 16px;
}
.blog-grid:nth-child(1) {
  grid-area: one;
  display: block;
}
.blog-grid:nth-child(2) {
  grid-area: two;
}
.blog-grid:nth-child(3) {
  grid-area: three;
}
.blog-grid.style-small {
  display: flex;
}
.blog-grid.style-small:not(:last-child) {
  margin-bottom: 24px;
}
.blog-grid.style-small .blog-img {
  min-width: 391px;
  height: 100%;
}
.blog-grid.style-small .blog-img img {
  height: 100%;
  object-fit: cover;
}
.blog-grid.style-small .blog-content {
  padding: 50px;
}
.blog-grid.style-small .post-meta-item a, .blog-grid.style-small .blog-meta a {
  font-size: 14px;
}
.blog-grid:hover .blog-img img {
  transform: scale(1.1);
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .blog-grid .blog-content {
    padding: 44px 30px;
  }
  .blog-grid.style-small .blog-img {
    min-width: 350px;
  }
  .blog-grid.style-small .blog-content {
    padding: 40px;
  }
}
/* Medium Large devices */
@media (max-width: 1299px) {
  .blog-grid .blog-img {
    min-width: 250px;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .blog-grid .blog-content {
    padding: 35px 30px;
  }
  .blog-grid .blog-meta span, .blog-grid .blog-meta a {
    margin-right: 0;
  }
  .blog-grid.style-small .blog-content {
    padding: 35px;
  }
  .blog-grid.style-small .blog-img {
    min-width: 260px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .blog-grid {
    --space: 30px;
    flex-direction: column;
  }
  .blog-grid .blog-img {
    height: 100%;
  }
  .blog-grid .blog-content {
    align-self: flex-start;
  }
  .blog-grid.style-small {
    flex-direction: column;
    align-items: stretch;
  }
  .blog-grid.style-small .blog-img {
    max-height: 265px;
    min-width: 100%;
  }
  .blog-grid.style-small .blog-content {
    padding: 35px 30px;
  }
}
/* Blog Card 3---------------------------------- */
.blog-card.style3 {
  border: 0;
}
.blog-card.style3 .blog-img img {
  width: 100%;
}
.blog-card.style3 .blog-content {
  padding: 50px 0 0;
  text-align: center;
}
.blog-card.style3 .blog-content .blog-title {
  max-width: 416px;
  margin: 0 auto 22px;
}
.blog-card.style3 .post-meta-item, .blog-card.style3 .blog-meta {
  margin-bottom: 10px;
}

/* Large devices */
@media (max-width: 1199px) {
  .blog-card.style3 .blog-content {
    padding: 30px 0 0;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .blog-card.style3 .blog-title {
    font-size: 24px;
  }
}
/* Blog Card 4---------------------------------- */
.blog-card.style4 {
  border: 0;
  overflow: hidden;
}
.blog-card.style4 .blog-img img {
  width: 100%;
}
.blog-card.style4 .blog-content {
  padding: 30px 0 0;
  text-align: center;
  max-width: 278px;
  margin: auto;
}
.blog-card.style4 .blog-title {
  font-size: 24px;
  margin-bottom: -0.3em;
}

/* Blog Card 3---------------------------------- */
.blog-area-3 .post-single .post-img img, .blog-area-3 .post-single .blog-img img, .blog-area-3 .blog-card .post-img img, .blog-area-3 .blog-card .blog-img img {
  width: 100%;
}

/*------------------- 4.00. Client  -------------------*/
/*------------------- 4.00. Simple Sections  -------------------*/
.checklist ul {
  padding-left: 0;
  list-style: none;
  text-align: left;
  margin-bottom: 0;
}
.checklist li {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  color: var(--title-color);
  position: relative;
}
.checklist li:before {
  content: "";
  position: relative;
  height: 6px;
  width: 6px;
  background: var(--title-color);
  top: 10px;
  margin-right: 15px;
}
.checklist li:last-child {
  margin-bottom: 0;
}
.checklist li i, .checklist li svg {
  font-size: 16px;
  margin-right: 10px;
  color: var(--theme-color);
  margin-top: 6px;
  width: 16px;
}
.checklist.style2 ul li:before {
  display: none;
}
.checklist.style3 ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 8px;
}
.checklist.style3 ul li {
  margin-bottom: 0;
}
.checklist.style4 ul li {
  font-weight: 400;
  color: var(--body-color);
  font-size: 16px;
}
.checklist.style4 ul li:before {
  display: none;
}
.checklist.style4 ul li:not(:last-child) {
  margin-bottom: 9px;
}
.checklist.style5 ul li {
  font-weight: 400;
  font-size: 16px;
  color: var(--body-color);
}
/* .checklist.mb-40 { */
  /* Large devices */
/* } */
@media (max-width: 1199px) {
  .checklist.mb-40 {
    margin-bottom: 32px;
  }
}
/* .checklist.mb-45 { */
  /* Large devices */
/* } */
@media (max-width: 1199px) {
  .checklist.mb-45 {
    margin-bottom: 35px;
  }
}

.img-half {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
}
.img-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-half.img-right {
  right: 0;
}

.icon-box {
  display: inline-flex;
  gap: 10px;
}

.btn-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
}
.btn-wrap.style2 {
  gap: 30px 40px;
}

.read-more-btn {
  font-size: 14px;
  font-weight: 500;
  color: var(--body-color);
  position: relative;
}
.read-more-btn i, .read-more-btn svg {
  font-size: 12px;
}
.read-more-btn:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  background: var(--theme-color);
  width: 0;
  transition: 0.4s ease-in-out;
}
.read-more-btn:hover {
  color: var(--theme-color);
}
.read-more-btn:hover:after {
  width: 100%;
}

.category-tag {
  background: var(--theme-color);
  height: 25px;
  line-height: 25px;
  border-radius: 30px;
  text-transform: uppercase;
  color: var(--white-color);
  font-size: 10px;
  font-weight: 700;
  display: inline-block;
  padding: 0 19px;
  letter-spacing: 1px;
}

/* Large devices */
@media (max-width: 1199px) {
  p.mb-40 {
    margin-bottom: 35px;
  }
  p.mb-45 {
    margin-bottom: 38px;
  }
  .checklist li {
    margin-bottom: 6px;
    font-size: 16px;
  }
  .checklist li i, .checklist li svg {
    font-size: 14px;
    margin-right: 5px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .checklist.style2 ul li i {
    margin-right: 10px;
  }
}
.global-img {
  position: relative;
  transition: all 0.4s ease-in-out;
}
.global-img:after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  top: 50%;
  right: 0;
  bottom: 50%;
  left: 0;
  background: rgba(255, 255, 255, 0.3);
}
.global-img:hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 900ms linear;
}

.img-anim {
  visibility: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.star-rating-wrap i {
  margin: 0 !important;
}

/*------------------- 4.00. Video -------------------*/
/* Video 1 ---------------------------------- */
.video-wrap {
  position: relative;
}
.video-wrap .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.video-wrap2 {
  position: relative;
}
.video-wrap2 .play-btn {
  position: absolute;
  left: 25px;
  top: 25px;
}
.video-wrap2 .icon-btn {
  position: absolute;
  left: 25px;
  top: 25px;
  --btn-size: 60px;
  background: var(--theme-color);
  font-size: 24px;
  color: var(--white-color);
}

/*------------------- 4.00. Category Menu -------------------*/
/*------------------- 4.00. Faq -------------------*/
/*------------------- 4.00. feature -------------------*/
/*------------------- 4.00. CTA -------------------*/
/*------------------- 4.00. Service -------------------*/
/*------------------- 4.00. Why Choose Us -------------------*/
/*------------------- 4.00. Pricing -------------------*/
/*------------------- 4.00. Product -------------------*/
.product-card {
  transition: all ease 0.4s;
  border-radius: 0px;
  --space: 0px;
  padding: var(--space);
}
.product-card .product-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 1px;
}
.product-card .product-title a {
  color: inherit;
}
.product-card .product-title a:hover {
  color: var(--theme-color);
}
.product-card .price {
  display: block;
  color: var(--title-color);
  font-weight: 400;
  font-size: 14px;
  font-family: var(--body-font);
  margin-bottom: -0.5em;
}
.product-card .price del {
  margin-right: 10px;
  color: #a9a9a9;
}
.product-card .product-img {
  background-color: var(--smoke-color);
  overflow: hidden;
  position: relative;
  text-align: center;
  background-color: var(--smoke-color);
  border-radius: 20px;
  margin-bottom: 24px;
  z-index: 2;
}
.product-card .product-img:before {
  --space: 0px;
  content: "";
  height: calc(100% - var(--space) * 2);
  width: calc(100% - var(--space) * 2);
  position: absolute;
  top: var(--space);
  left: var(--space);
  background-color: rgb(34, 35, 40);
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s ease-in-out;
}
.product-card .product-img img {
  width: 100%;
  transition: all ease 0.4s;
  transform: scale(1);
}
.product-card .star-rating {
  width: 93px;
  font-size: 14px;
  color: #ffc107;
}
.product-card .star-rating:before {
  color: #ffc107;
}
.product-card .actions {
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0px;
  right: 0;
  text-align: center;
  transform: translateY(50%);
  z-index: 3;
  margin-top: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-card .actions .icon-btn {
  --btn-size: 40px !important;
  line-height: 42px !important;
  font-size: 14px;
  border-color: var(--white-color);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
  color: var(--white-color);
  background: var(--theme-color);
  border-radius: 10px;
}
.product-card .actions .icon-btn i {
  margin-right: 1px;
}
.product-card .actions .icon-btn:hover {
  color: var(--theme-color);
  background: var(--white-color);
  border-color: var(--white-color);
}
.product-card .actions > * {
  margin: 0 var(--icon-gap-x, 5px);
}
.product-card .actions > * > a {
  margin: 0;
}
.product-card .actions .btn {
  font-size: 16px;
  font-weight: 500;
  padding: 15px 28px;
}
.product-card .category,
.product-card .product-tag {
  height: 25px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--theme-color);
  line-height: 25px;
  color: var(--white-color);
  border-radius: 5px;
  position: absolute;
  padding: 0 10px;
  top: 23px;
  left: 23px;
  z-index: 9;
}
.product-card .icon-btn {
  transform: translateY(30px);
  transition: 0.4s ease-in-out;
}
.product-card .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.product-card .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
}
.product-card .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.product-card .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
  position: relative;
  top: -1px;
  left: 0;
  line-height: inherit;
  margin: 0;
  font-size: 24px;
}
.product-card .tinv-wishlist a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--white-color);
  color: var(--title-color);
  border-radius: 50%;
}
.product-card .tinv-wishlist a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.product-card .add_to_cart_button.added {
  display: none;
}
.product-card .added_to_cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background-color: var(--theme-color);
  color: var(--white-color);
  font-size: 0;
  text-align: center;
  border-radius: 10px;
}
.product-card .added_to_cart:after {
  content: "\f07a";
  position: relative;
  font-family: var(--icon-font);
  font-size: 16px;
  font-weight: 700;
}
.product-card .added_to_cart:hover {
  background-color: var(--title-color);
  color: var(--white-color);
}
.product-card .action-btn {
  background-color: var(--white-color);
  font-size: 14px;
  font-family: var(--title-font);
  text-transform: uppercase;
  font-weight: bold;
  display: inline-block;
  padding: 13px 25px;
}
.product-card:hover .product-img img {
  transform: scale(1.1);
}
.product-card:hover .product-img:before {
  visibility: visible;
  opacity: 0.1;
}
.product-card:hover .actions {
  margin-top: 0;
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}
.product-card:hover .icon-btn {
  transform: translateY(0);
}
.product-card .media {
  display: flex;
  margin-top: 21px;
  margin-bottom: 6px;
}
.product-card .media .media-body {
  text-align: right;
}
.product-card.list-view {
  display: flex;
  text-align: left;
  height: 100%;
}
.product-card.list-view .product-img {
  width: 100%;
  max-width: 275px;
  margin: 0;
}
.product-card.list-view .product-img img {
  height: 100%;
  object-fit: cover;
}
.product-card.list-view .price {
  font-size: 20px;
  font-weight: 500;
  color: var(--theme-color);
  margin-bottom: 6px;
}
.product-card.list-view .star-rating {
  width: 93px;
}
.product-card.list-view .product-content {
  flex: 1;
  border: 1px solid transparent;
  border-left: none;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 0 0 0 30px;
}
.product-card.list-view .actions {
  --btn-size: 35px;
  --btn-font-size: 13px;
  --icon-gap-x: 2px;
}
.product-card.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.product-card.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.product-card.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.product-card.list-view .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
  font-size: 20px;
}
.product-card.list-view .tinv-wishlist a {
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.product-card.list-view .added_to_cart {
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.product-card.list-view .added_to_cart:after {
  font-size: 16px;
}
.product-card.list-view .action-btn {
  padding: 8px 15px;
}
.product-card.list-view .tag {
  top: 8px;
  right: 8px;
  padding: 0px 15px;
}
.product-card.list-view .product-title {
  font-size: 28px;
  font-weight: 500;
  margin: 0 0 10px 0;
}
.product-card.list-view .product-text {
  margin-top: 20px;
}
.product-card.list-view .product-price {
  font-size: 120px;
}
.product-card.list-view .btn {
  font-size: 16px;
  font-weight: 500;
  padding: 15px 28px;
}

#productCarousel .slick-arrow {
  top: 37.5%;
}

.mfp-content {
  margin: 1.5rem auto;
}
.mfp-content .product-details-img {
  padding-top: 15px;
}
.mfp-content .product-about {
  padding-top: 40px;
  padding-bottom: 40px;
}
.mfp-content .container {
  position: relative;
}
.mfp-content .product-big-img {
  margin-top: 15px;
  margin-bottom: 15px;
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.15s ease-out;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transition: all 0.4s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.woosq-popup .product_meta > span > a:after,
.woosq-popup .product_meta > span > span:after {
  display: none;
}

.woosq-product > .product > div {
  height: auto;
}

.shop-sort-bar {
  padding: 14px 30px;
  margin: 20px 0 50px 0;
  background: #f7f8fa;
  border-radius: 20px;
}
.shop-sort-bar .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 5px;
}
.shop-sort-bar .woocommerce-ordering {
  display: inline-flex;
  align-items: center;
}
.shop-sort-bar .single-select,
.shop-sort-bar select {
  height: auto;
  line-height: initial;
  padding: 0 50px 0 5px;
  border: 1px solid transparent;
  background-color: transparent;
  width: fit-content;
  min-width: 180px;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  border-radius: 0px;
  color: var(--title-color);
  display: inline-block;
}
.shop-sort-bar .woocommerce-result-count {
  margin-bottom: 0;
  font-weight: 300;
  color: var(--body-color);
  display: flex;
  gap: 15px;
}
.shop-sort-bar .woocommerce-result-count a {
  color: var(--title-color);
  opacity: 0.6;
}
.shop-sort-bar .woocommerce-result-count a:hover {
  opacity: 1;
}
.shop-sort-bar .nav a {
  display: inline-block;
  height: auto;
  width: auto;
  line-height: auto;
  border: 1px solid transparent;
  background-color: transparent;
  text-align: center;
  position: relative;
  font-family: var(--title-font);
  font-weight: 600;
  font-size: 24px;
  text-transform: capitalize;
  color: var(--title-color);
  margin: 0 0 0 10px;
}
.shop-sort-bar .nav a.active, .shop-sort-bar .nav a:hover {
  color: var(--theme-color);
}

.product-thumb-area {
  position: relative;
}
.product-thumb-area .product-thumb-tab {
  position: absolute;
  bottom: 50px;
  left: 0;
}

.product-thumb-tab {
  --thumb: 87px;
  --gap: 0px;
  position: relative;
  z-index: 3;
  display: inline-flex;
  border-radius: 20px;
  align-items: end;
  justify-content: center;
  width: 100%;
}
.product-thumb-tab .tab-btn {
  background-color: var(--white-color);
  cursor: pointer;
  height: var(--thumb);
  width: var(--thumb);
  padding: var(--gap);
  border-radius: 20px;
}
.product-thumb-tab .tab-btn img {
  max-width: 100%;
  width: 100%;
  border-radius: inherit;
}
.product-thumb-tab .tab-btn:not(:last-of-type) {
  margin-right: 15px;
}

.product-thumb {
  background-color: var(--smoke-color3);
  text-align: center;
  border-radius: 5px;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb .img {
  border: 0;
}
.product-thumb .img img {
  object-fit: cover;
  border-radius: 5px;
}
.product-thumb .add_to_wishlist {
  position: absolute;
  top: 48px;
  right: 48px;
  color: var(--theme-color);
}
.product-thumb .add_to_wishlist:hover i {
  font-weight: 700;
}
.product-thumb .product-tag {
  height: 25px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--theme-color);
  line-height: 25px;
  color: var(--white-color);
  border-radius: 5px;
  position: absolute;
  padding: 0 10px;
  top: 23px;
  left: 23px;
  z-index: 9;
}

.product-big-img {
  background-color: #f4f4f4;
  text-align: center;
  border-radius: 20px;
  position: relative;
}
.product-big-img .img {
  width: 100%;
  border-radius: 20px;
}
.product-big-img .img img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}
.product-big-img .add_to_wishlist {
  position: absolute;
  top: 48px;
  right: 48px;
}

.shop-slider-indicator {
  background: transparent;
}
.shop-slider-indicator .product-thumb {
  background: transparent;
}
.shop-slider-indicator .slick-arrow {
  --pos-x: -5px;
  --icon-size: 30px;
  --icon-font-size: 12px;
  opacity: 1;
  visibility: visible;
}

.quantity {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
  width: 70px;
  margin-left: 0;
}
.quantity > .screen-reader-text {
  display: inline-block;
  font-weight: 600;
  color: var(--title-color);
  font-family: var(--title-font);
  margin: 0;
  align-self: center;
  margin-right: 10px;
}
.quantity .qty-btn,
.quantity .qty-input {
  display: inline-block;
  width: 50px;
  height: 50px;
  border: none;
  border-right: none;
  background-color: transparent;
  padding: 0;
  border-radius: 0;
  text-align: center;
  color: var(--body-color);
  font-size: 18px;
  font-weight: 600;
}
.quantity .qty-btn:last-child,
.quantity .qty-input:last-child {
  border-right: none;
}
.quantity .qty-btn {
  font-size: 16px;
}

.product_meta {
  font-weight: 700;
  font-size: 16px;
  font-family: var(--body-font);
  margin: 35px 0 0 0;
}
.product_meta > span {
  display: block;
  margin-bottom: 5px;
  color: var(--title-color);
  font-weight: 400;
}
.product_meta > span:last-child {
  margin-bottom: 0;
}
.product_meta > span a {
  color: inherit;
}
.product_meta > span a:hover {
  color: var(--theme-color);
}
.product_meta > span > a,
.product_meta > span > span {
  position: relative;
  color: var(--body-color);
  font-weight: 300;
}
.product_meta > span > a:after,
.product_meta > span > span:after {
  content: ",";
  margin-right: 5px;
}
.product_meta > span > a:last-child:after,
.product_meta > span > span:last-child:after {
  display: none;
}
.product_meta > span > a:first-child,
.product_meta > span > span:first-child {
  margin-left: 7px;
}
.product_meta .color_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.product_meta .color_wrapper .color-tag {
  height: 32px;
  width: 34px;
  border-radius: 2px;
  display: inline-block;
}
.product_meta .color_wrapper .color-tag.style-yellow {
  background: #F7A408;
}
.product_meta .color_wrapper .color-tag.style-blue {
  background: #3A86FF;
}
.product_meta .color_wrapper .color-tag.style-green {
  background: #2DC86B;
}
.product_meta .color_wrapper .color-tag:after {
  display: none;
}
.product_meta .size_wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.product_meta .size_wrapper .size-tag {
  height: 38px;
  width: 38px;
  line-height: 38px;
  border-radius: 50%;
  background: var(--smoke-color3);
  text-align: center;
  display: inline-block;
}
.product_meta .size_wrapper .size-tag:after {
  display: none;
}
.product_meta .size_wrapper .size-tag:hover {
  background: var(--theme-color);
  color: var(--white-color);
}
.product_meta .print_wrapper {
  margin-top: 20px;
}
.product_meta .print_wrapper .shop-slider-indicator {
  display: inline-flex;
  gap: 10px;
}
.product_meta .print_wrapper .slider-indicator {
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 2px;
}
.product_meta .print_wrapper .slider-indicator.active {
  border: 1px solid var(--theme-color);
}
.product_meta .print_wrapper .slider-indicator img {
  height: 32px;
  width: 34px;
  object-fit: cover;
  border-radius: 2px;
}

.product-tab-area {
  margin-top: 55px;
}

.product-tab-style1 {
  border-bottom: 2px solid #EFEFEF;
  margin: 0px auto 40px auto;
  padding-bottom: 20px;
  gap: 30px 80px;
}
.product-tab-style1 .nav-link {
  background-color: transparent;
  color: var(--title-color);
  padding: 0;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
}
.product-tab-style1 .nav-link:after {
  content: "";
  height: 2px;
  background: var(--theme-color);
  width: 0;
  left: 0;
  bottom: -22px;
  position: absolute;
  transition: 0.4s all;
}
.product-tab-style1 .nav-link:hover, .product-tab-style1 .nav-link.active {
  color: var(--theme-color);
}
.product-tab-style1 .nav-link:hover:after, .product-tab-style1 .nav-link.active:after {
  width: 100%;
}

.woocommerce-table {
  margin-bottom: 0;
}

.woocommerce-Reviews .comments-wrap {
  padding: 0;
  box-shadow: none;
}
.woocommerce-Reviews .comment-form {
  background-color: transparent;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: var(--blog-space-y, 30px);
}
.woocommerce-Reviews .comment-form input,
.woocommerce-Reviews .comment-form .form-control {
  background-color: var(--white-color);
}
.woocommerce-Reviews .comment-form .blog-inner-title {
  margin-bottom: 10px;
}
.woocommerce-Reviews .comment-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  margin-bottom: 40px;
}
.woocommerce-Reviews .post-comment {
  padding: 40px !important;
  margin-bottom: 24px;
  background: var(--white-color);
  border: 0 !important;
  margin-bottom: 0;
}
.woocommerce-Reviews .post-comment .name {
  margin-bottom: 3px;
}
.woocommerce-Reviews .post-comment .commented-on {
  margin-bottom: 12px;
}
.woocommerce-Reviews .post-comment .text {
  margin-bottom: -0.5em;
}

/* Large devices */
@media (max-width: 1199px) {
  .woocommerce-Reviews .post-comment {
    padding: 30px !important;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .woocommerce-Reviews .comment-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .woocommerce-Reviews .comment-form {
    padding: 40px 20px;
  }
  .product-card.list-view {
    display: block;
  }
  .product-card.list-view .product-content {
    padding: 20px 0 0 0;
  }
}
.product-inner-list > ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.product-inner-list li {
  position: relative;
  padding-left: 15px;
}
.product-inner-list li:before {
  content: "-";
  position: absolute;
  left: 0;
}

.share-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--title-color);
  margin-bottom: 8px;
}
.share-title i {
  color: var(--theme-color);
}

.product-slider-wrap {
  background-color: var(--smoke-color3);
  text-align: center;
  border-radius: 6px;
  height: 100%;
  padding: 0 0 50px;
}
.product-slider-wrap .product-thumb {
  padding-top: 100px;
}
.product-slider-wrap .product-indicator {
  display: inline-flex;
  gap: 15px;
  margin-top: 40px;
}
.product-slider-wrap .product-indicator .indicator-btn {
  z-index: 99;
  position: relative;
  background-color: rgb(255, 255, 255);
  border-radius: 6px;
  width: 87px;
  height: 87px;
  display: inline-block;
  line-height: 85px;
  cursor: pointer;
  border: 1px solid var(--white-color);
}
.product-slider-wrap .product-indicator .indicator-btn.active {
  border: 1px solid var(--theme-color);
}
.product-slider-wrap .product-indicator .indicator {
  display: none;
}

.summary-content,
.product-about {
  padding-left: 8px;
  margin-top: -15px;
}
.summary-content .product-title,
.product-about .product-title {
  margin: -0.2em 0 15px 0;
  font-weight: 700;
  font-size: 36px;
}
.summary-content > .price,
.product-about > .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-color);
  display: block;
  margin-bottom: 25px;
  margin-right: 10px;
  font-family: var(--title-font);
  line-height: inherit;
}
.summary-content > .price del,
.product-about > .price del {
  color: #D3D3D3;
  font-weight: 400;
  margin-left: 13px;
}
.summary-content .product-rating,
.product-about .product-rating {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  position: relative;
  top: 2px;
  font-size: 16px;
  line-height: 20px;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
  margin-bottom: 25px;
}
.summary-content .product-rating .star-rating,
.product-about .product-rating .star-rating {
  width: 80px;
  font-size: 12px;
  margin-right: 8px;
}
.summary-content .product-rating .star-rating span:before,
.product-about .product-rating .star-rating span:before {
  color: var(--theme-color);
}
.summary-content .woocommerce-review-link,
.product-about .woocommerce-review-link {
  color: var(--body-color);
}
.summary-content .checklist,
.product-about .checklist {
  margin: 30px 0 40px 0;
}
.summary-content .checklist li,
.product-about .checklist li {
  font-weight: 400;
}
.summary-content .actions,
.product-about .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 33px 0 27px 0;
  align-items: center;
}
.summary-content .actions .btn,
.product-about .actions .btn {
  padding: 18px 30px;
}
.summary-content .actions .btn .btn-icon,
.product-about .actions .btn .btn-icon {
  padding: 10.5px 15px 10.5px 15px;
}
.summary-content .actions .icon-btn,
.product-about .actions .icon-btn {
  border-color: var(--theme-border-color);
}
.summary-content .actions .icon-btn:hover,
.product-about .actions .icon-btn:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}
.summary-content .share,
.product-about .share {
  margin-top: 25px;
}
.summary-content .social-btn a,
.product-about .social-btn a {
  --icon-size: 40px;
  line-height: 38px;
  font-size: 14px;
  border: 1px solid var(--theme-border-color);
  border-radius: 0;
}
.summary-content .social-btn a:hover,
.product-about .social-btn a:hover {
  border-color: var(--theme-color);
}
.summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt,
.product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt,
.product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt {
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: inline-block;
  border-radius: 10px;
}
.summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.summary-content .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before,
.product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus.no-txt::before,
.product-about .tinv-wishlist .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt::before {
  position: relative;
  top: 0;
  left: 0;
  line-height: inherit;
  margin: 0;
  font-size: 24px;
}
.summary-content .tinv-wishlist a,
.product-about .tinv-wishlist a {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 0;
}
.summary-content .tinv-wishlist a:hover,
.product-about .tinv-wishlist a:hover {
  background-color: var(--theme-color);
  color: var(--white-color);
}
.summary-content .quantity{
  position: relative;
  background: var(--title-color);
  border-radius: 5px;
  margin-right: 0px;
  height: 55px;
  padding: 0 50px 0 0;
}
.summary-content .quantity .qty-input,
.product-about .quantity .qty-input {
  height: 50px;
  width: 50px;
  background-color: transparent;
  color: var(--white-color);
  text-align: center;
  font-weight: 500;
  border-left: 0;
  border-right: 0;
}
.summary-content .quantity .qty-btn,
.product-about .quantity .qty-btn {
  color: var(--white-color);
  background-color: transparent;
  right: 10px;
  top: 3px;
  border: none;
  line-height: normal;
  height: auto;
  position: absolute;
  width: auto;
}
.summary-content .quantity .qty-btn.quantity-minus,
.product-about .quantity .qty-btn.quantity-minus {
  bottom: 3px;
  top: auto;
}

.product-details .comments-wrap {
  margin-top: 0;
}
.product-details .border-title {
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.product-details .border-title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 80px;
  background-color: var(--theme-color);
}

.product-inner-title {
  font-size: 32px;
  border-bottom: 1px solid var(--theme-border-color);
  padding: 0 0 7px 0;
  margin: 0 0 30px 0;
}

.related-product-wrapper {
  padding-top: 115px;
}

.woosq-product .thumbnails img {
  padding: 10px;
}

.woosq-product .thumbnails .slick-dots {
  bottom: auto;
  margin-top: 30px;
}
.woosq-product .thumbnails .slick-dots li ~ li {
  margin-left: 5px;
}
.woosq-product .thumbnails .slick-dots li button {
  background: var(--theme-color);
  position: relative;
}
.woosq-product .thumbnails .slick-dots li button:before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #fff;
  top: 14px;
  left: 14px;
}

#woosq-popup .single-product .product .tinvwl-shortcode-add-to-cart {
  display: none;
}

.mfp-woosq .mfp-close {
  width: 44px;
  height: 44px;
  line-height: initial;
}

/* Medium Large devices */
@media (max-width: 1399px) {
  .product.list-view .product-img {
    max-width: 150px;
  }
  .woocommerce-Reviews .post-comment {
    display: block;
  }
  .woocommerce-Reviews .post-comment .comment-avater img {
    width: auto;
    margin: 0 0 30px;
  }
}
/* Medium Large devices */
@media (max-width: 1299px) {
  .product-thumb-tab {
    --thumb: 100px;
    margin-left: -40px;
  }
  .product-thumb-area {
    margin-right: 0;
  }
}
/* Large devices */
@media (max-width: 1199px) {
  .shop-sort-bar select {
    min-width: auto;
  }
  .summary-content,
  .product-about {
    padding-left: 0;
    margin-top: 35px;
  }
  .summary-content .actions, .product-about .actions {
    margin: 0;
  }
  .product-big-img .img {
    height: 540px;
  }
  .product-slider-wrap .product-indicator .indicator-btn {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
  .product-slider-wrap {
    padding: 0 0 30px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .product-thumb-tab {
    margin-left: -10px;
  }
  .product-box.list-view .product-img {
    max-width: 150px;
  }
  .shop-sort-bar .row {
    --bs-gutter-x: 20px;
  }
  .shop-sort-bar .nav a:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .shop-sort-bar .nav a:last-child:before {
    display: none;
  }
  .woosq-product > .product .thumbnails {
    max-height: 400px;
    min-height: 200px;
    padding: 10px;
  }
  .woocommerce-Reviews .comment-item ~ .comment-item {
    margin-top: 20px;
  }
}
/* Small devices */
@media (max-width: 767px) {
  .shop-sort-bar {
    text-align: center;
  }
  .shop-sort-bar .nav {
    justify-content: center;
  }
  .shop-sort-bar .single-select,
  .shop-sort-bar select {
    margin: 0 auto;
    width: 100%;
  }
  .shop-sort-bar .woocommerce-result-count {
    padding-left: 0;
  }
  .product-box.list-view .product-img {
    max-width: 130px;
  }
  .product-box.list-view .actions {
    --btn-size: 30px;
    --btn-font-size: 10px;
    --icon-gap-x: 2px;
  }
}
/* Extra small devices */
@media (max-width: 575px) {
  .product-about .actions {
    gap: 15px 15px;
  }
  .product-thumb-tab {
    --thumb: 74px;
    --gap: 6px;
  }
  .product-thumb-tab .tab-btn {
    border-radius: 6px;
  }
  .product-thumb-tab .tab-btn:not(:last-of-type) {
    margin-bottom: 10px;
  }
  .product-thumb-tab .indicator {
    border-radius: 6px;
  }
  .product-big-img {
    margin-left: 28px;
  }
  .product-big-img .img {
    height: 370px;
  }
  .summary-content .product-title, .product-about .product-title {
    font-size: 32px;
  }
  .summary-content > .price, .product-about > .price {
    font-size: 24px;
    margin-bottom: 9px;
  }
  .product-tab-area {
    margin-top: 40px;
  }
  .product-tab-style1 {
    border: 0;
    gap: 15px;
  }
  .product-tab-style1 .nav-link:after {
    bottom: -4px;
  }
}
/* Extra small devices */
@media (max-width: 375px) {
  .product.list-view .product-img {
    max-width: 130px;
  }
  .product-slider-wrap .product-indicator .indicator-btn {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .product-slider-wrap .product-indicator {
    gap: 10px;
  }
  .summary-content .product-title, .product-about .product-title {
    font-size: 28px;
  }
}
/*------------------- 4.00. Portfolio -------------------*/
/*------------------- 4.00. instagram -------------------*/
/*Blog Instagram***********/
.blog-instagram-wrap {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, 1fr);
}

.single-blog-instagram-wrap {
  border-radius: 5px;
  overflow: hidden;
  position: relative;
}
.single-blog-instagram-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.single-blog-instagram-wrap .blog-instagram-wrap-details {
  position: absolute;
  text-align: center;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.single-blog-instagram-wrap .blog-instagram-wrap-icon {
  display: block;
  font-size: 30px;
  color: var(--white-color);
  opacity: 0;
  transition: 0.4s;
}
.single-blog-instagram-wrap:hover img {
  transform: scale(1.1);
}
.single-blog-instagram-wrap:hover .blog-instagram-wrap-icon {
  opacity: 1;
}

/*=================================
    05. Spacing
==================================*/
/*-- Padding Left And Right --*/
.px-5 {
  padding-right: 5px;
  padding-left: 5px;
}

.px-10 {
  padding-right: 10px;
  padding-left: 10px;
}

.px-15 {
  padding-right: 15px;
  padding-left: 15px;
}

.px-20 {
  padding-right: 20px;
  padding-left: 20px;
}

.px-25 {
  padding-right: 25px;
  padding-left: 25px;
}

.px-30 {
  padding-right: 30px;
  padding-left: 30px;
}

.px-35 {
  padding-right: 35px;
  padding-left: 35px;
}

.px-40 {
  padding-right: 40px;
  padding-left: 40px;
}

.px-45 {
  padding-right: 45px;
  padding-left: 45px;
}

.px-50 {
  padding-right: 50px;
  padding-left: 50px;
}

/*-- Padding Top And Bottom --*/
.py-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.py-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.py-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.py-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.py-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.py-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pt-105 {
  padding-top: 105px;
}

/*-- margin Left And Right --*/
.mx-5 {
  margin-right: 5px;
  margin-left: 5px;
}

.mx-10 {
  margin-right: 10px;
  margin-left: 10px;
}

.mx-15 {
  margin-right: 15px;
  margin-left: 15px;
}

.mx-20 {
  margin-right: 20px;
  margin-left: 20px;
}

.mx-25 {
  margin-right: 25px;
  margin-left: 25px;
}

.mx-30 {
  margin-right: 30px;
  margin-left: 30px;
}

.mx-35 {
  margin-right: 35px;
  margin-left: 35px;
}

.mx-40 {
  margin-right: 40px;
  margin-left: 40px;
}

.mx-45 {
  margin-right: 45px;
  margin-left: 45px;
}

.mx-50 {
  margin-right: 50px;
  margin-left: 50px;
}

/*-- margin Top And Bottom --*/
.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.my-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.my-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.my-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.my-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.my-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.my-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.my-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

/*-- margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

/*-- margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

/*-- margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

/*-- margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-n1 {
  margin-top: -0.25rem;
}

.mt-n2 {
  margin-top: -0.65rem;
}

.mt-n3 {
  margin-top: -0.8rem;
}

.mt-n4 {
  margin-top: -1.5rem;
}

.mt-n5 {
  margin-top: -3rem;
}

.mb-n1 {
  margin-bottom: -0.25rem;
}

.mb-n2 {
  margin-bottom: -0.6rem;
}

.mb-n3 {
  margin-bottom: -0.8rem;
}

.mb-n4 {
  margin-bottom: -1.5rem;
}

.mb-n5 {
  margin-bottom: -3rem;
}

.space,
.space-top {
  padding-top: var(--section-space);
}

.space,
.space-bottom {
  padding-bottom: var(--section-space);
}

.space-extra,
.space-extra-top {
  padding-top: calc(var(--section-space) - 30px);
}

.space-extra,
.space-extra-bottom {
  padding-bottom: calc(var(--section-space) - 30px);
}

.space-extra2,
.space-extra2-top {
  padding-top: calc(var(--section-space) - 40px);
}

.space-extra2,
.space-extra2-bottom {
  padding-bottom: calc(var(--section-space) - 40px);
}

/* Medium devices */
@media (max-width: 991px) {
  .space,
  .space-top {
    padding-top: var(--section-space-mobile);
  }
  .space,
  .space-bottom {
    padding-bottom: var(--section-space-mobile);
  }
  .space-extra,
  .space-extra-top {
    padding-top: calc(var(--section-space-mobile) - 30px);
  }
  .space-extra,
  .space-extra-bottom {
    padding-bottom: calc(var(--section-space-mobile) - 30px);
  }
  .space-top-md-none {
    padding-top: 0;
  }
  .space-extra2,
  .space-extra2-top {
    padding-top: 70px;
  }
  .space-extra2,
  .space-extra2-bottom {
    padding-bottom: 70px;
  }
  .pb-105 {
    padding-bottom: 65px;
  }
  .pt-105 {
    padding-top: 65px;
  }
}
/*=================================
    RTL
==================================*/
/*------------------- Dark Theme -------------------*/
.dark-theme {
  --smoke-color3: #00061E;
  --smoke-color: #B4B7C6;
  --theme-border-color: #363636;
  --smoke-color2: #00030f;
  --gray-color: #E5E9F5;
}
.dark-theme body {
  background: #00020a;
}
.dark-theme .light-logo {
  display: none;
}
.dark-theme .dark-logo {
  display: inline-block;
}
.dark-theme .social-btn.style3 a {
  color: var(--white-color);
}
.dark-theme .header-layout1 .header-middle .icon-btn:hover {
  background: var(--white-color);
  color: var(--title-color);
}

.dark-theme .sec-title {
  color: var(--white-color);
}
.dark-theme .top-news-slider .slick-dots {
  background: #00020a;
}
.dark-theme .bg-smoke2 .top-news-slider .slick-dots {
  background: var(--smoke-color2);
}
.dark-theme .contact-form-wrap,
.dark-theme .contact-info .contact-info_title,
.dark-theme th,
.dark-theme .product-tab-style1 .nav-link,
.dark-theme .product_meta > span,
.dark-theme .summary-content .product-title, .dark-theme .product-about .product-title,
.dark-theme .product-card .price,
.dark-theme .product-card .product-title,
.dark-theme .comments-wrap .name,
.dark-theme .blog-inner-title,
.dark-theme .widget_title,
.dark-theme .recent-post .post-title,
.dark-theme .link-btn,
.dark-theme .wp-block-tag-cloud .title, .dark-theme .tagcloud .title,
.dark-theme .post-single .post-title, .dark-theme .post-single .blog-title, .dark-theme .blog-card .post-title, .dark-theme .blog-card .blog-title,
.dark-theme .error-wrap .error-title,
.dark-theme .error-wrap .error-subtitle,
.dark-theme .checklist li,
.dark-theme .sec-title2,
.dark-theme .sub-title,
.dark-theme .breadcumb-wrapper,
.dark-theme .single-blog-post.style4,
.dark-theme .single-blog-post.style-grid2,
.dark-theme .single-blog-post.style-grid {
  --title-color: #ffffff;
}
.dark-theme .subscribe-wrap {
  background: #15284C;
  border-color: #15284C;
}
.dark-theme .subscribe-wrap .subscribe-wrap-title {
  color: var(--white-color);
}
.dark-theme .subscribe-wrap .newsletter-form .form-group input {
  box-shadow: 0px 6px 26px 0px var(--title-color);
}
.dark-theme .social-btn.style4 a:has(.fa-instagram),
.dark-theme .social-widget.style2 .single-social-widget:has(.fa-instagram) {
  background: var(--theme-color);
}
.dark-theme blockquote, .dark-theme .wp-block-quote {
  background: #15284C;
}
.dark-theme blockquote cite,
.dark-theme blockquote p, .dark-theme .wp-block-quote cite,
.dark-theme .wp-block-quote p {
  color: var(--white-color);
}
.dark-theme .blog-author {
  background: #15284C;
}
.dark-theme .blog-author .author-name {
  color: var(--white-color);
}
.dark-theme .popup-subscribe {
  background: #15284C;
}
.dark-theme .popup-subscribe .popupClose {
  color: var(--white-color);
}
.dark-theme .popup-subscribe input[type=checkbox] ~ label {
  color: var(--white-color);
}

 



.comment-metadata time {
  text-transform: capitalize !important;
  margin: 0 !important;
}

.cat-links a{
  padding: 0px 12px;
}

span.comments-link {

  margin-left: 10px;
}


h1.entry-title {
  font-size: 32px;
}
.comments-title {
  font-size: 18px;

}
.post-img .blog-img img.custom-class{
width: 100%;
overflow: hidden;
position: relative;
z-index: 3;
border-radius: 10px 10px 0 0;
}
img.custom-class{
  min-width: 100%;
  border-radius: 10px 10px 0 0;
  transform: scale(1.02);
  transition: 0.4s ease-in-out;
}
img.wp-image-229 {
  width: 100%;
}
.entry-title{
  border-top: 1px solid var(--theme-border-color);
  margin-top: 15px;
  padding-top: 15px;
}
.entry-header h1.entry-title {
  padding-top: 15px;
}

h2.entry-title a{
  color: #000000;
}
.post-contents.with-thum-img.blog-content {
  padding: 30px;
}
.post-contents .post-button{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

/* .row  */
.blog-page-with-sidebar .card{
  padding: 0 !important;
}
.post-title a h1{
  font-size: 1.2em;
}


/* comment css  */
.comment-body .reply a:before{
  display: none;
} 
.comment-body .reply a:after {
  content: "\f3e5";
  position: absolute;
  color: #000000;
  right: -15px;
  top: 0;
}

.comment .comment-content {
  position: relative;
  padding-left: 15px; 
  margin-top: -10px;
}

a.url.fn.n {
  margin-left: -20px;
}

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



img.attachment-thumbnail.size-thumbnail.wp-post-image {
  width: 120px;
  height: 120px;
}
                                  

.blog-post-meta a.post-date {
  color:#7b7e86 !important;
}


.social-media-share{
  display: flex;
  justify-content: left;

}
.post-button.tagcloud-row .share-this-post {
  display: flex;
  justify-content: flex-end;
}
.social-media-share ul{
  display: flex;

}
.social-media-share ul>li{
  list-style: none;
}
.social-media-share ul>li a{
  margin-right: 5px;
}
.social-media-share ul>li i{
font-size: 18px;
}



/* social media acceciblity code  start */
.social-media-share {
  display: inline-flex;
  /* Keeps icons in a row */
  list-style-type: none;
  /* Removes default list styling if it's used on a <ul> */
  padding: 0;
  margin: 0;
}

.social-media-share a {
  display: inline-block;
  text-decoration: none;
  /* Removes underlines */
  padding: 8px;
  border-radius: 4px;
  background-color: #0073e6;
  /* Ensure background color has sufficient contrast */
  color: white;
  /* Ensure text/icon color has sufficient contrast */
  font-size: 16px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.social-media-share a:focus,
.social-media-share a:hover {
  outline: none;
  /* Remove default outline */
  background-color: #fff;
  /* Darker background for hover/focus */
  box-shadow: 0 0 0 3px #fff;
  /* Custom focus style */
}

.social-media-share a:focus-visible {
  outline: 2px dotted var(--theme-color) !important;
  /* Show focus outline only when keyboard navigating */
  outline-offset: 2px;
}

.social-media-share a[aria-label]::after {
  content: ' (opens in a new tab)';
  font-size: 0;
  position: absolute;
  left: -9999px;
  /* Hide visually but keep accessible */
}

@media (prefers-reduced-motion: reduce) {
  .social-media-share a {
    transition: none;
    /* Disable animations if user prefers reduced motion */
  }
}

a.post-title-color.top-news-front-page {
  color: #ffffff;
}

p.logged-in-as, .comment-form-comment label{
   margin-left: 0px;
}

.form-submit input#submit {
  width: 35%;
  font-size: 14px;
}
input#quantity_6645d65933a88 {
  font-size: 22px;
  color:#000;
}
input#quantity_6645d739b0a01 {
  color: #000;
}
.quantity .input-text> .text{
  color:#000;

}

.widget.widget_recent_entries {
  margin-top: 25px;
}
.no-image-border{
  border: 1px solid #eee;
}
a.components-button.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained {
  background: var(--theme-color);
  color: var(--white-color);
  border-radius: 10px;
  margin-top: 20px;
}
a.components-button.wc-block-components-button.wp-element-button.wc-block-cart__submit-button.contained:hover{
background: var(--title-color);
}

p.woocommerce-noreviews {
    padding-left: 10px;
}

.review .comment_container{
  display: flex;
}
.review .comment_container img{
  max-width: 100%;
  height: 100%;
  border-radius: 50%;
  margin-right: 30px;
}
.single-blog-post a img.img-styles {
  height: 109px;
  width: 109px;
  object-fit: cover;
}

.post-img .post-img-size{
width: 275px;
height: 150px;
object-fit: cover;
}
.img-rounded .post-images-sizes{
  width: 150px  !important;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
}

.more-btn-css {
  padding: 5px 20px;
  background-color: var(--theme-color);
  color: var(--white-color) !important;
  margin: 30px auto;
  display: inline-flex;
  border-radius: 3px;
}
.more-btn-css:hover {
  background-color: var(--white-color);
  color: var(--theme-color) !important;
  border:none;
}
.single-blog-post.style-grid .post-img.img-rounded.height-width img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}
.post-meta-item.blog-meta ul.post-categories {
  display: flex;
  margin: 0 0 0 -60px;

}
.post-meta-item.blog-meta ul.post-categories li {
  margin-right: 10px;
  padding: 2px 7px;
  border-radius: 5px;
  margin-left: -10p;
}
img.video-img-size{
  height: 100px;
  min-width: 180px;
  object-fit: cover;
}

footer#colophon {
  background-repeat: no-repeat;
}
.post-meta-item.blog-meta a.blog-meta-author {
  margin-left: -10px;
}
ul.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 18px 0;
  margin: 0;
}

ul.breadcrumb li a {
  font-family: var(--body-font);
  text-decoration: none;
  color: var(--title-color);
  font-size: 12px;
  font-weight: 400;
}
.dark-theme ul.breadcrumb li a,
.dark-theme ul.breadcrumb li.separator{
  color: var(--white-color);
}
ul.breadcrumb li {
  display: flex;
  align-items: center;
}


ul.breadcrumb li a:hover {
  text-decoration: underline;
}

ul.breadcrumb li.separator {
  margin: 0 5px;
  color: var(--title-color);
}
input#quantity_6661bc322a306 {
  color: #000 !important;
}
.page.type-page.status-publish.hentry{
  padding: 10px;
}
.blogs-images-sizes{
  width: 100%;
  height: 525px !important;
  object-fit: cover;
}

.margin-right-10{
  margin-right: 10px;
}
.middle-ads-banner img{
  width: 80%;
  height: 90px;
  object-fit: cover;
}
.left-side-ads img{
  width: 100%;
  height: 125px;
  object-fit: cover;
}
ul.breadcrumb li:last-child {
  font-family: var(--body-font);
  color:var(--body-color);
  font-size: 12px;
  font-weight: 400;
}
label.wp-block-search__label {
  color: var(--title-color) !important;
  margin-top: 7px;
}
.dark-theme label.wp-block-search__label {
  color: var(--white-color) !important;
  margin-top: 7px;
}
.widget.footer-widget>h3.widget_title {
  color: var(--theme-color);
}
.form-submit input#submit:hover{
  background: var(--title-color);
}

button.components-button.wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained:hover{
    background: var(--title-color);
    color: var(--white-color);
}

.woocommerce-product-attributes-item__value p{
  font-size: 14px;
}
.breadcrumb-space-bottom{
  padding-bottom: 30px;
  padding-top: 30px;
}

.widget_recent_comments ol, .widget_recent_comments ul, .wp-block-latest-comments ol, .wp-block-latest-comments ul {
  margin-left: 0;
}




.dark-theme .widget_rss ul .rssSummary, .wp-block-rss ul .rssSummary {
  color: #ffffff;
}
.dark-theme .widget_rss ul cite, .wp-block-rss ul cite,
.dark-theme .widget_rss ul .rsswidget, .wp-block-rss ul .rsswidget,
.dark-theme .widget_rss ul .rss-date, .wp-block-rss ul .rss-date,
.dark-theme .contact-form-wrap,
 .dark-theme .contact-info .contact-info_title, 
 .dark-theme th, .dark-theme .product-tab-style1 .nav-link, 
 .dark-theme .product_meta > span, 
 .dark-theme .summary-content .product-title, 
 .dark-theme .product-about .product-title, 
 .dark-theme .product-card .price, 
 .dark-theme .product-card .product-title, 
 .dark-theme .comments-wrap .name, 
 .dark-theme .blog-inner-title, 
 .dark-theme .widget_title, 
 .dark-theme .recent-post .post-title, 
 .dark-theme .link-btn, 
 .dark-theme .wp-block-tag-cloud .title, 
 .dark-theme .tagcloud .title, 
 .dark-theme .post-single .post-title, 
 .dark-theme .post-single .blog-title, 
 .dark-theme .blog-card .post-title, 
 .dark-theme .blog-card .blog-title, 
 .dark-theme .error-wrap .error-title, 
 .dark-theme .error-wrap .error-subtitle, 
 .dark-theme .checklist li, 
 .dark-theme .sec-title2, 
 .dark-theme .sub-title, 
 .dark-theme .breadcumb-wrapper, 
 .dark-theme .single-blog-post.style4, 
 .dark-theme .single-blog-post.style-grid2, 
 .dark-theme .single-blog-post.style-grid, 
 .dark-theme .comment-reply-title, 
 .dark-theme .wp-block-heading, 
 .dark-theme ul.breadcrumb li:last-child, 
 .dark-theme .comment-form-comment>label, 
 .dark-theme .error-404.not-found .page-header>h2, 
 .dark-theme .product-about .product_title.entry-title, 
 .dark-theme .related.products h2, 
 .dark-theme .entry-header h2.entry-title, 
 .dark-theme .woocommerce-MyAccount-navigation>ul>li, 
 .dark-theme .entry-content h2,  
 .dark-theme .entry-content>ul>li, 
 .dark-theme .entry-content>ol>li, 
 .dark-theme .entry-content>address, 
 .dark-theme .entry-content>h1, 
 .dark-theme .entry-content>h2, 
 .dark-theme .entry-content>h3, 
 .dark-theme .entry-content>h4, 
 .dark-theme .entry-content>h5, 
 .dark-theme .entry-content>h6, 
 .dark-theme .comment-content h1, 
 .dark-theme .comment-content h2, 
 .dark-theme .comment-content h3, 
 .dark-theme .comment-content h4, 
 .dark-theme .comment-content h5, 
 .dark-theme .comment-content h6, 
 .dark-theme span.wc-block-components-checkbox__label,
 .dark-theme .entry-content>ul>li a,
 .dark-theme .entry-content.post-content.blog-text p{
  color:var(--white-color) !important;
}
.dark-theme .comment-form,
.dark-theme .post-details,
.dark-theme .blog-single, 
.dark-theme .sidebar-area .widget, 
.dark-theme .widget, 
.dark-theme .post-single,
.dark-theme .blog-card, 
.dark-theme .woocommerce-Price-amount.amount bdi{
  background: #00061E;
}
.dark-theme .sidemenu-wrapper .sidemenu-content {
  background: #00061E;
}
.dark-theme .wp-block-calendar th, .dark-theme .calendar_wrap th {
  color: #00061E !important;
}
.dark-theme .footer-widget {
  background: transparent;
}
a.hero-post-img>img{
  height: 410px !important;
}
.btn-wrap>a.btn.style-small {
  color: white;
}

.hero-row-flex{
  display: flex !important;
}
.customize-control-kirki-divider > hr {
  border: 13px solid green !important;
}
.brighter-blog-custom-divider{
  border: 13px solid green !important;
}
.most-popurlar-news-img img{
  height: 585px !important;
  object-fit: cover;
  width: 100%;
}
.round-img1 img{
width: 125px !important;
height: 125px !important;
object-fit: cover;
}
@media (max-width: 575px) {
  .most-popurlar-news-img img{
    height: 220px !important;
    object-fit: cover;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .most-popurlar-news-img img{
    height: 290px !important;
    object-fit: cover;
    width: 100%;
  }
}



/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: var(--smoke-color);
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: var(--theme-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;
}
h2.post-title.blog-title.single-blog-title{
  color: var(--title-color);
  font-family: var(--title-font);
}
.dark-theme .post-title.blog-title.single-blog-title{
  color: var(--white-color);
}

h2.post-title.blog-title.single-blog-title {
  margin-top: 17px;
}
.wp-block-image{
  overflow: hidden;
}


.wp-block-image.size-full{
  overflow: visible;
}

.entry-content > .wp-block-group, .entry-content > .wp-block-cover, .entry-content > .wp-block-columns{
  padding: 3em;

}

.wp-block-group__inner-container > p{
  margin-bottom: 0;
}


h1.wp-block-site-title > a{
  color: var(--black-color);
}
.dark-theme .wp-block-site-title > a{
  color: var(--white-color);
}
.wp-block-query-pagination > .wp-block-query-pagination-numbers > span.page-numbers.current{
  background: transparent;
  color: #4169e1;
}
footer.wp-block-latest-comments__comment-meta > a.wp-block-latest-comments__comment-author{
 color: var(--body-color);
}
.entry-content.post-content.blog-text ul > li > a{
  color: var(--body-color);
}

figure.wp-block-table.is-style-regular > figcaption.wp-element-caption{
  text-align: left;
}
figcaption.blocks-gallery-caption{
  text-align: left;
}
.wp-block-embed figcaption{
  text-align: left;
}
.wp-block-pullquote.is-style-solid-color blockquote{
  max-width: 100%;
}
.wp-block-pullquote.is-style-solid-color blockquote p{
  line-height: 1;
}
.wp-block-cover__inner-container > p{
  margin-bottom: 0;
}
a{
  text-decoration: underline;
}
.comments-wrap{
  padding-top: 72px;
}


.blog-remove-margin-top{
  margin-top: 0;
}

.menu-item-has-children a{
  color: var(--theme-color);
}

.remove-text-decoration, .style-underline-none{
  text-decoration: none;
}

.single-blog-post > a, 
.post-title >a, 
.post-wrap-details >a,
.blog-post-meta > a
{
  text-decoration: none;
}


.round-item-color > a, 
.post-wrap-details a{
  color: var(--body-color);
}

.post-wrap-details>.color-white, 
.color-white{
  color: #ffffff ;

}
a.post-category.p-none-css.font-size-14.style-underline-none {
  display: inline;
  padding: 8px 15px;
}


ul.page-numbers > li > a{
  text-decoration: none;
}
.social-media-share > ul >li > a{
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
}

.continue-reading {
  text-align: right;
}

/*Small Screen*/
@media only screen and (max-width: 768px) {
  .continue-reading {
    text-align: center;
    padding-top: 15px;
  }
  .social-media-share ul{
    margin: 0;
    padding: 0;
  }
  .social-btn {
    display: flex;
    justify-content: center;
  }
}
.post-button.tagcloud-row .tagcloud a {
  color: var(--white-color);
}

/*Large screen*/
@media only screen and (min-width: 768px) {
  .row.post-button.tagcloud-row{
    gap: 0;
  }
  .social-btn{
    display: block;
  }
  .social-btn.style3{
    display: flex;
  }
}

a.comment-reply-link , 
.comment-content > p > a , 
.logged-in-as a{
  text-decoration: none;
}
.nav-links{
  font-weight: 600;
}
.brighter-blog-footer-hide{
  display: none;
}
.brighter-blog-footer-show{
  display: block;
}
a.button.product_type_variable.add_to_cart_button,
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart,
a.reset_variations,
.product-content> .product-title > a,
.pagination > ul > li > a, 
.product-about > a, 
.product_meta a, 
.reviews_tab > a
{
  text-decoration: none;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
  color: white;
}

.widget.widget-recent-post {
  padding: 0;
}

.dark-theme h2.wp-block-heading {
  color: var(--white-color);
}
.list-style-type-none li{
  color: var(--body-color);
}

.sidebar-mt{
  margin-top: 85px;
}
@media (max-width: 767px) {
  .sidebar-mt{
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .sidebar-mt{
    margin-top: 20px;
  }
}
a.single-social-widget, 
.recent-post .recent-post-meta a  {
  text-decoration: none;
}

form.wpcf7-form.init {
  display:flex;
  justify-content: center;
  align-items: center;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
  margin-top: 32px;
  margin-left: 10px;
}
input.wpcf7-form-control.wpcf7-email {
  margin-top: 0;
}

.wp-block-query-pagination > .wp-block-query-pagination-numbers > span.page-numbers.current{
  background: transparent;
  color: #4169e1;
}
footer.wp-block-latest-comments__comment-meta > a.wp-block-latest-comments__comment-author{
 color: var(--body-color);
}
.entry-content.post-content.blog-text ul > li > a{
  color: var(--body-color);
}

figure.wp-block-table.is-style-regular > figcaption.wp-element-caption{
  text-align: left;
}
figcaption.blocks-gallery-caption{
  text-align: left;
}
.wp-block-embed figcaption{
  text-align: left;
}
.wp-block-pullquote.is-style-solid-color blockquote{
  max-width: 100%;
}
.wp-block-pullquote.is-style-solid-color blockquote p{
  line-height: 1;
}
.wp-block-cover__inner-container > p{
  margin-bottom: 0;
}
a{
  text-decoration: underline;
}
 
.blog-remove-margin-top{
  margin-top: 0;
}

.remove-text-decoration, .style-underline-none{
  text-decoration: none;
}

.single-blog-post > a, 
.post-title >a, 
.post-wrap-details >a,
.blog-post-meta > a
{
  text-decoration: none;
}

.post-wrap-details>.color-white,
 .color-white{
  color: #ffffff;

}
a.post-category.p-none-css.font-size-14.style-underline-none {
  display: inline;
  padding: 8px 15px;
}

.entry-content.post-content.blog-text p {
  overflow: hidden;
}

ul.page-numbers > li > a{
  text-decoration: none;
}
.social-media-share > ul >li > a{
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
}

.continue-reading {
  text-align: right;
}

/*Small Screen*/
@media only screen and (max-width: 768px) {
  .continue-reading {
    text-align: center;
    padding-top: 15px;
  }
  .social-media-share ul{
    margin: 0;
    padding: 0;
  }
  .social-btn {
    display: flex;
    justify-content: center;
  }
}

/*Large screen*/
@media only screen and (min-width: 768px) {
  .row.post-button.tagcloud-row{
    gap: 0;
  }
  .social-btn{
    display: block;
  }
  .social-btn.style3{
    display: flex;
  }
}

a.comment-reply-link , .comment-content > p > a , .logged-in-as a{
  text-decoration: none;
}
.nav-links{
  font-weight: 600;
}
.brighter-blog-footer-hide{
  display: none;
}
.brighter-blog-footer-show{
  display: block;
}

a.button.product_type_variable.add_to_cart_button, 
a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart,
a.reset_variations,
.product-content> .product-title > a,
.pagination > ul > li > a,
.product-about > a,
.product_meta a, 
.reviews_tab > a
{
  text-decoration: none;
}

ul#primary-menu {
  padding-top: 1px;
}


.menu-item>a{
  color: black;
}
.dark-theme .widget.widget_nav_menu .menu-item>a {
  color: var(--white-color);
}
.ad-banner-wrap:focus{
  border-color: var(--theme-color)!important;
}
.ad-banner-wrap a img.ads-img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.ad-banner-wrap a.header-ads-top {
  width: 50%;
  display: block;
  margin: 0 auto;
}
a.post-category.font-size-14.hero-2post-cat {

  display: inline-block;
  padding: 6px 12px;
}
a.post-category.style-underline-none {
  display: inline-block !important;
  padding: 6px 12px !important;
}

a.post-img.img-rounded.height-width:focus, 
a.post-img.img-rounded.round-img1.style-underline-none:focus, 
a.post-img.img-radius-5:focus, 
a.post-img:focus{
  outline: 2px dotted var(--theme-color) !important;
}

.dark-theme ul.wp-block-archives-list.wp-block-archives >li >a,
.dark-theme a.wp-block-latest-posts__post-title{
  color: var(--white-color);
}


ul.wp-block-archives-list.wp-block-archives li,
ul.wp-block-categories-list.wp-block-categories li,
.widget_archive ul > li
{
  margin-top: 15px;
}

.dark-theme .menu-testing-menu-container ul > li > a, 
.dark-theme .wp-block-list > li,
.dark-theme figure.wp-block-table.is-style-regular > table, 
.dark-theme .wp-element-caption,
.dark-theme .wp-block-post-date, 
.dark-theme .wp-block-rss__item-title
{
  color: var(--white-color);
}

.entry-content p{
  overflow: hidden;
}

.header-middle-logo.site-branding h2.site-title>a{
  color: var(--theme-color);
}
.dark-theme .header-middle-logo.site-branding h2.site-title>a{
  color: var(--white-color);
}
header .site-branding h2.site-title a,
header .theme-logos h2.site-title a{
  color: var(--theme-color);
}
.dark-theme .site-branding h2.site-title a,
.dark-theme .theme-logos h2.site-title a{
  color: var(--white-color);
}
.dark-theme nav.main-menu ul li a:hover{
  color:var(--theme-color);
}

.dark-theme a.blog-meta-author,
.dark-theme .content-category,
.dark-theme .content-date{
  color: #ffffff;
}

span.nav-title {
  width: 260px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  padding:0px 2px;
}

.dark-theme h2.entry-title a,
.dark-theme span.posted-on,
.dark-theme span.byline,
.dark-theme span.cat-links,
.dark-theme span.tags-links,
.dark-theme ol li,
.dark-theme ul li,
.dark-theme figcaption{
  color: var(--white-color);
}

button.searchBoxToggler.simple-icon:focus, 
button.searchBoxToggler.simple-icon:active{
  outline: 2px dotted var(--white-color);
}
.theme-switcher button:focus,
.social-btn.style5 a:focus,
.social-media-share > ul >li > a:focus
 {
  outline: 2px dotted var(--theme-color);
}

.popup-search-box button.searchClose:focus
 {
  outline: 2px dotted var(--title-color);
}

.single-blog-post.style4 .post-img.video-wrap>img.vid-h-w{
  height:55vh;
  width:100%;
  object-fit: cover;
}

.single-blog-post.style-grid .post-img.img-radius-5.video-wrap img.post-img-wh{
  height:110px; 
  width:125px;
  object-fit: cover;
}

.single-blog-post.style-grid2 .post-img>img.more-post-img-wh {
  width: 250px;
  height:230px;
  object-fit: cover;
}
.single-blog-post .post-img img.trend-post-img-wh {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.single-blog-post.style-grid2 .post-img img.more-two-img-wh {
  width: 360px;
  height: 250px;
  object-fit: cover;
}

.single-blog-post.style-grid .post-img img.more-second--img-wh{
  height:110px; 
  width:110px;
  object-fit: cover;
}

.single-blog-post.style2 .post-img img.top-post-h, 
.single-blog-post.style3 .post-img img.trending-post-img-h,
.single-blog-post.style3 .post-img img.editor-post-img-h{
  width: 100%;
  height:190px;
  object-fit: cover;
}
.single-blog-post .post-img img.hero-post-img-wh{
  width: 100%;
  height: 400px;
  object-fit: cover;
}

@media only screen and (max-width: 768px) {
  .single-blog-post.style4 .post-img.video-wrap>img.vid-h-w{
    width: 100%;
    height: 50vh;
  }
  .single-blog-post.style-grid2 .post-img>img.more-post-img-wh {
    width: 100% ;
  }
  .single-blog-post .post-img img.trend-post-img-wh {
    height: 200px;
  }
  .single-blog-post.style-grid2 .post-img img.more-two-img-wh {
    width: 100%;
  }
  .single-blog-post .post-img img.hero-post-img-wh{
    height: 300px;

  }
}

h2.post-title.blog-title.single-blog-title a {
  font-size: 36px;
}

.dark-theme .entry-content.post-content.blog-text b, 
.dark-theme .entry-content.post-content.blog-text p strong,
.dark-theme .entry-content.post-content dl dt,
.dark-theme .entry-content.post-content dl dd ,
.dark-theme .entry-content.post-content address,
.dark-theme .post-password-form label{
  color: var(--white-color);
}
.dark-theme .entry-content.post-content table tbody tr td{
color:#857b7b;
}
.dark-theme figure.wp-block-table table {
  color: #836c6c;
}

.dark-theme figure.wp-block-table table tbody tr, td, th {
  border: 1px solid rgb(151, 140, 140) !important;
}


.widget.footer-widget h5.wp-block-heading {
  color: var(--white-color);
}

ul li a.wp-block-latest-posts__post-title::before,
ul.wp-block-archives-list li a::before,
ul.wp-block-categories-list li.cat-item a::before {
  content: '\f101';
  font-family: 'Font Awesome 6 Free';
  font-size: 16px;
  position: absolute;
  font-weight: 600;
  left: 12px !important;
  margin-left: 20px;
  margin-top: 3px;
}

.widget.widget_archive ul li a,
.widget.widget_categories ul li a,
.widget.widget_pages ul li a,
.widget.widget_meta ul li a,
.widget.widget_nav_menu div ul li a,
.wp-block-latest-posts__list li a {
  margin-left: 20px;
}
.footer-wrapper.widget.widget_archive ul li a,
.footer-wrapper .widget.widget_categories ul li a,
.footer-wrapper .widget.widget_pages ul li a,
.footer-wrapper .widget.widget_meta ul li a,
.footer-wrapper .widget.widget_nav_menu div ul li a {
  margin-left: 0px;
}
.widget.widget_archive ul li a::before,
.widget.widget_categories ul li a::before,
.widget.widget_pages ul li a::before,
.widget.widget_meta ul li a::before,
.widget.widget_nav_menu div ul li a::before {
  content: '\f101';
  font-family: 'Font Awesome 6 Free';
  font-size: 16px;
  position: absolute;
  font-weight: 600;
  left: -20px;
  margin-top: 2px;

}

.sidebar-widget-area .widget.widget_block h2 {
  font-size: 24px;
  color: var(--black-color);
  padding: 30px 40px 0 40px;
  margin: -30px -40px 20px -40px;
  font-weight: 600;
  position: relative;
}


.wp-block-archives-list li a,
.wp-block-categories-list li a {
  margin-left: 20px;
}

.dark-theme .sidebar-widget-area .widget.widget_block h2 {
  color: var(--white-color);
}

 ul.wp-block-categories-list li.cat-item a::before {
  left: 12px;
  margin-left: 20px;
}
ul.wp-block-categories-list li ul li a{
  margin-left: 18px;
}
.wp-block-categories-list .children, 
.wp-block-categories .children, 
.wp-block-categories-list .sub-menu, 
.wp-block-categories .sub-menu{
  padding: 0
}
.wp-block-rss {
  margin: 0;
}
.wp-block-search__label {
  display: none;
}
.widget.widget_block.widget_search .wp-block-search__label {
  display: block;
  font-size: 24px;
  font-weight: 600 !important;
}


/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
 html {
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */
body {
	margin: 0;
  background: #f5f5f5;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
	display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {

	font-size: 1em;
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */
a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
	font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
	border-style: none;
	object-fit: cover;
}

/* Forms
	 ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
	overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
	text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; /* Ensure consistent button styling in WebKit browsers */
  appearance: button; /* Standardize button appearance across all browsers */
  cursor: pointer; /* Add a pointer cursor for better UX */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
	padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
	vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
	overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
	-webkit-appearance: none; /* Remove default appearance on WebKit browsers */
	appearance: textfield; /* Standardize the appearance across browsers */
	outline-offset: -2px; /* Adjust the position of the outline */
  }
  
/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

/* Interactive
	 ========================================================================== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
	display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
	display: list-item;
}

/* Misc
	 ========================================================================== */

/**
 * Add the correct display in IE 10+.
 */
template {
	display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #404040;
	font-size: 1rem;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}



abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: 700;
}

dd {
	margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

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

figure {
	margin: 1em 0;
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

/* Links
--------------------------------------------- */
a {
	color: #4169e1;
	text-decoration: underline;

}

.post-content.blog-text a{
	text-decoration: underline;
}


.single-blog-post > a:hover, .post-category:hover{
	color: #000000;
}




/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: var(--theme-color);
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.6em 1em 0.4em;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #000000;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
	
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

select {
	border: 1px solid #ccc;
}

textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: block;
	width: 100%;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 100%;
	left: -999em;
	z-index: 99999;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	display: block;
	left: auto;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	text-decoration: none;
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 991px) {

	.menu-toggle {
		display: none;
	}

	.main-navigation ul {
		display: flex;
	}
}


.site-main .comment-navigation,
.site-main
.posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	width: 100%;
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
}


.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1 0 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	text-align: left;
	flex: 1 0 50%;
}

/* <style blog post navigation > */

.post-navigation .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
	  background: #fff;
    padding: 15px 20px;
    border-radius: 20px;
    text-align: center;
    min-height: 145px;
    justify-content: center;
    flex-wrap: wrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    --cs-color-box-shadow-rgb: 114, 114, 255;
    box-shadow: 0px 5px 25px 0px rgba(var(--cs-color-box-shadow-rgb), 0.15);
}
.post-navigation .nav-item i {
    display: inline-block;
    transition: transform 0.3s ease;
}

.post-navigation .nav-item i:hover {
    transform: translateY(-5px);
}

.post-navigation .nav-subtitle {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--body-color);
    margin-bottom: 5px;
    display: flex;
    justify-content: left;
    flex-direction: row;
    align-items: center;
    gap: 15px
}


.post-navigation .nav-title {
  background-image: linear-gradient(to left, var(--title-color), var(--title-color));
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 2px;
  transition: 0.4s ease-in-out;
  font-family: var(--title-font);
  font-size: 18px;
  font-weight: 500;
  color: var(--title-color);
  text-decoration: none;
}
.post-navigation .nav-title:hover{
background-size: 100% 2px;
}

.previous-post {
    margin-right: auto;
    text-align: left;
}

.next-post {
    margin-left: auto;
    text-align: right;
}
.blog-content.search-shadow .post-navigation-container {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
}
.blog-content.search-shadow .post-navigation .nav-links {
  gap:20px;
  width:100%;
}

.post-contents.with-thum-img.blog-content.search-shadow> .post-meta-item.blog-meta> .post-navigation-container> .post-navigation> .nav-links .nav-item {
  min-height: 100px;
}
	/* </style blog post navigation ends> */
@media only screen and (max-width: 772px) {

	.posts-navigation .nav-links,
	.post-navigation .nav-links {
	  flex-direction: column;

	}
	.post-navigation .nav-next{
		margin-top: 10px;
	}
	.posts-navigation .nav-links>.nav-next>a,
	.post-navigation .nav-links>.nav-next>a {
	  display: flex;
	  justify-content: flex-start;
	}
  
  }

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 1.5em;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0px 0 1.5em;
}

.widget select {
	max-width: 100%;
}

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

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}
.newsletter-form .icon-btn i.fas.fa-paper-plane {
    margin-bottom: 0px;
    position: relative;
    top: 0;
    left: -2px;
}

.woocommerce-product-gallery {
	margin-top: 25px;
}
#secondary{
	margin-top: 20px;
}

.popup-search-box .searchClose i{
	position: relative;
	top:-10px;
}
.error-404 .page-header .page-title{
	margin-top: 20px;
	text-align: center;
	padding: 30px 20px;
	font-size: 50px;
}
.error-404 .page-content p{
	margin-top: 20px;
	text-align: center;
	padding: 30px 20px;	
}

.post-wrap-details .post-category{
	text-transform: uppercase;
}
a.post-date.font-size-16.text-white {
	color: #fff !important;
}

.product-card .product-img{
	height: 300px;
}
.product-img > img{
	height: 300px;
	object-fit: cover;
}

.woo-sspimg > img {
    margin-top: 10px;
    border: 1px solid #adadad;
}
.woo-sspimg {
    margin-left: 10px;
}

@media only screen and (max-width: 767px) {
	.header-middle-middle{
		justify-content: center;
	}
}

@media only screen and (min-width: 767px) {
	.header-middle-middle{
		justify-content: space-between;
	}
}

ul.wp-block-categories-list.wp-block-categories {
	margin: 0;
	padding: 0;
}

ul.wp-block-archives-list.wp-block-archives li a:hover {
	color: var(--theme-color);
}

ul.wp-block-categories-list.wp-block-categories li.cat-item a:hover{
	color: var(--theme-color);
}

ul.wp-block-categories-list.wp-block-categories li.cat-item a{
	color: var(--body-color);
}

.comment-content p a , 
p.logged-in-as a , 
.nav-links > .nav-previous>a{
	color: var(--title-color) !important;
	display: inline-flex;
}
.dark-theme .comment-content p a ,
.dark-theme p.logged-in-as a , 
.dark-theme .nav-links > .nav-previous>a{
	color: var(--white-color) !important;
}
input.search-field, .wp-block-search__inside-wrapper>input{
	color: #7b7e86;
}

input.search-submit{
	color: #fff;
}

.comments-wrap > .blog-inner-title {
	display: none;
}


.light-logo > img , .dark-logo > img{
	max-height: 63px;
  max-width: 250px;
  object-fit: cover;
}

li.page_item > a{
	color: var(--body-color);
}

.nav-next > a, .nav-previous > a {
	color: var(--title-color);
	cursor: pointer;
}

.dark-theme .nav-next > a, 
.dark-theme .nav-previous > a {
	color: var(--white-color);
}

#reply-title > small > a{
	color: var(--theme-color);
}

div#respond {
	padding-bottom: 20px;
}
a.powered-by{
	color: var(--theme-color);
}

li.depth-1 {
	margin-top: 34px;
}

.btn-wrap>a.btn.style-small {
	color: white;
}

.hero-left-img > img{
	width: 120px!important;
	height: 120px!important;
 }
.hero-two-middle-img{
	min-height: 455px;
}

.icon.wave-icon > img{
	max-height: 30px;
}


.what-s-news-there > img {
	height: 108px!important;
	width: 104px!important;
	object-fit: cover!important;
}

.whats-news-img-two > img{
	height: 235px!important;
	object-fit: cover!important;
}

.whats-news-first>img{
	height: 532px!important;
	object-fit: cover!important;
}
.main-menu ul li a, .sf-menu li a, .site-title a,
.wp-block-archives-list li a, .wp-block-latest-posts__list li a,
.wp-block-latest-comments__comment-meta a, .wp-block-categories-list li a,
.widget.widget_archive ul li a, .widget.widget_categories ul li a,
.widget.widget_pages ul li a, .widget.widget_meta ul li a, #recentcomments li span a,
.widget.widget_recent_entries ul li a, #recentcomments li a, .widget.widget_nav_menu div ul li a,
.tagcloud a, .widget.widget_rss ul li a, .post-meta-item.blog-meta a,
h2.post-title.blog-title.single-blog-title a, .nav-previous a, .nav-next a
{
	text-decoration: none;
}


.wp-block-categories-list{
	list-style: none;
}
.rsswidget.rss-widget-title{
	color: var(--theme-color);
	text-decoration: none;
}


h2.post-title.font-size-16.mt-10>a.post-title-color.style-underline-none{
	color:#ffffff;
}

.widget_categories> ul.wp-block-categories-list.wp-block-categories li.cat-item a{
  margin-left: 0px;

}
.widget_categories>ul.wp-block-categories-list li.cat-item a::before {

  margin-left: 0px !important;
  left: 0px !important;
  position: relative !important;
  margin-right: 15px;
}

.dark-theme mark, 
.dark-theme ins{
  background-color: #0035EF;
}

.dark-theme nav.woocommerce-MyAccount-navigation li a {
  color: var(--white-color);
}

footer h2.wp-block-heading {
  color: white;
}



/*======================= Font Page Design Starts ==================== */


/*=========== Section Title Css ============ */

h2.section-title {
  font-family: var(--title-font);
  color: var(--title-color);
  font-size: 36px;
  font-weight: 700;
  margin-top: 35px;
  margin-bottom: 35px;

  /* Animation Properties */
  opacity: 0;
  transform: translateX(-50px); /* Start from 50px left */
  /* animation: slideIn 1s ease-out forwards; */
  animation: slideIn 1s ease-out 0.5s forwards;
}

/* Keyframes for the Animation */
@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translateX(-50px); 
  }
  100% {
    opacity: 1;
    transform: translateX(0); 
  }
}
.dark-theme .top-category-title.section-title{
color: var(--title-color);
}
.dark-theme h2.section-title{
  color: var(--white-color);
}
.dark-theme h2.top-category-title.section-title{
  color: var(--title-color);
}
/*====================== Top Category Section COde Starts =================== */

.top-category-section {
  text-align: center;
  margin: 40px 0;
  background: #f9f9fc;
}

.top-category-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--body-color);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.top-category-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--white-color);
  border-radius: 25px;
  font-size: 16px;
  color: var(--body-color);
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.category-item i {
  font-size: 18px;
}

.category-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}


/*======================= Latest Post Section CSS Starts ============== */


.latest-post .news-card {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.latest-post .news-card:hover {
  transform: translateY(-5px);
}

.latest-post .news-card-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.latest-post .news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.latest-post .news-card-tags {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.latest-post span.post-category {
  color: var(--white-color);
  font-size: 12px;
  padding: 0 15px;
  border-radius: 7px;
  font-weight: 700;
}

.latest-post .news-card-content {
  padding: 16px;
}

.latest-post .news-card-meta {
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: 8px;
}

.latest-post .news-card-meta .author {
  color: var(--theme-color);
  text-decoration: none;
  font-weight: 700;
}

.latest-post .news-card-meta .date {
  margin-left: 5px;
}

.latest-post .news-card-title a.post-title{
  font-size: 20px;
  font-weight: 700;
  color: var(--title-color);
  margin: 8px 0;
  text-decoration: none;
}


.latest-post .news-card-title a.post-title:hover {
  color: var(--theme-color);
}

.latest-post .news-card-description {
  font-size: 14px;
  color: var(--body-color);
  line-height: 1.5;
  margin-bottom: 16px;
}

.latest-post .news-card-button {
  display: inline-block;
  background: var(--theme-color);
  color: var(--white-color);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.3s ease;
}

.latest-post .news-card-button:hover {
  background: #5848c2;
}


/*================== Editor Pick Section Css Starts ===================== */

section.editor-pick .post-card {
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.editor-pick .post-card:hover {
  transform: translateY(-5px);
}

.editor-pick .post-card-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: #f4f4f4;
}

.editor-pick .post-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editor-pick .post-card-tag .tag.post-category{
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 700;
  padding: 0 15px;
  border-radius: 7px;
}

.editor-pick .post-card-content {
  padding: 20px;
}

.editor-pick .post-card-title a.post-title{
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 700;
  color: var(--title-color);
  margin: 10px 0;
  text-decoration: none;
}


.editor-pick .post-card-title a.post-title:hover{
  color: var(--theme-color);
}

.editor-pick .post-card-description {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--body-color);
  margin: 10px 0;
}
/* Medium devices */
@media (max-width: 991px) {
section.editor-pick .post-card{
max-width: 100%;
}
}

/*========================== Trending Post Section Css Starts ===================== */

section.trending-post .post-card {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.trending-post .post-card-image {
  width: 100%;
  height: 250px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.trending-post .post-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.2);
  color: var(--white-color);
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: start;
  padding: 20px;
}

.trending-post .post-card-overlay .tag {
  display: inline-block;
  color: var(--title-color);
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: bold;
  padding: 0 15px;
  border-radius: 7px;
  margin-bottom: 10px;
  position: absolute;
  left: 20px;
  top: 20px;
}

.trending-post .post-card-title a.post-title{
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  text-align: left;
  margin: 10px 0;
  color: var(--white-color);
  text-decoration: none;
}

.trending-post .post-card-title a.post-title:hover {
  color: var(--theme-color);
}

.trending-post .post-card-meta {
  font-family: var(--body-font);
  font-size: 16px;
  color: var(--body-color);
}




/* ====================== In Focus Section Css Starts ========================= */


.in-focus .news-card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.in-focus .news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.in-focus .news-card-tags {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.in-focus .news-card-tags .tag {
  color: var(--white-color);
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 700;
  padding: 0 15px;
  border-radius: 7px;
  text-transform: uppercase;
}

.in-focus .news-card-meta {
  font-family: var(--body-font);
  font-size: 14px;
  color: var(--body-color);
  margin-bottom: 10px;
}

.in-focus .news-card-meta .author {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--theme-color);
  text-decoration: none;
}

.in-focus h2.news-card-title a.post-title{
  font-family: var(--title-font);
  font-size: 24px;
  font-weight: 700;
  color: var(--title-color);
  text-decoration: none;
  margin: 10px 0;
}
.dark-theme .in-focus h2.news-card-title a.post-title{
  color: var(--white-color);
}
.in-focus h2.news-card-title a.post-title:hover{
  color: var(--theme-color);
}
.in-focus .news-card-description {
  font-family: var(--body-font);
  font-size: 16px;
  color: var(--body-color);
  margin-bottom: 20px;
}
p.news-card-description{
  min-height: 63px;
}


.in-focus .news-card-button {
  display: inline-block;
  padding: 10px 20px;
  background-color:var(--theme-color);
  color: var(--white-color);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 7px;
  transition: background-color 0.3s;
}

.in-focus .news-card-button:hover {
  background-color: var(--title-color);
}

/*Hero And other Post Foramt Icon code test code  */
.video-wrap .play-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 5px solid var(--theme-color);
  color: var(--theme-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--white-color);
  animation: blink-video-animation 1.5s infinite; /* Add animation */

}
/* Keyframes for blink Video animation */
@keyframes blink-video-animation {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5;
  }
}

.hero-post .post-preview a.play-btn.style10 {
  position: absolute;
  z-index: 1;
  right: 30px;
  top: 30px;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: var(--white-color);
}

/* Keyframes for blink animation */
@keyframes blink-animation {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5;
  }
}
.hero-post .post-preview a.play-btn.style10 svg{
  color: var(--black-color);
}

/* Keyframes for blink animation */
@keyframes svg-blink-animation {
  0%, 100% {
      opacity: 1;
  }
  50% {
      opacity: 0.5;
  }
}

.trending-post .post-card-title a:focus{
  outline: 2px dotted var(--white-color) !important;
}

.header-icons a{
  color: #ffffff;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  top: 0;
}
.header-button a.nav-link.position-relative.cart-icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header-button a.nav-link.position-relative.cart-icon img{
  width: 21px;
  object-fit: cover;
  height: auto;
}
.header-button a span.position-absolute.translate-middle.cart-badge.rounded-pill {
  right: 8px;
  color: var(--title-color);
  border-radius: 100% !important;
  background: var(--white-color);
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.dark-theme .comment-respond {
  background-color: #060d2a;
}

footer .trending-post .trending-post-meta a{
  text-decoration: none;
}
footer .wp-block-page-list a{
  text-decoration: none;
}
.dark-theme footer .widget{
  background: transparent;
}
