/*
  =================================================================================== Global Variables
*/

:root {
  --base-color: #2563eb;
  --white: #fff;
  --black: #020817;
  --font-primary: ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

/*
  =================================================================================== Global Style
*/

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body,
html {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  font-family: var(--font-primary);
  font-weight: 400;
  color: var(--black);
  font-size: 1.8rem;
  padding: 0;
}

a {
  text-decoration: none;
  color: var(--base-color);
}

a:focus {
  outline: none;
}

a:hover {
  color: var(--base-color);
  transition: var(--transition4s);
}

strong {
  font-weight: 600;
}

video {
  width: 100%;
  display: block;
}

*:focus {
  outline: 0;
}

:focus-visible {
  outline: 0;
}

::-webkit-input-placeholder {
  color: #767676;
}

::-moz-placeholder {
  color: #767676;
}

:-ms-input-placeholder {
  color: #767676;
}

:-moz-placeholder {
  color: #767676;
}

p {
  font-size: 1.6rem;
  line-height: 1.333;
  font-weight: 400;
  color: var(--black);
}

p a {
  font-weight: 700;
}

ul {
  padding-left: 0px;
  margin-left: 0px;
}

li {
  list-style-type: none;
}

/*
  =================================================================================== Common Style
*/

.container {
  display: block;
  padding-left: 16px;
  padding-right: 16px;
  margin-right: auto;
  margin-left: auto;
}

.text-center {
  text-align: center;
}

.btn-group {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
}

.justify-center {
  justify-content: center;
}

.text-purple-200 {
  color: #e9d5ff;
}

/*
  =================================================================================== Button Style
*/

a:focus {
  color: var(--base-color);
}

/*
  =================================================================================== Header Style
*/

header.site-header {
  width: 100%;
}

.topstripe {
  background-color: var(--black);
  padding: 11px 20px;
}

.topstripe-outer {
  font-size: .875rem;
  color: var(--white);
  font-weight: 600;
  line-height: 1.36;
}

.topstripe-outer .text-purple-200 {
  margin-left: 16px;
  font-weight: 500;
}

.header-main {
  padding: 0;
  background-color: hsl(0 0% 100%/.95);
  transition: all ease 0.4s;
  border-bottom: 1px solid hsl(214.3 31.8% 91.4%);
}

.header-outer {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  height: 64px;
}

.mobile-contact {
  display: none;
  justify-content: center;
  align-items: center;
  padding: 3px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  order: 1;
}

.mobile-contact svg {
  width: 20px;
  height: 20px;
}

.book-btn a {
  border-radius: 6px;
  background-color: var(--base-color);
  font-size: 14px !important;
  padding: 10px 24px !important;
  color: var(--white) !important;
  font-weight: 600 !important;
  text-align: center;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
  width: fit-content;
}

.menu-toggle {
  border: 0;
  background-color: var(--white);
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  padding: 15px;
}

.menu-toggle span {
  height: 2px;
  width: 100%;
  background-color: var(--base-color);
  transition: all ease 0.3s;
}

.menu-toggle.active {
  background-color: var(--base-color);
}

.menu-toggle.active span {
  background-color: var(--white);
}

.menu-toggle.active span:nth-child(2) {
  display: none;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.main-logo {
  order: 1;
}

.main-logo .site-branding a {
  display: flex;
}

.header-right-part {
  order: 2;
  display: flex;
  margin-left: auto;
  gap: 15px;
  align-items: center;
}

.main-menu {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-right: 0;
}

.main-navigation {
  order: 2;
}

.main-navigation ul.menu {
  background-color: var(--white);
  display: none;
  margin: 0;
  position: absolute;
  z-index: 3;
  left: 0px;
  width: 100%;
  padding: 0;
  height: 0;
  overflow: hidden;
  transition: var(--transition4s);
  border-radius: 0px;
  top: 100%;
}

.main-menu .main-navigation.openMenu .menu {
  display: block;
  height: calc(100vh - 58px);
  transition: var(--transition4s);
  margin-top: 12px;
  overflow: auto;
  padding-bottom: 120px;
}

.main-navigation ul.menu li a {
  display: block;
  padding: 10px 15px;
}

.main-navigation ul.menu>li>ul.sub-menu li a .menu-title-attr {
  display: none;
  padding: 0;
  margin-top: 2px;
  font-size: 14px;
  line-height: 22px;
  color: rgb(75, 85, 99);
  font-weight: 400;
}

.main-navigation ul.menu>li>ul.sub-menu li a .menu-icon-wrapper {
  position: absolute;
  left: 10px;
  top: 13px;
  padding: 0;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: none;
  align-items: center;
  justify-content: center;
}

.main-navigation ul.menu>li>ul.sub-menu li.blue a:hover {
  background-color: rgb(239 246 255);
}

.main-navigation ul.menu>li>ul.sub-menu li.orange a:hover {
  background-color: rgb(255 247 237);
}

.main-navigation ul.menu>li>ul.sub-menu li.green a:hover {
  background-color: rgb(240 253 244);
}

.main-navigation ul.menu>li>ul.sub-menu li.red a:hover {
  background-color: rgb(254 242 242);
}

.main-navigation ul.menu>li>ul.sub-menu li.purple a:hover {
  background-color: rgb(250 245 255);
}

.main-navigation ul.menu>li>ul.sub-menu li.blue a .menu-icon-wrapper {
  background-color: rgb(219 234 254);
}

.main-navigation ul.menu>li>ul.sub-menu li.purple a .menu-icon-wrapper {
  background-color: rgb(243 232 255);
}

.main-navigation ul.menu>li>ul.sub-menu li.green a .menu-icon-wrapper {
  background-color: rgb(220 252 231);
}

.main-navigation ul.menu>li>ul.sub-menu li.orange a .menu-icon-wrapper {
  background-color: rgb(255 237 213);
}

.main-navigation ul.menu>li>ul.sub-menu li.red a .menu-icon-wrapper {
  background-color: rgb(254 226 226);
}

.main-navigation ul.menu>li>ul.sub-menu li a .menu-icon-wrapper .menu-image {
  padding: 0;
}

.main-navigation ul.menu>li>ul.sub-menu li a span.menu-image-title {
  padding-left: 0;
}

.main-navigation ul.menu li,
.main-navigation ul.menu li a {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: rgb(2, 8, 23);
}

.main-navigation ul.menu li {
  position: relative;
}

.main-navigation ul.menu li.book-btn {
  order: 15;
  margin-top: 30px;
}

.main-navigation ul.menu>li ul.sub-menu {
  display: block;
  margin-left: 0;
  padding-left: 20px;
  margin-bottom: 0;
}

.mobile-active .main-navigation ul.menu>li ul.sub-menu {
  display: block !important;
}

.main-navigation ul.menu>li>a {
  border-top: none;
  transition: all ease 0.3s;
}

.main-navigation ul.menu>li:first-child>a {
  border-top: none;
}

.main-navigation ul.menu>li>ul.sub-menu li a {
  font-size: 1rem;
  padding-top: 0;
  color: #64748b;
}

.main-navigation ul.menu>li>a:hover,
.main-navigation ul.menu>li.current-menu-item>a {
  color: var(--base-color);
  transition: all ease 0.3s;
}

.main-navigation ul.menu li.menu-item-has-children>a:after {
  position: absolute;
  content: '';
  width: 15px;
  height: 6px;
  right: -4px;
  top: 18px;
  background: url('../images/down-arrow.svg') no-repeat;
  background-position: center center;
  background-size: 100%;
  display: none;
  transition: all ease 0.3s;
}

.main-navigation ul.menu>li>a:hover::after {
  transform: rotate(180deg);
  filter: brightness(0) saturate(100%) invert(33%) sepia(96%) saturate(1867%) hue-rotate(213deg) brightness(96%) contrast(95%);
}

.menu-icon {
  position: absolute;
  background: url('../images/select-down.svg') no-repeat;
  background-position: center;
  width: 26px;
  height: 26px;
  right: 20px;
  top: 10px;
  z-index: 1;
  transition: var(--transition4s);
  display: none;
}

.focus>.menu-icon {
  transform: rotate(180deg);
}

.main-navigation ul.menu li.focus>ul.sub-menu {
  display: block !important;
}

.main-navigation ul.menu li.customMegaMenu>ul.sub-menu>li>a {
  display: none;
}

.header-main.nav-fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 99;
}

.mobile-active .main-navigation ul.menu>li ul.sub-menu {
  display: block !important;
  padding-left: 10px;
}

.active-menu {
  overflow: hidden;
}

.active-menu .site-main,
.active-menu .site-footer {
  display: none !important;
}

.top-ourBrands {
  position: relative;
  order: 1
}

.top-ourBrands ul {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
  padding: 4px;
  border-radius: 6px;
  z-index: 2;
  border: solid 1px #e2e8f0;
  background: #fff;
}

.top-ourBrands ul li a {
  color: #000;
  font-size: 14px;
  line-height: 20px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 4px;
}

.top-ourBrands ul li a:hover {
  background: var(--base-color);
  color: var(--white);
}

.top-ourBrands ul li a span {
  display: flex;
  align-items: center;
  gap: 10px;
}

.top-ourBrands ul li a span img {
  width: 24px;
  height: auto;
}

.top-ourBrands ul li a svg {
  width: 12px;
}

.top-ourBrands a.brand-btn {
  color: #020817;
  font-size: 14px;
  display: block;
  position: relative;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 8px;
}

.top-ourBrands a.brand-btn:hover {
  background-color: var(--base-color);
  color: var(--white);
}

.top-ourBrands a.brand-btn svg {
  width: 16px;
}

.top-ourBrands a.brand-btn:hover svg {
  stroke: var(--white);
}


/*
  =================================================================================== Footer style
*/

.site-footer {
  background-color: #fff;
  border-top: solid 1px #e2e8f0;
  padding-top: 32px;
  padding-bottom: 32px;
}

.footer-top {
  display: grid;
  grid-gap: 30px;
  margin-bottom: 45px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo a {
  display: block;
}

.footer-logo img {
  max-width: 272px;
  width: 100%;
  display: block;
  height: 40px;
}

.short-detail {
  margin-top: 0;
  margin-bottom: 1.5rem;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.4;
  color: #4b5563;
}

.footer-contact-details ul {
  margin: 0;
  padding: 0;
}

.footer-contact-details ul li {
  margin-bottom: 10px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4b5563;
}

.footer-contact-details ul li:last-child {
  margin-bottom: 0;
}

.footer-contact-details ul li svg {
  color: #9ca3af;
  width: 20px;
}

.footer-menu h3,
.footer-menu .menu>li>a {
  font-weight: 600;
  color: #111827;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.35px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.footer-menu h4 {
  font-weight: 600;
  color: #64748B;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.35px;
  margin-bottom: 15px;
  margin-top: 0;
  text-transform: uppercase;
}

.footer-menu ul {
  padding: 0;
  margin: 0;
}

.footer-menu ul li {
  margin-bottom: 15px;
  display: block;
}

.footer-menu ul li:last-child {
  margin-bottom: 0;
}

.footer-menu ul li a {
  font-size: 1rem;
  color: #64748B;
  display: block;
}

.footer-menu ul li a:hover {
  color: #0f172a;
}

.footer-review {
  margin-top: 2rem;
}

.footer-review img {
  height: 48px;
  width: auto;
}

.social-media ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-media ul li {
  margin-bottom: 0;
}

.social-media ul li a,
.social-media ul li a svg {
  color: #9ca3af;
  display: block;
}

.social-media ul li a svg {
  width: 20px;
}

.social-media ul li a:hover svg {
  stroke: #000;
}

.bookBtn {
  border-radius: 6px;
  background-color: #1D4ED8;
  font-size: 14px;
  padding: 10px 24px;
  color: var(--white);
  font-weight: 600;
  text-align: center;
  display: inline-flex;
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05);
  transition: all ease 0.3s;
  margin-bottom: 15px;
}

.bookBtn:hover {
  background-color: #1D4ED8;
  color: var(--white);
  transform: scale(1.1);
  transition: all ease 0.3s;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: solid 1px #e5e7eb;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.copyright-msz p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
}

.other-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.875rem;
  gap: 23px;
  color: #6b7280;
}

