:root {
  --Fontheading: "Lexend Deca", sans-serif;
  --Fontbody: "Outfit", sans-serif;
  --bxbr: 3px solid #000;
  --bxbra: 8px;
  --bxsh: 0 1px 3px rgb(0 0 0 / 15%);
  --bxshover: 0 4px 60px 0px rgba(0 0 0 / 20%);
  --bstras: 0 4px 60px 0px rgba(0 0 0 / 20%);
  --grid-columns: 4;
  --rotale: 0deg;
  --icon-rotale: 0deg;
  --h-line-height: 1.3;
  --h-letter-spacing: -0.45px;
  --h1-font-size: 34px;
  --h2-font-size: 32px;
  --h3-font-size: 28px;
  --h5-font-size: 20px;
  --h6-font-size: 16px;
  --body-font-size: 18px;
  --body-line-height: 1.6;
  --hd-title-font-size: 40px;
  --hd-title-line-height: 1.3;
  --hd-tagline-font-size: 16px;
  --hd-tagline-line-height: 1.3;
  --ft-title-font-size: 40px;
  --ft-title-line-height: 1.3;
  --ft-tagline-font-size: 16px;
  --ft-tagline-line-height: 1.3;
  --menu-font-size: 16px;
  --menu-line-height: 1.3;
  --dropdown-font-size: 16px;
  --dropdown-line-height: 1.3;
  --single-text-font-size: 18px;
  --single-text-line-height: 1.6;
  --single-text-letter-spacing: 1.3px;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: var(--Fontbody);
  font-weight: 500;
  line-height: 1.4;
  font-display: swap;
  font-size: 16px;
}

.wrapper {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

/*------------------------------- 
 	-Input 
------------------------*/
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,
select {
  background-image: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0));
  border: 2px solid #e5e5e5;
  border-radius: 30px;
  display: block;
  padding: 13px 18px;
  width: 100%;
  outline: 0;
  height: 55px;
  transition: all 0.8s;
  margin-bottom: 20px;
}

input[type=radio], input[type=checkbox] {
  display: inline;
}

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,
select:focus {
  width: 100%;
  box-shadow: 0 0 0 0.063rem rgba(84, 84, 84, 0.25) !important;
}

input, button, select, optgroup, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.d-grid {
  display: grid;
  row-gap: 30px;
}
.d-grid.column2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 2rem;
  padding: 0;
}
.d-grid.column3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column-gap: 2rem;
  padding: 0;
}
.d-grid.column4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column-gap: 2rem;
  padding: 0;
}
.d-grid.column5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-column-gap: 2rem;
  padding: 0;
}
.d-grid.column6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-column-gap: 2rem;
  padding: 0;
}

[class*=cont-] {
  padding-bottom: 30px;
}
[class*=cont-] [class*=row] {
  row-gap: 40px;
}
[class*=cont-] [class*=col-lg-8] .wd-back {
  margin-bottom: 30px;
}
[class*=cont-] [class*=col-lg-8] .wd-back:last-child {
  margin-bottom: 0;
}

/*---------------------------------------
	Typography        
-----------------------------------------*/
h1, .h1 {
  font-size: 34px;
}

h2, .h2 {
  font-size: 32px;
}

h3, .h3 {
  font-size: 28px;
}

h4, .h4 {
  font-size: 24px;
}

h5, .h5 {
  font-size: 20px;
}

h6, .h6 {
  font-size: 16px;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: var(--Fontheading);
  font-weight: 600;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums;
  letter-spacing: -0.036em;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  text-rendering: optimizeSpeed;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  font-display: swap;
  word-break: break-word;
}

.alignright {
  text-align: end;
}

.alignleft {
  text-align: start;
}

.aligncenter {
  text-align: center;
}

.end-10 {
  right: 10px;
}

.start-10 {
  left: 10px;
}

.center-0 {
  right: 0;
  left: 0;
  margin: auto;
}

blockquote {
  position: relative;
  width: 100%;
  border-width: 0 0 0 5px;
  border-style: solid;
  padding-left: 8px;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 32px;
}

blockquote::before {
  content: "\f10d";
  display: table;
  float: left;
  font-family: "Font Awesome 5 Free";
  font-size: 28px;
  margin-top: 6px;
  font-weight: 900;
  width: 6%;
}

blockquote p {
  font-style: italic;
  width: 94%;
  display: table;
  margin-bottom: 0;
}

