:root {
  --Fontheading: "Lexend Deca", sans-serif;
  --Fontbody: "Outfit", sans-serif;
  --Weightheading: 600;
  --bxbr: 3px solid #000;
  --borrad: 0;
  --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%);
  --rotale: 0deg;
  --icon-rotale: 0deg;
}

@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: 400;
  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=url],
input[type=password],
input[type=search],
input[type=number],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
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=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus,
input[type=datetime]: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, 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;
}

/*---------------------------------------
	Typography        
-----------------------------------------*/
h1, .h1 {
  font-size: 34px;
}

h2, .h2 {
  font-size: 32px;
}

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

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

h1, .h1, h2, .h2, h4, .h4, h5, .h5 {
  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;
}
.container {
  width: 100%;
  padding-right: var(--sd-gutter-x, 0.75rem);
  padding-left: var(--sd-gutter-x, 0.75rem);
  margin-right: auto;
  margin-left: auto;
}

.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: 1440px;
  }
}
.row {
  --sd-gutter-x: 1.5rem;
  --sd-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(var(--sd-gutter-y) * -1);
  margin-right: calc(var(--sd-gutter-x) * -0.5);
  margin-left: calc(var(--sd-gutter-x) * -0.5);
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--sd-gutter-x) * 0.5);
  padding-left: calc(var(--sd-gutter-x) * 0.5);
  margin-top: var(--sd-gutter-y);
}