.other-brands label {
  font-weight: 500;
  color: #9ca3af;
}

.other-brands a {
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 5px;
}

.other-brands a:hover {
  color: #0f172a;
}

.other-brands a svg {
  width: 12px;
}

.blog-listing-wrap {
  padding-top: 70px;
  padding-bottom: 48px;
}

.blog-listing-head {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0px auto 64px auto;
}

.heading-wrap {
  text-align: center;
}

.heading-tag {
  background-color: hsl(221.2 83.2% 53.3% / .1);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: var(--base-color);
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  border: solid 1px hsl(221.2 83.2% 53.3% / .1);
  margin-bottom: 24px;
}

.heading-tag .tag-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--base-color);
  display: block;
  margin-right: 8px;
}

@keyframes pulse {
  50% {
    opacity: .5
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(.4, 0, .6, 1) infinite
}

.heading-wrap h1 {
  color: var(--black);
  margin-bottom: 25px;
  margin-top: 0;
  font-size: 36px;
  letter-spacing: -1.8px;
  line-height: 1;
}

.heading-wrap h1 span {
  color: var(--base-color);
}

.heading-wrap p {
  color: #64748b;
  font-size: 20px;
  line-height: 28px;

}

.post-categories-bar {
  border-top: solid 1px hsl(214.3 31.8% 91.4%);
  border-bottom: solid 1px hsl(214.3 31.8% 91.4%);
  padding: 32px 0;
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
}

.mobile-category {
  display: block;
  background-color: rgba(241, 245, 249, 0.42);
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  border: solid 1px #fff;
  border-color: #e2e8f0;
  max-width: 210px;
}

.categories-left {
  overflow-x: auto;
  padding-bottom: 10px;
}

.post-categories-bar .categories-list {
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

.post-categories-bar .categories-list li a {
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  color: #64748b;
  font-weight: 500;
  font-size: 14px;
  display: block;
  line-height: 20px;
  border: solid 1px #fff;
  white-space: nowrap;
}

.post-categories-bar .categories-list li a:hover {
  background-color: rgba(241, 245, 249, 0.42);
  border-color: #e2e8f0;
}

.post-categories-bar .categories-list li.active a {
  background-color: var(--base-color);
  color: #fff;
}

.search-filter-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-form input.searchField {
  background: rgb(241 245 249 / 30%) url(../images/search-icon.svg) no-repeat;
  background-size: 16px;
  background-position: 13px center;
  width: 320px;
  height: 48px;
  visibility: visible;
  border: solid 1px #e2e8f0;
  border-radius: 12px;
  overflow: visible;
  padding: 10px 10px 10px 44px;
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 20px;
}

.search-form button {
  background-color: var(--black);
  width: 40px;
  height: 40px;
  border: solid 1px hsl(0 0% 14% / 1);
  border-radius: .5rem;
  overflow: visible;
  cursor: pointer;
  display: none;
}

.search-form button:hover {
  background-color: var(--base-color);
}

.search-form button svg {
  color: var(--white);
  width: 16px;
}

.search-form input.searchField.active {
  width: calc(232px - 60px);
  visibility: visible;
}

.cat-filter-wrap {
  width: 200px;
}

.cat-filter-wrap select {
  background-color: #000;
  width: 100%;
  height: 40px;
  border: solid 1px hsl(0 0% 14% / 1);
  border-radius: .5rem;
  overflow: hidden;
  color: var(--white);
  padding: 8px 12px;
}

.blog-card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  transition: all ease 0.3s;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.blog-card:hover {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.1) 0px 10px 25px -3px,
    rgba(0, 0, 0, 0.06) 0px 4px 6px -2px;
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.catbtn {
  background-color: var(--base-color);
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.6px;
  color: var(--white);
  font-weight: 600;
  border-radius: 9999px;
  text-transform: uppercase;
  padding: 4px 12px;
}

.blog-image img {
  width: 100%;
  display: block;
  height: 100%;
  object-fit: cover;
  transition: all ease 0.4s;
}

.blog-content-wrap {
  padding: 24px;
}

.blog-meta {
  margin-bottom: 8px;
}

.blog-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: #64748b;
  font-size: 12px;
}

.blog-meta ul li {
  color: #64748b;
  font-size: 12px;
  line-height: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta ul li a {
  color: var(--black);
  font-weight: 600;
}

.blog-meta ul li span {
  line-height: 16px;
}

.blog-meta ul li svg {
  width: 12px;
}

.blog-meta ul li img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.blog-content-wrap h3 {
  margin-top: 0;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--black);
  transition: all ease 0.4s;
}

.blog-description {
  margin-bottom: 15px;
}

.blog-description p {
  margin: 0;
  color: #64748b;
  line-height: 24px;
  font-size: 16px;
}

.author-detail {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  color: #a1a1a1;
  gap: 10px;
}

.author-detail img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}