.container {
  width: 100%;
  padding-right: var(--bs-gutter-x, 0.75rem);
  padding-left: var(--bs-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.collapse:not(.show) {
  display: none;
}

.show {
  display: block;
}

.container {
  width: 100%;
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
  max-width: 576px;
}

@media (min-width: 768px) {
  .container {
    max-width: 992px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1648px;
  }
}
@media (min-width: 992px) and (max-width: 1659.98px) {
  .container {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--bs-gutter-y) * -1);
  margin-right: calc(var(--bs-gutter-x) * -0.5);
  margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.g-0, .gy-0 {
  --bs-gutter-y: 0;
}

.g-0, .gx-0 {
  --bs-gutter-x: 0;
}

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

input[type=submit], button, .btn, .more-link, .wp-block-button__link {
  padding-top: 8px;
  padding-right: 15px;
  padding-bottom: 8px;
  padding-left: 15px;
  line-height: 1;
  overflow: hidden;
  position: relative;
  border-radius: 0;
  font-weight: bold;
  display: inline-flex;
  transition: all 0.2s ease 0s;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-width: 2px;
  border-style: solid;
}
input[type=submit] i, button i, .btn i, .more-link i, .wp-block-button__link i {
  transform: rotate(var(--icon-rotale));
  width: 25px;
  height: 25px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 14px;
}

.btn-theme:hover, .btn-theme:focus {
  transition: all 0.3s ease 0s;
}

.shd {
  box-shadow: 0px 8px 30px rgba(33, 33, 33, 0.1);
}

.shd-hover {
  transition: 0.5s ease-out;
}

.shd-hover:hover {
  transform: translateY(-10px) scale(1);
  box-shadow: 0px 30px 40px rgba(0, 10, 80, 0.12);
}

.text-start {
  text-align: start;
}

.text-center {
  text-align: center;
}

.text-end {
  text-align: end;
}

.plece-item {
  margin-left: auto;
  margin-right: auto;
}

img {
  max-width: 100%;
  display: block;
  border-radius: var(--bxbra);
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.d-flex-start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.d-flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.d-flex-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.d-flex-end {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.d-none {
  display: none !important;
}

a, button {
  transition: all 0.5s;
  text-decoration: none;
}

.max-width {
  max-width: 100%;
}

.w-100 {
  width: 100%;
}

.all:root {
  background-color: #fff;
}

.dark:root {
  background-color: #121212;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

ol, ul {
  padding-left: 2rem;
}

.pl-15 {
  padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mt-60 {
  margin-top: 60px;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

.ms-auto {
  margin-right: auto !important;
}

.me-auto {
  margin-left: auto !important;
}

.mt-0 {
  margin-top: 0px !important;
}

.mt-30 {
  margin-top: 30px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-30 {
  margin-bottom: 30px;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.p-20 {
  padding: 20px !important;
}

p {
  margin: 0 0 15px 0;
  font-size: 1rem;
  line-height: 1.625;
}

.radius-0 {
  border-radius: 0 !important;
}

.radius-100 {
  border-radius: 50%;
}

.img-fluid {
  max-width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}

.no-bor {
  border: none !important;
}

.bg-none {
  background: none !important;
}

.back-img {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-color: #333;
}

.position-relative {
  position: relative;
}

figure {
  margin: 0 0 1rem;
}

/* Search Page */
.search-results-count {
  margin-bottom: 0;
  font-size: 17px;
  margin-top: 5px;
}

/*---------------------------------------
	Gradient Scroll Bar 
-----------------------------------------*/
/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 100vh;
  background: #1f2937;
}

/* Handle */
::-webkit-scrollbar-thumb {
  border-radius: 10px;
}

/*---------------------------------------
	social Links
-----------------------------------------*/
.bs-social {
  padding: 0px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4.5px;
}
.bs-social li {
  display: inline-flex;
  margin-bottom: 0;
  border-bottom: none;
}
.bs-social li a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  padding: 0;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  font-size: 16px;
  overflow: hidden;
}
.bs-social li a::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
  height: 0%;
  z-index: -1;
  transition: all 0.8s;
}
.bs-social li a:hover {
  transition: all 0.8s;
}
.bs-social li a:hover::after {
  height: 100%;
  transition: all 0.8s;
}
.bs-social li a:focus {
  outline: 1px dashed #fff;
}

/*---------------------------------------
	swipper controls         
-----------------------------------------*/
.bs:hover .swiper-button-prev, .instagram-gallery-feed:hover .swiper-button-prev {
  left: 0;
  opacity: 1;
}

.bs:hover .swiper-button-next, .instagram-gallery-feed:hover .swiper-button-next {
  right: 0;
  opacity: 1;
}

.bs .swiper-button-prev, .bs .swiper-button-next, .swiper-button-prev, .swiper-button-next, .instagram-gallery-feed .swiper-button-prev, .instagram-gallery-feed .swiper-button-next {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  opacity: 0;
  border-radius: 50px;
}

.bs .swiper-button-prev, .swiper-button-prev, .instagram-gallery-feed .swiper-button-prev {
  border-radius: 0 50px 50px 0;
  left: 0;
}

.bs .swiper-button-next, .swiper-button-next, .instagram-gallery-feed .swiper-button-next {
  border-radius: 50px 0px 0px 50px;
  right: 0;
}

.bs .swiper-button-prev:after, .bs .swiper-button-next:after, .instagram-gallery-feed .swiper-button-prev:after, .instagram-gallery-feed .swiper-button-next:after {
  font-size: 18px;
}

.bs .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  opacity: 1;
  transition: all 0.5s;
  padding: unset;
  background: #f3eeee;
}

.bs .swiper-pagination-bullet-active {
  width: 18px;
  height: 8px;
  background: var(--pri-color);
}

/*--section--*/
.btn-0 i {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-size: 14px;
  display: inline-block;
  line-height: 26px;
  text-align: center;
  margin-left: 10px;
}

.instagram-gallery-item__media-mask {
  border-radius: 8px;
}

/*---------------------------------------
	bs-section
-----------------------------------------*/
.bs-section .overlay {
  padding: 60px 0;
}

.bs-heading .bs-subtitle {
  font-size: 18px;
  padding-left: 20px;
  position: relative;
  display: inline-flex;
  margin-bottom: 25px;
}
.bs-heading .bs-subtitle::before {
  content: "";
  display: block;
  width: 5px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.bs-heading .bs-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 2rem;
}
.bs-heading .bs-title span {
  font-family: "Fira Sans", sans-serif;
}
.bs-heading P {
  font-size: 17px;
  line-height: 25px;
  margin-bottom: 2rem;
}

.menu-btn {
  display: none;
}

/**** Header Image *****/
.header-image-section .overlay {
  height: 200px;
}

/**** Header CSS *****/
.site-logo a.navbar-brand {
  display: inline-block;
}
.site-logo a.navbar-brand img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.site-branding-text .site-title {
  font-size: 40px;
  word-break: break-word;
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--Fontheading);
  letter-spacing: -0.036em;
}
.site-branding-text .site-title-footer {
  line-height: 1.4;
}

.navbar-wp {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex: 1;
}

.bs-head-detail {
  padding: 0.5rem 0;
}
.bs-head-detail .mg-latest-news {
  width: 48%;
}
.bs-head-detail .top-date {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.bs-head-detail .top-date .day {
  font-size: 24px;
  margin-right: 6px;
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.bs-head-detail .top-date .deta {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.1;
  word-break: break-word;
}

.bs-headtwo .navbar-wp .justify-, .bs-headthree .navbar-wp .justify-, .bs-headfour .navbar-wp .justify-, .bs-headfive .navbar-wp .justify- {
  justify-content: center;
}

/*-----middle---*/
.bs-menu-full {
  box-shadow: unset;
}
.bs-menu-full .logo {
  padding: 10px 0;
  width: 25%;
}
.bs-menu-full .logo .site-branding-text {
  margin-top: 10px;
}
.bs-menu-full .main {
  position: relative;
  justify-content: space-between;
  padding: 0;
  border-radius: 5px;
  align-items: center;
}
.bs-menu-full .navbar-brand img {
  height: auto;
}
.bs-menu-full.sticky-header.header-sticky {
  animation: slide-down 1.07s;
}
.bs-menu-full.header-sticky {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1024;
  right: 0;
  left: 0;
  box-shadow: var(--bxsh);
}

@keyframes slide-down {
  0% {
    opacity: 1;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-----bottom---*/
.navbar-wp nav {
  display: flex;
  align-items: center;
  width: 100%;
}
.navbar-wp nav ul.sm-clean li a {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.03em;
  cursor: pointer;
  transition: all 0.2s ease 0s;
}
.navbar-wp nav ul.sm-clean li a:hover {
  transform: scale(0.95);
}
.navbar-wp nav ul.sm-clean li .has-submenu + .dropdown-menu a:hover {
  transform: scale(1);
}
.navbar-wp nav .sm-clean ul {
  border: none;
  border-radius: 0px !important;
}

.left-nav {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: flex-start;
  z-index: 1;
  gap: 1.5rem;
}
.left-nav .element {
  overflow: hidden;
  font-size: 16px;
}
.left-nav .search-bar {
  padding: 0;
}
.left-nav .form-dropdown {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: -1;
  opacity: 0;
  padding: 15px;
  display: flex;
  pointer-events: none;
  transition: 0.5s;
}
.left-nav .form-dropdown .input_search {
  width: auto;
  height: auto;
}
.left-nav .subscribe-btn {
  width: auto;
  height: auto;
  padding: 8px 10px;
  border-radius: 30px;
  line-height: 1;
  gap: 6px;
}

.right-nav {
  display: flex;
  align-items: center;
  position: relative;
  flex-wrap: wrap;
  justify-content: flex-end;
  z-index: 1;
  gap: 1.5rem;
}
.right-nav .element {
  overflow: hidden;
  font-size: 16px;
  cursor: pointer;
}
.right-nav .search-bar {
  padding: 0;
}
.right-nav .form-dropdown {
  position: absolute;
  right: 0;
  top: 50%;
  z-index: -1;
  opacity: 0;
  padding: 15px;
  display: flex;
  pointer-events: none;
  transition: 0.5s;
}
.right-nav .form-dropdown .input_search {
  width: auto;
  height: auto;
}
.right-nav .subscribe-btn {
  width: auto;
  height: auto;
  padding: 8px 10px;
  border-radius: 30px;
  line-height: 1;
  gap: 6px;
  justify-content: center;
}
.right-nav .bs-cart {
  display: flex;
  overflow: visible;
  gap: 2px;
}
.right-nav .bs-cart .bs-cart-total {
  margin-right: 10px;
}
.right-nav .bs-cart .bs-cart-count {
  width: 17px;
  height: 17px;
  font-size: 13px;
  line-height: 17px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate(0, -5px);
}

/*---------------------------------------
	Humbarger Styles           
-----------------------------------------*/
.navbar-wp .icon-bar {
  width: 22px;
  display: block;
  height: 2px;
  transition: all 0.2s;
}
.navbar-wp .icon-bar + .icon-bar {
  margin-top: 4px;
}
.navbar-wp .icon-bar:nth-of-type(1) {
  transform: rotate(0);
}
.navbar-wp .icon-bar:nth-of-type(2) {
  opacity: 1;
  filter: alpha(opacity=100);
}
.navbar-wp .icon-bar:nth-of-type(3) {
  transform: rotate(0);
}
.navbar-wp:focus {
  outline: none;
}
.navbar-wp .on .icon-bar:nth-of-type(1) {
  transform: rotate(45deg);
  transform-origin: 10% 10%;
}
.navbar-wp .on .icon-bar:nth-of-type(2) {
  opacity: 0;
  filter: alpha(opacity=0);
}
.navbar-wp .on .icon-bar:nth-of-type(3) {
  transform: rotate(-45deg);
  transform-origin: 10% 90%;
}

/*---------------------------------------
	light/dark switch Styles           
-----------------------------------------*/
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 25px;
  border-radius: 20px;
}
.switch input {
  display: none;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 5px;
  transition: 0.4s ease-in-out;
  background-color: var(--pri-color);
  border-radius: 20px;
}
.switch .slider::before, .switch .slider::after {
  content: "";
  position: absolute;
  width: 19px;
  height: 19px;
  left: 0;
  line-height: 19px;
  bottom: 0;
  transition: 0.4s ease-in-out;
  content: "\f185";
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 900;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 3px;
}
.switch .slider::after {
  content: "\f186";
  right: 0;
  left: auto;
}

.search-bar .form-dropdown.show {
  top: 140%;
  opacity: 1;
  height: auto;
  pointer-events: unset;
  display: flex;
}

.header-bottom .main-nav {
  justify-content: space-between;
}
.header-bottom .logo {
  display: none;
}

.hedaer-offcanvas {
  line-height: 1;
  font-size: 1rem;
}
.hedaer-offcanvas .offcanvas-trigger {
  padding: 0px;
  font-size: 16px;
  cursor: pointer;
  border: none;
  border-radius: 0;
}
.hedaer-offcanvas .offcanvas-trigger i {
  width: unset;
  height: unset;
}

.bs-header-main {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-attachment: scroll;
}
.bs-header-main .inner {
  display: flex;
  padding: 15px 0;
  margin: 0;
  min-height: 150px;
  height: 100%;
  align-items: center;
}

/*---------------------------------------
	-header-1
-----------------------------------------*/
header.bs-default {
  position: relative;
}
header.bs-default .bs-menu-full {
  border-width: 2px 0;
  border-style: solid;
}

/*---------------------------------------
	-header-2
-----------------------------------------*/
.bs-headtwo {
  position: relative;
  z-index: 5;
  border-bottom-width: 2px;
  border-bottom-style: solid;
}

/*---------------------------------------
	-header-3
-----------------------------------------*/
.bs-headthree {
  position: relative;
}

.bs-headthree .bs-menu-full {
  border-width: 2px 0;
  border-style: solid;
}

.bs-headthree .bs-menu-full .logo {
  width: auto;
}

/*---------------------------------------
	-header-4
-----------------------------------------*/
.bs-headfour {
  border-bottom: 1px solid #E0E0E0;
}
.bs-headfour .bs-head-detail .tobbar-right .top-date {
  display: none;
}

/*---------------------------------------
	-header-5
-----------------------------------------*/
.bs-headfive .bs-menu-full .main-nav {
  padding: 8px 0;
  border-radius: 0px;
}
.bs-headfive .bs-menu-full .navbar-wp {
  width: 100%;
  justify-content: center;
}
.bs-headfive .bs-menu-full .navbar-wp nav ul.sm-clean li a {
  padding: 10px 20px;
}
.bs-headfive .bs-menu-full .navbar-wp nav ul.sm-clean li a .sub-arrow {
  right: 6px;
}

/*---------------------------------------
	Header six 
-----------------------------------------*/
.bs-headsix .inner .logo .site-branding-text {
  text-align: start;
}
.bs-headsix .inner div .pull-right img {
  display: inline-block;
}
.bs-headsix .bs-menu-full {
  padding: 5px 0;
}
.bs-headsix .advertising-banner {
  margin-bottom: 0;
}

/*---------------------------------------
	Menu Description
-----------------------------------------*/
.menu-link-description {
  font-size: 10px;
  padding: 2px 4px;
  position: absolute;
  border-radius: 1px;
  line-height: normal;
  top: 0;
  margin: 0 3px;
  font-weight: 700;
  display: inline-table;
  word-break: keep-all;
  overflow-wrap: unset;
  width: -moz-max-content;
  width: max-content;
  z-index: 9;
}
.menu-link-description::after {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  left: 3px;
  bottom: -4px;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
}

/*---------------------------------------
	-breadcrumb
-----------------------------------------*/
.bs-breadcrumb-section {
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 25px;
}
.bs-breadcrumb-section .overlay {
  padding: 10px 0;
  position: relative;
}
.bs-breadcrumb-section .overlay .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  list-style: none;
  margin-bottom: 0;
}
.bs-breadcrumb-section .overlay .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--bs-breadcrumb-divider, "/");
  padding-left: 0.5em;
}
.bs-breadcrumb-section .overlay .breadcrumb a, .bs-breadcrumb-section .overlay .breadcrumb-item span {
  word-break: break-word;
}
.bs-breadcrumb-section .overlay .bs-breadcrumb-title {
  text-align: center;
}
.bs-breadcrumb-section .overlay .bs-breadcrumb-title ul.bs-page-breadcrumb {
  display: flex;
  justify-content: flex-start;
  padding: 10px 0;
  position: relative;
  z-index: 2;
}
.bs-breadcrumb-section .overlay .bs-breadcrumb-title ul.bs-page-breadcrumb li {
  padding: 0 5px;
}

/*---------------------------------------
	pagination
-----------------------------------------*/
.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
  grid-gap: 6px;
}
.pagination li a {
  display: inline-block;
}

.pagination > li > a, .pagination > li > span {
  margin: 0;
  border-radius: 30px;
  border: none;
  width: 40px;
  height: 40px;
  line-height: 40px;
  padding: 0;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 6px;
}

.navigation.pagination .nav-links .page-numbers, .navigation.pagination .nav-links a, .post-nav-links a, .navigation.pagination > a {
  cursor: pointer;
  display: inline-flex;
  transition: all 0.3s ease 0s;
  font-size: 18px;
  line-height: 40px;
  margin: 0;
  padding: 0px;
  white-space: nowrap;
  width: auto;
  min-width: 40px;
  height: 40px;
  transition: all 0.3s ease 0s;
  text-decoration: none;
  position: relative;
  border-radius: 30px;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  border: 1px solid;
}

.navigation.pagination > li:first-child > a, .navigation.pagination > li:first-child > span {
  border-radius: 30px;
}

.navigation.pagination.next-prev {
  gap: 0;
}
.navigation.pagination.next-prev a {
  padding: 10px 20px;
  width: auto;
  height: auto;
  line-height: 1.3;
  font-size: 16px;
}

.single-nav-links {
  text-align: center;
  margin-top: 30px;
}

.single-nav-links a, .single-nav-links span {
  margin: 0 6px 10px;
  height: 40px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease 0s;
  padding: 8px 15px;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav-links a, .single-nav-links a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  width: 100%;
}

.navigation.post-navigation:not(.nav-previous) .nav-links {
  justify-content: flex-end;
}
.navigation.post-navigation:not(.nav-next) .nav-links {
  justify-content: flex-start;
}
.navigation.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  border-radius: 4px;
  align-items: center;
}
.navigation.post-navigation .nav-links .nav-previous, .navigation.post-navigation .nav-links .nav-next {
  width: 50%;
  padding: 1rem;
  word-break: break-all;
}
.navigation.post-navigation .nav-links .nav-previous a, .navigation.post-navigation .nav-links .nav-next a {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-start;
  align-items: center;
}
.navigation.post-navigation .nav-links .nav-previous a img.wp-post-image, .navigation.post-navigation .nav-links .nav-next a img.wp-post-image {
  width: 7.5rem;
  height: 6.25rem;
}
.navigation.post-navigation .nav-links .nav-next {
  grid-area: 1/3/span 1/span 4;
  text-align: end;
}
.navigation.post-navigation .nav-links .nav-next a {
  justify-content: flex-end;
}

.bs-newslatter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.bs-newslatter h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}
.bs-newslatter .text-input {
  display: flex;
  margin-left: 20px;
  position: relative;
  justify-content: flex-end;
}
.bs-newslatter .text-input i.far.fa-envelope {
  position: absolute;
  left: 5%;
  top: 20px;
}
.bs-newslatter .text-input .form-control {
  position: relative;
  display: block;
  width: 420px;
  height: 60px;
  border: 1px solid #393B41;
  border-radius: 30px;
  padding: 10px 30px;
  padding-left: 70px;
  background-color: transparent;
  font-size: 16px;
  color: #9fa2a6;
  transition: all 500ms ease;
}
.bs-newslatter .text-input .sub-link {
  font-size: 16px;
  line-height: 30px;
  z-index: 1;
  padding: 15px 35.5px;
  font-weight: 600;
  border-radius: 30px;
  background-color: #fff;
  border: none;
}
.bs-newslatter .text-input .sub-link i {
  padding-right: 10px;
}

/*Responsive Video*/
.responsive-video {
  height: 0;
  padding-top: 1px;
  position: relative;
  padding-bottom: 56.25%;
}
.responsive-video iframe {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  border: none;
  border-radius: 0;
}

.bs-card-box {
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: var(--bxbra);
  margin-bottom: 25px;
}

.wd-back {
  padding: 0;
  margin-bottom: 50px;
  border-radius: var(--bxbra);
}

/*---------------------------------------
	Off Canvas Styles           
-----------------------------------------*/
.bs-offcanvas {
  width: 400px;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 99999;
  transition: all 0.3s;
  left: -450px;
  display: flex;
  flex-direction: column;
}
.bs-offcanvas.end {
  left: unset;
  right: -450px;
}
.bs-offcanvas.from-right {
  right: 0;
}
.bs-offcanvas.from-left {
  left: 0;
}
.bs-offcanvas .bs-offcanvas-close {
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1254901961);
}
.bs-offcanvas .bs-offcanvas-inner {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}
.bs-offcanvas .bs-offcanvas-inner .navbar-nav li {
  padding: 10px;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  margin-bottom: 10px;
}
.bs-offcanvas .bs-offcanvas-inner .navbar-nav li .has-submenu .sub-arrow::after {
  content: "+";
  font-size: 20px;
  border: 1px solid;
  padding: 0px 10px;
  border-radius: 4px;
  position: absolute;
  right: 0;
  top: -30%;
}
.bs-offcanvas .bs-offcanvas-inner .navbar-nav li .has-submenu.highlighted .sub-arrow::after {
  content: "-";
}
.bs-offcanvas .bs-offcanvas-inner .navbar-nav li .dropdown-menu {
  margin-top: 10px;
  border-top-width: 1px;
  border-top-style: solid;
}
.bs-offcanvas .bs-offcanvas-inner .navbar-nav li .dropdown-menu li:nth-last-child(1) {
  border-bottom: none;
  margin-bottom: 0;
}
.bs-offcanvas .bs-offcanvas-inner .navbar-nav li .dropdown-menu li a {
  font-size: 15px;
}
.bs-offcanvas .bs-offcanvas-inner .navbar-nav li .dropdown-menu li a::before {
  content: "\f0da";
  font-family: var(--fa-style-family-classic);
  font-weight: 900;
  margin-right: 5px;
}
.bs-offcanvas .bs-offcanvas-btn-close {
  display: inline-flex;
  padding: 20px 15px 20px 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.bs-offcanvas .bs-offcanvas-btn-close:hover {
  transform: rotate(180deg);
}
.bs-offcanvas .bs-offcanvas-btn-close span {
  width: 16px;
  height: 2px;
  transform: rotate(45deg);
  margin-left: -16px;
  margin-right: 0;
}
.bs-offcanvas .bs-offcanvas-btn-close span:nth-child(2) {
  transform: rotate(135deg);
}

.bs-overlay-section {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1024;
  background-color: rgba(0, 0, 0, 0.75);
  transition: background-color 400ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  top: 0;
  visibility: hidden;
  left: 0;
}
.bs-overlay-section.show {
  visibility: visible;
}

.bs-offcanvas.from-left + .bs-offcanvas-overlay, .bs-offcanvas.from-right + .bs-offcanvas-overlay {
  visibility: visible;
}

/*---------------------------------------
	Search        
-----------------------------------------*/
.search-popup {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0;
  z-index: 9999;
  opacity: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0%;
  visibility: hidden;
}
.search-popup .search-popup-close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding: 0.7rem;
}
.search-popup .btn-close {
  padding: 5px 8px;
  border-radius: 4px;
  cursor: pointer;
  width: 30px;
  height: 30px;
  text-align: center;
  line-height: 30px;
}
.search-popup .btn-close i {
  line-height: 1.5;
}
.search-popup .search-popup-content {
  height: auto;
  width: 50%;
  border-radius: 5px;
  overflow: auto;
  position: relative;
  margin: 2rem auto;
  transform: translateY(-10%);
  transition: all 0.3s ease-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.search-popup.show-search {
  opacity: 1;
  height: 80%;
  visibility: visible;
}
.search-popup.show-search .search-popup-content {
  transform: translateY(0%);
}
.search-popup .search-inner {
  padding: 1rem;
}

.input-group {
  display: flex;
  gap: 15px;
}
.input-group .form-control {
  margin-bottom: 0;
}
.input-group .btn {
  cursor: pointer;
}

form.search-form {
  display: flex;
  gap: 15px;
}
form.search-form label {
  flex: 1;
}
form.search-form label .search-field {
  margin-bottom: 0;
}

.search-class h2 {
  font-weight: 700;
  margin-bottom: 5px;
}

.row[title="Shift-click to edit this element."] span.customize-partial-edit-shortcut.customize-partial-edit-shortcut-newspaperup_archive_page_layout,
.row[title="Shift-click to edit this element."] span.customize-partial-edit-shortcut.customize-partial-edit-shortcut-newspaperup_single_page_layout,
.row[title="Shift-click to edit this element."] span.customize-partial-edit-shortcut.customize-partial-edit-shortcut-newspaperup_page_layout {
  width: 1px !important;
}

/*---------------------------------------
=========================================
    widget Titlle
=========================================
-----------------------------------------*/
.bs-widget-title {
  display: flex;
  width: 100%;
  align-items: center;
  margin-bottom: 20px;
  padding: 0;
  position: relative;
  gap: 10px;
  justify-content: space-between;
}
.bs-widget-title .title {
  text-align: start;
  margin-bottom: 0;
  padding: 0;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-flex;
  width: auto;
  white-space: nowrap;
  gap: 8px;
}
.bs-widget-title .title::before {
  content: "";
  position: absolute;
}
.bs-widget-title .title span .fa-arrow-right {
  transform: rotate(-45deg);
}
.bs-widget-title .border-line {
  width: 100%;
  height: 1px;
  opacity: 0.5;
  flex: 1;
}
.bs-widget-title.one .title {
  padding: 8px 15px;
  border-radius: 8px;
}
.bs-widget-title.two .title {
  width: auto;
  padding-bottom: 7px;
}
.bs-widget-title.two .title::before {
  height: 5px;
  width: 100%;
  bottom: 5px;
  transform: skewX(-45deg) translateX(-8%);
  left: 9%;
}
.bs-widget-title.three .title {
  padding: 0;
  gap: 32px;
}
.bs-widget-title.three .title span {
  position: relative;
}
.bs-widget-title.three .title span::before, .bs-widget-title.three .title span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  border-radius: 50%;
}
.bs-widget-title.three .title span::before {
  left: 10px;
  height: 15px;
  width: 15px;
}
.bs-widget-title.three .title span::after {
  width: 8px;
  height: 8px;
  left: 0;
}
.bs-widget-title.three .title span i {
  display: none;
}
.bs-widget-title.four .title {
  padding: 0;
  align-items: center;
}
.bs-widget-title.four .title span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}
.bs-widget-title.five .title {
  padding: 5px 15px;
  width: auto;
  z-index: 1;
  margin-bottom: 10px;
  margin-left: 4px;
}
.bs-widget-title.five .title::before {
  inset: 0;
  z-index: -1;
  transform: skewX(-15deg);
  border-radius: 5px;
}
.bs-widget-title.five .title::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 5px;
  height: 100%;
  top: 0;
  right: 0;
  transform: skewX(-15deg) translateX(10px);
  border-radius: 2px;
}
.bs-widget-title.six span {
  display: none;
}