input[type=submit], button, .btn, .more-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 {
  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;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: var(--borrad);
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.align-center {
  align-items: center;
}

.justify-start {
  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-none {
  display: none !important;
}

a, button {
  transition: all 0.5s;
  text-decoration: none;
}

.max-width {
  max-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;
}

.mt-5 {
  margin-top: 3rem !important;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mt-0 {
  margin-top: 0px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}
p, li {
  margin: 0 0 15px 0;
  font-size: 20px;
  line-height: 1.7;
}
li {
  margin-bottom: 5px;
}
.back-img {
  background-size: cover !important;
  background-position: top 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 
-----------------------------------------*/
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
}
/*---------------------------------------
	social Links
-----------------------------------------*/
.sd-social {
  padding: 0px;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 4.5px;
}
.sd-social li {
  display: inline-flex;
  margin-bottom: 0;
  border-bottom: none;
}
.sd-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;
  color: #fff;
  background: #000;
}
.sd-social li a:hover {
  transition: all 0.8s;
  background: var(--grady-color);
}
.sd-social li a:focus {
  outline: 1px dashed #fff;
}
/** Advertisements Styling **/
@media(max-width: 1241px){.sd-custom-incontent-ad1{display:none;}}
@media(max-width: 767px),(min-width:1241px){.sd-custom-incontent-ad2{display:none;}}
@media(min-width:1241px){.sd-custom-incontent-ad3{display: none;}}
.sd-ad-holders{border:1px Solid #CECECE;padding:5px;text-align:center;}
.sd-ad-holders .sd-ad-notice{color:#707070;font-size:12px!important;margin-top:-5px;margin-bottom:5px;text-align:center;}

@media(max-width:1241px){.custom-square-ad-1{display:none}}
@media(max-width:991px){.custom-square-ad-2{display:none}}
.custom-square-ad-align{display:flex;justify-content:space-evenly;flex-wrap:wrap;width:100%}
/*---------------------------------------
	swipper controls         
-----------------------------------------*/
.sd:hover .swiper-button-prev {
  left: 0;
  opacity: 1;
}
.sd:hover .swiper-button-next, .instagram-gallery-feed:hover .swiper-button-next {
  right: 0;
  opacity: 1;
}
.sd .swiper-button-prev, .sd .swiper-button-next, .swiper-button-prev, .swiper-button-next {
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  opacity: 0;
  border-radius: 50px;
}
.sd .swiper-button-prev, .swiper-button-prev {
  border-radius: 0 50px 50px 0;
  left: 0;
}
.sd .swiper-button-next, .swiper-button-next {
  border-radius: 50px 0px 0px 50px;
  right: 0;
}
.sd .swiper-button-prev:after, .sd .swiper-button-next:after {
  font-size: 18px;
}
.sd .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border-radius: 5px;
  opacity: 1;
  transition: all 0.5s;
  padding: unset;
  background: #f3eeee;
}
.sd .swiper-pagination-bullet-active {
  width: 18px;
  height: 8px;
  background: var(--pri-color);
}
/*---------------------------------------
	sd-section
-----------------------------------------*/
.sd-section .overlay {
  padding: 60px 0;
}
.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;
}
.navbar-wp {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  flex: 1;
	margin-right: 15px;
}
.sd-head-detail {
  padding: 0.5rem 0;
}
.sd-head-detail .top-date {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
/*-----middle---*/
.sd-menu-full {
  box-shadow: unset;
}
.sd-menu-full .logo {
  padding: 0;
  width: 25%;
	display: grid;
  place-content: center;
}
.sd-menu-full .logo .site-branding-text {
  margin-top: 10px;
}
.sd-menu-full .main {
  position: relative;
  justify-content: space-between;
  padding: 0;
  border-radius: 5px;
  align-items: center;
}
.sd-menu-full .navbar-brand img {
  height: auto;
}

@keyframes slide-down {
  0% {
    opacity: 1;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-----bottom---*/
.navbar-wp nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: fit-content;
}
.navbar-wp nav ul.sm-clean li a {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    cursor: pointer;
    transition: all 0.2s ease 0s;
    text-align: center;
}
.navbar-wp nav .sm-clean ul {
  border: none;
  border-radius: 0px !important;
}

.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 .sd-cart {
  display: flex;
  overflow: visible;
  gap: 2px;
}
.right-nav .sd-cart .sd-cart-total {
  margin-right: 10px;
}
.right-nav .sd-cart .sd-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: 40px;
	height: 10px;
	border-radius: 10px;
}
.switch input {
  display: none;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  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%;
  top: 50%;
  transform: translateY(-50%);
}
.switch .slider::after {
  content: "\f186";
  right: 0;
  left: auto;
}

/*---------------------------------------
	-header-1
-----------------------------------------*/
header.sd-default {
  position: relative;
}
header.sd-default .sd-menu-full {
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

/*---------------------------------------
	-header-2
-----------------------------------------*/

/*---------------------------------------
	-header-3
-----------------------------------------*/

/*---------------------------------------
	-header-4
-----------------------------------------*/

/*---------------------------------------
	-header-5
-----------------------------------------*/

/*---------------------------------------
	Header six 
-----------------------------------------*/

/*---------------------------------------
	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;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

/*---------------------------------------
	-breadcrumb
-----------------------------------------*/
.sd-breadcrumb-section {
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 25px;
}
.sd-breadcrumb-section .overlay {
  padding: 10px 0;
  position: relative;
}
.sd-breadcrumb-section .overlay .breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0;
  list-style: none;
  margin-bottom: 0;
}
.sd-breadcrumb-section .overlay .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: var(--sd-breadcrumb-divider, "/");
  padding-left: 0.5em;
}
.sd-breadcrumb-section .overlay .breadcrumb a, .sd-breadcrumb-section .overlay .breadcrumb-item span {
  word-break: break-word;
}

/*---------------------------------------
	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;
}

.nav-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav-links a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  width: 100%;
}

/*Responsive Video*/

.sd-card-box {
  background: var(--bg-color);
  color: var(--text-color);
  border-radius: var(--borrad);
  margin-bottom: 25px;
}

.wd-back {
  padding: 0;
  margin-bottom: 50px;
  border-radius: var(--borrad);
}

/*---------------------------------------
	Off Canvas Styles           
-----------------------------------------*/
.sd-offcanvas {
  width: 400px;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 99999;
  transition: all 0.3s;
  left: -450px;
  display: flex;
  flex-direction: column;
}
.sd-offcanvas.end {
  left: unset;
  right: -450px;
}
.sd-offcanvas .sd-offcanvas-close {
  display: flex;
  justify-content: center;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1254901961);
}
.sd-offcanvas .sd-offcanvas-inner {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto;
}
.sd-offcanvas .sd-offcanvas-btn-close {
  display: inline-flex;
  padding: 20px 15px 20px 30px;
  cursor: pointer;
  transition: all 0.3s;
}
.sd-offcanvas .sd-offcanvas-btn-close:hover {
  transform: rotate(180deg);
}
.sd-offcanvas .sd-offcanvas-btn-close span {
  width: 16px;
  height: 2px;
  transform: rotate(45deg);
  margin-left: -16px;
  margin-right: 0;
}
.sd-offcanvas .sd-offcanvas-btn-close span:nth-child(2) {
  transform: rotate(135deg);
}

.sd-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;
}
.sd-overlay-section.show {
  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%;
  overflow: auto;
  position: relative;
  transform: translateY(-10%);
  transition: all 0.3s ease-out;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
}
.search-popup.show {
	opacity: 1;
	height: 100%;
	visibility: visible;
	width: 100%;
  backdrop-filter: blur(5px);
  --webkit-backdrop-filter: blur(5px);
}
.search-popup.show .search-popup-content {
  transform: translateY(0%);
}
.search-popup .search-inner {
  padding: 1rem;
}

form.search-form {
  display: flex;
  gap: 15px;
}
form.search-form label {
  flex: 1;
}

.search-class h2 {
  font-weight: 700;
  margin-bottom: 5px;
}

/*---------------------------------------
=========================================
    widget Titlle
=========================================
-----------------------------------------*/
.sd-widget-title {
  display: flex;
  width: 100%;
  align-items: center;
  padding: 0;
  position: relative;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 20px;
}
.sd-widget-title .title {
  text-align: start;
  padding: 8px 15px;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-flex;
  width: auto;
  white-space: nowrap;
  gap: 8px;
}
.sd-widget-title .border-line {
  width: 100%;
  height: 1px;
  opacity: 0.5;
  flex: 1;
}
a.btn, button.btn, .btn-theme, .more-link, input[type=submit] {
  font-size: 16px;
}

