/*------------ home page start--------------------*/
.main-page {
  background-image: url("../img/home-bg1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}

.logo-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 50px;
}

.logo-wrap img {
  max-width: 400px;
}

.play-intro {
  transform: scale(1.05);
  animation: scalePulse 1s ease-in-out infinite alternate;
  cursor: pointer;
}

@keyframes scalePulse {
  0% {
    transform: scale(1.05);
    opacity: 1;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

a.swiper-slide.continent-item {
  /* display: inline-block !important; */
  width: auto;
}

.fire-wrapper {
  position: fixed;
  inset: 0;
  pointer-events: none;
  /* z-index: -0; */
  z-index: 99;
  overflow: hidden;
}

.fire-particle {
  position: absolute;
  bottom: -20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffeb3b, #ff5722, transparent);
  opacity: 0;
  filter: blur(0.4px);
}

.play-intro {
  background-image: url("../img/magical-world.webp");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  font-size: 30px;
  font-family: Playfair Display, serif;
  font-weight: 600;
  color: #fec449;
  padding: 20px 90px;
  white-space: nowrap;

}

@media (min-width:767px) {
  .continents-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 20px;
    padding-top: 20px;
  }

}


.continent-item img {
  cursor: pointer;
  transform: scale(0.85);
}

@keyframes verticalMove {
  50% {
    transform: scale(0.85) translateY(-6px);
  }
}

.seven .continent-item:nth-child(4) {
  min-width: 160px;
}

.seven .continent-item:nth-child(3),
.seven .continent-item:nth-child(5) {
  margin-top: 40px;
  max-width: 160px;
}

.seven .continent-item:nth-child(2),
.seven .continent-item:nth-child(6) {
  margin-top: 80px;
  max-width: 150px;
}

.seven .continent-item:nth-child(1),
.seven .continent-item:nth-child(7) {
  margin-top: 125px;
  max-width: 140px;
}

.character img {
  max-width: 360px;
}

.explore-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 25px 50px;
  position: relative;
}

.intro-video-wrap {
  position: fixed;
  inset: 0;
  z-index: 99;
}

.intro-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* object-position: top; */
}

.skip-intro {
  position: absolute;
  bottom: 30px;
  right: 40px;
  z-index: 9;
  cursor: pointer;
  display: none;
  background-image: url('../img/heading-bg-brown.webp');
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
  padding: 12px 15px;
  color: #ffddb0 !important;
  font-family: Playfair Display, serif;
  font-weight: 600;
  font-size: 20px;
  max-width: 150px;
  width: 100%;
  background-color: transparent;
  border: 0px;
  justify-content: center;
}

.welcome-video .modal-inner {
  position: relative;
  padding: 82px 30px 18px;
}

.modal-inner:after {
  content: "";
  background-image: url("../img/dragon.webp");
  inset: 0;
  width: 100%;
  display: block;
  height: 100%;
  position: absolute;
  z-index: 99;
  background-size: 100% 100%;
}

.play-video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 0;
  cursor: pointer;
  z-index: 9999;
}

.book img {
  max-width: 650px;
}