a.btn, button.btn, .btn-theme, .more-link, .wp-block-search__button, input[type=submit] {
  font-size: 16px;
}

.btn-one, .btn-two, .wp-block-search__button {
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease-in, color 0.3s ease-in;
  text-align: center;
}
.btn-one::after, .btn-two::after, .wp-block-search__button::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform-origin: -25% 50%;
  transform: rotate3d(0, 0, 1, 45deg);
  transition: transform 0.3s ease-in;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-one:hover::after, .btn-two:hover::after, .wp-block-search__button:hover::after {
  transition-timing-function: ease-out;
  transform: rotate3d(0, 0, 1, 0deg);
}
.btn-one:hover, .btn-two:hover, .wp-block-search__button:hover {
  transition-timing-function: ease-out;
}
.btn-one:hover i, .btn-two:hover i, .wp-block-search__button:hover i {
  visibility: hidden;
}

.wp-block-search__button::after {
  content: attr(aria-label);
}

.btn-two::after {
  transform: rotate3d(0, 0, 1, -45deg);
}

footer.one .bs-footer-copyright {
  border-top-color: var(--border-color);
}

.btn-three::before, .btn-four::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(-100%, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn-three:hover::before, .btn-four:hover::before {
  transform: translate3d(0, 0, 0);
}
.btn-three span, .btn-four span {
  display: block;
  transition: transform 0.3s;
  transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.btn-three:hover span, .btn-four:hover span {
  transform: translate3d(0, 200%, 0);
}

.btn-four::before {
  transform: translate3d(100%, 0, 0);
}

#load-more {
  cursor: pointer;
}

/* --------------------------------------
=========================================
	Page Title
=========================================
-----------------------------------------*/
.page-entry-title {
  display: flex;
  align-items: center;
  padding: 10px 0;
  justify-content: flex-start;
  margin-bottom: 30px;
  border-radius: 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.page-entry-title .bs-breadcrumb-section {
  margin-bottom: 0;
}
.page-entry-title .bs-breadcrumb-section .overlay {
  box-shadow: none;
  padding: 0;
}
.page-entry-title:has(.entry-title.title) {
  justify-content: space-between;
  padding: 15px 0;
}

.bs-card-box.page-entry-title + .row .page-title {
  display: none;
}

.bs-latest-news {
  width: 100%;
  min-height: 40px;
  height: 100%;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
}
.bs-latest-news .bn_title {
  width: auto;
  display: inline-flex;
  position: relative;
  z-index: 1;
  padding-right: 10px;
}
.bs-latest-news .bn_title .title {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 4px 10px;
  line-height: inherit;
  font-size: 18px;
  font-weight: 600;
  box-sizing: border-box;
  gap: 5px;
  border-radius: 50px;
}
.bs-latest-news .bn_title .title i {
  padding: 0;
  display: inline-flex;
  width: 25px;
  height: 25px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 12px;
}
.bs-latest-news .bn_title .title span {
  padding-right: 6px;
}
.bs-latest-news .bn_title .title:has(i) {
  padding: 4px;
}
.bs-latest-news .bs-latest-news-slider {
  padding: 0;
  list-style: none;
  font-size: 16px;
  line-height: 35px;
  width: 100%;
  margin: 0 auto;
  white-space: nowrap;
  box-sizing: border-box;
  z-index: 0;
  height: 40px;
  overflow: hidden;
  flex: 1;
}
.bs-latest-news .bs-latest-news-slider a {
  text-decoration: none;
  font-weight: normal;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
  line-height: 40px;
}
.bs-latest-news .bs-latest-news-slider a .img, .bs-latest-news .bs-latest-news-slider a img {
  width: 40px;
  height: 35px;
  border-radius: 10px;
  margin-right: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.bs-latest-news .bs-latest-news-slider a:hover {
  opacity: 0.7;
}
.bs-latest-news .bs-latest-news-slider a:focus {
  outline-offset: -3px;
  outline: 1px dashed #fff;
}
.bs-latest-news .bs-latest-news-slider.marquee .item {
  display: inline-flex;
  align-items: center;
}
.bs-latest-news .bs-latest-news-slider.marquee .item i {
  margin-right: 15px;
}

.bs-textcircle {
  z-index: 10;
  padding: 8px;
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 100vmax;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 30px;
  top: 15%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.75);
}
.bs-textcircle:hover .icon {
  transform: rotate(0deg);
}
.bs-textcircle .icon {
  position: absolute;
  width: 60%;
  height: 60%;
  border-radius: 100vmax;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(-45deg);
  transition: all 300ms linear 0ms;
}
.bs-textcircle .icon i {
  font-size: 30px;
  transition: all 300ms linear 0ms;
}
.bs-textcircle svg {
  height: auto;
  transform-origin: center;
  width: 100%;
  animation: textRotation 8s linear infinite;
}
.bs-textcircle svg text {
  font-size: 16px;
  word-spacing: 8px;
  letter-spacing: 1.5px;
}

.align_cls:has(.list-blog) {
  row-gap: 50px;
}

/* ------------blog-right-sidebar------------*/
#content {
  padding: 40px 0;
  position: relative;
}
#content.single-class:has(.bs-single-head) {
  padding-top: 0;
}
#content.single-class:has(.bs-single-head) .bs-breadcrumb-section {
  padding: 0;
  margin: 0;
}
#content.single-class.trspacerin {
  padding-top: 140px;
}
#content.single-class .bs-single-head.one .bs-breadcrumb-section, #content.single-class .bs-single-head.five .bs-breadcrumb-section {
  padding: 0;
  margin-top: 30px;
}
#content.single-class .bs-single-head.one .bs-breadcrumb-section .overlay, #content.single-class .bs-single-head.five .bs-breadcrumb-section .overlay {
  background: transparent;
  box-shadow: unset;
  padding: 0;
}
#content.single-class .bs-single-head.two .single_img img, #content.single-class .bs-single-head.four .single_img img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.bs-section.blog .bs-heading .bs-title {
  margin-bottom: 3rem;
}

#content.trspacerin {
  padding-top: 220px;
}

#content .blogarea-grid {
  display: grid;
  row-gap: 64px;
}
#content .blogarea-grid.column2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 2rem;
  padding: 0;
}
#content .blogarea-grid.column3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column-gap: 2rem;
  padding: 0;
}
#content .blogarea-grid.column4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-column-gap: 2rem;
  padding: 0;
}
#content .blogarea-grid {
  display: grid;
  row-gap: 64px;
}

/*---------------------------------------
	blogs       
-----------------------------------------*/
.bs-blog-post {
  overflow: hidden;
  padding: 0;
}
.bs-blog-post p:last-child {
  margin-bottom: 0;
}
.bs-blog-post.lg {
  position: relative;
  height: 475px;
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1px;
  background-color: #000;
}
.bs-blog-post.three.md {
  width: 100%;
  height: 250px;
}
.bs-blog-post.text-start .bs-blog-category {
  justify-content: flex-start;
}
.bs-blog-post.text-center .bs-blog-category {
  justify-content: center;
}
.bs-blog-post.text-end .bs-blog-category {
  justify-content: flex-end;
}
.bs-blog-post .bs-blog-thumb {
  position: relative;
  min-height: 20px;
  overflow: hidden;
  max-width: 100%;
  border-radius: var(--bxbra);
}
.bs-blog-post .bs-blog-thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scale(0);
  border-radius: 100%;
  opacity: 0.1;
}
.bs-blog-post .bs-blog-thumb .bs-blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
}
.bs-blog-post:hover .bs-blog-thumb::before {
  transform: scale(1);
  border-radius: 0;
  opacity: 0;
  transition: 0.35s, border-radius 0.5s, opacity 0.9s;
}
.bs-blog-post .bs-blog-meta {
  margin-bottom: 0.8rem;
}

.bs-blog-post.grid-card .bs-blog-meta {
  margin-bottom: 0.5rem;
}

.link-div {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.bs-blog-thumb.lg {
  height: 400px;
}
.bs-blog-thumb.lg .blog-slider .swiper-slide {
  height: 400px;
}

.bs-blog-thumb.bsm {
  height: 140px;
}

.bs-blog-thumb.md {
  height: 220px;
}

.bs-blog-post .bs-blog-thumb img {
  max-width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bs-blog-post.one.bshre .bs-blog-thumb.post-format-gallery img, .bs-blog-post.two .bs-blog-thumb.post-format-gallery img {
  width: 100%;
}

/*----- blog-post two -----*/
/*----- blog-post overlay -----*/
.bs-blog-post.three {
  position: relative;
  border-radius: var(--bxbra);
}
.bs-blog-post.three.lg {
  height: 400px;
}
.bs-blog-post.three.md {
  height: 250px;
}
.bs-blog-post.three.bsm {
  height: 185px;
}
.bs-blog-post.three .bs-blog-category {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  z-index: 4;
}
.bs-blog-post.three .title {
  z-index: 5;
  margin-bottom: 10px;
}
.bs-blog-post.three .title.bsm {
  font-size: 20px;
  margin-bottom: 0;
}
.bs-blog-post.three .title.md {
  font-size: 22px;
  margin-bottom: 5px;
}
.bs-blog-post.three .bs-blog-meta {
  margin-bottom: 0;
  z-index: 5;
}
.bs-blog-post.three .inner {
  position: absolute;
  bottom: 0;
  padding: 15px;
  z-index: 4;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  margin-bottom: 10px;
}
.bs-blog-post.three .inner:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.4);
}

/* --blog--four-- */
.bs-blog-post.four {
  display: flex;
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}
.bs-blog-post.four:hover {
  box-shadow: unset;
}
.bs-blog-post.four .bs-blog-thumb {
  width: 55%;
  height: auto;
  z-index: 0;
}
.bs-blog-post.four .small {
  padding: 20px;
  width: 66%;
  margin: 25px 0;
  margin-left: -120px;
  position: relative;
  border-radius: var(--bxbra);
}
.bs-blog-post.four.noimg .small {
  margin-left: -70px;
}

.col-md-12.fadeInDown:nth-child(even) .bs-blog-post.four {
  flex-direction: row-reverse;
}

.col-md-12.fadeInDown:nth-child(even) .bs-blog-post.four .small {
  margin-left: unset;
  margin-right: -70px;
}

/*----- blog-post six -----*/
.bs-blog-post.six {
  position: relative;
  border-radius: var(--bxbra);
}
.bs-blog-post.six.lg {
  height: 400px;
}
.bs-blog-post.six.md {
  height: 250px;
}
.bs-blog-post.six.bsm {
  height: 185px;
}
.bs-blog-post.six .bs-blog-category {
  z-index: 5;
}
.bs-blog-post.six .title {
  z-index: 5;
}
.bs-blog-post.six .title.bsm {
  font-size: 18px;
  margin-bottom: 0;
}
.bs-blog-post.six .bs-blog-meta {
  margin-bottom: 0;
  z-index: 5;
}
.bs-blog-post.six .inner {
  position: absolute;
  padding: 25px;
  z-index: 5;
  bottom: 15px;
  right: 15px;
  left: 15px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  border-radius: 10px;
}
.bs-blog-post.six .inner::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