.btn-group .readmore {
  font-size: 14px;
  align-items: center;
  display: flex;
  font-weight: 500;
  transition: all ease 0.4s;
  gap: 3px;
}

.btn-group .readmore svg {
  width: 16px;
  display: block;
  transition: all ease 0.4s;
}

.blog-grid {
  margin-top: 3rem;
  display: grid;
  grid-gap: 20px;
}

.blog-grid .blog-content-wrap h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.blog-grid .blog-description p {
  color: #64748b;
  line-height: 24px;
  font-size: 16px;
}

.blog-card:hover h3 {
  color: var(--base-color);
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.loadMore-btn-wrap {
  margin-top: 3rem;
  text-align: center;
}

.loadMore-btn-wrap .loadmore {
  border-radius: 6px;
  background-image: linear-gradient(135deg, #c564fa 0%, #c564fa 50%, #c564fa 100%);
  background-position: 90% center;
  font-size: 0.875rem;
  color: var(--white) !important;
  font-weight: 500;
  border: none;
  padding: 0.81rem 32px;
  cursor: pointer;
}

.no-posts-found {
  text-align: center;
  margin-top: 40px;
  color: var(--black);
}

.no-posts-found p {
  color: inherit;
}

.blog-featured-wrap {
  border: 1px solid #e2e8f0;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.1) 0px 1px 3px 0px,
    rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}

.blog-featured-wrap:hover {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0) 0px 0px 0px 0px,
    rgba(0, 0, 0, 0.1) 0px 10px 25px -3px,
    rgba(0, 0, 0, 0.06) 0px 4px 6px -2px;
}

.blog-featured-wrap .blog-content-wrap {
  padding: 30px 32px;
}

.blog-featured-wrap .btn-group .readmore {
  font-size: 16px;
}

.blog-featured-wrap .blog-meta {
  margin-bottom: 14px;
}

.blog-featured-wrap .blog-content-wrap h3 {
  margin-bottom: 10px;
  line-height: 40px;
  font-weight: 700;
  -webkit-line-clamp: 3;
}

.pagination-wrap {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pagination-wrap .page-numbers {
  padding: 0;
  border-radius: 8px;
  border: solid 1px #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #64748b;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pagination-wrap .page-numbers:hover {
  border: solid 1px #e2e8f0;
  color: var(--base-color);
}

.pagination-wrap .page-numbers.current {
  background-color: rgb(241 245 249 / 50%);
  border-color: #e2e8f0;
  color: var(--base-color);
  font-weight: 700;
}

.subscribe-section {
  padding-top: 0;
  padding-bottom: 40px;
}

.subscribe-content {
  max-width: 768px;
  margin: 0px auto 40px auto;
}

.subscribe-wrap {
  padding: 30px;
  border-radius: 24px;
  box-shadow: 0 0 20px rgba(59, 130, 246, .3);
  background-color: #0f172a;
}

.subscribe-icon {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  padding: 12px;
  border-radius: 16px;
  background-color: rgb(255 255 255 / 5%);
  border: solid 1px rgb(255 255 255 / 10%);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.35px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
}

.subscribe-icon svg {
  stroke: var(--base-color);
  width: 24px;
  height: 24px;
}

.subscribe-content h2 {
  font-size: 30px;
  line-height: 48px;
  letter-spacing: -1.2px;
  color: var(--white);
  margin-bottom: 24px;
}

.subscribe-content h2 span {
  color: var(--base-color);
}

.subscribe-content p {
  color: #9ca3af;
  font-size: 18px;
  line-height: 29px;
}

.subscribe-form {
  width: 100%;
  margin: 0px auto;
  text-align: center;
}

.subscribe-form form p {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.subscribe-form form input {
  background-color: rgba(255, 255, 255, 0.05);
  border: solid 1px rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  padding: 24px;
  max-width: 334px;
  width: 100%;
  height: 56px;
  font-family: var(--font-primary);
  color: var(--white);
}

.subscribe-form form input ::-webkit-input-placeholder {
  color: #fff;
  opacity: 0.5;
}

.subscribe-form form input ::-moz-placeholder {
  color: #fff;
  opacity: 0.5;
}

.subscribe-form form input :-ms-input-placeholder {
  color: #fff;
  opacity: 0.5;
}

.subscribe-form form input :-moz-placeholder {
  color: #fff;
  opacity: 0.5;
}

.subscribe-form form .subs-btn {
  background: var(--base-color) url('../images/rocket-icon.svg') no-repeat 80% center;
  background-size: 16px;
  border: solid 1px var(--base-color);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  padding: 8px 62px 8px 32px;
  height: 56px;
  font-family: var(--font-primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  max-width: unset;
  width: unset;
}

.subscribe-form small {
  color: #6b7280;
  font-size: 12px;
  margin-top: 24px;
  text-align: center;
  display: block;
}

.subscribe-form .mc4wp-alert {
  margin-top: 20px;
  color: #fff;
}

.subscribe-form .mc4wp-alert p {
  font-size: 16px;
  color: #fff;
}

.subscribe-form .mc4wp-alert.mc4wp-success p {
  color: green;
}

/* Single Page Style ===================================================================== */
.blog-detail-section {
  padding-top: 40px;
  padding-bottom: 0;
}

.blog-detail-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.blog-detail-head .blog-meta ul li {
  font-size: 14px;
  gap: 10px;
}

.blog-detail-head .blog-meta ul li svg {
  width: 16px;
}

.blog-detail-head .blog-meta ul li img {
  width: 40px;
  height: 40px;
}

.blog-detail-head .blog-meta ul li.dauthor span {
  font-weight: 600;
  color: #020817;
}

.blog-detail-container {
  width: 100%;
  margin: 0px auto;
}

.blog-content-main {
  display: grid;
  align-items: start;
  grid-gap: 10px;
  margin-top: 50px;
}

.blog-content-main .blog-content {
  width: 100%;
}

.sticky-social-wrap {
  display: none;
}

.mobile-social {
  display: block;
  margin-top: 24px;
}

.sticky-social {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.sticky-social:before {
  content: 'Share Article';
  opacity: .5;
  color: #64748b;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

.sticky-social .heateor_sss_sharing_ul a {
  margin-bottom: 10px !important;
}

.sticky-social .heateor_sss_svg {
  background: #fff !important;
  border: solid 1px #ddd !important;
  width: 50px !important;
  height: 50px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.sticky-social .heateor_sss_svg svg {
  width: 26px;
}

.sticky-social .heateor_sss_svg svg path {
  fill: rgb(2, 8, 23);
}

.sticky-social .heateor_sss_sharing_ul a:hover .heateor_sss_svg {
  border-color: var(--base-color) !important;
}

.sticky-social .heateor_sss_sharing_ul a:hover .heateor_sss_svg svg path {
  fill: var(--base-color) !important;
}

.backBtn {
  margin-bottom: 24px;
  align-self: self-start;
}

.backBtn .button {
  background-color: var(--white);
  border: none;
  border-radius: 0;
  overflow: hidden;
  color: #64748B;
  padding: 0;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  font-weight: 500;
  gap: 5px;
  cursor: pointer;
  width: fit-content;
}

.backBtn .button:hover {
  color: var(--base-color);
}

.backBtn .button svg {
  width: 16px;
  transition: all 0.2s ease-in-out;
}

.backBtn .button:hover svg {
  transform: translateX(-4px);
  stroke: var(--base-color);
}

.blog-detail-head .catbtn {
  position: unset;
  background-color: hsl(221.2 83.2% 53.3% / .1);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  color: var(--base-color);
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 50px;
  border: solid 1px hsl(221.2 83.2% 53.3% / .1);
  margin-bottom: 30px;
}

.slingle-title {
  color: #020817;
  line-height: 45px;
  letter-spacing: -0.9px;
  font-weight: 700;
  font-size: 36px;
  margin-top: 24px;
  margin-bottom: 30px;
}

.blog-detail-wrap .blog-image {
  height: auto;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25);
  border-radius: 24px;
  aspect-ratio: 21 / 9;
}

.blog-detail-wrap .blog-image img {
  border-radius: 24px;
}

.blog-sidebar-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px
}

.blog-sidebar-card {
  padding: 1.25rem;
  border: solid 1px rgb(36 36 36 / 50%);
}

.blog-sidebar-card h3 {
  color: var(--white);
  font-weight: 700;
  font-size: .875rem;
  margin-top: 0;
  margin-bottom: 1rem;
}

.blog-sidebar-card.author-sidebar h3 {
  text-transform: none;
}

.blog-sidebar-card.author-sidebar .blog-meta {
  margin: 0;
}

.blog-sidebar-card.author-sidebar .blog-meta ul li {
  color: var(--white);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
}

.blog-sidebar-card.author-sidebar .blog-meta ul li img {
  width: 48px;
  height: 48px;
}

.blog-sidebar-card.toc-wrap h3 {
  color: #a1a1a1;
  text-transform: uppercase;
}

.blog-sidebar-card ul li {
  line-height: 1;
  list-style-type: disc;
  line-height: 1.625;
  color: #fafafa;
  font-size: .75rem;
  margin-bottom: 8px;
}

.blog-sidebar-card ul li a {
  color: #fafafa;
}

.blog-content {
  overflow: hidden;
}

.blog-content p {
  color: #a1a1a1;
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.blog-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: #020817;
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #020817;
  margin-top: 1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #020817;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.blog-content a {
  color: var(--base-color);
  text-decoration: underline;
  transition: opacity 0.2s;
}

.blog-content a:hover {
  opacity: 0.8;
}

.blog-content blockquote {
  background-color: rgba(37, 99, 235, .03);
  border-left: 4px solid var(--base-color);
  margin: 2rem 0;
  font-style: italic;
  color: #020817;
  padding: 12px 0 12px 32px;
  border-radius: 0;
}

.blog-content blockquote p {
  margin-bottom: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
  color: inherit;
}

.blog-content ul,
.blog-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.blog-content ul {
  list-style-type: disc;
}

.blog-content ol {
  list-style-type: decimal;
}

.blog-content li {
  font-size: 1rem;
  line-height: 1.75;
  color: #a1a1a1;
  margin-bottom: 0.5rem;
  list-style-type: disc;
}

.blog-content li strong {
  color: #a1a1a1;
  font-weight: 600;
}

.blog-content ol li {
  list-style-type: decimal;
}

.blog-content img {
  width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 2rem 0;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.blog-content-main .blog-content pre {
  background: #0f1117;
  padding: 32px;
  border-radius: 16px;
  overflow-x: auto;
  margin: 1.5rem 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25)
}

.blog-content-main .blog-content code {
  background: transparent;
  padding: 0;
  font-size: 14px;
  color: #93c5fd;
}

.blog-content hr {
  border: none;
  height: 1px;
  background: #e2e8f0;
  margin: 2rem 0;
}

.blog-content-main .blog-content .tips {
  background: rgba(245, 158, 11, .05);
  border: solid 1px rgba(245, 158, 11, .2);
  border-radius: 16px;
  padding: 32px 32px 32px 102px;
  margin: 40px 0;
  position: relative;
}

.blog-content-main .blog-content .tips::after {
  content: "💡";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(245, 158, 11, .1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content-main .blog-content .tips p {
  line-height: 22px;
  font-size: 14px;
  color: rgba(146, 64, 14, .8);
  margin-bottom: 10px;
}

.blog-content-main .blog-content .tips p:last-child {
  margin-bottom: 0;
}

.blog-content-main .blog-content .tips p strong {
  font-weight: 600;
  color: #78350f;
}

.blog-content-main .blog-content li {
  color: var(--black);
}

.blog-content table {
  width: 100%;
  /* border-collapse: collapse; */
  margin: 2rem 0;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
}

.blog-content table th,
.blog-content table td {
  border-bottom: 1px solid #e2e8f0;
  padding: 20px;
  text-align: left;
  letter-spacing: .05em;
}

.blog-content table th {
  background: rgb(241 245 249 / 50%);
  font-weight: 600;
  color: #020817;
  font-size: 14px;
  text-transform: uppercase;
}

.blog-content table td {
  color: #020817;
  font-size: 14px;
}

.blog-content strong {
  color: #a1a1a1;
  font-weight: 600;
}

.blog-content em {
  font-style: italic;
}

.blog-content-main .blog-content p {
  color: #020817;
  line-height: 32px;
  margin-bottom: 0;
}

.blog-content-main .blog-content strong {
  font-weight: 600;
  color: #020817;
}

.blog-content-main .blog-content figure {
  margin-top: 30px;
  margin-bottom: 30px;
}

.blog-content-main .blog-content figure figcaption {
  font-size: 14px;
  font-style: italic;
  color: #64748b;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-content-main .blog-content figure figcaption:after,
.blog-content-main .blog-content figure figcaption:before {
  content: '';
  background: #e2e8f0;
  width: 32px;
  height: 1px;
  margin: 0 10px;
}

.post-tags-wrap {
  padding-top: 30px;
  margin-top: 60px;
  border-top: solid 1px #e2e8f0;
}

.post-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

.post-tags-wrap .tag-item {
  color: #64748b;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  padding: 4px 12px;
  border-radius: 8px;
  border: solid 1px #e2e8f0;
  text-decoration: none;
  cursor: pointer;
}

.post-tags-wrap .tag-item:hover {
  color: var(--base-color);
  border-color: var(--base-color);
}

.author-bio-wrap {
  margin-top: 60px;
  border: solid 1px rgba(37, 99, 235, 0.1);
  background: rgba(37, 99, 235, 0.03);
  border-radius: 40px;
  padding: 48px;
}

.author-bio-wrap .author-bio {
  display: grid;
  grid-gap: 30px;
}

.author-bio-wrap .author-bio .author-bio-img img {
  box-shadow: none;
  margin: 0;
  display: block;
}

.author-bio-wrap .author-bio-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 32px;
}

.author-bio-wrap .author-bio-content p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 30px;
  color: rgb(100, 116, 139);
}

.author-social-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.author-social-wrap a {
  text-decoration: none;
  color: rgb(100, 116, 139);
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 4px;
}

.author-social-wrap a::before {
  height: 23px;
}

.author-social-wrap a.twitter::before {
  content: url(../images/twitter-icon.svg);
}

.author-social-wrap a.linkedIn::before {
  content: url(../images/linkedin-icon.svg);
}

.author-social-wrap a:hover {
  color: var(--base-color);
}

.author-social-wrap a:hover::before {
  filter: invert(20%) sepia(100%) saturate(1535%) hue-rotate(196deg) brightness(90%) contrast(100%);
}

.related-posts-section {
  margin-top: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: rgb(241 245 249 / 20%);
  border-top: solid 1px #e2e8f0;
  border-bottom: solid 1px #e2e8f0;
}

.related-posts-outer {
  width: 100%;
  margin: 0 auto;
}

.related-posts-section .heading-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  margin-bottom: 48px;
}

.related-posts-section .heading-wrap .heading-left h2 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 30px;
  line-height: 32px;
}

.related-posts-section .heading-wrap .heading-left p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 24px;
  color: rgb(100, 116, 139);
}

.related-posts-section .heading-wrap a {
  text-decoration: none;
  color: var(--base-color);
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
}

.related-posts-section .heading-wrap a:hover {
  text-decoration: underline;
}

.related-posts {
  display: grid;
  grid-gap: 32px;
}

.related-posts .related-post {
  display: block;
}

.related-posts .related-post .related-post-image {
  margin-bottom: 16px;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 10;
}

.related-posts .related-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform .5s ease;
}

.related-post-content .catbtn {
  position: unset;
  display: inline-flex;
  color: #0f172a;
  background-color: #f1f5f9;
  text-transform: none;
}

.related-post-content h4 {
  margin-top: 12px;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #020817;
}

.related-posts .related-post:hover img {
  transform: scale(1.05);
}

.related-posts .related-post:hover h4 {
  color: var(--base-color);
}

.progress-line-wrap {
  width: 100%;
}

.progress-line-wrap .progress-line {
  width: 0;
  height: 4px;
  background-color: var(--base-color);
  transition: width .5s ease;
}

.author-info-wrap {
  display: flex;
  flex-direction: column;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.author-info-content {
  display: flex;
  flex-direction: column;
}

.author-info-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 32px;
}

.author-info-content p {
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 30px;
  color: rgb(100, 116, 139);
}

.author .blog-grid {
  margin-top: 50px;
}

/* ============================== Error 404 ============================== */

.error-404 {
  background: #ffffff;
  text-align: center;
  padding: 100px 20px;
}

.error-image {
  margin-bottom: 30px;
}

.error-image img {
  width: 100%;
  max-width: 550px;
}

.error-404 h1 {
  font-size: 30px;
  font-weight: 800;
  color: #2563eb;
  margin-bottom: 10px;
}

.error-404 h2 {
  font-size: 28px;
  color: #020817;
  margin-bottom: 15px;
}

.error-404 p {
  color: #475569;
  max-width: 500px;
  margin: 0 auto 30px;
  line-height: 1.6;
  font-size: 16px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #2563eb;
  font-family: var(--font-primary);
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 14px;
}

.btn-primary:hover {
  background: var(--base-color);
  color: var(--white);
}

.error404 .progress-line-wrap {
  display: none;
}

/* ============================== Pagination ============================== */

.navigation.pagination {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.navigation.pagination .nav-links a,
.navigation.pagination .nav-links span {
  padding: 12px;
  width: 10px;
  height: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  color: var(--base-color);
}

.navigation.pagination .nav-links .current {
  color: #fff;
  background-image: linear-gradient(135deg, #c564fa 0%, #c564fa 50%, #c564fa 100%);
}

.navigation.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
}