.modal-wrapper {
  position: fixed;
  inset: 0;
  background: rgb(0 0 0 / 57%);
  backdrop-filter: blur(7px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s ease;
  z-index: 9999;
}

.modal-inner {
  /* max-width: 700px; */
  width: 62%;
  overflow: hidden;
  /* max-height: 75vh; */
  position: relative;
}

.modal-wrapper video {
  object-fit: cover !important;
  width: 100%;
}

.modal-wrapper.active-modal {
  opacity: 1;
  visibility: visible;
}

.modal-close {
  color: #898989;
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 18px;
  z-index: 99999;
  cursor: pointer;
}

.mobile-book {
  display: none;
}

@media (max-width: 1024px) {
  .continents-row {
    padding-block: 100px !important;
  }

  .mobile-book {
    display: block;
  }

  .mobile-book img {
    width: 100%;
  }

  .explore-wrapper {
    display: none;
  }

  .seven .continent-item:nth-child(4) {
    min-width: 115px;
    max-width: 130px;
  }

  .seven .continent-item:nth-child(3),
  .seven .continent-item:nth-child(5) {
    margin-top: 40px;
    max-width: 120px;
  }

  .continents-row {
    gap: 0;
  }

  .seven .continent-item:nth-child(2),
  .seven .continent-item:nth-child(6) {
    margin-top: 80px;
    max-width: 110px;
  }

  .seven .continent-item:nth-child(1),
  .seven .continent-item:nth-child(7) {
    margin-top: 125px;
    max-width: 104px;
  }
}

@media (max-width:768px) {
  .continents-row {
    padding-block: 70px !important;
  }

  .seven .continent-item:nth-child(4) {
    max-width: 120px;
  }

  .seven .continent-item:nth-child(3),
  .seven .continent-item:nth-child(5) {
    max-width: 110px;
  }

  .seven .continent-item:nth-child(2),
  .seven .continent-item:nth-child(6) {
    max-width: 100px;
  }

  .seven .continent-item:nth-child(1),
  .seven .continent-item:nth-child(7) {
    max-width: 95px;
  }
}

@media (max-width:767px) {

  .main-page .custom-container,
  .continents-row {
    padding: 0 !important;
  }

  .play-intro {
    padding: 20px 52px;
    display: block;
    width: 85%;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
  }

  .skip-intro {
    bottom: 25px;
    right: 22px;
    padding: 5px 10px 7px;
    font-size: 12px;
    max-width: 80px;
  }
}

/* -----------homepage css end-----------*/

/* -----------choose country city css start-----------*/
.choose-country {
  padding-top: 20px;
  padding-bottom: 100px;
}

.country-search-input {
  background-image: url('../img/search-input.webp') !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  border: 0 !important;
  font-family: Playfair Display, serif;
  font-weight: 700;
  outline: 0 !important;
  color: #b57a3d !important;
  padding: 17px 40px !important;
  padding: 0 20px !important;
  height: 60px;
  border-radius: 0 !important;
  font-size: 18px;
  width: 100%;
}

.choose-country .continents-list a {
  text-align: center;
  min-width: 130px;
  height: 70px;
  font-size: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 25px;
  text-decoration: none;
  background-image: url("../img/btn-bg.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.choose-country .continents-list .active-continent a {
  background-image: url("../img/active-btn-bg.png");
}

.choose-country .continents-list a:before {
  content: "";
  position: absolute;
  background-image: url("../img/fire.gif");
  width: 90%;
  height: 35px;
  bottom: 9px;
  background-repeat: repeat-x;
  background-size: contain;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.choose-country .continents-list a:hover::before {
  opacity: 1;
}

.location-heading-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-bottom: 30px;
}

.location-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

.location-item {
  text-decoration: none;
  max-width: 275px;
  width: 100%;
  background-image: url("../img/item-border.webp");
  padding: 10px 8px 3px;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  background-size: 100% 100%;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.location-item h3 {
  color: var(--dark-color);
  font-size: 20px;
  display: block;
  font-family: Playfair Display, serif;
  font-weight: 700;
  text-align: center;
  padding: 8px 8px 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.location-item img {
  border-radius: 5px;
  width: 100%;
  position: relative;
  object-fit: cover;
  height: 210px;
}

.location-item::before {
  position: absolute;
  top: 0;
  left: -76%;
  z-index: 2;
  display: block;
  content: "";
  width: 30%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  content: "";
}

.location-item:hover::before {
  animation: shine 0.6s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.location-row .swiper-button-next,
.location-row .swiper-button-prev {
  top: unset !important;
  bottom: 0;
}

.location-row .swiper-button-next {
  right: 30% !important;
}

.location-row .swiper-button-prev {
  left: 30% !important;
}

.location-row .swiper {
  padding-left: 20px;
}

.continents-list .splide__track {
  margin: auto;
  width: 100% !important;
}

.location-row .splide__arrows {
  position: relative;
  margin-top: 30px;
  /* background: #d79751 !important; */
  /* bottom: -73px !important; */
  top: unset !important;
}

.splide__arrow {
  width: 32px;
  height: 32px;
  padding: 0;
}

.location-row .splide__arrow--prev {
  left: -50px !important;
}

.location-row .splide__arrow--next {
  right: -50px !important;
}

.choose-city {
  padding-top: 60px;
  padding-bottom: 80px;
}

.go-back {
  display: inline-flex;
  align-items: end;
  justify-content: flex-start;
  gap: 2px;
  border: 0 !important;
  outline: 0 !important;
  margin-top: 25px;
}

.go-back:hover img {
  transform: translate(-3px);
}

.go-back img {
  transition: all 0.3s ease;
}

.go-back span {
  font-size: 32px;
  margin-left: 0;
}

@media (min-width: 769px) {

  .continent-item:hover img {
    animation: verticalMove 1s infinite ease-in-out;
  }

  .continents-list,
  .location-row.splide {
    visibility: visible !important;
  }

  .continents-list .splide__track,
  .location-row .splide__track {
    width: 100%;
  }

  .continents-list .splide__list,
  .location-row.splide .splide__list {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }

  .splide__arrows {
    display: none;
  }
}

@media (min-width: 992px) and (max-width: 1024px) {
  .book img {
    max-width: 500px;
  }

}

@media (min-width: 767px) and (max-width: 991px) {
  .book img {
    max-width: 415px;
  }

  a.swiper-slide.continent-item {
    max-width: 85px;
  }
}

@media (max-width: 1024px) {
  .choose-country .continents-list a:before {
    display: none;
  }

  .location-heading-wrapper {
    padding-bottom: 45px;
  }

  .location-item {
    max-width: 205px;
  }

  .location-item img {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .choose-country {
    padding-top: 40px !important;
  }

  .choose-country .continents-list {
    padding: 0;
    margin-inline: -11px;
  }

  .choose-country .continents-list a {
    font-size: 18px;
    padding: 0 6px;
  }

  .continents-list .swiper-wrapper {
    padding-left: 45px;
  }

  .location-row {
    width: 100% !important;
    padding-bottom: 0px !important;
  }

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

  .choose-city {
    padding-top: 30px;
  }

  .continents-list .splide__track {
    width: 75% !important;
  }

  .choose-country .continents-list a {
    height: 55px;
  }

  .location-heading-wrapper {
    padding-bottom: 10px;
  }

  .go-back span {
    font-size: 20px;
  }

  .go-back img {
    width: 36px;
  }
}

@media (max-width: 767px) {

  /* .main-page-content {
    overflow: hidden;
  } */
  .city-search-input {
    height: 46px !important;
  }

  .location-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .location-item {
    padding: 10px 8px 4px;
    max-width: 100%;
  }

  .book img {
    max-width: 275px;
    position: relative;
    z-index: 5;
  }

  .continent-item img {
    width: 130px;
    transform: unset;
    height: auto;
    object-fit: contain;
  }

  .explore-wrapper {
    position: relative;
  }

  .character img {
    position: absolute;
    left: -27px;
    object-fit: contain;
    width: 150px;
    bottom: -132px;
    z-index: 0;
  }

  .globe img {
    width: 110px !important;
    display: block;
    min-width: 100px;
    position: absolute;
    right: -31px;
    bottom: -100px;
  }

  .continents-wrapper {
    overflow: hidden;
  }

  .swiper-slide {
    width: 300px;
  }

  .continents-wrapper .seven .continent-item {
    margin-top: 0 !important;
    max-width: 100% !important;
  }

  .swiper-container {
    width: 100%;
    padding: 50px 0;
    overflow: visible;
    /* Important: overflow visible rakho */
  }

  .swiper-slide {
    width: 150px;
    /* Fixed width do slide ko */
    height: 250px;
    background-size: cover;
    background-position: center;
  }
}

/* -----------choose country city css end-----------*/

/* -----------category css start-----------*/

.choose-category {
  padding-block: 60px;
}

.categories-row {
  padding: 0px 0 65px 80px !important;
  margin-right: -20px !important;
}

a.category-item {
  text-align: center;
}

.category-name {
  font-size: 26px;
  display: block !important;
  text-align: center;
}

.suggestion-title {
  display: inline-block;
  color: #482900;
  padding: 20px 70px;
  font-family:
    Playfair Display,
    serif;
  font-size: 32px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.suggestion-title:before {
  content: "";
  background-image: url("../img/suggestion-heading-bg.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 110px;
  display: block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.suggestion-title:after {
  content: "";
  background: linear-gradient(to right, transparent, #e5c49b, #e5c49b, #e5c49b, #e5c49b, transparent);
  height: 3px;
  width: 150%;
  display: block;
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.suggestion-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  padding: 45px 0 40px;
}

.suggestion-btn {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
  padding: 12px 50px;
  color: #ffddb0 !important;
  font-family: Playfair Display, serif;
  font-weight: 600;
  font-size: 28px;
  max-width: 320px;
  width: 100%;
  transition: all 0.3s ease;
}

.suggestion-btn:hover {
  transform: scale(0.96);
}

.editors-pick {
  background-image: url("../img/heading-bg-red.webp");
}

.beginners-guide {
  background-image: url("../img/heading-bg-brown.webp");
}

.categories-row .swiper-slide img {
  max-width: 215px;
  width: 100%;
}

.categories-slider.swiper-centered .swiper-wrapper {
  justify-content: center;
  transform: unset !important;
}

.categories-slider.swiper-centered .swiper-slide {
  width: auto !important;
}

@media (max-width: 1024px) {
  .suggestion-title {
    font-size: 26px;
  }

  .categories-row {
    padding: 0px 0 50px 40px;
    margin-right: -10px;
  }
}

@media (max-width: 767px) {
  .categories-row {
    padding-left: 0 !important;
  }

  .suggestion-title {
    font-size: 22px;
    padding: 20px 40px;
    margin: 0;
  }

  .suggestion-title:after {
    display: none;
  }

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

  .suggestion-btn {
    font-size: 18px;
    max-width: 250px;
  }

  .suggestion-title:before {
    height: 85px;
  }

  .categories-row .swiper-wrapper {
    padding: 0;
    margin: 0;
  }
}

/* -----------category css end-----------*/
/* -----------blog listing css start-----------*/

body:has(.stories-archive) header,
body:has(.stories-archive) footer {
  display: block !important;
}

body:has(.no-stories-found) .mobile-filters-target,
body:has(.no-stories-found) .stories-sidebar {
  display: none;
}

body:has(.stories-archive) {
  background-image: url("../img/template-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.stories-header {
  background-image: url("../img/listing-main-bg.webp");
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 80px 0 50px;
  min-height: 520px;
}

.stories-subtitle {
  color: #ffddb0;
  font-size: 18px;
  max-width: 430px;
  width: 85%;
  font-family: "poppins";
  margin: 20px auto 40px;
  font-weight: 400;
}

.stories-search button {
  background-image: url("../img/btn-bg-2.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent !important;
  border: 0 !important;
  font-family: "poppins";
  color: #ffddb0;
  padding: 17px 50px !important;
  line-height: 1.5;
  font-size: 18px;
  cursor: pointer;
}

.stories-search input {
  background-image: url("../img/search-input.webp") !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  border: 0 !important;
  font-family: Playfair Display, serif;
  font-weight: 700;
  outline: 0 !important;
  color: #b57a3d !important;
  padding: 0 20px !important;
  min-height: 60px;
  border-radius: 0 !important;
  width: 100%;
  border-radius: 0 !important;
  font-size: 16px;
}

.listing-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  margin-block: 70px 70px !important;
}

.stories-wrapper {
  width: calc(100% - 380px);
}

.stories-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); */
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  width: 100%;
  justify-content: center;
}

.stories-sidebar {
  max-width: 380px;
  width: 100%;
}

.story-card {
  /* max-width: 400px; */
  /* max-height: 550px; */
  width: 100%;
  background-image: url("../img/story-card.webp") !important;
  background-size: 100% 100% !important;
  background-repeat: no-repeat !important;
  background-color: transparent !important;
  padding: 25px 20px;
  /* height: min-content; */
}

.story-title a {
  color: #3b2200;
  font-size: 24px;
  font-family: Playfair Display, serif;
  line-height: normal;
  font-weight: 600;
  text-align: center;
  width: 85%;
  display: block;
  margin-inline: auto;
}

.story-card p.story-excerpt {
  color: #3b2200;
  font-family: "poppins";
  width: 85%;
  margin: 20px auto 5px;
  text-align: center;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card-footer a {
  background-image: url("../img/btn-bg-2.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-color: transparent !important;
  font-family:
    Playfair Display,
    serif;
  line-height: normal;
  font-weight: 600;
  margin: 20px auto 0;
  color: #ffddb0;
  font-size: 16px;
  text-align: center;
  padding: 13px;
  display: block;
  max-width: 350px;
  width: 85%;
}

.story-date {
  background-image: url("../img/date-bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-family: Playfair Display, serif;
  line-height: normal;
  font-weight: 600;
  margin: auto;
  color: #4a160e;
  position: absolute;
  bottom: -10px;
  right: 10px;
  padding: 5px 10px;
  font-size: 14px;
}

.story-card-image {
  position: relative;
  margin-top: 20px;
}

.story-card-image img {
  width: 100%;
  height: 215px;
  object-fit: cover;
}

.filter-section {
  border: 8px solid #482900;
  border-radius: 6px;
  margin-bottom: 45px;
  padding: 20px;
}

.filter-title {
  color: #482900;
  font-family:
    Playfair Display,
    serif;
  line-height: normal;
  font-weight: 600;
  position: relative;
  font-size: 24px;
}

.filter-title::after {
  content: "";
  background-image: url("../img/filter-heading-border.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  height: 2px;
  width: 100%;
  display: block;
  position: absolute;
  left: 50%;
  top: 55%;
  transform: translate(-50%, -50%);
  z-index: -1;
  margin-top: 25px;
}

.filter-list {
  padding: 0;
  margin: 0;
  list-style: none;
  margin-top: 30px;
}

.filter-list .filter-item a {
  background-image: url("../img/list-bg.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-family:
    Playfair Display,
    serif;
  line-height: normal;
  font-weight: 600;
  color: #ffddb0;
  font-size: 20px;
  color: #ffddb0;
  margin-bottom: 15px;
  padding: 10px 20px;
  display: block;
}

.filter-list .filter-item.active a {
  background-image: url("../img/list-bg-active.png");
  color: #482900;
}

ul.page-numbers {
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 20px;
  margin-top: 70px;
  margin-bottom: 20px;
}

ul.page-numbers li {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../img/page-count.webp") !important;
  background-size: 100% 100%;
  width: 50px;
  height: 50px;
  transition: all 0.3s ease;
}

ul .page-numbers {
  color: #ffddb0 !important;
  padding: 0px 0 10px;
  font-family: Playfair Display, serif;
  font-weight: 600;
  font-size: 30px;
  background-repeat: no-repeat;
  line-height: 0;
  width: 50px;
  height: 50px;
  justify-content: center;
  display: flex;
  align-items: center;
}

ul.page-numbers li:has(.current) {
  background-image: url("../img/pagination-active.webp") !important;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  transform: scale(1.2);
}

ul.page-numbers li:has(a.next.page-numbers),
ul.page-numbers li:has(a.prev.page-numbers) {
  background-image: url("../img/pagination-btn.webp") !important;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  min-width: 140px;
  padding: 6px 0 0 !important;
  height: 60px;
}

.next.page-numbers,
.prev.page-numbers {
  font-size: 23px !important;
  width: 100% !important;
}

.mobile-filters-target,
.filter-close,
.filter-overlay-mobile {
  display: none;
}

.page-template-editors-pick-template .stories-header {
  min-height: 400px;
}

@media (max-width:1024px) {
  .page-template-editors-pick-template .stories-header {
    min-height: 290px !important;
  }

  .stories-sidebar {
    max-width: 300px;
  }

  .listing-wrapper {
    margin-block: 40px 70px !important;
  }

  .stories-wrapper {
    width: 100%;
  }

  .story-title a {
    font-size: 18px !important;
  }

  .story-card-image img {
    height: 180px;
  }

  .story-card p.story-excerpt {
    font-size: 14px !important;
  }
}

@media (max-width:992px) {

  .mobile-filters-target {
    display: block;
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 9;
  }

  .stories-sidebar {
    position: fixed;
    background: #f4e4c9;
    width: 100%;
    max-width: 100%;
    transform: translateX(100%);
    transition: all 0.4s ease;
    padding: 70px 25px;
    max-width: 400px;
    right: 0;
    top: 0;
  }

  .filter-close {
    display: block;
    position: absolute;
    right: 30px;
    top: 20px;
    font-size: 28px;
    color: #482900;
    font-weight: 500;
    font-family: 'Poppins';
  }

  .stories-sidebar.active {
    transform: translateX(0);
    z-index: 99;
    height: 100vh;
    overflow-y: auto;
    box-shadow: 0px 0 100px 100px #2929298c;
  }
}

@media (max-width: 767px) {
  .listing-wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .stories-grid {
    grid-template-columns: 1fr;
  }

  .stories-search form {
    flex-wrap: wrap;
    justify-content: center;
    width: 85% !important;
    margin: auto;
    align-items: center;
    flex-direction: column;
  }

  .filter-section {
    border: 5px solid #482900;
    padding: 10px 13px;
  }

  .filter-list .filter-item a {
    font-size: 18px;
    padding: 8px 20px;
  }

}

/* -----------blog listing css end-----------*/
/* -----------blog detail css start-----------*/
.header-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-inner .static-tagline p {
  font-size: 24px;
  color: #ffddb0;
  font-weight: 500;
  margin: 0;
  line-height: 150%;
}

.header-inner .story-meta-info {
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
  background: url('../img/search-input.webp') no-repeat center;
  padding: 20px;
  background-size: 100% 100%;
}

body:has(.single-story-wrapper) {
  background-image: url('../img/template-bg.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.share-box img {
  border: 0;
  padding: 10px;
}

.no-stories-found {
  font-family: Playfair Display, serif;
  margin-top: 80px;
  text-align: center;
  font-size: 32px;
  color: #3B2200;
  font-weight: 600;
  padding: 0 15px;
}

.no-stories-found a {
  color: #3B2200;
  text-decoration: underline !important;
  font-size: 20px;
}

.taxonomy-item {
  border: 8px solid #482900;
  border-radius: 10px;
  margin-bottom: 45px;
  text-align: center;
  padding: 20px;
}

.author-box img {
  border: 5px solid #FFFABC;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}

.taxonomy-item h3 {
  font-family: Playfair Display, serif;
  color: #3B2200;
  font-size: 24px;
  font-weight: 700;
}

.taxonomy-item p {
  font-family: 'Poppins';
  font-weight: 500;
  line-height: 170%;
  color: #3B2200;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  overflow: hidden;
}

.taxonomy-item a.read-more-btn {
  background-size: 100% 100%;
  background-repeat: no-repeat;
  text-align: center;
  padding: 12px 50px;
  color: #ffddb0 !important;
  font-family: Playfair Display, serif;
  font-weight: 600;
  font-size: 24px;
  max-width: 320px;
  width: 100%;
  background-image: url('../img/heading-bg-brown.webp') !important;
  display: block;
}

.taxonomy-item h4 {
  font-family: Playfair Display, serif;
  font-weight: 600;
  font-size: 24px;
  text-align: start;
  color: #3B2200;
  margin-bottom: 20px;
}

ul.toc-list {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toc-list a {
  font-family: Playfair Display, serif;
  font-weight: 600;
  font-size: 18px;
  outline: 0 !important;
  color: #3B2200;
}

.toc-list a:hover {
  text-decoration: underline !important;

}

.share-buttons a {
  background-color: #f1dec5;
  background-image: url('../img/icon-bg.png') !important;
  width: 40px;
  height: 40px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: inline-block;
  font-size: 24px;
  color: #f4e4c9;
}

.share-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: start;
  margin-top: 25px;
}

.related-stories-section h3 {
  color: #3B2200;
  font-size: 40px;
  font-family: Playfair Display, serif;
  font-weight: 600;
  margin-bottom: 15px;
}

.story-main {
  padding-bottom: 70px;
}

.related-stories-section {
  margin-top: 45px;
}

.related-post-wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}

.main-content a:not(.elementor-button) {
  color: #3B2200 !important;
  text-decoration: underline !important;
}

.main-content a.elementor-button {
  background: url('/wp-content/uploads/2026/01/btn-bg.png') !important;
  border-radius: 0 !important;
  background-repeat: no-repeat !important;
  background-size: 100% 100% !important;
  background-color: transparent !important;
  padding: 20px 25px !important;
  font-size: 22px;
  font-family: Playfair Display, serif !important;
  font-weight: 600;
  color: #feee9e !important;
}

.main-content ul,
.main-content ol {
  margin-left: 0 !important;
  padding-left: 15px;
}

.main-content p {
  margin-block: 5px 15px;
}

.main-content li {
  margin-bottom: 8px;
}

@media (max-width:1024px) {
  .related-post-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:992px) {
  .main-wrapper {
    flex-direction: column;
  }

  .story-main .main-wrapper .main-content {
    width: 100% !important;
  }

  .story-main .main-wrapper .sidebar-content {
    width: 100% !important;
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100% !important;
    gap: 33px;
  }
}

@media (max-width:767px) {
  .story-main .main-wrapper .sidebar-content {
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .logo-wrap {
    top: inherit;
    bottom: 70px;
    transform: translate(-50%, 0);
    justify-content: flex-end;
  }

  .logo-wrap img {
    max-width: 200px;
  }

  .play-intro {
    width: 100%;
  }

  .no-stories-found {
    font-size: 24px;
  }

  .related-post-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }

  .related-post-wrapper .story-card p.story-excerpt {
    display: none;
  }

  .related-stories-section h3 {
    font-size: 28px;
  }

  .related-stories-section .story-title a {
    font-size: 20px;
  }

  .header-inner {
    padding: 0 !important;
  }

  .story-hero .heading-text {
    font-size: 26px;
  }

  .static-tagline p {
    font-size: 15px !important;
  }

  .header-inner .story-meta-info span {
    font-size: 14px !important;
  }

  .header-inner .story-meta-info img {
    width: 30px !important;
    height: 30px !important;
  }

  .header-inner .story-meta-info {
    gap: 10px !important;
  }

  .stories-header {
    min-height: 460px;
  }

  .taxonomy-item p {
    line-height: 150%;
    font-size: 14px;
  }

  .story-main .story-featured-image {
    margin: 40px 0 20px !important;
  }
}


@media (max-width:767px) {
  .continents-wrapper {
    width: 100% !important;
    padding: 90px 0 70px !important;
  }

  .continents-wrapper .swiper-slide:not(.swiper-slide-active) {
    transform: scale(0.7);
    opacity: 0.8;
  }

  .continents-wrapper .swiper-slide-active {
    z-index: 10;
    transform: scale(1);
    opacity: 1;
  }

  .continents-wrapper .swiper-slide-active .slide-content {
    transform: translateZ(100px);
  }

}


/* -----------blog detail css end-----------*/


/* -----------404-----------*/
.not-found .page-content {
    margin: 0;
    width: 100%;
    position: relative;
}

.not-found-desktop{
      width: 100%;
    height: auto;
}
.back-to-home {
    background-image: url(../img/magical-world.webp);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    font-size: 30px;
    font-family: Playfair Display, serif;
    font-weight: 600;
    color: #fec449 !important;
    padding: 10px 28px 14px;
    white-space: nowrap;
    display: block;
    margin: auto;
    max-width: 266px;
    text-align: center;
    width: 100%;
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
}