/*----- blog-post list -----*/
.list-blog.bs-blog-post {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2rem;
  text-align: start;
  padding: 0;
  align-items: center;
}
.list-blog.bs-blog-post.no-img {
  display: flex;
}
.list-blog.bs-blog-post .small {
  padding: 0;
  font-size: 17px;
}
.list-blog.bs-blog-post .title {
  margin-bottom: 15px;
}
.list-blog .bs-blog-thumb {
  border-radius: var(--bxbra);
  height: 100%;
  min-height: 280px;
}
.list-blog .bs-blog-thumb.auto {
  min-height: 100%;
}
.list-blog .bs-blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list-blog .bs-blog-thumb.md {
  height: 250px;
}
.list-blog .bs-blog-thumb .blog-slider {
  min-height: 280px;
  height: 100%;
}
.list-blog .bs-blog-thumb .blog-slider .swiper-slide {
  height: 100%;
}
.list-blog .responsive-video {
  min-height: 250px;
}
.list-blog .bs-blog-category {
  justify-content: flex-start;
}
.list-blog.right .bs-blog-thumb {
  margin-left: 15px;
  margin-right: unset;
}
.list-blog .bs-post-thumb img {
  height: auto;
  max-width: 100%;
}

/*----- List small-post-widget -----*/
.small-post-list-widget .col-grid-2 {
  display: grid;
  grid-column-gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.small-post-list-widget .small-post .img-small-post {
  width: 34%;
  height: 130px;
}

/*----- Recent small-post -----*/
.bs-recent-blog-post {
  margin-bottom: 0;
}
.bs-recent-blog-post .small-post {
  margin-bottom: 0;
  padding: 1.5rem 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.bs-recent-blog-post .small-post:first-child {
  margin-top: 0;
  padding-top: 0;
}
.bs-recent-blog-post .small-post:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.bs-recent-blog-post .small-post .img-small-post {
  min-width: 100px;
  min-height: 100px;
}
.bs-recent-blog-post .small-post .img-small-post img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.bs-recent-blog-post .small-post .title {
  margin-bottom: 0;
}
.bs-recent-blog-post .small-post .bs-blog-meta {
  margin-bottom: 8px;
}
.bs-recent-blog-post .small-post .bs-blog-meta span {
  font-size: 12px;
}
.bs-recent-blog-post .bs-widget-title + .small-post {
  margin-top: 0;
  padding-top: 0;
}

.bs-recent-blog-post .small-post .img-small-post.right {
  border-radius: var(--bxbra);
}

/*----- Recent small-post -----*/
.bs-recent-blog-post.two .small-post:nth-child(2) {
  flex-direction: column;
  gap: 20px;
}
.bs-recent-blog-post.two .small-post:nth-child(2) .img-small-post {
  min-width: 100%;
  min-height: 300px;
}
.bs-recent-blog-post.two .small-post:nth-child(2) .small-post-content {
  gap: 10px;
  width: 100%;
}

/*----- List small-post -----*/
.reverse .small-post {
  flex-direction: row-reverse;
}

.small-post {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
  -moz-column-gap: 20px;
       column-gap: 20px;
}

.small-post .img-small-post {
  width: 20%;
  height: 100%;
  min-width: 130px;
  min-height: 130px;
  overflow: hidden;
  position: relative;
  border-radius: var(--bxbra);
  transition: all 0.3s ease-out;
}

.small-post-content {
  flex: 1;
}
.small-post-content .bs-blog-meta {
  margin-bottom: 0;
}

.small-post .title {
  font-size: 18px;
  line-height: 1.3;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.small-post .title a {
  color: inherit;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left 100%;
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.small-post .title a:hover {
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left 100%;
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.small-post .title.lg {
  font-size: 26px;
}

.bs-widget .small-post-content .title {
  line-height: 1.3;
  text-align: start;
  transition: 0.35s;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/*----- blog-post category -----*/
.bs-blog-category {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 10px;
}
.bs-blog-category a {
  font-size: 13px;
  padding: 4px 8px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  position: relative;
  z-index: 1;
  transition: 0.35s;
}
.bs-blog-category a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  opacity: 0.05;
  z-index: -1;
}
.bs-blog-category a i {
  font-size: 10px;
  margin-right: 3px;
  backface-visibility: hidden;
}
.bs-blog-category.two a {
  border-width: 1px;
  border-style: solid;
}
.bs-blog-category.three a {
  border-radius: 0;
  padding: 0;
  padding-bottom: 5px;
}
.bs-blog-category.four a {
  border-radius: 0;
  padding: 0 8px;
}

.bs-blog-post .title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 15px;
}
.bs-blog-post .title-wrap .title {
  flex-basis: 78%;
  margin-bottom: 0;
}
.bs-blog-post .title-wrap .btn-wrap {
  flex-shrink: 0;
}
.bs-blog-post .title-wrap .btn-wrap a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease 0s;
  border-width: 2px;
  border-style: solid;
}
.bs-blog-post .title-wrap .btn-wrap a i {
  transform: rotate(-45deg);
  transition: all 0.2s ease 0s;
}
.bs-blog-post .title-wrap .btn-wrap a:hover i {
  transform: rotate(0deg);
}
.bs-blog-post .title {
  font-size: 27px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
  text-decoration: none;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.35s;
  word-break: break-word;
}
.bs-blog-post .title a {
  color: inherit;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left 100%;
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.bs-blog-post .title a:hover {
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left 100%;
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.bs-blog-post .title.bsm {
  font-size: 18px;
  line-height: 1.3;
}
.bs-blog-post p {
  word-break: break-word;
  font-size: 1.125rem;
  font-weight: 500;
}

/*----- blog-post meta -----*/
.bs-blog-meta {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  transition: 0.25s;
}
.bs-blog-meta span {
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.bs-blog-meta span.tag-links a {
  padding-right: 4px;
}
.bs-blog-meta span:before {
  position: relative;
  display: inline-flex;
  padding-right: 0;
  padding-left: 0;
  margin-right: 0.5rem;
  text-decoration: inherit;
  vertical-align: baseline;
  opacity: 0.8;
  content: " ";
  width: 0.3125rem;
  height: 0.3125rem;
  border-radius: 50%;
  background: #d2d2d2;
}
.bs-blog-meta span.bs-author a {
  display: flex;
  align-items: center;
}
.bs-blog-meta span.bs-author::before {
  content: unset;
}
.bs-blog-meta span.bs-author img {
  border-radius: 50%;
  width: 25px;
  height: 25px;
  margin-right: 8px;
  margin-left: 1px;
  display: unset;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.bs-author-pic img {
  width: 80px;
  height: 80px;
}

/*----- blog-post post-share-icons -----*/
.post-share-icons {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 30px 0;
  justify-content: center;
  margin-top: 10px;
}
.post-share-icons a {
  width: 36px;
  height: 36px;
  margin-right: 0.538rem;
  text-align: center;
  line-height: 36px;
  position: relative;
  z-index: 1;
  display: block;
  border-radius: 50%;
  overflow: hidden;
  transition: all 0.2s;
}

/*----- blog-post single -----*/
.bs-blog-post.single.head_one {
  min-height: 380px;
  height: 438px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px 50px 30px 50px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
.bs-blog-post.single.head_one .bs-header {
  z-index: 1;
}
.bs-blog-post.single.head_one .bs-header .bs-info-author-block {
  background: transparent;
}
.bs-blog-post.single.head_one::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.bs-blog-post.single.head_two {
  min-height: 380px;
  height: 538px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px 50px 30px 50px;
  border-radius: 0;
  position: relative;
  z-index: 1;
}
.bs-blog-post.single.head_two .bs-header {
  z-index: 1;
}
.bs-blog-post.single.head_two .bs-header .bs-info-author-block {
  background: transparent;
}
.bs-blog-post.single.head_two::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.bs-blog-post.single {
  text-align: start;
  margin-bottom: 25px;
  box-shadow: none;
}
.bs-blog-post.single .bs-header .title {
  font-size: 3.125rem;
  font-weight: 700;
  display: block;
}
.bs-blog-post.single .bs-header .title:hover {
  transform: scale(1);
}
.bs-blog-post.single .small.single {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}
.bs-blog-post.single .small.single p {
  font-size: 20px;
  line-height: 1.5;
}
.bs-blog-post.single .small.single .edit-link {
  font-size: 16px;
}
.bs-blog-post.single .bs-blog-meta .bs-author::before {
  display: none;
}

.bs-single-head .bs-header {
  margin-bottom: 20px;
}
.bs-single-head .bs-header .bs-author:before {
  display: none;
}
.bs-single-head .bs-header .bs-author-pic {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bs-single-head .bs-header .bs-author-pic img {
  width: 30px;
  height: 30px;
  margin: 0;
}
.bs-single-head .bs-info-author-block {
  box-shadow: inherit;
  margin: 0 0 25px;
  padding: 0;
  border: none;
}

.bs-blog-post.single .bs-info-author-block {
  border: none;
  margin-bottom: 20px;
}
.bs-blog-post.single .bs-author-pic {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bs-blog-post.single .bs-author-pic img {
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 50%;
}
.bs-blog-post.single .title {
  font-size: 3rem;
  display: block;
}
.bs-blog-post.single .title:hover {
  transform: scale(1);
}

.bs-info-author-block {
  display: flex;
  border-width: 2px;
  border-style: solid;
}
.bs-info-author-block .bs-author-pic img {
  margin: 0 15px 0 0;
  border-radius: 50%;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  width: 80px;
  height: 80px;
  border: 2px solid;
}
.bs-info-author-block.py-4.px-3.mb-4 {
  border-radius: 5px;
  padding: 20px;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.bs-info-author-block.py-4.px-3.mb-4 .bs-author-pic img {
  margin: 0;
}

/*----- Related Posts -----*/
.bs-related-post-info {
  margin-bottom: 50px;
}
.bs-related-post-info .bs-blog-post {
  box-shadow: none;
}
.bs-related-post-info .bs-blog-post .title a {
  display: inline;
}
.bs-related-post-info .bs-blog-post .bs-blog-category > *:not(:nth-of-type(1), :nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) {
  display: none;
}

/*----- comments -----*/
.bs-blog-post img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.comment-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.comments-area .comment-body {
  border-radius: 20px;
  z-index: 0;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(225, 225, 225, 0.9);
  position: relative;
  padding: 2rem 2.5rem 2.5rem 8.5rem;
  min-height: 10rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.comments-area .comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column;
}
.comments-area .comment-meta .comment-metadata {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.comments-area img.avatar {
  border-radius: 60%;
  position: absolute;
  z-index: 0;
  left: 2.5rem;
  top: 28px;
  width: 60px;
  height: 60px;
}
.comments-area .bs-heading-bor-bt .comments-title {
  font-weight: 400 !important;
}

.comment-content {
  position: relative;
  z-index: 0;
  padding: 16px 70px 16px 0;
}
.comment-content p {
  margin-bottom: 0;
}

.comment-list .children {
  position: relative;
  padding: 0;
  margin: 0;
  margin-left: 4rem;
  z-index: 0;
  list-style: none;
}

.comment-body .reply {
  text-align: end;
}

#comments img {
  max-width: 100%;
}

.reply a {
  font-size: 14px;
  transition: 0.3s ease-in-out 0s;
  border-radius: 0;
  border-left-width: 1px;
  border-left-style: solid;
  padding-left: 10px;
  display: inline-block;
  font-weight: 500;
}

.comment-meta .comment-content {
  position: relative;
  z-index: 0;
  padding: 16px 40px 16px 0;
}

textarea#comment {
  height: 250px;
}

/*----- masonary -----*/
.bs-masonry-columns {
  -moz-columns: 3;
       columns: 3;
  -moz-column-gap: 40px;
       column-gap: 40px;
}
.bs-masonry-columns.column2 {
  -moz-columns: 2;
       columns: 2;
}

.bs-masonry-columns .bs-blog-post {
  margin: 0 0 40px 0;
  display: inline-block;
  width: 100%;
}

.bs-blog-post .small {
  padding: 20px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5rem;
}

.bs-single-head .container {
  z-index: 1;
}
.bs-single-head .bs-header .bs-info-author-block {
  margin: 0 0 25px;
  padding: 0;
  box-shadow: inherit;
  background: none;
  border: none;
  align-items: center;
}
.bs-single-head .bs-header .bs-info-author-block .bs-author-pic .img-circle {
  width: 50px;
  height: 50px;
}
.bs-single-head .bs-header .bs-info-author-block .flex-grow-1 .btitle {
  font-size: 16px;
  margin-bottom: 0.3rem;
}
.bs-single-head .bs-header .bs-info-author-block .flex-grow-1 .bs-blog-meta {
  gap: 0.2rem;
}
.bs-single-head .bs-header .bs-info-author-block .flex-grow-1 .bs-blog-meta span::before {
  display: none;
}
.bs-single-head.one {
  min-height: 380px;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px 0;
  border-radius: 0;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.bs-single-head.one .bs-header {
  margin: 0 0 20px;
}
.bs-single-head.one .bs-header .title {
  font-size: 3rem;
}
.bs-single-head.one .bs-info-author-block .d-flex {
  gap: 15px;
  font-size: 18px;
}
.bs-single-head.one .bs-breadcrumb-section {
  z-index: 2;
  margin-top: 30px;
  background: transparent;
}
.bs-single-head.one .bs-breadcrumb-section .overlay {
  background: transparent;
  box-shadow: unset;
  padding: 0;
}
.bs-single-head.one::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.bs-single-head.two {
  padding: 50px 0;
  margin-bottom: 40px;
}
.bs-single-head.two .bs-header .bs-info-author-block {
  margin-bottom: 20px;
  background: transparent;
  border: none;
}
.bs-single-head.two .bs-header .title {
  font-size: 3.7rem;
}
.bs-single-head.two .bs-header .description {
  font-size: 18px;
}
.bs-single-head.three .title {
  font-size: 38px;
  font-weight: 700;
}
.bs-single-head.four {
  padding: 50px 0;
  margin-bottom: 40px;
}
.bs-single-head.four .title {
  font-size: 3.8rem;
  font-weight: 700;
}
.bs-single-head.four.column2 {
  gap: 5rem;
}
.bs-single-head.four .single_img {
  order: 2;
}
.bs-single-head.four .single_img img {
  border-radius: 20px;
}
.bs-single-head.four .single_img figcaption {
  font-size: 12px;
  margin-top: 5px;
  text-align: center;
}
.bs-single-head.four .single_img figcaption a {
  font-size: 12px;
}
.bs-single-head.five {
  min-height: 450px;
  height: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 50px 20px 0px 20px;
  border-radius: 15px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: 30px;
  margin-bottom: 30px;
}
.bs-single-head.five .bs-header {
  width: 100%;
  padding: 20px;
  border-radius: 20px;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  position: relative;
  margin-bottom: 30px;
}
.bs-single-head.five .bs-header .title {
  font-size: 3rem;
}
.bs-single-head.five::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.bs-blog-post.single img {
  border-radius: var(--bxbra);
}
.bs-blog-post.single .small {
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}
.bs-blog-post.single .small p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 32px;
  letter-spacing: -0.03em;
}
.bs-blog-post.single .small .wp-block-heading {
  margin-top: 32px;
  margin-bottom: 16px;
}
.bs-blog-post.single .small .wp-block-image {
  margin-top: 32px;
  margin-bottom: 32px;
}

/*---------------------------------------
=========================================
	Category Widget
=========================================
-----------------------------------------*/
.custom-cate-list .fea-cate {
  height: 70px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 20px;
  color: #fff;
  font-weight: 600;
  border-radius: var(--bxbra);
}

.custom-cate-list .d-grid {
  gap: 20px;
}

.custom-cate-list .fea-cate span {
  color: #fff;
  position: relative;
}

.custom-cate-list .fea-cate span.badge {
  color: #fff;
  width: 20px;
  height: 20px;
  line-height: 35px;
  border-radius: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-cate-list .fea-cate::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  content: "";
  background: rgba(0, 0, 0, 0.3);
}

/*---------------------------------------
=========================================
	Round Post Widget
=========================================
-----------------------------------------*/
.round-recent-post-widget {
  display: grid;
  row-gap: 26px;
}
.round-recent-post-widget .small-post {
  grid-template-columns: auto minmax(calc(100% - 200px), 35%);
}
.round-recent-post-widget .small-post .title {
  font-size: 16px;
}
.round-recent-post-widget .small-post .img-small-post {
  height: unset;
  min-width: 100px;
  min-height: 100px;
  border-radius: 50%;
}

/*----- Double Category small-post -----*/
.double-category-posts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-column-gap: 1.5rem;
}
.double-category-posts .bs-widget-title {
  margin-bottom: 0;
}
.double-category-posts .colinn {
  padding: 0;
  display: grid;
  row-gap: 30px;
}
.double-category-posts .small-post.bs-post-1 {
  flex-direction: column;
  row-gap: 20px;
}
.double-category-posts .small-post.bs-post-1 .bs-blog-category {
  position: absolute;
  top: 30px;
  left: 20px;
}
.double-category-posts .small-post.bs-post-1 .img-small-post {
  height: 370px;
  width: 100%;
}
.double-category-posts .small-post.bs-post-1 .small-post-content {
  width: 100%;
}

/*---------------------------------------
=========================================
	Multi Post Widget
=========================================
-----------------------------------------*/
.multi-post-widget .bs-blog-post.three.bsm {
  min-height: 233px;
  height: 100%;
}

.multi-post-widget .bs-blog-post.three.bsm .title {
  font-size: 18px;
}

.multi-post-widget .bs-blog-post.three.lg {
  height: 520px;
}

.multi-post-widget.mb-0 .row.gx-1 .col-sm-6 {
  display: none;
}

.multi-post-widget.mb-0 .row.gx-1 .col-sm-6:nth-child(1) {
  display: block;
}

.multi-post-widget.mb-0 .row.gx-1 .col-sm-6:nth-child(2) {
  display: block;
}

.multi-post-widget .inner_columns {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 1.5rem;
  padding: 0;
}

.multi-post-widget .inner_columns.one .post-1 {
  grid-area: 1/1/span 2/span 2;
}

.multi-post-widget .inner_columns.two .post-3 {
  grid-area: 2/1/span 1/span 2;
}

.multi-post-widget .inner_columns.three, .multi-post-widget .inner_columns.default {
  grid-template-columns: auto;
}

.multi-post-widget .inner_columns.four {
  grid-template-columns: auto auto;
}

.multi-post-widget .inner_columns.four .bs-blog-post.bsm {
  height: 470px;
}

.multi-post-widget .inner_columns.five {
  grid-template-columns: auto auto;
}

/*---------------------------------------
=========================================
	Featured Post Widget
=========================================
-----------------------------------------*/
.featured-widget .bs-blog-post, .featured-tab-widget .bs-blog-post {
  padding: 0;
}
.featured-widget .bs-blog-post.lg, .featured-tab-widget .bs-blog-post.lg {
  height: 100%;
  min-height: 400px;
}
.featured-widget .colinn, .featured-tab-widget .colinn {
  display: grid;
  row-gap: 30px;
  align-items: flex-start;
}

.bypostauthor {
  border-radius: 20px;
}

/*---------------------------------------
=========================================
	Video Post Widget
=========================================
-----------------------------------------*/
.video-tab-widget {
  margin: auto;
  /* width */
}
.video-tab-widget .bs-blog-post.three.lg {
  min-height: 565px;
}
.video-tab-widget .colinn.first {
  grid-column: 1/3;
  grid-column-start: 1;
  grid-row-start: 1;
  grid-row-end: 3;
}
.video-tab-widget .vertcol {
  overflow-y: scroll;
  height: 565px;
}
.video-tab-widget .vertcol .tabs {
  flex-direction: column;
  gap: 15px;
}
.video-tab-widget .vertcol .tabs .tab-button {
  padding: unset;
  border: none;
  border-radius: 0;
  text-align: start;
  background: transparent;
}
.video-tab-widget .vertcol .small-post .bs-btn-play {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.video-tab-widget .vertcol .small-post .bs-btn-play span {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 50px;
}
.video-tab-widget::-webkit-scrollbar {
  width: 3px;
  border-radius: 3px;
}
.video-tab-widget .video-icon {
  width: 100%;
  height: 100%;
}

.bs-widget {
  margin-bottom: 30px;
}
.bs-widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.bs-widget ul li {
  display: block;
  letter-spacing: 0.2px;
  overflow: hidden;
  padding: 4px 0;
}
.bs-widget ul li:last-child {
  border: none;
  margin-bottom: 0;
}

/*--search_bar--*/
.bs-widget .wp-block-search__button-outside .wp-block-search__label {
  font-size: 20px;
  font-family: var(--Fontheading);
  width: auto;
}

.wp-block-search .wp-block-search__inside-wrapper {
  display: flex;
  flex: auto;
  flex-wrap: nowrap;
  max-width: 100%;
  margin-top: 10px;
  gap: 10px;
}
.wp-block-search .wp-block-search__input {
  flex: 1;
  margin-bottom: 0;
}
.wp-block-search button.wp-block-search__button {
  margin-left: 0;
  line-height: 1;
  padding-top: 10px;
  padding-right: 15px;
  padding-bottom: 10px;
  padding-left: 15px;
  outline: none;
  border: none;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-bottom-left-radius: 30px;
}

/*--/search_bar--*/
.widget_block {
  padding-bottom: 30px;
  border-radius: 0;
}
.widget_block ul li {
  padding: 4px 0;
  position: relative;
  transition: all 0.4s ease-in-out 0s;
  margin: 0 0 10px;
}
.widget_block ul li:last-child {
  border-bottom: none;
}
.widget_block h2 {
  font-size: 20px;
}
.widget_block .wp-block-heading, .widget_block .wp-block-search__label {
  font-weight: 600;
  margin-bottom: 10px;
  padding: 0;
  position: relative;
  padding: 8px 15px;
  border-radius: 8px;
  display: inline-flex;
  z-index: 1;
  gap: 8px;
}
.widget_block .wp-block-heading::before, .widget_block .wp-block-search__label::before {
  content: "";
  position: absolute;
  width: 136vh;
  height: 1px;
  z-index: -2;
  transform: translateY(-50%);
  top: 50%;
}
.widget_block .wp-block-heading::after, .widget_block .wp-block-search__label::after {
  content: "";
  position: absolute;
  border-radius: 8px;
  z-index: -1;
  inset: 0;
}
.widget_block .wp-block-heading span, .widget_block .wp-block-search__label span {
  display: block;
}
.widget_block .wp-block-heading span i, .widget_block .wp-block-search__label span i {
  transform: rotate(-45deg);
}

.bs-widget ul li {
  padding: 4px 0;
  position: relative;
  transition: all 0.4s ease-in-out 0s;
  margin: 0 0 10px;
}

.sidebar-right #sidebar-right {
  padding-left: 30px;
}

.sidebar-left #sidebar-right {
  padding-right: 30px;
}

.bs-sidebar {
  display: grid;
  row-gap: 30px;
}
.bs-sidebar a {
  transition: all 0.3s ease 0s;
}
.bs-sidebar .widget_search {
  padding: 0;
}
.bs-sidebar .wp-block-search .wp-block-search__input {
  margin: 0;
}
.bs-sidebar .widget_block {
  border-bottom-style: solid;
  border-bottom-width: 1px;
}
.bs-sidebar .widget_block:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.bs-sidebar .wd-back {
  margin-bottom: 0;
}
.bs-sidebar .bs-widget {
  margin-bottom: 0;
  padding-bottom: 30px;
  overflow: hidden;
  word-break: break-word;
}
.bs-sidebar .bs-widget:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.bs-sidebar .bs-widget .wp-block-categories-list li {
  display: flex;
}
.bs-sidebar .bs-widget .wp-block-categories-list li a {
  flex: 1;
}
.bs-sidebar .bs-widget h2 form {
  padding: 0 10px;
}
.bs-sidebar .bs-widget ul li {
  position: relative;
  transition: all 0.4s ease-in-out 0s;
}
.bs-sidebar .bs-widget.widget_post-author-widget {
  padding: 0px;
  font-weight: 500;
  transition: all 0.5s;
  text-align: center;
}
.bs-sidebar .bs-widget.widget_post-author-widget ul.bs-social {
  gap: 8px;
  padding: 0;
  justify-content: center;
  flex-direction: row;
}
.bs-sidebar .bs-widget.widget_post-author-widget .bs-author .inner {
  flex-direction: column;
  gap: 15px;
}
.bs-sidebar .bs-widget.widget_post-author-widget .bs-author .inner .bs-author-info {
  margin-bottom: 10px;
}
.bs-sidebar .bs-widget.widget_post-author-widget .bs-author::before {
  content: unset;
}
.bs-sidebar .bs-widget.widget_post-author-widget .bs-author .bs-author-img {
  border-radius: 100%;
  padding: 5px;
  border-width: 1px;
  border-style: solid;
  border-bottom-color: transparent;
  border-left-color: transparent;
  position: relative;
}
.bs-sidebar .bs-widget.widget_post-author-widget .bs-author .bs-author-img::before {
  content: "";
  position: absolute;
  inset: 0;
  border-width: 3px;
  border-style: solid;
  border-bottom-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  border-radius: 100%;
  border-right-color: var(--pri-color);
  right: -1px;
  transition: 0.65s;
}
.bs-sidebar .bs-widget.widget_post-author-widget .bs-author img.rounded-circle {
  padding: 2px;
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: all 0.5s;
}
.bs-sidebar .bs-widget.widget_post-author-widget .bs-author .designation {
  font-size: 14px;
}
.bs-sidebar .bs-widget.widget_post-author-widget .bs-author p {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}
.bs-sidebar .bs-widget.widget_post-author-widget .bs-author:hover .bs-author-img:before {
  transform: rotate(360deg);
}
.bs-sidebar .bs-widget.widget_recent_entries ul li .post-date {
  font-size: 13px;
}
.bs-sidebar .bs-widget.widget_archive ul li {
  display: flex;
}
.bs-sidebar .bs-widget.widget_archive ul li a {
  flex: 1;
}
.bs-sidebar .widget_categories ul li {
  display: flex;
  justify-content: space-between;
}
.bs-sidebar .widget_search form .input-group {
  display: flex;
  gap: 15px;
}
.bs-sidebar .wp-block-cover {
  margin-top: 0;
  margin-bottom: 0;
}

.front-page-class .bs-widget:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.bs-sidebar .bs-widget .bs-widget-tags, .bs-sidebar .bs-widget .tagcloud {
  margin: 0;
  overflow: hidden;
  padding: 0;
}

.bs-sidebar .bs-widget .bs-widget-tags a, .bs-sidebar .bs-widget .tagcloud a {
  cursor: pointer;
  display: inline-block;
  font-size: 14px !important;
  font-weight: bold;
  line-height: 20px;
  margin: 0 5px 9px 0;
  padding: 6px 12px;
  transition: all 0.4s ease-in-out 0s;
  border-radius: var(--bxbra);
  text-transform: capitalize;
  color: var(--secondary-color);
}

.bs-sidebar .bs-widget-tags a:hover, .bs-sidebar .bs-widget .tagcloud a:hover {
  transition: all 0.4s ease-in-out 0s;
}

.bs-sidebar .bs-widget ul.bs-social {
  padding: 10px 0px 10px 5px;
  margin: 0;
  flex-direction: column;
  gap: 15px;
}

.bs-sidebar .bs-widget ul.bs-social li {
  display: inline-flex;
  border: inherit;
  padding: 5px;
  border-radius: 50px;
  gap: 15px;
  overflow: visible;
}

.bs-sidebar .bs-widget ul.bs-social li .icon-soci {
  position: relative;
}

.bs-sidebar .bs-widget ul.bs-social li .icon-soci::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 100%;
  border-width: 2px;
  border-style: solid;
}

.bs-sidebar .bs-widget ul.bs-social li .icon-soci-content {
  display: flex;
  align-items: center;
  gap: 5px;
}

.bs-sidebar .bs-widget ul.bs-social li a i {
  margin: 0px;
  text-align: center;
  padding: 0;
  width: unset;
  height: unset;
  line-height: 1;
  border-radius: 0;
}

.bs-sidebar .featured-widget .d-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.wp-block-latest-comments .wp-block-latest-comments__comment-author {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  cursor: pointer;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-link {
  text-decoration: none;
  font-size: 16px;
  transition: all 0.2s;
}
.wp-block-latest-comments .wp-block-latest-comments__comment-link:hover {
  text-decoration: underline;
}

.wp-block-latest-posts li, .wp-block-categories-list li, .wp-block-categories__list li, .wp-block-archives-list li, .widget_categories li, .bs-widget.widget_categories li, .bs-widget.widget_recent_entries li,
.bs-widget .wp-block-latest-posts li, .bs-widget .wp-block-categories-list li, .bs-widget .wp-block-categories__list li, .bs-widget .wp-block-archives-list li, .bs-sidebar .bs-widget.widget_archive ul li, .wp-block-latest-comments li {
  padding: 12px 0;
  border-width: 0 0 1px 0;
  border-style: solid;
  display: flex;
  align-items: flex-start;
}
.wp-block-latest-posts li a, .wp-block-categories-list li a, .wp-block-categories__list li a, .wp-block-archives-list li a, .widget_categories li a, .bs-widget.widget_categories li a, .bs-widget.widget_recent_entries li a,
.bs-widget .wp-block-latest-posts li a, .bs-widget .wp-block-categories-list li a, .bs-widget .wp-block-categories__list li a, .bs-widget .wp-block-archives-list li a, .bs-sidebar .bs-widget.widget_archive ul li a, .wp-block-latest-comments li a {
  flex: 1;
}
.wp-block-latest-posts li::before, .wp-block-categories-list li::before, .wp-block-categories__list li::before, .wp-block-archives-list li::before, .widget_categories li::before, .bs-widget.widget_categories li::before, .bs-widget.widget_recent_entries li::before,
.bs-widget .wp-block-latest-posts li::before, .bs-widget .wp-block-categories-list li::before, .bs-widget .wp-block-categories__list li::before, .bs-widget .wp-block-archives-list li::before, .bs-sidebar .bs-widget.widget_archive ul li::before, .wp-block-latest-comments li::before {
  content: "\f07c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 8px;
  vertical-align: bottom;
  font-size: 18px;
}

.wp-block-latest-comments {
  margin-bottom: 0;
}
.wp-block-latest-comments li {
  margin-bottom: 10px;
}
.wp-block-latest-comments li:last-child {
  border: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.wp-block-latest-comments li::before {
  content: "\f27a";
}

.wp-block-categories-list li::before, .wp-block-categories__list li::before, .bs-widget .wp-block-categories-list li::before, .bs-widget .wp-block-categories__list li::before, .widget_categories li::before, .bs-widget.widget_categories li::before {
  content: "\f3ca";
  font-family: "Font Awesome 6 Brands";
  font-weight: 500;
}

.bs-widget .wp-block-latest-posts li:has(.wp-block-latest-posts__featured-image, .wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date, .wp-block-latest-posts__post-excerpt), .wp-block-latest-posts li:has(.wp-block-latest-posts__featured-image, .wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date, .wp-block-latest-posts__post-excerpt), .bs-widget.widget_recent_entries li:has(.wp-block-latest-posts__featured-image, .wp-block-latest-posts__post-author, .wp-block-latest-posts__post-date, .wp-block-latest-posts__post-excerpt) {
  display: block;
}
.bs-widget .wp-block-latest-posts li:has(.wp-block-latest-posts__featured-image)::before, .wp-block-latest-posts li:has(.wp-block-latest-posts__featured-image)::before, .bs-widget.widget_recent_entries li:has(.wp-block-latest-posts__featured-image)::before {
  display: none;
}
.bs-widget .wp-block-latest-posts li:has(.wp-block-latest-posts__featured-image) .wp-block-latest-posts__post-title, .wp-block-latest-posts li:has(.wp-block-latest-posts__featured-image) .wp-block-latest-posts__post-title, .bs-widget.widget_recent_entries li:has(.wp-block-latest-posts__featured-image) .wp-block-latest-posts__post-title {
  font-weight: 500;
  font-size: 17px;
}
.bs-widget .wp-block-latest-posts li .wp-block-latest-posts__featured-image:has(.attachment-large.size-large) + .wp-block-latest-posts__post-title, .wp-block-latest-posts li .wp-block-latest-posts__featured-image:has(.attachment-large.size-large) + .wp-block-latest-posts__post-title, .bs-widget.widget_recent_entries li .wp-block-latest-posts__featured-image:has(.attachment-large.size-large) + .wp-block-latest-posts__post-title {
  font-size: 22px;
  font-weight: 600;
}
.bs-widget .wp-block-latest-posts li::before, .wp-block-latest-posts li::before, .bs-widget.widget_recent_entries li::before {
  content: "\f00b";
}

.wp-block-cover, .wp-block-cover-image {
  border-radius: var(--bxbra);
}

.wp-block-categories-list .current-cat {
  font-weight: 700;
}

.widget_meta ul li {
  padding: 12px 0;
  border-bottom: 1px solid;
}
.widget_meta ul li::before {
  content: "\f007";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  margin-right: 8px;
  font-size: 14px;
}
.widget_meta ul li:nth-child(2)::before {
  content: "\f2f6";
}
.widget_meta ul li:nth-child(3)::before {
  content: "\f09e";
}
.widget_meta ul li:nth-child(4)::before {
  content: "\f086";
}
.widget_meta ul li:nth-child(5)::before {
  content: "\f324";
  font-family: "dashicons";
}

/* ---Popular_tags---*/
.bs-widget-tags, .tagcloud, .wp-block-tag-cloud {
  margin: 0;
  overflow: hidden;
  padding: 0;
}
.bs-widget-tags a, .tagcloud a, .wp-block-tag-cloud a {
  cursor: pointer;
  display: inline-block;
  font-size: 14px !important;
  font-weight: bold;
  line-height: 20px;
  margin: 0 5px 9px 0;
  padding: 6px 12px;
  transition: all 0.4s;
  border-radius: var(--bxbra);
  text-transform: capitalize;
  border-width: 1px;
  border-style: solid;
}
.bs-widget-tags a:hover, .tagcloud a:hover, .wp-block-tag-cloud a:hover {
  transition: all 0.4s;
}
.bs-widget-tags a::before, .tagcloud a::before, .wp-block-tag-cloud a::before {
  content: "#";
  margin-right: 2px;
}

/* ---tag_cloud---*/
.popular_tab_Widget .tab-wrapper .tabs {
  justify-content: space-evenly;
}
.popular_tab_Widget .tab-wrapper .tabs .tab-button {
  padding: 4px 9px;
}

.tab-wrapper.tabbed-post-widget .tabs {
  margin-bottom: 25px;
}
.tab-wrapper.filter-feature-widget .small-post .title {
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.tab-wrapper .tabs {
  display: flex;
  gap: 8px;
}
.tab-wrapper .tabs .tab-button {
  cursor: pointer;
  display: inline-block;
  font-size: 14px !important;
  font-weight: bold;
  line-height: 20px;
  padding: 3px 12px;
  transition: all 0.4s;
  border-radius: var(--bxbra);
  text-transform: capitalize;
  border-width: 1px;
  border-style: solid;
  flex: 1;
  text-align: center;
  border-radius: 30px;
}
.tab-wrapper .tab-content {
  display: none;
}
.tab-wrapper .tab-content.active {
  display: block;
}
.tab-wrapper .tab-content .small-post {
  margin-bottom: 15px;
}
.tab-wrapper .tab-content .small-post .img-small-post {
  min-width: 100px;
  min-height: 100px;
  width: 100px;
  height: auto;
  border-radius: 50%;
}

.hide-content {
  display: none !important;
}

/*---------------------------------------
    Ordered Slider
-----------------------------------------*/
.bs-no-list-area .img-small-post {
  min-width: 100px;
  min-height: 100px;
  width: 100px;
  height: 100px;
  overflow: visible;
  position: relative;
}
.bs-no-list-area .img-small-post img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease-in-out 0s;
}
.bs-no-list-area .count {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
  margin: auto;
  width: 30px;
  border: 3px solid;
  height: 30px;
  font-size: 12px;
  line-height: 25px;
  z-index: 1;
  text-align: center;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-block-heading span {
  display: none;
}

/*---------------------------------------
	Top Tags       
-----------------------------------------*/
.bs-tpt-tag-area {
  padding: 10px 0px;
  margin: 0;
  font-size: 14px;
}

.bs-tpt-txnlst {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.bs-tpt-txnlst strong {
  padding: 2px 8px;
  border-radius: 4px;
}
.bs-tpt-txnlst ul {
  display: inline-flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}
.bs-tpt-txnlst ul li {
  display: inherit;
}
.bs-tpt-txnlst ul li a {
  cursor: pointer;
  display: inline-block;
  font-size: 13px !important;
  font-weight: bold;
  line-height: 20px;
  padding: 0 7px;
  transition: all 0.4s;
  text-transform: capitalize;
  border-width: 1px;
  border-style: solid;
  flex: 1;
  text-align: center;
  border-radius: 30px;
}
.bs-tpt-txnlst ul li a:before {
  content: "\f292";
  font-family: "Font Awesome 5 Free";
  font-size: 10px;
  padding: 0 2px;
  font-weight: 900;
}

/*----- blog-post slider -----*/
.mainfeatured {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 30px;
  z-index: 0;
  padding-top: 30px;
}
.mainfeatured .homemain {
  border-radius: var(--bxbra);
}
.mainfeatured .homemain .bs-blog-post {
  box-shadow: none;
}
.mainfeatured .featinner {
  padding-top: 0;
}
.mainfeatured .multi-post-widget .bs-blog-post {
  box-shadow: none;
}
.mainfeatured.three .homemain {
  border-radius: 0;
}
.mainfeatured.three .featinner {
  padding-top: 0;
}
.mainfeatured.three .gx-1 > * {
  gap: 0;
  margin: 0;
  padding: 0;
}
.mainfeatured.three .bs-blog-post.three {
  border-radius: 0;
}
.mainfeatured.three .bs-slide.bs-blog-post.three.lg {
  height: 600px;
  margin-right: 0;
}
.mainfeatured.three .bs-slide.bs-blog-post.three.lg .inner {
  padding: 60px;
}
.mainfeatured.three .multi-post-widget .inner_columns {
  grid-gap: 0;
}
.mainfeatured.three .multi-post-widget .bs-blog-post.three.bsm {
  height: 300px;
}
.mainfeatured.four .homemain {
  border-radius: 0;
}
.mainfeatured.four .featinner {
  padding-top: 0;
}
.mainfeatured.four .container {
  max-width: unset;
  padding: 0;
  margin: 0;
}
.mainfeatured.four .gx-1 > * {
  gap: 0;
  margin: 0;
  padding: 0;
}
.mainfeatured.four .bs-blog-post.three {
  border-radius: 0;
}
.mainfeatured.four .bs-slide.bs-blog-post.three.lg {
  height: 600px;
}
.mainfeatured.four .bs-slide.bs-blog-post.three.lg .inner {
  align-items: center;
}
.mainfeatured.four .bs-slide.bs-blog-post.three.lg .inner .title {
  width: 70%;
  text-align: center;
  font-size: 40px;
}
.mainfeatured.four .multi-post-widget .bs-blog-post {
  box-shadow: none;
}
.mainfeatured.four .multi-post-widget .inner_columns {
  grid-gap: 0;
}
.mainfeatured .small-post {
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border-color);
}
.mainfeatured .small-post .bs-blog-meta {
  margin-bottom: 0px;
}
.mainfeatured .small-post:first-child {
  padding-top: 0;
  margin-top: 0;
  border: none;
}
.mainfeatured .small-post:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.mainfeatured .small-post .img-small-post {
  min-width: 100px;
  min-height: 100px;
}
.mainfeatured .small-post .title {
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.mainfeatured .small-post .img-round {
  border-radius: 100%;
}

.mainfeatured .featinner {
  z-index: 1;
}

.mainfeatured.over .featinner {
  padding-bottom: 30px;
  padding-top: 30px;
  margin-top: 0;
}
.bs-slide.bs-blog-post.three.lg {
  height: 490px;
}

.mainfeatured .bs-widget {
  box-shadow: none;
  background-color: transparent;
}

.mainfeatured .wd-back {
  margin-bottom: 0;
}

.mainfeatured .multi-post-widget .inner_columns {
  grid-gap: 1.5rem;
}

.bs-slide .bs-blog-post.three.lg {
  height: 470px;
}
.bs-slide .inner .title {
  font-size: 38px;
}

/*---------------------------------------
=========================================
	Multi Post Widget
=========================================
-----------------------------------------*/
.multi-post-widget .bs-blog-post.three.bsm {
  height: 233.5px;
}
.multi-post-widget .bs-blog-post.three.bsm .title {
  font-size: 20px;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.multi-post-widget .bs-blog-post.three.bsm.post-1 .title, .multi-post-widget .bs-blog-post.three.bsm.post-2 .title {
  font-size: 20px;
}
.multi-post-widget .bs-blog-post.three.lg {
  height: 520px;
}
.multi-post-widget.mb-0 .row.gx-1 .col-sm-6 {
  display: none;
}
.multi-post-widget.mb-0 .row.gx-1 .col-sm-6:nth-child(1), .multi-post-widget.mb-0 .row.gx-1 .col-sm-6:nth-child(2) {
  display: block;
}
.multi-post-widget .inner_columns {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 1.5rem;
  padding: 0;
}
.multi-post-widget .inner_columns.one .post-1 {
  grid-area: 1/1/span 2/span 2;
}
.multi-post-widget .inner_columns.two .post-3 {
  grid-area: 2/1/span 1/span 2;
}
.multi-post-widget .inner_columns.three {
  grid-template-columns: auto;
}
.multi-post-widget .inner_columns.three .title {
  font-size: 28px;
}
.multi-post-widget .inner_columns.four {
  grid-template-columns: auto auto;
}
.multi-post-widget .inner_columns.four .bs-blog-post.bsm {
  height: 600px;
}
.multi-post-widget .inner_columns.five {
  grid-template-columns: auto auto;
}

.bs-tpt-tag-area + .mainfeatured {
  padding: 0;
}

/*bs marquee section*/
.bs-marquee {
  padding: 0px 0;
  position: relative;
  overflow: hidden;
  border-width: 2px 0 2px 0;
  border-style: solid;
  border-color: #e5e5e5;
  transform: rotate(var(--rotale));
}
.bs-marquee .overlay {
  padding: 20px 0;
}
.bs-marquee .marquee-item .item {
  display: inline-flex;
  align-items: center;
  gap: 30px;
}
.bs-marquee .marquee-item .item .title {
  text-transform: uppercase;
  white-space: nowrap;
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 36px;
  font-family: var(--Fontheading);
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-left: 30px;
  font-display: swap;
}
.bs-marquee .marquee-item .item .title::before {
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: #fff;
  color: transparent;
  content: attr(data-title);
}
.bs-marquee .marquee-item .item i {
  font-size: 25px;
}
.bs-marquee .marquee-item .item i.fa-arrow-right {
  transform: rotate(-45deg);
}

.bs-marquee .marquee-item .js-marquee-wrapper, .bs-latest-news-slider.marquee .js-marquee-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/*---------------------------------------
=========================================
	Advertising Banner
=========================================
-----------------------------------------*/
.advertising-banner {
  display: flex;
  justify-content: flex-end;
}
.advertising-banner .img-fluid.pull-right img {
  margin: 0 auto;
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}

.center .advertising-banner {
  justify-content: center;
}

.missedslider .bs-blog-post {
  box-shadow: none;
}

/*---------------------------------------
	404 Page 
-----------------------------------------*/
.bs-error-404 .title {
  font-size: 120px;
}

.bs-error-404 .subtitle {
  font-size: 32px;
}

.bs-error-404 .title i {
  margin: 0 5px;
}

.bs-tpt-tag-area {
  padding: 10px 0px;
  margin: 0;
  font-size: 14px;
}

.tobbar-right {
  flex-wrap: wrap;
  gap: 10px;
  height: 100%;
}

/*---------------------------------------
	 Footer CSS
-----------------------------------------*/
.missed {
  margin-bottom: 30px;
}
.missed .inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.missed .wd-back {
  position: relative;
}
.missed .wd-back .swiper-pagination {
  position: absolute;
  top: 10px;
  right: 0;
}
.missed .wd-back .swiper-pagination .swiper-pagination-bullet {
  margin-right: 8px;
  background: var(--text-color);
  opacity: 0.6;
}
.missed .wd-back .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--pri-color);
  width: 18px;
  border-radius: 8px;
}
.missed .bs-blog-post.three .title a {
  display: inline;
}

footer.one .bs-footer-widget-area {
  padding: 60px 0 0px;
}
footer.one .site-branding-text {
  margin-top: 10px;
}
footer.one .site-branding-text .site-title-footer a {
  font-size: 40px;
  font-weight: 600;
}
footer.one .bs-footer-bottom-area {
  padding: 40px 0;
}
footer.one .bs-footer-bottom-area .col-lg-6 .bs-social {
  justify-content: flex-end;
}
footer.one .bs-footer-bottom-area .col-lg-12 .bs-social {
  justify-content: center;
}
footer.one .bs-footer-copyright .bs-social {
  justify-content: flex-end;
}
footer.one .bs-footer-copyright .info-right {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 0;
  padding: 0;
}
footer.one .bs-footer-copyright p {
  margin-bottom: 0;
}
footer.two .bs-footer-widget-area {
  padding: 0;
}
footer.two .bs-footer-widget-area .row {
  padding: 50px 50px 20px 50px;
  border-radius: 20px;
  margin-right: 0;
  margin-left: 0;
}
footer .widget_categories ul li {
  display: flex;
  justify-content: space-between;
}
footer .menu-item-has-children.dropdown .dropdown-menu {
  display: none;
}

footer {
  /*-----middile_footer---*/
}
footer .bs-footer-widget-area .row {
  row-gap: 1.5rem;
}
footer h3 {
  margin: 0 0 30px 0;
  font-size: 22px;
  line-height: 26px;
  position: relative;
  padding: 0;
}
footer h3 span {
  color: var(--pri-color);
}
footer .bs-widget {
  background: unset;
  box-shadow: none !important;
  margin: 0;
}
footer .bs-widget .footer-logo {
  margin: 0 0 60px 0;
}
footer .bs-widget ul li {
  margin: 0;
}
footer .widget_block {
  margin: 0;
  padding-bottom: 0;
  overflow: hidden;
}
footer .widget_block ul li {
  margin: 0;
}
footer .bs-recent-blog-post .small-post {
  padding: 0.5rem 0;
}
footer .bs-footer-copyright {
  padding: 23px 0;
}
footer .bs-footer-copyright .footer-logo .navbar-brand {
  display: inline-block;
}
footer .bs-footer-copyright .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .bs-footer-copyright .footer-inner .copyright p {
  margin: 0;
}
footer .bs-footer-copyright .footer-inner .footer-social ul {
  display: flex;
  align-items: color;
  justify-content: flex-end;
}

footer .widget_newspaperup_featured_latest_news {
  border-bottom: 0;
}

.bs_upscr {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: none;
  text-align: center;
  position: fixed;
  bottom: 5%;
  right: 1%;
  line-height: 2.5rem;
  font-size: 1.2rem;
  transition: 0.5s;
  z-index: 50;
  cursor: pointer;
}
.bs_upscr i {
  transform: rotate(0deg);
  transition: 0.5s;
}
.bs_upscr:hover {
  bottom: 6%;
}
.bs_upscr.showBtn {
  display: block;
}

.footer-top {
  padding: 50px 0;
}

.footer-logo .site-branding-text .site-title a {
  font-weight: 700;
  font-size: 40px;
  line-height: 1.2;
}

/* --------------------------------------
=========================================
  woocommerce
=========================================
-----------------------------------------*/
/*----woocommerce----*/
/* woocommerce v2.3.5 */
*:focus {
  outline: 0;
}

/*----product----*/
.woocommerce .products span.onsale, .woocommerce span.onsale {
  border-radius: 0;
  display: block;
  font-size: 13px;
  font-weight: normal;
  line-height: 25px;
  margin: 4px !important;
  min-height: 10px;
  padding: 0 12px;
  z-index: 999;
}

.woocommerce span.onsale {
  margin: 10px !important;
}

.woocommerce ul.products li.product {
  text-align: center;
  padding-bottom: 20px;
  transition: all 0.4s ease 0s;
  border-radius: 0;
}

.woocommerce ul.products li.product a img:hover {
  opacity: 0.6;
}

.woocommerce-page .woocommerce-ordering select {
  padding: 12px 15px 12px 10px;
  color: #A0A0A0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0;
}

.woocommerce-page .products .product > a:first-child {
  position: relative;
  text-align: center;
  display: block;
}

.woocommerce-page .products a.button {
  display: inline-block;
  text-align: center;
  border-radius: 0;
  margin: 10px;
  font-size: 15px;
  border: none;
  font-weight: bold;
  margin: 0 auto !important;
}

.woocommerce-page .products a.button:hover {
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.5);
}

.woocommerce-page .products h3 {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  font-weight: bold;
  font-size: 12px;
  line-height: 25px;
  float: none;
  width: auto;
  margin: 0;
}

.woocommerce-page .products .star-rating {
  position: relative;
  margin: 0 auto;
}

.woocommerce-page .products a .price {
  line-height: 20px;
  width: 100%;
  float: left;
  height: auto;
  min-height: 40px;
  text-align: center;
  padding: 10px 0;
}

.woocommerce-page .products a .price del {
  display: inline-block !important;
  line-height: 20px;
}

.woocommerce-page .products a .price ins {
  display: inline-block;
  font-weight: bold;
  background: none;
  line-height: 20px;
  margin-left: 10px;
}

.woocommerce-page .products .added_to_cart {
  display: inline-block;
  text-align: center;
  padding: 10px 20px 10px 20px;
  border-radius: 0;
  border: none;
  font-size: 12px;
  margin: 0;
}

.woocommerce-page .woocommerce-result-count {
  float: left;
  font-size: 14px;
  line-height: 46px;
  margin-top: 20px;
}

.woocommerce-page .woocommerce-ordering {
  float: right;
  margin-top: 20px;
}

.woocommerce-page .product-type-simple {
  position: relative;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  font-size: inherit;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0.5rem;
}

footer .newspaperup-widget .woocommerce ul.cart_list li img, footer .newspaperup-widget .woocommerce ul.product_list_widget li img {
  margin-top: 7px;
}

/*woocommerce-tabs*/
.tabs.wc-tabs {
  text-align: center;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after, .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-width: 0 0 1px 0;
  border-style: solid;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border-radius: 0;
  background: transparent;
  border: none;
}

.woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 22px;
  line-height: 25px;
}

.related.products {
  text-align: center;
}

.related.products h2 {
  font-size: 26px;
  line-height: 40px;
}

/*woocommerce-form*/
.woocommerce form .form-row label {
  width: 100%;
}

.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea {
  height: 40px;
  margin-bottom: 20px;
  border: 2px solid #ebebeb;
  color: #ccc;
  border-radius: 0px;
  padding: 6px 12px;
}

.select2-container .select2-choice {
  height: 40px;
  padding: 6px 12px;
}

/*woocommerce-cart*/
a.wc-block-cart__submit-button {
  border-radius: 10px;
  text-decoration: none;
}

.woocommerce table.shop_table {
  border-radius: 0;
}

.woocommerce .cart .button, .woocommerce .cart input.button {
  float: none;
  line-height: 30px;
  padding: 5px 35px;
  border-radius: 0;
}

.woocommerce .cart .button:hover, .woocommerce .cart input.button:hover {
  box-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.5);
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  line-height: 30px;
  padding: 5px 35px;
  border-radius: 0;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  border-radius: 0;
  height: 40px;
  border-width: 1px;
  border-style: solid;
  min-width: 110px;
}

.woocommerce #payment #place_order, .woocommerce-page #payment #place_order {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18), 0 3px 6px rgba(0, 0, 0, 0.16);
}

/*woocommerce-messages*/
.woocommerce-page .woocommerce-message {
  margin: 0px 0 40px;
  border-radius: 3px;
  list-style: none;
}

.woocommerce-page .woocommerce-message a {
  padding: 6px 14px;
  font-size: 12px;
}

.woocommerce-page .woocommerce-error {
  list-style: none;
  padding: 10px 0 10px 50px;
  margin: 0px 0 40px;
  border-radius: 3px;
  border: none;
  float: left;
  width: 100%;
}

.woocommerce-page .woocommerce-error a {
  padding: 6px 14px;
  font-size: 12px;
}

.woocommerce-page .woocommerce-info {
  list-style: none;
  padding: 0;
  margin: 0px 0 40px;
  border-radius: 3px;
  border: none;
  float: left;
  width: 100%;
  margin-top: 25px !important;
}

.woocommerce-page .woocommerce-info a {
  padding: 6px 14px;
  font-size: 12px;
}

.woocommerce-page .woocommerce-info {
  float: left;
  text-align: start;
  padding: 15px 0 15px 50px;
}

.woocommerce-page .woocommerce .woocommerce-info {
  border-radius: 3px;
  border: none;
  padding: 15px 0 15px 50px;
  margin-bottom: 40px;
}

.woocommerce-page .woocommerce .woocommerce-info a {
  opacity: 0.9;
}

/*woocommerce-pagination*/
.woocommerce nav.woocommerce-pagination ul {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
}

.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span {
  float: left;
  line-height: 1.42857;
  margin: 6px;
  padding: 6px 12px;
  border-radius: 0;
}

/*woocommerce-price-filter*/
.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  background: #1a2128;
}

.woocommerce .col2-set .col-1, .woocommerce-page .col2-set .col-1, .woocommerce .col2-set .col-2, .woocommerce-page .col2-set .col-2 {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

/*----woocommerce footer-widget----*/
.bs-sidebar .bs-widget.widget_product_search .btn {
  padding: 2px 12px;
  height: 40px;
  border-radius: 0;
  margin-left: -1px;
}

.woocommerce h1, .woocommerce h2, .woocommerce h3, .woocommerce h4, .woocommerce h5, .woocommerce h6 {
  margin-bottom: 0.5em;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title {
  font-size: 1.5rem;
  text-align: center;
  padding: 0 0 2px;
  background-repeat: no-repeat;
  background-size: 0% 1px;
  background-position: left 100%;
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: inline;
}

.woocommerce ul.products li.product .woocommerce-loop-product__link:hover .woocommerce-loop-product__title {
  background-repeat: no-repeat;
  background-size: 100% 1px;
  background-position: left 100%;
  background-image: linear-gradient(to bottom, currentColor 0%, currentColor 98%);
  transition: background-size 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.woocommerce ul.products li.product .button, .woocommerce div.product form.cart .button, .woocommerce #review_form #respond .form-submit input {
  padding: 15px 20px;
  border-radius: 30px;
  transition: all 0.5s;
}

.woocommerce div.product form.cart div.quantity {
  margin: 0 20px 0 0;
}

.woocommerce ul.products li.product .price {
  text-align: center;
  font-size: 1rem;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  text-align: center;
  overflow: hidden;
}

.woocommerce span.onsale, .woocommerce ul.products li.product .onsale {
  width: 200px;
  height: auto;
  min-height: 20px;
  line-height: 16px;
  top: 25px;
  right: -60px;
  transform: rotate(45deg);
  border-radius: 0;
}

.woocommerce.single-product .type-product span.onsale {
  transform: rotate(0);
  width: 55px;
  height: auto;
  padding: 5px;
  top: 10px;
  left: 10px;
  border-radius: 4px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1254901961);
}

.woocommerce .woocommerce-ordering select {
  height: 50px;
}

.woocommerce div.product .product_title {
  margin-bottom: 0.5rem;
}

.woocommerce div.product form.cart .variations select {
  height: 50px;
}

.woocommerce div.product form.cart .variations td, .woocommerce div.product form.cart .variations th {
  text-align: start;
  display: block;
}

.woocommerce .quantity .qty {
  width: 5rem;
}

.woocommerce-variation.single_variation {
  margin-bottom: 1rem;
}

.product_meta .sku_wrapper, .product_meta .posted_in, .product_meta .tagged_as {
  display: block;
  font-weight: 600;
  margin-bottom: 0.313rem;
}

.product_meta .sku_wrapper .sku, .product_meta .posted_in a, .product_meta .tagged_as a {
  font-weight: 400;
}

.woocommerce table.shop_attributes td p {
  padding: 8px;
}

.woocommerce table.shop_attributes td, .woocommerce table.shop_attributes th {
  border: 1px solid var(--border-color);
}

table, th, td {
  border-collapse: collapse;
}

.woocommerce table.shop_attributes {
  border-top: 1px solid var(--border-color);
}

.woocommerce-tabs.wc-tabs-wrapper {
  margin: 3rem 0;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 2em 0;
}

.comment-respond .comment-reply-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.comment-form p.form-submit {
  margin-bottom: 0;
}

.comment-form-rating label {
  font-weight: 600;
}

.comment-form-rating .stars {
  font-size: 1.25rem;
}

.woocommerce #reviews #comment {
  height: 240px;
}

.wc-block-mini-cart .wc-block-mini-cart__button {
  border-radius: 0;
  padding: 4px 5px 0 0;
}
.wc-block-mini-cart .wc-block-mini-cart__badge {
  font-size: 11px;
}

.woocommerce-cart .is-large.wc-block-cart .wc-block-cart-items td {
  border-top: 1px solid var(--border-color);
}

.woocommerce-cart .wc-block-components-totals-wrapper, .woocommerce-cart .wp-block-woocommerce-cart-order-summary-totals-block {
  border-top: 1px solid var(--border-color);
}

.woocommerce-checkout .is-large .wp-block-woocommerce-checkout-order-summary-block, .woocommerce-checkout .wc-block-components-totals-wrapper {
  border: 1px solid var(--border-color);
}

.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=email],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=number],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=tel],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=text],
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input input[type=url],
.woocommerce-checkout .wc-block-components-text-input input[type=email],
.woocommerce-checkout .wc-block-components-text-input input[type=number],
.woocommerce-checkout .wc-block-components-text-input input[type=tel],
.woocommerce-checkout .wc-block-components-text-input input[type=text],
.woocommerce-checkout .wc-block-components-text-input input[type=url] {
  border: 1px solid var(--border-color);
  background: none;
}

.wc-block-components-form .wc-block-components-text-input input[type=text], .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input, .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  height: 55px;
}