.btn-one {
  overflow: hidden;
  position: relative;
  transition: background-color 0.3s ease-in, color 0.3s ease-in;
  text-align: center;
}
.btn-one::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 {
  transition-timing-function: ease-out;
  transform: rotate3d(0, 0, 1, 0deg);
}
.btn-one:hover {
  transition-timing-function: ease-out;
}
.btn-one:hover i {
  visibility: hidden;
}

footer .sd-footer-copyright {
  border-top-color: var(--border-color);
}

/* --------------------------------------
=========================================
	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 .sd-breadcrumb-section {
  margin-bottom: 0;
}
.page-entry-title .sd-breadcrumb-section .overlay {
  box-shadow: none;
  padding: 0;
}
.page-entry-title:has(.entry-title.title) {
  justify-content: space-between;
  padding: 15px 0;
}
.sd-latest-news {
  width: 100%;
  min-height: 40px;
  height: 100%;
  position: relative;
  margin: 0;
  display: flex;
  align-items: center;
}
.sd-latest-news .bn_title {
  width: auto;
  display: inline-flex;
  position: relative;
  z-index: 1;
  padding-right: 10px;
}
.sd-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;
}
.sd-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;
}
.sd-latest-news .bn_title .title span {
  padding-right: 6px;
}
.sd-latest-news .bn_title .title:has(i) {
  padding: 4px;
}
.sd-latest-news .sd-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;
}
.sd-latest-news .sd-latest-news-slider a {
  text-decoration: none;
  font-weight: normal;
  padding-left: 10px;
  padding-right: 10px;
  display: inline-block;
  line-height: 40px;
}
.sd-latest-news .sd-latest-news-slider a .img, .sd-latest-news .sd-latest-news-slider a img {
  width: 40px;
  height: 35px;
  border-radius: 10px;
  margin-right: 8px;
  -o-object-fit: cover;
     object-fit: cover;
}
.sd-latest-news .sd-latest-news-slider a:hover {
  opacity: 0.7;
}
.sd-latest-news .sd-latest-news-slider a:focus {
  outline-offset: -3px;
  outline: 1px dashed #fff;
}

.align_cls:has(.list-blog) {
  row-gap: 50px;
}

/* ------------blog-right-sidebar------------*/
#content {
  padding: 5px 0 40px 0;
  position: relative;
}
#content.page-class {
    padding: 50px 0;
}
#content.single-class:has(.sd-single-head) {
  padding-top: 0;
}
#content.single-class:has(.sd-single-head) .sd-breadcrumb-section {
  padding: 0;
  margin: 0;
}

/*---------------------------------------
	blogs       
-----------------------------------------*/
.sd-blog-post {
  overflow: hidden;
  padding: 0;
}
.sd-blog-post p:last-child {
  margin-bottom: 0;
}
.sd-blog-post.lg {
  position: relative;
  height: 475px;
  overflow: hidden;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 1px;
  background-color: #000;
}
.sd-blog-post.three.md {
  width: 100%;
  height: 250px;
}
.sd-blog-post.text-center .sd-blog-category {
  justify-content: center;
}
.sd-blog-post .sd-blog-thumb {
  position: relative;
  min-height: 20px;
  overflow: hidden;
  max-width: 100%;
  border-radius: var(--borrad);
}
.sd-blog-post .sd-blog-thumb .sd-blog-category {
	position: absolute;
	bottom: 10px;
	left: 10px;
	margin-bottom: 0;
}
.sd-blog-post:hover .sd-blog-thumb::before {
  transform: scale(1);
  border-radius: 0;
  opacity: 0;
  transition: 0.35s, border-radius 0.5s, opacity 0.9s;
}
.sd-blog-post .sd-blog-meta {
  margin-bottom: 0.8rem;
}