.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.woocommerce-checkout .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label,
.woocommerce-checkout .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control label.components-base-control__label,
.woocommerce-checkout .wc-block-components-form .wc-block-components-text-input label, .woocommerce-checkout .wc-block-components-text-input label {
  font-size: 14px;
}

.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input,
.woocommerce-checkout .wc-block-components-form .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  border: 1px solid var(--border-color);
}

.woocommerce-checkout .wc-block-components-address-form__address_2-toggle {
  border: 1px solid var(--border-color);
}

.woocommerce-checkout .wc-block-components-textarea {
  background: none;
  border: 1px solid var(--border-color);
}

.woocommerce-checkout .wc-block-checkout__add-note .wc-block-components-textarea:focus {
  background: none;
}

/* --------------------------------------
=========================================
  Responsive
=========================================
-----------------------------------------*/
.col-1 {
  flex: 0 0 auto;
  width: 8.3333333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.6666666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.6666666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.3333333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.6666666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.3333333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.6666666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

html {
  font-size: 100%;
}

/*
  ##Device = Most of the screen
  ##Screen = 1200px and under.
*/
@media only screen and (max-width: 1200px) {
  html {
    font-size: 95%;
  }
}
/* 
  ##Device = Most of the tablets
  ##Screen = 991px and under.
*/
@media screen and (max-width: 991px) {
  html {
    font-size: 90%;
  }
}
/* 
  ##Device = Most of the tablets
  ##Screen = 767px and under.
*/
@media screen and (max-width: 767px) {
  html {
    font-size: 85%;
  }
}
/* 
  ##Device = Most of the smartphones (portrait)
  ##Screen = 575px and under.
*/
@media screen and (max-width: 575px) {
  html {
    font-size: 80%;
  }
}
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-wp {
    display: unset;
  }
}
@media (max-width: 991.98px) {
  .newspaperup_stt[dispalyOn=desktop] {
    display: none;
  }
  /* ---------header------------*/
  .menu-btn {
    display: block;
    padding: 5px;
    border-radius: 0;
    border: none;
    outline: none;
  }
  .header-center .navbar-wp nav {
    display: none;
  }
  .navbar-wp .nav-wp {
    width: 100%;
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 8;
    border-top-width: 1px;
    border-top-style: solid;
    border-top-color: var(--border-color);
  }
  .bs-default .navbar-wp, .bs-headfour .navbar-wp {
    justify-content: flex-start;
  }
  .navbar-wp .nav-wp .sm-clean {
    width: 90%;
    margin: auto;
  }
  .navbar-wp .nav-wp .sm-clean {
    box-shadow: 0px 5px 10px 0 rgba(0, 0, 0, 0.1254901961);
  }
  .navbar-wp {
    justify-content: flex-end;
  }
  .navbar-wp .menu-btn {
    margin-right: 10px;
  }
  .bs-headtwo .navbar-wp .nav-wp .sm-clean, .bs-headfour .navbar-wp .nav-wp .sm-clean, .bs-headfive .navbar-wp .nav-wp .sm-clean, .bs-headsix .navbar-wp .nav-wp .sm-clean {
    width: 100%;
  }
  .bs-headthree .inner.responsive {
    min-height: 0;
    padding: 0;
  }
  .bs-headfour .main-nav, .bs-headfive .main-nav, .bs-headsix .main-nav {
    position: relative;
  }
  .bs-headfive .logo.justify-center {
    justify-content: flex-start;
  }
  .navbar-wp nav ul.sm-clean li a {
    font-size: 16px;
  }
  .navbar-wp nav ul.sm-clean li a:hover {
    transform: scale(1);
  }
  .bs-headsix .bs-menu-full .bs-social {
    display: none;
  }
  .nav-wp .sm-clean a .sub-arrow {
    right: 8px;
  }
  ul.sm-clean li a {
    padding: 1.5rem 1.25rem;
  }
  .bs-menu-full.navbar-wp ul.right-nav {
    display: none;
  }
  .header-bottom .logo {
    display: block;
  }
  .search-popup .search-popup-content {
    width: 75%;
  }
  .sm-clean a, .sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active, .sm-clean a.highlighted {
    padding: 1rem 0.5rem !important;
  }
  .missed .inner {
    grid-template-columns: auto;
    row-gap: 30px;
  }
  /*-- footer--*/
  #content .blogarea-grid.column3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  /*==== Blog ==== */
  .bs-blog-post.three {
    margin-bottom: 25px;
  }
  .bs-masonry-columns {
    -moz-columns: 2;
         columns: 2;
  }
  .sidebar-right #sidebar-right {
    padding: 0;
    padding-top: 30px;
  }
  .sidebar-left #sidebar-right {
    padding: 0;
    padding-bottom: 30px;
  }
  .bs-menu-full .logo {
    width: auto;
  }
  .bs-menu-full .main {
    flex-wrap: nowrap;
  }
  .bs-single-head.two .bs-header .title {
    font-size: 3.2rem;
  }
  .d-grid.column3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .d-grid.column4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .d-grid.column5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .d-grid.column6 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .video-tab-widget .d-grid.column3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  #content.single-class:has(.bs-single-head) .bs-breadcrumb-section .overlay {
    padding-right: 24px;
    padding-left: 24px;
  }
  .bs-cart .bs-cart-total {
    display: none;
  }
  .bs-cart .wc-block-mini-cart__button {
    padding-left: 0;
  }
  .header-main .header-center .header-add img {
    max-width: 430px;
  }
  .header-main .header-bottom .navbar-wp ul li a {
    padding: 20px 7px;
    font-size: 13px;
  }
  .header-main .header-bottom .header-mode {
    width: 20%;
  }
  .multi-post-widget .inner_columns.default {
    grid-template-columns: auto auto;
    margin-bottom: 30px;
  }
  .right-nav {
    gap: 1rem;
  }
  .main-nav {
    padding: 8px 0;
  }
  .bs-blog-post p {
    font-size: 16px;
  }
}
@media (max-width: 767.98px) {
  .header-top .justify-space-between, .advertising-banner {
    justify-content: center;
  }
  header .site-branding-text {
    text-align: center;
  }
  .list-blog.bs-blog-post {
    grid-template-columns: 100%;
  }
  .list-blog.bs-blog-post .bs-blog-thumb {
    height: 300px;
  }
  .multi-post-widget .inner_columns {
    grid-template-columns: auto;
  }
  .multi-post-widget .inner_columns.one .post-1 {
    grid-area: unset;
  }
  .multi-post-widget .inner_columns.two .post-3 {
    grid-area: unset;
  }
  .header-main .header-top {
    padding: 10px 0;
  }
  .header-main .header-center .header-add img {
    max-width: 320px;
  }
  .search-popup .search-popup-content {
    width: 100%;
    margin: 2rem 1rem;
  }
  #content .blogarea-grid.column2, #content .blogarea-grid.column3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .bs-masonry-columns, .bs-masonry-columns.column2 {
    -moz-columns: 1;
         columns: 1;
  }
  .text-xs {
    text-align: center;
  }
  footer.one .bs-footer-bottom-area .col-lg-6 .bs-social {
    justify-content: center;
  }
  footer.one .bs-footer-bottom-area .bs-social {
    justify-content: center;
  }
  .site-branding-text .site-title {
    font-size: 32px;
  }
  .bs-single-head.one .bs-header .title, .bs-single-head.two .bs-header .title, .bs-single-head.three .bs-header .title, .bs-single-head.four .bs-header .title, .bs-single-head.five .bs-header .title {
    font-size: 2.2rem;
  }
  .d-grid.column2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .d-grid.column3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .d-grid.column4 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .d-grid.column5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .d-grid.column6 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .video-tab-widget .d-grid.column3 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  footer.one.footer-insta .bs-footer-copyright .footer-inner, footer.one.footer-insta .bs-footer-copyright .bs-social {
    justify-content: center;
  }
  .bs-tpt-txnlst {
    justify-content: center;
  }
  .multi-post-widget .inner_columns.default {
    grid-template-columns: auto;
  }
  .right-nav .subscribe-btn {
    padding: 2px;
  }
  .right-nav .subscribe-btn span, .right-nav .subscribe-btn:after {
    display: none;
  }
  .right-nav .subscribe-btn i {
    width: 30px;
    height: 30px;
  }
  .site-logo {
    text-align: center;
  }
  .right-nav .subscribe-btn:hover i {
    visibility: visible;
  }
  .bs-blog-thumb.lg {
    height: 300px;
  }
  .list-blog.bs-blog-post .small {
    text-align: center;
  }
  .list-blog.bs-blog-post .small .bs-blog-category, .list-blog.bs-blog-post .small .bs-blog-meta {
    justify-content: center;
  }
  footer.one .bs-footer-copyright .info-right {
    justify-content: center;
    margin-top: 1rem;
  }
  .footer .footer-logo img {
    margin: 0 auto;
  }
}
@media (min-width: 768px) {
  .header-two .header-top .justify-space-between {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .missed .inner {
    grid-template-columns: auto auto;
  }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .justify-md-end {
    justify-content: flex-end;
  }
  footer.one.footer-default .bs-footer-copyright .info-right {
    justify-content: flex-end;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333333%;
  }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66666667%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .navbar-wp nav .sm-clean ul {
    background-color: var(--box-color2);
  }
  .navbar-wp nav .sm-clean ul::after {
    border-bottom-color: var(--box-color2);
  }
  .sidebar-sticky-top {
    position: sticky;
    top: 20px;
  }
  .sidebar-right #sidebar-right {
    padding-left: 30px;
  }
  .bs-headthree .bs-menu-full .right-nav .subscribe-btn, .bs-headfour .bs-menu-full .right-nav .subscribe-btn {
    display: none;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .bs .swiper-button-prev, .bs .swiper-button-next {
    display: none;
  }
  /*------header-top---*/
  .header-top .justify-space-between {
    justify-content: center;
  }
  .show {
    right: 0%;
    z-index: 50;
  }
  .header-center .navbar-wp nav ul.right-nav {
    display: none;
  }
  .footer .img.zoom-img {
    height: 170px;
  }
  .bs-slide .inner .title {
    font-size: 27px;
  }
}
@media (min-width: 375px) and (max-width: 575px) {
  .col-xxl {
    flex: 1 0 0%;
  }
  .col-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .justify-space-between {
    justify-content: flex-end;
  }
  .bs .swiper-button-prev, .bs .swiper-button-next {
    display: none;
  }
  /* ------header-top---*/
  .header-top .justify-space-between {
    justify-content: center;
  }
  .header-default .header-top {
    display: none;
  }
  /* -----------header-section-------*/
  .header-center .navbar-wp nav ul.right-nav {
    display: none;
  }
  /* --------------footer section----------*/
  .footer .bs-footer-copyright .footer-inner {
    flex-direction: column;
  }
  .show {
    right: 0%;
    z-index: 50;
  }
  /* ---------blog------*/
  .footer .img.zoom-img {
    height: 170px;
  }
}
@media (max-width: 375px) {
  .justify-space-between {
    justify-content: flex-end;
  }
  .footer .bs-footer-copyright .footer-inner {
    flex-direction: column;
  }
  /* ------header-top---*/
  .header-top .justify-space-between {
    justify-content: center;
  }
  .header-default .header-top {
    display: none;
  }
  /* -----------header-section-------*/
  .header-center .navbar-wp nav ul.right-nav {
    display: none;
  }
  .show {
    right: 0%;
    z-index: 50;
  }
}
@media (max-width: 575px) {
  .header-main .header-center .logo {
    margin-bottom: 15px;
  }
  .header-main .header-center .logo img {
    margin: 0;
  }
  .header-main .header-center .header-add {
    width: 100%;
  }
  .header-main .header-center .header-add img {
    margin: 0 auto;
  }
  .header-main .header-bottom .header-mode {
    width: 110px;
  }
  .d-grid.column5 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .d-grid.column6 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .page-entry-title {
    flex-direction: column;
  }
  .bs-slide.bs-blog-post.three.lg {
    height: 300px;
  }
  .bs-slide .inner .title {
    font-size: 22px;
  }
  .bs-blog-post.single .bs-header .title {
    font-size: 30px;
  }
  .comments-area .comment-body {
    padding: 7rem 1rem 1rem;
  }
  div#comments .comment-body .reply {
    right: 0.8rem;
    top: 8.2rem;
  }
  div#comments .comment-body .reply a {
    padding-left: 8px;
  }
  div#comments .comment-list .children {
    margin-left: 1.5rem;
  }
  div#comments .comment-list .children > li:before {
    left: -1rem;
  }
  div#comments .comment-list .children > li:after {
    left: -1rem;
    width: 1rem;
  }
  .bs-blog-post .title {
    font-size: 20px;
  }
  .bs-blog-post.single .small.single p {
    font-size: 18px;
  }
  .bs-info-author-block {
    flex-direction: column;
  }
}
/*---------media_query-----*/
@media (max-width: 1199px) {
  .header-main .header-center .header-add img {
    max-width: 630px;
  }
  .header-main .header-bottom .navbar-wp ul li a {
    padding: 20px 16px;
  }
}
@media (max-width: 575.98px) {
  .newspaperup_stt[dispalyOn="desktop,tablet"], .newspaperup_stt[dispalyOn=tablet] {
    display: none;
  }
}
@media (min-width: 991.98px) {
  .newspaperup_stt[dispalyOn="tablet,mobile"], .newspaperup_stt[dispalyOn=tablet] {
    display: none;
  }
}
@media (min-width: 575.98px) {
  .newspaperup_stt[dispalyOn=mobile] {
    display: none;
  }
}
@media (max-width: 991.98px) and (min-width: 575.98px) {
  .newspaperup_stt[dispalyOn="desktop,mobile"] {
    display: none;
  }
  .multi-post-widget .inner_columns.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}/*# sourceMappingURL=core.css.map */