.sd-blog-post.grid-card .sd-blog-meta {
  margin-bottom: 0.5rem;
}
.post-tags {
	font-size: 14px;
}
.post-tags a, .post-tags strong {
	color: #555;
}
.post-tags a:hover {
	color: var(--pri-color);
}
.link-div {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.sd-blog-thumb.lg {
  height: 226px;
}

.sd-blog-thumb.sdm {
  height: 140px;
}

.sd-blog-thumb.md {
  height: 220px;
}

.sd-blog-post .sd-blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*----- blog-post two -----*/
/*----- blog-post overlay -----*/
.sd-blog-post.three {
  position: relative;
}
.sd-blog-post.three.lg {
  height: 400px;
}
.sd-blog-post.three.md {
  height: 250px;
}
.sd-blog-post.three.sdm {
  height: 185px;
}
.sd-blog-post.three .sd-blog-category {
  justify-content: center;
}
.sd-blog-post.three .title {
  z-index: 5;
  margin-bottom: 10px;
}
.sd-blog-post.three .title.sdm {
  font-size: 20px;
  margin-bottom: 0;
}
.sd-blog-post.three .title.md {
  font-size: 16px;
  margin-bottom: 5px;
}
.sd-blog-post.three .sd-blog-meta {
  z-index: 5;
  margin: 0 auto;
}
.sd-blog-post.three .inner {
  position: absolute;
  bottom: 0;
  padding: 10px;
  z-index: 4;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  align-items: center;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.sd-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-- */

/*----- blog-post six -----*/

/*----- blog-post list -----*/
.list-blog.sd-blog-post {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 2rem;
  text-align: start;
  padding: 0;
  align-items: center;
}
.list-blog.sd-blog-post.no-img {
  display: flex;
}
.list-blog.sd-blog-post .small {
  padding: 0;
  font-size: 17px;
}
.list-blog.sd-blog-post .title {
  margin-bottom: 15px;
}
.list-blog .sd-blog-thumb {
  border-radius: var(--borrad);
  height: 100%;
  min-height: 280px;
}
.list-blog .sd-blog-thumb.auto {
  min-height: 100%;
}
.list-blog .sd-blog-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.list-blog .sd-blog-thumb.md {
  height: 250px;
}
.list-blog .sd-blog-category {
  justify-content: flex-start;
}
.list-blog.right .sd-blog-thumb {
  margin-left: 15px;
  margin-right: unset;
}
.list-blog .sd-post-thumb img {
  height: auto;
  max-width: 100%;
}

/*----- List small-post-widget -----*/

.small-post-list-widget .small-post .img-small-post {
  width: 34%;
  height: 130px;
}

/*----- Recent small-post -----*/

/*----- Recent small-post -----*/

/*----- 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(--borrad);
  transition: all 0.3s ease-out;
}

.small-post-content {
  flex: 1;
}
.small-post-content .sd-blog-category {
  position: absolute;
  bottom: 0;
  right: 0;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
}
.small-post-content .sd-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;
}

.sd-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 -----*/
.sd-blog-category {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 0;
  margin-bottom: 10px;
}
.sd-blog-category a {
  font-size: 13px;
  padding: 4px 8px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  z-index: 1;
  transition: 0.35s;
}
.sd-blog-category a i {
  font-size: 10px;
  margin-right: 3px;
  backface-visibility: hidden;
}
.sd-blog-post .title-wrap {
  margin-bottom: 10px;
}
.sd-blog-post .title-wrap .title {
  margin-bottom: 0;
}
.sd-blog-post .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
  text-decoration: none;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: 0.35s;
  word-break: break-word;
}
.sd-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);
}
.sd-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);
}
.sd-blog-post .title.sdm {
  font-size: 18px;
  line-height: 1.4;
}
.sd-blog-post p {
  word-break: break-word;
}
.sd-blog-post.grid-card p {
  font-size: 16px;
  line-height: 1.4;
}

/*----- blog-post meta -----*/
.sd-blog-meta {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  transition: 0.25s;
}
.sd-blog-meta span {
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.sd-blog-meta span.tag-links a {
  padding-right: 4px;
}
.sd-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;
}
.sd-blog-meta span.sd-author a {
  display: flex;
  align-items: center;
}
.sd-blog-meta span.sd-author::before {
  content: unset;
}
.sd-blog-meta span.sd-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);
}

.sd-author-pic img {
  width: 80px;
  height: 80px;
}

/*----- blog-post post-share-icons -----*/
.post-share-icons {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 20px 0;
  justify-content: center;
}
.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 -----*/
.sd-blog-post.single {
  text-align: start;
  margin-bottom: 0;
  box-shadow: none;
}
.sd-header-image-container {
  position: relative;
  margin: 0 auto;
}
.sd-header-overlay-content {
	position: absolute;
  bottom: 0;
  padding: 20px 30px 0 30px;
  text-align: center;
	background: #000000;
	background: linear-gradient(0deg, #000 30%, #FFFFFF00 100%);
  width: 100%;
}
.sd-header-overlay-content .sd-blog-meta,
.sd-header-overlay-content .sd-blog-meta a {
	color: #FFF !important;
}
.sd-header-overlay-content .sd-blog-category {
    gap: 0;
}
.sd-header-overlay-content .sd-blog-category.one {
	justify-content: center;
	margin-bottom: 5px;
}
.sd-header-overlay-content .sd-blog-category.one a {
    color: #FFF;
    background: transparent;
    border-color: transparent;
    text-shadow: 0 0 15px #000;
    padding: 0;
}
.sd-header-overlay-content .sd-blog-category.one a:not(:last-child)::after {
    content: "/";
    padding: 0 5px;
}
.sd-cutom-featured-caption {
	font-size: 12px;
  font-weight: 400;
  line-height: 130%;
  color: #555;
  font-style: italic;
  width: 100%;
  margin: 0 auto;
  margin-top: 5px;
}
.sd-cutom-featured-caption::before {
	content: '───';
	color: var(--pri-color);
}
.sd-blog-post.single .small.single {
  font-weight: 400;
}
.sd-blog-post.single .small.single .sd-widget-title .title {
  color: var(--text-color);
  background: none;
}
.sd-blog-post.single .small.single .edit-link {
  font-size: 16px;
}
.sd-blog-post.single .sd-blog-meta .sd-author::before {
  display: none;
}
.sd-info-author-block .flex-grow-1 .title {
  margin-bottom: 0;
}
.sd-info-author-block .flex-grow-1 .title + p:empty {
  display: none;
}
.sd-info-author-block .flex-grow-1 .title + p {
  margin-bottom: 0;
}

.sd-blog-post.single .sd-info-author-block {
	border: none;
	justify-content: center;
	margin-bottom: 0;
}
.sd-blog-post.single .sd-author-pic {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sd-blog-post.single .sd-author-pic img {
  width: 30px;
  height: 30px;
  margin: 0;
  border-radius: 50%;
}
.sd-blog-post.single .title {
  font-size: 45px;
  color: #FFF;
  line-height: 1.3;
  margin-bottom: 0;
}
.sd-info-author-block {
  display: flex;
  border: 1px solid var(--border-color);
	border-radius: 5px;
  padding: 10px;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.sd-info-author-block .sd-author-pic img {
  margin: 0 15px 0 0;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  border: 2px solid;
}

/*----- Related Posts -----*/
.sd-related-post-info {
  margin-bottom: 50px;
}
.sd-related-post-info .sd-blog-post {
  box-shadow: none;
}
.sd-related-post-info .sd-blog-post .title a {
  display: inline;
}
.sd-related-post-info .sd-blog-post .sd-blog-category > *:not(:nth-of-type(1), :nth-of-type(2), :nth-of-type(3), :nth-of-type(4)) {
  display: none;
}

.sd-related-post-info .sd-blog-post.three .inner {
  align-items: flex-start;
}

.sd-related-post-info .sd-blog-post.three .sd-blog-category {
  position: absolute;
  top: 5px;
  left: 5px;
}

/*----- comments -----*/
.sd-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 .sd-heading-bor-bt .comments-title {
  font-weight: 400 !important;
}

.comment-list .children {
  position: relative;
  padding: 0;
  margin: 0;
  margin-left: 4rem;
  z-index: 0;
  list-style: none;
}

#comments img {
  max-width: 100%;
}

textarea#comment {
  height: 250px;
}

/*----- masonary -----*/

.sd-blog-post .small {
  padding: 15px 0 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5rem;
}
.sd-blog-post.single .small {
  font-size: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

/*---------------------------------------
=========================================
	Category Widget
=========================================
-----------------------------------------*/

/*---------------------------------------
=========================================
	Round Post Widget
=========================================
-----------------------------------------*/

/*----- 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 .sd-widget-title {
  margin-bottom: 0;
}
.double-category-posts .colinn {
  padding: 0;
  display: grid;
  row-gap: 30px;
}

/*---------------------------------------
=========================================
	Multi Post Widget
=========================================
-----------------------------------------*/
.multi-post-widget .sd-blog-post.three.sdm {
  min-height: 233px;
  height: 100%;
}

.multi-post-widget .sd-blog-post.three.sdm .title {
  font-size: 18px;
}

.multi-post-widget .sd-blog-post.three.lg {
  height: 520px;
}

/*---------------------------------------
=========================================
	Featured Post Widget
=========================================
-----------------------------------------*/
.featured-widget .sd-blog-post {
  padding: 0;
}
.featured-widget .sd-blog-post.lg {
  height: 100%;
  min-height: 400px;
}
.featured-widget .colinn {
  display: grid;
  row-gap: 30px;
  align-items: flex-start;
}

/*---------------------------------------
=========================================
	Video Post Widget
=========================================
-----------------------------------------*/

.sd-widget {
  margin-bottom: 30px;
}
.sd-widget ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.sd-widget ul li {
  display: block;
  letter-spacing: 0.2px;
  overflow: hidden;
  padding: 4px 0;
}
.sd-widget ul li:last-child {
  border: none;
  margin-bottom: 0;
}

/*--search_bar--*/

/*--/search_bar--*/
.sd-widget ul li {
  padding: 4px 0;
  position: relative;
  transition: all 0.4s ease-in-out 0s;
  margin: 0 0 10px;
}
.sd-sidebar {
  display: grid;
  row-gap: 30px;
}
.sd-sidebar a {
  transition: all 0.3s ease 0s;
}
.sd-sidebar .wd-back {
  margin-bottom: 0;
}
.sd-sidebar .sd-widget {
  margin-bottom: 0;
  padding-bottom: 0;
  overflow: hidden;
  word-break: break-word;
}
.sd-sidebar .sd-widget:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.sd-sidebar .sd-widget h2 form {
  padding: 0 10px;
}
.sd-sidebar .sd-widget ul li {
  position: relative;
  transition: all 0.4s ease-in-out 0s;
}

.front-page-class .sd-widget:last-child {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.sd-sidebar .sd-widget ul.sd-social {
  padding: 10px 0px 10px 5px;
  margin: 0;
  flex-direction: column;
  gap: 15px;
}

.sd-sidebar .sd-widget ul.sd-social li {
  display: inline-flex;
  border: inherit;
  padding: 5px;
  border-radius: 50px;
  gap: 15px;
  overflow: visible;
}

.sd-sidebar .sd-widget ul.sd-social li a i {
  margin: 0px;
  text-align: center;
  padding: 0;
  width: unset;
  height: unset;
  line-height: 1;
  border-radius: 0;
}

.sd-sidebar .featured-widget .d-grid {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

/* ---Popular_tags---*/

/* ---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 .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(--borrad);
  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
-----------------------------------------*/

/*---------------------------------------
	Top Tags       
-----------------------------------------*/

/*----- main featured slider -----*/
.mainfeatured {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  margin-bottom: 30px;
  z-index: 0;
  padding-top: 5px;
}
.mainfeatured .homemain {
  border-radius: var(--borrad);
}
.mainfeatured .homemain .sd-blog-post {
  box-shadow: none;
}
.mainfeatured .featinner {
  padding-top: 0;
}
.mainfeatured .multi-post-widget .sd-blog-post {
  box-shadow: none;
}
.mainfeatured .small-post {
  align-items: center;
  padding: 7px 0;
  border-top: 1px solid var(--border-color);
}
.mainfeatured .small-post .sd-blog-meta {
  margin-bottom: 0px;
}
.mainfeatured .small-post:first-child {
  padding-top: 0;
  margin-top: 0;
  border: none;
}
.mainfeatured .small-post .img-small-post {
  min-width: 100px;
  min-height: 100px;
}
.mainfeatured .small-post .title {
	font-size: 16px;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}

.mainfeatured .featinner {
  z-index: 1;
}

.mainfeatured.over .featinner {
  padding-bottom: 30px;
  padding-top: 30px;
  margin-top: 0;
}
.sd-slide.sd-blog-post.three.lg {
  height: 573px;
}

.mainfeatured .sd-widget {
  box-shadow: none;
  background-color: transparent;
}

.mainfeatured .wd-back {
  margin-bottom: 0;
}

.sd-slide .sd-blog-post.three.lg {
  height: 470px;
}
.sd-slide .inner .title {
  font-size: 30px;
}

/*---------------------------------------
=========================================
	Multi Post Widget
=========================================
-----------------------------------------*/
.multi-post-widget .sd-blog-post.three.sdm {
  height: 233.5px;
}
.multi-post-widget .sd-blog-post.three.sdm .title {
  font-size: 16px;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.multi-post-widget .sd-blog-post.three.lg {
  height: 520px;
}

/*bs marquee section*/

/*---------------------------------------
=========================================
	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 .sd-blog-post {
  box-shadow: none;
}

/*---------------------------------------
	404 Page 
-----------------------------------------*/
.sd-error-404 .title {
  font-size: 120px;
}

.sd-error-404 .subtitle {
  font-size: 32px;
}

.sd-error-404 .title i {
  margin: 0 5px;
}

.topbar-right {
  flex-wrap: wrap;
  gap: 10px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}

.topbar-right .advertise-header-link {
  color: #000 !important;
}

.topbar-right .advertise-header-link:hover {
  text-decoration: underline;
}

/*---------------------------------------
	 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 .sd-blog-post.three .title a {
  display: inline;
}
footer .sd-footer-widget-area {
  padding: 40px 0;
}
footer .sd-footer-widget-area a {
  color: var(--text-color);
}
footer .sd-footer-copyright p {
  margin-bottom: 0;
  font-size: 16px;
}

/*-----footer middle---*/
footer .sd-footer-widget-area .row {
  row-gap: 1.5rem;
}
footer .sd-widget {
  background: unset;
  box-shadow: none !important;
  margin: 0;
}
footer .sd-widget ul li {
  margin: 0;
}
footer .sd-footer-copyright {
  padding: 23px 0;
}
.sd_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;
}
.sd_upscr i {
  transition: 0.5s;
}
.sd_upscr.showBtn {
  display: block;
}
/* --------------------------------------
=========================================
  woocommerce
=========================================
-----------------------------------------*/
/*----woocommerce----*/
/* woocommerce v2.3.5 */
*:focus {
  outline: 0;
}

/*----product----*/

/*woocommerce-tabs*/

/*woocommerce-form*/

/*woocommerce-cart*/

/*woocommerce-messages*/

/*woocommerce-pagination*/

/*woocommerce-price-filter*/

/*----woocommerce footer-widget----*/

.woocommerce h1, .woocommerce h2, .woocommerce h4, .woocommerce h5 {
  margin-bottom: 0.5em;
}

table, td {
  border-collapse: collapse;
}

/* --------------------------------------
=========================================
  Responsive
=========================================
-----------------------------------------*/

.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 (min-width: 768px) {
  .missed .inner {
    grid-template-columns: auto auto;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }
}
@media (min-width: 992px) {
  .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-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }
  .d-lg-inline-block {
    display: inline-block !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);
  }
}
@media (max-width: 991.98px) {
  .sarawakdaily_stt[dispalyOn=desktop] {
    display: none;
  }
  .topbar-right {
    justify-content: center;
  }
  .menu-btn {
    display: flex;
    gap: 5px;
    padding: 5px 10px;
    border: 1px solid var(--head-color);
    border-radius: 0;
    outline: none;
    background-color: transparent;
    color: var(--head-color);
  }
  .menu-btn .btn-bar-icn {
    display: block;
  }
  .menu-btn .btn-bar-icn .icon-bar {
    background-color: var(--head-color);
  }
  .menu-btn:hover .btn-bar-icn .icon-bar {
    background-color: #fff;
  }
  .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);
  }
  .sd-default .navbar-wp {
    justify-content: flex-start;
  }
  .navbar-wp .nav-wp .sm-clean {
    width: 90%;
    margin: auto;
  }
  .navbar-wp {
    justify-content: flex-end;
  }
  .navbar-wp nav ul.sm-clean li a {
    font-size: 16px;
  }
  ul.sm-clean li a {
    padding: 1.5rem 1.25rem;
  }
  .sd-menu-full.navbar-wp ul.right-nav {
    display: none;
  }
  .search-popup .search-popup-content {
    width: 75%;
  }
  .sm-clean a, .sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active {
    padding: 1rem 0.5rem !important;
  }
  .missed .inner {
    grid-template-columns: auto;
    row-gap: 30px;
  }
  .sd-info-author-block {
    padding: 10px;
  }
  .sidebar-right #sidebar-right {
    padding-top: 30px;
  }
  .sidebar-left #sidebar-right {
    padding-bottom: 30px;
  }
  .sd-menu-full .logo {
		max-width: 200px;
	  	min-width: 150px;
		margin: 0 auto;
	}
  .sd-menu-full .main {
    flex-wrap: nowrap;
  }
  .sd-blog-post.single .title {
		font-size: 40px;
	}
  .d-grid.column4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  #content.single-class:has(.sd-single-head) .sd-breadcrumb-section .overlay {
    padding-right: 24px;
    padding-left: 24px;
  }
  .sd-cart .sd-cart-total {
    display: none;
  }
  .right-nav {
    gap: 1rem;
  }
  .main-nav {
    padding: 8px 0;
  }
}
@media (max-width: 767.98px) {
  	.sd-header-overlay-content {
		padding: 15px 20px 0 20px;
	}
	.sd-blog-post.single .title {
		font-size: 25px;
	}
	.sd-blog-category a {
		font-size: 10px;
	}
	p {
		font-size: 18px;
		line-height: 1.6;
	}
  header .site-branding-text {
    text-align: center;
  }
  .list-blog.sd-blog-post {
    grid-template-columns: 100%;
  }
  .list-blog.sd-blog-post .sd-blog-thumb {
    height: 300px;
  }
  .search-popup .search-popup-content {
    width: 100%;
    margin: 2rem 1rem;
  }
  .site-branding-text .site-title {
    font-size: 32px;
  }
  .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));
  }
  .site-logo {
		text-align: center;
		height: fit-content;
		margin-bottom: -5px;
	}
  .sd-blog-thumb.lg {
    height: 300px;
  }
  .list-blog.sd-blog-post .small {
    text-align: center;
  }
  .list-blog.sd-blog-post .small .sd-blog-category, .list-blog.sd-blog-post .small .sd-blog-meta {
    justify-content: center;
  }
}
@media (max-width: 575px) {
	.row {
		margin-right: calc(var(--sd-gutter-x) * -1);
		margin-left: calc(var(--sd-gutter-x) * -1);
	}
  .topbar-right {
    gap: 7px;
  }
  .sd-social li a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
  }
  header.sd-default .sd-menu-full .container {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .page-entry-title {
    flex-direction: column;
  }
  .sd-slide.sd-blog-post.three.lg {
    height: 300px;
  }
  .sd-slide .inner .title {
    font-size: 22px;
  }
  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;
  }
  .sd-blog-post .title {
    font-size: 20px;
  }
  .sd-info-author-block {
    flex-direction: column;
    text-align: center;
  }
  .search-results-count {
    text-align: center;
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  .navbar-wp {
    margin-right: 5px;
  }
    .menu-btn {
        font-size: 14px;
        padding: 5px;
    }
    .navbar-wp .icon-bar {
        width: 15px;
    }
    .right-nav {
        gap: 8px;
    }
    .navbar-wp .icon-bar+.icon-bar {
        margin-top: 2px;
    }
    .switch {
        width: 35px;
    }
  .topbar-right {
    gap: 0;
    justify-content: space-between;
  }
  .topbar-right .advertise-header-link {
    font-size: 15px;
  }
  .sd-head-detail .top-date {
    padding: 0;
    font-size: 15px;
  }
  .sd-social li a {
    width: 24px;
    height: 24px;
    line-height: 24px;
    font-size: 12px;
  }
  header.sd-default .sd-menu-full .container {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }
  .show {
    right: 0%;
    z-index: 50;
  }
  .sd-header-overlay-content {
    padding: 5px 10px 0 10px;
  }
  .sd-blog-post.single .title {
    font-size: 18px;
  }
  p {
    font-size: 16px;
    line-height: 1.5;
  }
  .sd-slide .inner .title {
    font-size: 16px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .sd .swiper-button-prev, .sd .swiper-button-next {
    display: none;
  }
  /*------header-top---*/
  .show {
    right: 0%;
    z-index: 50;
  }
  .sd-slide .inner .title {
    font-size: 27px;
  }
}
@media (min-width: 375px) and (max-width: 575px) {
  .sd .swiper-button-prev, .sd .swiper-button-next {
    display: none;
  }
  /* ------header-top---*/
  /* -----------header-section-------*/
  /* --------------footer section----------*/
  .show {
    right: 0%;
    z-index: 50;
  }
  /* ---------blog------*/
}
/*---------media_query-----*/
@media (max-width: 575.98px) {
  .sarawakdaily_stt[dispalyOn="desktop,tablet"], .sarawakdaily_stt[dispalyOn=tablet] {
    display: none;
  }
}
@media (min-width: 991.98px) {
  .sarawakdaily_stt[dispalyOn="tablet,mobile"], .sarawakdaily_stt[dispalyOn=tablet] {
    display: none;
  }
}
@media (min-width: 575.98px) {
  .sarawakdaily_stt[dispalyOn=mobile] {
    display: none;
  }
}
@media (max-width: 991.98px) and (min-width: 575.98px) {
  .sarawakdaily_stt[dispalyOn="desktop,mobile"] {
    display: none;
  }
}
@media (min-width: 992px) and (max-width: 1323px) {
	.navbar-wp {
		margin-right: 10px;
	}
	.navbar-wp nav ul.sm-clean a, .navbar-wp nav ul.sm-clean a:hover, .navbar-wp nav ul.sm-clean a:focus, .navbar-wp nav ul.sm-clean a:active {
		padding: 1rem 0.6rem;
	}
	.right-nav {
		gap: 10px;
	}
	.sd-menu-full .logo {
		max-width: 200px;
		width: auto;
	}
}
@media (min-width: 992px) and (max-width: 1088px) {
	.navbar-wp nav ul.sm-clean li a {
    font-size: 0.9rem;
		line-height: 1.2;
	}
  .topbar-right {
    gap: 9px;
  }
}
/******************************
 * Main Menu Area (minified) *
*******************************/
.sm{box-sizing:border-box;position:relative;z-index:9;-webkit-tap-highlight-color:rgba(0,0,0,0);}.sm,.sm ul,.sm li{display:block;list-style:none;margin:0;padding:0;line-height:normal;text-align:start;}.sm>li>h1,.sm>li>h2,.sm>li>h4,.sm>li>h5{margin:0;padding:0;}.sm ul{display:none;}.sm li,.sm a{position:relative;}.sm a{display:block;}.sm a.disabled{cursor:default;}.sm::after{content:"";display:block;height:0;font:0px/0 serif;clear:both;overflow:hidden;}.sm *,.sm *::before,.sm *::after{box-sizing:inherit;}.sm-clean a,.sm-clean a:active,.sm-clean a:focus,.sm-clean a:hover{padding-right:58px;color:#555;text-decoration:none}.sm-clean a.current{color:#d23600}.sm-clean a.disabled{color:#bbb}.sm-clean li{border-top:1px solid #000}.sm-clean>li:first-child{border-top:0}.sm-clean ul{background:rgba(162,162,162,.1)}.sm-clean ul a,.sm-clean ul a:active,.sm-clean ul a:focus,.sm-clean ul a:hover{font-size:16px;border-left:8px solid transparent;border-right:8px solid transparent}.sm-clean ul ul a,.sm-clean ul ul a:active,.sm-clean ul ul a:focus,.sm-clean ul ul a:hover{border-left:16px solid transparent}.sm-clean ul ul ul a,.sm-clean ul ul ul a:active,.sm-clean ul ul ul a:focus,.sm-clean ul ul ul a:hover{border-left:24px solid transparent}.sm-clean ul ul ul ul a,.sm-clean ul ul ul ul a:active,.sm-clean ul ul ul ul a:focus,.sm-clean ul ul ul ul a:hover{border-left:32px solid transparent}.sm-clean ul ul ul ul ul a,.sm-clean ul ul ul ul ul a:active,.sm-clean ul ul ul ul ul a:focus,.sm-clean ul ul ul ul ul a:hover{border-left:40px solid transparent}@media (min-width:991px){.sm-clean ul{position:absolute;width:12em}.sm-clean li{float:left}.sm-clean ul li,.sm-clean a{white-space:nowrap;width:100%;}.sm-clean ul a{white-space:normal}.sm-clean a,.sm-clean a:active,.sm-clean a:focus,.sm-clean a:hover{padding:1rem .8rem;border-radius:0!important}.sm-clean a:active,.sm-clean a:focus,.sm-clean a:hover{cursor:inherit}.sm-clean a.current{cursor:inherit}.sm-clean a.disabled{color:#bbb}.sm-clean li{border-top:0}.sm-clean>li>ul::after,.sm-clean>li>ul::before{content:'';position:absolute;top:-18px;left:30px;width:0;height:0;overflow:hidden;border-width:9px;border-style:dashed dashed solid dashed;border-color:transparent transparent #bbb transparent}.sm-clean>li>ul::after{top:-16px;left:31px;border-width:8px;border-color:transparent transparent #fff transparent}.sm-clean ul{border:1px solid #bbb;padding:0;background:#fff;border-radius:5px!important;box-shadow:0 5px 9px rgba(0,0,0,.2)}.sm-clean ul a,.sm-clean ul a:active,.sm-clean ul a:focus,.sm-clean ul a:hover{border:0!important;padding:10px 20px;color:#555}.sm-clean ul a:active,.sm-clean ul a:focus,.sm-clean ul a:hover{background:#eee}.sm-clean ul a.disabled{background:#fff;color:#ccc}.sm-clean .scroll-up{position:absolute;display:none;visibility:hidden;overflow:hidden;background:#fff;height:20px}.sm-clean .scroll-up:hover{background:#eee}}