@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Quicksand:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap");
*,
::after,
::before {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -moz-box-sizing: border-box;
}

:root {
  --bodyFont: "Mulish", sans-serif;
  /* --bodyFont: "Quicksand", sans-serif; */
  --headingFont: "IvyPresto Headline";
  --white: #ffffff;
  --black: #363330;
  /* --primaryColor: #ec429a; */
  --primaryColor: #12CBD8;
  --btnColor: #808080;
  --mulishFont: "Mulish", sans-serif;
}

/* ===================== common css start ====================== */

*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

.clear {
  clear: both;
}

.clear:after {
  content: "";
  clear: both;
  position: relative;
  width: 100%;
  display: table;
}

body {
  font-family: var(--bodyFont);
  font-weight: normal;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  display: inline-block;
  transition: all 0.5s ease-in-out;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
figure {
  margin: 0;
  font-weight: normal;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

p {
  margin: 0;
}

.container {
  max-width: 1200px;
}

.container-fluid {
  max-width: 100%;
  padding: 0 100px;
}

/* ===================== common css start ====================== */

/* =================header start================================ */
header.headerArea {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  background: transparent;
  transition: 0.5s;
}
header.headerArea.fixed {
    background: #ffffffa8;
    transition: 0.5s;
    backdrop-filter: blur(8px);
}
.headerArea.fixed .headerInner {
    padding: 5px 0;
}
.brandLogo img {
  transition: 0.5s;
  max-width: 230px;
}
.fixed .brandLogo img {
    max-width: 90px;
    transition: 0.5s;
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.headerRight {
  display: inline-flex;
  align-items: center;
  gap: 60px;
}

.headerRight ul {
  display: flex;
  gap: 50px;
  align-items: center;
}

.headerRight ul li a {
  /* font-family: var(--bodyFont); */
  font-family: "IvyPresto Headline";
  /* font-weight: 600; */
  font-weight: 200;
  font-size: 22px;
  line-height: 24px;
  letter-spacing: 0%;
  /* color: var(--black); */
  color: #a9a6a3;
  display: inline-block;
  position: relative;
  text-transform: uppercase;
}

.headerRight ul li a:hover, .headerRight ul li.current-menu-item a {
  color: #363330;
}

.headerRight ul li a::before {
  content: "";
  width: 10px;
  aspect-ratio: 1;
  border-radius: 10px;
  background: var(--btnColor);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0);
  transition: 0.5s;
}

/* .headerRight ul li a:hover::before, .headerRight ul li.current-menu-item a::before { */
.headerRight ul li a:hover::before {
  transform: translateY(-50%) scale(1);
  transition: 0.5s;
}

.headerRight ul li a span {
  display: inline-block;
  transition: 0.5s;
}

/* .headerRight ul li a:hover span, .headerRight ul li.current-menu-item a span  { */
.headerRight ul li a:hover span  {
  transform: translateX(14px);
  transition: 0.5s;
}

.moreBtn {
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  padding: 0;
  place-content: center;
  color: var(--white) !important;
  background: var(--black) !important;
  border-radius: 8px;
  line-height: 1;
  transition: 0.5s;
}

.moreBtn:hover {
  /* background: var(--primaryColor); */
  transition: 0.5s;
}

/* more menu */
.moremenuWrapper {
  position: fixed;
  top: 0;
  padding: 55px 0;
  left: 0;
  width: 100%;
  z-index: 11;
  visibility: hidden;
  transition: 0.1s;
  min-height: 100vh;
}

.menuactive.moremenuWrapper {
  visibility: visible;
  transition: 0.5s;
}

.moremenuWrapperbg {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--black);
  z-index: 10;
  visibility: hidden;
  transition: 0.5s;
  opacity: 0;
  /* transition-delay: .5s; */
}

.moremenuWrapperbg.show {
  visibility: visible;
  transition: 0.5;
  opacity: 1;
}

.closeBtn {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-content: center;
  color: var(--black);
  background: var(--white);
  font-size: 20px;
  margin-left: auto;
  cursor: pointer;
}

.morenav {
  display: grid;
  gap: 36px;
  transform: translateX(-100%);
  transition: 0.1s;
  opacity: 0;
}

.menuactive .morenav {
  transform: translateX(0%);
  transition: 0.5s;
  opacity: 1;
}

.morenav li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
  font-size: 35px;
  line-height: 30px;
  letter-spacing: 0;
  color: #f1eae0;
  transition: 0.5s;
}

.morenav li a:hover {
  font-weight: 600;
  transition: 0.5s;
}

.contactHead h2 {
  font-weight: 600;
  font-size: 60px;
  line-height: 44px;
  color: #f1eae0;
  margin-bottom: 50px;
  font-family: "IvyPresto Headline";
  font-weight: 100;
}

.contactHead strong {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  color: #f1eae0;
  display: inline-block;
}

.contactHead p {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  color: #f1eae0;
  margin: 20px 0 50px;
}

.contactWrapper {
  margin-left: 50px;
  padding-left: 25px;
  position: relative;
  transform: translateX(100%);
  opacity: 0;
  transition: 0.1s;
}

.menuactive .contactWrapper {
  transform: translateX(0%);
  opacity: 1;
  transition: 0.5s;
  transition-delay: 0.5s;
}

.contactWrapper::before {
  background: #6b6b6b66;
  width: 1px;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  position: absolute;
}

.contactForm .form-control, .contactForm .form-select {
    background: #54504b !important;
    font-weight: 400;
    font-size: 15px;
    line-height: 15px;
    letter-spacing: 0%;
    border-radius: 5px !important;
    color: #f1eae0;
    border: none !important;
    box-shadow: none !important;
    padding: 15.5px 20px;
    resize: none;
}

.contactForm .form-control::placeholder {
  color: #c2c2c2;
}

.arrowIcon {
  position: absolute;
  top: 11px;
  right: 20px;
  transform: rotate(90deg);
}

.btnWrapper {
  text-align: right;
}

.btnWrapper .primaryBtn {
  width: 100%;
  max-width: 170px;
  justify-content: center;
}

.moremenuWrapper .copyright {
  margin-top: 80px;
}

/* more menu */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 14;
  background: var(--white);
  display: flex;
  align-items: center;
}

.loader.remove {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.loader img {
  width: 100%;
}
.home a.brandLogo {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
} 
.home .fixed a.brandLogo {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
} 
.headerRighttab {
    display: flex;
    gap: 20px;
    align-items: center;
} 
a.userBtn {
    display: flex;
    align-items: center;
    font-family: "IvyPresto Headline";
    gap: 10px;
    font-weight: 200;
    font-size: 22px;
    line-height: 24px;
    letter-spacing: 0%;
    /* color: var(--black); */
    color: #a9a6a3;
    position: relative;
    text-transform: uppercase;
    transition: 0.5s;
}
a.userBtn:hover {
  color: #363330;
  transition: 0.5s;
}
a.userBtn i {
    background: #a9a6a3;
    width: 30px;
    height: 30px;
    display: inline-grid;
    border-radius: 50%;
    color: #fff;
    place-content: center;
}
/* =================header close================================ */

/* =================banner start================================ */
.bannerArea {
    position: relative;
    z-index: 1;
    min-height: 550px;
}

.mobilebanner {
  display: none;
}

.heroBannerVideo {
  width: 100%;
  position: relative;
}
.heroBannerVideo video  {
  width: 100%;
  height: 100vh !important;
  display: block;
  object-fit: cover;
}

.heroOverley {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 0px;
  text-align: center;
}

.heroOverley h1 {
  font-size: 120px;
  line-height: 99px;
  color: var(--black);
  margin-bottom: 50px;
  font-family: "IvyPresto Headline";
  font-weight: 100;
  text-transform: uppercase;
}

.heroOverley p {
  font-weight: 300;
  font-size: 30px;
  line-height: 51px;
  letter-spacing: 0%;
  color: var(--black);
  margin: auto;
  margin-bottom: 60px;
}

.heroOverley p strong {
  font-weight: 700;
}

.primaryBtn {
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: var(--black);
  border: 1px solid var(--btnColor);
  border-radius: 44px;
  display: inline-flex;
  gap: 10px;
  padding: 8px 0;
  align-items: center;
  width: 166px;
  justify-content: center;
}

.primaryBtn:hover {
  background: var(--btnColor);
  color: #fff;
}

.primaryBtn:hover span {
  background: rgba(255, 255, 255, 0.2);
}

.primaryBtn:hover span i {
  color: #fff;
}

.customnav i {
  color: #fbf8f4;
}

.primaryBtn span {
  width: 20px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: #f1eae0;
  display: grid;
  place-content: center;
}

.primaryBtn span i {
  transform: rotate(-45deg);
  transition: 0.5s;
  font-size: 19px;
}

.primaryBtn:hover i {
  transform: rotate(0deg);
  transition: 0.5s;
}

.fadeup {
  opacity: 0;
  transform: translateY(20px);
}
/* .deskbanner  {
  opacity: 0 !important;
} */
.homeBannerVideo {
    display: block;
    height: 100vh;
    position: relative;
    width: 100%;
    object-fit: cover;
}
.homeBrandLogo {
    margin: 0 0 30px;
    text-align: center;
}
.homeBrandLogo img {
    max-width: 230px;
    width: 100%;
}
.heroOverley h4 {
    max-width: 100%;
    margin: auto;
    font-size: 30px;
}
.heroOverley ul {
    display: flex;
    flex-flow: wrap;
    gap: 8px 30px;
    justify-content: center;
    margin: 20px 0;
}
.heroOverley ul li {
    position: relative;
    font-size: 20px;
}
.heroOverley ul li:not(:last-child)::after {
    content: "";
    top: 13px;
    right: -19px;
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--btnColor);
    border-radius: 50%;
}
/* =================banner close================================ */

/* =================journey section start======================= */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journeySliderWrapper figure {
  height: 100%;
  overflow: hidden;
}

.journeySliderWrapper figure img {
  transition: 1s;
}

.journeySliderWrapper .swiper-slide-active figure {
  transform: scale(1.01);
  transition: 1s;
}

.journeySec {
  display: grid;
  /* grid-template-columns: 30% 70%; */
  grid-template-columns: 38% 62%;
  padding: 180px 0 0;
}

.revealtext {
  display: inline-block;
  font-family: "IvyPresto Headline";
  font-weight: 100;
  /* overflow: hidden; */
}

.revealtext .char {
  display: inline-block;
  opacity: 0;
  transform: scale(1);
  filter: blur(12px);
}

.journeyContent {
  padding: 50px 100px 150px 38px;
}

.journeyTitle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* transform: translateX(-83px); */
  position: relative;
  z-index: 2;
}

.journeyTitle h2 {
    color: var(--black);
    /* font-weight: 600; */
    font-size: 120px;
    position: relative;
}

.journeyTitle h2::after {
    content: "";
    width: 1px;
    height: 0%;
    position: absolute;
    top: 10px;
    right: -45%;
    background: #e6e6e6;
    transition: 0.5s;
}

.active .journeyTitle h2::after {
  transition: 1s;
  height: 100%;
  transition-delay: 0.5s;
}

.journeyparaOuter {
  /* transform: translateY(18px); */
}

.journeyTitle h3 {
  font-weight: 300;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0%;
  color: var(--black);
  max-width: 320px;
}


.journeyContent .nav-tabs {
    margin: 30px 0 15px;
    gap: 6px;
    border: none;
}

.journeyContent .nav-tabs .nav-link {
  background: #f1eae0;
  border: none !important;
  margin: 0 !important;
  border-radius: 0px;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0%;
  color: var(--black);
  padding: 9px 14px;
  transition: 0.5s;
}

.journeyContent .nav-tabs .nav-link.active,
.journeyContent .nav-tabs .nav-link:hover {
  background: var(--black);
  color: var(--white);
}

.journeyContent .tab-content {
    background: #fbf8f4;
    padding: 50px 30px 50px 50px;
    min-height: 534px;
}

.topContent h4 {
  font-weight: 400;
  font-size: 30px;
  line-height: 20px;
  color: var(--black);
  margin-bottom: 20px;
  /* font-family: 'IvyPresto Headline'; */
}

.topContent p {
  /* font-weight: 600; */
  font-size: 16px;
  line-height: 17px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 40px;
}

.date {
  /* font-family: Poppins; */
  font-weight: 400;
  font-size: 13px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
  background: #f1eae0;
  border-radius: 5px;
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 15px;
}

.journeyLeft h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.journeyLeft p {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: none;
}

.journeyRight,
.journeyRight figure {
  height: 100%;
}
.journeyLeft {
  padding-top: 15px;
}
.journeyRight figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jouneycontentSlider {
  position: relative;
}

.customnavOuter {
  display: flex;
  position: absolute;
}

.customnavOuter {
  display: flex;
  position: absolute;
  top: 33px;
  right: 0;
  gap: 10px;
}

.journeyPlanContent {
  position: relative;
}

.customnav::after {
  display: none;
}

.customnav {
  position: static !important;
  width: 30px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  border-radius: 50%;
  line-height: 1;
  height: 30px;
  background: var(--black);
  color: var(--white);
}

/* =================journey section start======================= */

/* ===============awards_festival start========================= */
.awards_festival {
  background: #fff;
  padding: 150px 0;
  /* min-height: 100vh; */
  position: relative;
}

.sectioText h2 {
  /* font-weight: 600; */
  font-size: 120px;
  line-height: 87px;
  margin-bottom: 50px;
}

.sectioText.text-center h2 {
  text-align: center;
  color: var(--black);
}

.sectioText p {
  font-weight: 300;
  font-size: 30px;
  line-height: 22px;
}

.awards_festival .sectioText p {
  color: #6b6b6b;
}

.awardSliderwrapper {
  margin-top: 70px;
}

.awardSliderwrapper {
  position: relative;
}

/* .awardSliderwrapper .swiper-slide-prev .awardBtn {
  background: #fff;
} */

/* .awardSliderwrapper .swiper-slide-next .awardBtn {
  background: #fff;
} */

.awardSliderwrapper .awardItem {
  transform: scale(0.8) translateY(43px);
  /* transition: 0.5s; */
  position: relative;
  /* filter: blur(8px) grayscale(1); */
  opacity: 1;
}

.awardSliderwrapper .swiper-slide-next .awardItem {
  transform: scale(1) translateY(0px);
  transition: 0.5s;
  filter: blur(0px) grayscale(0);
  border: 1px solid #3f3f3f;
  opacity: 1;
}
.awardItem img, .awardItem video {
    width: 100%;
    display: block;
}
.awardItem  a {
  display: block;
}

.awardSliderwrapper .customnav {
  position: absolute !important;
  backdrop-filter: blur(5px);
  background: #363636;
  top: 60%;
}

.awardSliderwrapper .customnav.swiper-button-prev {
  left: 0px;
}

.awardSliderwrapper .customnav.swiper-button-next {
  right: 0px;
}

.awardBtn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #00000080;
  backdrop-filter: blur(20px);
  border-radius: 20px;
  width: calc(100% - 40px);
  text-align: center;
  font-weight: 400;
  font-size: 25px;
  /* line-height: 100%; */
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
}
.awardBtn a {
    padding: 30px 20px;
    color: var(--white);
    display: block;
}
/* ===============awards_festival close========================= */

/* ===============publising start=============================== */
.publisingsec {
  padding: 20vh 0;
  position: relative;
  /* background: var(--white); */
  background: #fbf8f4;
}

.publisingWrapper {
  position: relative;
}

/* .twsWrapper {
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
} */
.twsWrapper {
    position: static;
    top: 0;
    left: 50%;
    transform: none;
    text-align: center;
}

.twsWrapper h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 10px;
}

.twsWrapper h3 {
  font-weight: 300;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0%;
  margin-bottom: 30px;
}

.publisingWrapper .nav-tabs .nav-link {
  /* background: #F6F6F6; */
  background: #f1eae0;
  border: none !important;
  margin: 0 !important;
  border-radius: 0px;
  font-weight: 400;
  /* font-size: 15px; */
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--black);
  /* padding: 9px 25px; */
  transition: 0.5s;
  font-size: 12px;
  padding: 9px 14px;
}

.publisingWrapper .nav.nav-tabs {
  gap: 6px;
  border: none;
  margin-bottom: 20px;
  justify-content: center;
}

.publisingWrapper .nav-tabs .nav-link.active,
.publisingWrapper .nav-tabs .nav-link:hover {
  background: var(--black);
  color: var(--white);
}

.p3.publishingImg,
.p4.publishingImg {
  margin-top: 16px;
}

.publishingImg img {
  width: 100%;
  transition: 0.5s;
}

.publishingImg {
  display: block;
  overflow: hidden;
}

.publishingImg:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}
.p4.publishingImg {
  height: 223px;
}
.p2.publishingImg {
  height: 140px;
}
.p3.publishingImg {
  height: 170px;
}
.publishingImg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-height: 500px;
}
.awards_publising .tab-pane {
  text-align: center;
}
.awards_publising .publisingWrapper .primaryBtn {
  margin: 30px auto 0;
}
.publisingsec .sectioText {
    max-width: 1310px;
    margin: auto;
    margin-bottom: 50px;
}
.publisingsec .sectioText h2 {
    margin-bottom: 50px;
}
.publisingsec .sectioText p {
    line-height: 38px;
}
.publisingsec .sectioText h6 {
    font-weight: 300;
    font-size: 24px;
    line-height: 34px;
    margin-top: 10px;
}
/* ===============publising start=============================== */

/* ===============candid debba start============================ */
.hostimg {
  position: absolute;
  bottom: 0;
  left: 130px;
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.5s;
  opacity: 0.25;
}

.hostimg.active {
  opacity: 0.5;
  transform: translateX(0);
  transition: 0.5s;
}

.candid_debba {
  background: #fbf8f4;
  padding: 150px 0;
  position: relative;
}

.candid_debba .sectioText p {
  color: var(--black);
}

.candid_debba .sectioText p strong {
  font-weight: 600;
}

.candidWrapper {
  position: relative;
  margin-top: 90px;
}

.candidBg {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%);
  overflow: hidden;
  z-index: 1;
}

.candidBg::after {
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  right: 0;
  background: #fbf8f4;
  z-index: 2;
  position: absolute;
}

.candidBg::before {
  content: "";
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
  background: #fbf8f4;
  z-index: 2;
  position: absolute;
}

.active .candidBg::before {
  left: -50%;
  transition: 1s;
}

.active .candidBg::after {
  right: -50%;
  transition: 1s;
}

.candidSlider {
  position: relative;
  z-index: 3;
  opacity: 0;
  transition: 0.5s;
  transform: translateY(50px);
}

.active .candidSlider {
  opacity: 1;
  transition: 0.5s;
  transition-delay: 1s;
  transform: translateY(0px);
}

.candidWrapper .candidItem {
  transform: scale(0.5) translateY(140px);
  transition: 0.5s;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 1;
}

.candidContent {
  opacity: 0;
}

.candidWrapper .swiper-slide-active .candidItem {
  transform: scale(1) translateY(0px);
  transition: 0.5s;
  opacity: 1;
}

.candidWrapper .swiper-slide-active .candidContent {
  opacity: 1;
}

.candidImg {
  width: 167px;
  height: 167px;
  border-radius: 50%;
  overflow: hidden;
  /* border: 2px solid #8D79C8; */
  margin: 0 auto 30px;
}

.candidContent h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--black);
  margin-bottom: 15px;
}

.candidContent small {
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0%;
  color: var(--black);
}

.candidContent p {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--black);
  margin-top: 25px;
}

.dabbaNav {
  display: flex;
  align-items: center;
  gap: 30px;
  justify-content: center;
  margin-top: 30px;
  position: relative;
  z-index: 5;
}

.dabbaNav .customnav {
  transform: translateY(12px);
  /* background: #FFFFFF4D; */
}

.debbaWrapper {
  background: #fbf8f4;
}
.titleWrapper {
  position: relative;
}
.titleWrapper .sectioText {
  position: relative;
  z-index: 2;
}
/* .debbaText {
    font-family: var(--bodyFont);
    font-family: 'IvyPresto Headline';;
    font-size: 110px;
    position: absolute;
    top: -90px;
    width: 100%;
    text-align: center;
    color: #edeceb;
    color: #efede9;
    font-weight: 600;
} */
.debbaText {
  /* font-family: var(--bodyFont); */
  font-family: "IvyPresto Headline";
  font-size: 100px;
  position: absolute;
  top: 10px;
  width: 100%;
  text-align: center;
  /* color: #edeceb; */
  color: #efede9;
  font-weight: 200;
}
/* ===============candid debba start============================ */

/* ===============media start============================ */

.media {
  background: #ede3d6;
  padding: 350px 0 420px;
}

.floatingcardsliderouter {
  display: none;
}

.floatingcardwraper .sectioText {
  position: relative;
  top: 50px;
}

.floatingcardwraper {
  z-index: 5;
  padding: 81px 0;
  position: relative;
}

.floatingcard {
  border-radius: 20px;
  /* max-width: 270px; */
  position: absolute;
}

.card1 {
  top: -210px;
  left: 18%;
}

.card2 {
  top: -210px;
  left: 50%;
}

.card3 {
  bottom: 0;
}

.card4 {
  bottom: 0;
  right: 0;
}

.card5 {
  bottom: -285px;
  left: 18%;
}

.card6 {
  bottom: -285px;
  left: 50%;
}

/* ===============media start============================ */

/* ===============merchandise start============================ */
.merchandise {
  padding: 150px 0;
  /* background: #F6F6F6; */
}

.merchandise .container-fluid {
  padding: 0 250px;
}

.textUp {
  font-weight: 600;
  font-size: 60px;
  line-height: 46px;
  letter-spacing: 0%;
  color: var(--black);
  overflow: hidden;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 80px;
  font-family: "IvyPresto Headline";
  font-weight: 100;
}

.textUp::after {
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, #363330 0%, #f6f6f6 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  transition: 1s;
}

.active.textUp::after {
  width: 100%;
  transition: 1s;
}

.textUp span {
  display: inline-block;
  transform: translateY(60px);
  transition: 0.5s;
}

.active.textUp span {
  transform: translateY(0px);
  transition: 0.5s;
  transition-delay: 0.5s;
}

.merchandiseItem {
  display: flex;
  align-items: center;
  gap: 50px;
  margin-bottom: 30px;
}

.merchandiseItemContent h3 {
  font-weight: 200;
  /* font-size: 90px;
  line-height: 110px; */
  font-size: 50px;
  line-height: 70px;
  color: var(--black);
  margin-bottom: 30px;
  font-family: "IvyPresto Headline";
  text-transform: uppercase;
}

.merchandiseItemContent p {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 40px;
  max-width: 517px;
}

.shopbtn {
  display: inline-flex;
  align-items: flex-end;
  gap: 15px;
}

.shopbtn img {
  transition: 0.5s;
  /* filter: brightness(0.1) invert(0);
  opacity: 0.2; */
}

.shopbtn span {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
}

.shopbtn:hover img {
  transform: rotate(45deg);
  transition: 0.5s;
  filter: brightness(1) invert(0);
  opacity: 1;
}

.merchandise .container .row .col-sm-12:nth-child(even) .merchandiseItem {
  flex-flow: row-reverse;
}

.merchandise
  .container
  .row
  .col-sm-12:nth-child(even)
  .merchandiseItem
  .merchandiseItemContent {
  text-align: right;
}

.merchandiseImg {
  display: block;
  opacity: 0;
  transform: translateX(-30px);
  transition: 0.5s;
}

.merchandise
  .container
  .row
  .col-sm-12:nth-child(even)
  .merchandiseItem
  .merchandiseImg {
  transform: translateX(30px);
}

.active .merchandiseImg,
.merchandise
  .container
  .row
  .col-sm-12:nth-child(even)
  .merchandiseItem.active
  .merchandiseImg {
  opacity: 1;
  transform: translateX(0px);
  transition: 0.5s;
}

.merchandise {
  overflow: hidden;
}
/* ===============merchandise close============================ */

/* ===============about us start============================ */
.aboutSec {
  padding: 150px 0;
}

.aboutSec .textUp {
  margin-bottom: 60px;
}

.aboutSec p {
  font-weight: 300;
  font-size: 30px;
  line-height: 46px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 50px;
}

/* ===============about us start============================ */

/* ===============connecting dots=========================== */
.connectingDots {
  position: relative;
  padding: 110px 0;
  margin-bottom: 170px;
  margin-top: 130px;
}

.connectingDots .sectioText {
  margin-bottom: 30px;
}

.connectionWrapper {
  position: absolute;
  right: 0;
  padding-right: 250px;
  width: 45%;
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: 10px;
}

.cImg {
  border-radius: 10px;
  overflow: hidden;
  display: block;
  margin-bottom: 10px;
}

.cImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.connecttionTop .topLeft {
  width: 60%;
}

.connecttionTop .topLeft .cImg {
  height: 180px;
}

.connecttionTop .topright .cImg {
  height: 250px;
}

.connecttionbottom .topLeft .cImg {
  height: 250px;
}

.connecttionbottom .topright .cImg {
  height: 180px;
}

.connecttionbottom .topLeft {
  width: 40%;
}

.topright {
  flex: 1;
}

.connecttionTop {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

.connecttionbottom {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.connectingDots .sectioText h2 {
  line-height: 107px;
}

.connectingDots .sectioText p {
  line-height: 42px;
  max-width: 600px;
}

.connecttionBtn {
  width: 100%;
  display: flex;
  background: #fbf8f4;
  border-radius: 10px;
  height: 63px;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0%;
  color: var(--black);
  padding: 0 14px;
  text-align: center;
}

.connectionWrapper .cImg:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}

.mobsliderouter {
  display: none;
}

.mobsliderItem {
  display: block;
  /* background: #FBF8F4; */
  /* padding: 10px; */
}

.mobsliderItemImg {
  height: 158px;
  border-radius: 10px;
  overflow: hidden;
}

.mobsliderItemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobsliderItem h5 {
  font-weight: 400;
  font-size: 15px;
  line-height: 23px;
  text-align: center;
  color: var(--black);
  margin-top: 10px;
  min-height: 60px;
  background: #fbf8f4;
  border-radius: 10px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===============connecting dots=========================== */

/* ===============footer start============================== */
.footerArea {
  position: relative;
  padding: 80px 0 30px;
  background: var(--black);
  overflow: hidden;
}

.footerContent {
  transform: translateY(80px);
}

.footerWrapper {
  filter: blur(8px);
}

.footerContent h3 {
  font-weight: 300;
  font-size: 30px;
  line-height: 22px;
  letter-spacing: 0%;
  color: #f1eae0;
  margin-bottom: 30px;
}

.footerContent p {
  font-weight: 400;
  font-size: 15px;
  line-height: 26px;
  color: #f1eae0;
  max-width: 370px;
}

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

.cItem i {
  color: #f1eae0;
  margin-right: 10px;
  min-width: 15px;
}

.cItem span,
.cItem a {
  font-size: 15px;
  line-height: 28px;
  color: #f1eae0;
  transition: 0.5s;
  font-weight: 300;
}

.cItem a:hover {
  font-weight: 600;
  transition: 0.5s;
}

.footerContent .cItem:not(:last-child) {
  margin-bottom: 10px;
}

.footernav {
  display: grid;
  gap: 10px;
}
.footernav li {
  list-style: none;
}
/* .footernav li::before, .socialnav li::before {
  display: none;
} */

.footernav li a {
  font-weight: 400;
  font-size: 15px;
  line-height: 10px;
  letter-spacing: 0;
  color: #f1eae0;
  transition: 0.5s;
}

.footernav li a:hover {
  font-weight: 600;
  transition: 0.5s;
}

.socialnav {
  display: grid;
  gap: 30px;
}

.socialnav li a {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  gap: 15px;
}

.socialnav li a::after {
  background: linear-gradient(90deg, #726d68 0%, #363330 100%);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.socialnav li a span {
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  color: #f1eae0;
  transition: 0.5s;
}

.socialnav li a:hover span {
  font-weight: 600;
  transition: 0.5s;
}

.socialnav li a i {
  color: #f1eae0;
  font-size: 50px;
  line-height: 1;
  display: inline-block;
  transform: translateY(8px) translateX(0px);
  transition: 0.5s;
}

.footerlogo {
  text-align: center;
  font-size: 184px;
  line-height: 146px;
  font-weight: 600;
  text-transform: uppercase;
  margin-top: 120px;
  margin-bottom: 0 !important;
  font-family: var(--mulishFont);

  /* Gradient */
  background: linear-gradient(90deg, #4c4844 0%, #948d85 48.56%, #4c4844 100%);

  /* Text gradient */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  position: relative;
  transform: scale(1.5);
  filter: blur(8px);
  transition: 0.5s;
}

.copyright {
  margin-top: 30px;
}

.copyright p {
  font-weight: 400;
  font-size: 14px;
  line-height: 10px;
  color: #f1eae0;
}

.copyright p a {
  color: var(--white);
  transition: 0.5s;
}

.copyright p a:hover {
  font-weight: 600;
  transition: 0.5s;
}

.ctexRight {
  text-align: right;
}

.lowerPortion .primaryBtn {
  color: #f1eae0;
}

/* ===============footer start============================== */

/* ===============candid with deeba======================== */
.softBanner {
  position: relative;
}
.softoverley {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.deebaImg img {
}
.softoverley h1 {
  font-family: IvyPresto Headline;
  font-weight: 100;
  font-style: Thin;
  font-size: 100px;
  line-height: 100px;
  letter-spacing: 0%;
  text-transform: uppercase;
}
.softoverley h6 {
  font-weight: 400;
  font-style: Light;
  font-size: 30px;
  line-height: 51px;
  letter-spacing: 0%;
  color: #363330;
}
.introPara {
  padding: 40px 0 170px;
}
.introPara p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
}
.introPara p a {
  color: var(--primaryColor);
  display: inline-block;
  position: relative;
}
.introPara p a::after {
  content: "";
  width: 0;
  height: 1px;
  background: var(--primaryColor);
  position: absolute;
  bottom: 5px;
  left: 0;
  transition: 0.5s;
}
.introPara p a:hover::after {
  width: 100%;
  transition: 0.5s;
}
.candidcard {
  padding: 30px 20px;
  background: #fbf8f4;
  border-radius: 30px;
  margin-bottom: 30px;
  height: calc(100% - 30px);
  filter: blur(4px);
  transition: 0.1s;
}
.camdidAvatar {
  width: 146px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 20px;
}
.camdidAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.candidChat h4 {
  font-weight: 700;
  font-style: Bold;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--black);
}
.candidChat small {
  display: block;
  font-family: Mulish;
  font-weight: 600;
  font-size: 13px;
  line-height: 15px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--black);
  margin: 15px 0 25px;
}
.candidChat p {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--black);
  min-height: 144px;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.candidChat .primaryBtn {
  margin-top: 25px;
  position: absolute;
  margin: auto;
  transform: none;
  left: 50%;
  transform: translateX(-50%);
  bottom: 30px;
}
.candidchats .row > .col-md-6.col-lg-4:nth-child(3n + 2) .candidcard {
  transform: translateY(-60px);
}
.candidChat p.h-auto {
  height: auto;
  min-height: auto;
}
section.candidchats {
  padding: 0 0 10px;
  position: relative;
}
section.candidchats::after {
  content: "";
  width: 100%;
  bottom: 0;
  background: linear-gradient(
    360deg,
    rgb(255 255 255) -14%,
    rgb(255 255 255 / 0%) 100%
  );
  left: 0;
  position: absolute;
  height: 60px;
}
section.quoteSec {
  padding: 90px 0 160px;
}
.quoteItem h2 {
  font-family: IvyPresto Headline;
  font-weight: 100;
  font-style: Thin;
  font-size: 50px;
  line-height: 68px;
  letter-spacing: 0%;
  text-align: center;
  margin: 15px auto 35px;
  color: var(--black);
}
.quoteItem h6 {
  font-weight: 600;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 38px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--black);
}

/* ===========deeba details page start========== */
.detailbanner {
  max-height: 600px;
  overflow: hidden;
}
.detailbanner .softoverley {
  bottom: 140px;
}
.mobInnerBanner {
  display: none;
}
section.deeba-details {
  padding: 50px 0 100px;
  margin-top: -110px;
}
.deebaAvatar {
    height: 100%;
    max-height: 400px;
}
.deebaAvatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.deebaAboutText {
  background: #fbf8f4;
  padding: 47px 30px;
  height: 100%;
}
.deebaAboutText span {
  font-weight: 400;
  font-size: 20px;
  line-height: 22px;
  letter-spacing: 0%;
  color: var(--black);
  display: inline-block;
}
.deebaAboutText h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
    letter-spacing: 0%;
    color: var(--black);
    margin: 15px 0 30px;
}
.deebaAboutText p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
}
.fadeleft {
  opacity: 0;
  transform: translateX(-20px);
}
.faderight {
  opacity: 0;
  transform: translateX(20px);
}
.deebadetailContent {
  padding-top: 50px;
}
.deebadetailContent p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--black);
}
.QAitem {
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}
.QAitem .QAitem {
  padding: 0;
  border: none;
}
.QAitem p {
  display: none;
}
.QAitem strong {
  font-weight: 700;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--black);
  display: block;
  margin-bottom: 10px;
}
.QAitem p:not(:last-child) {
  margin-bottom: 10px;
}
.deebadetailContent .col-md-12:last-child .QAitem {
  border-bottom: none;
}

/* ===========deeba details page start========== */

/* ==========connecting dots==================== */
.introPara.connectingDotsIntro {
  padding: 40px 0 110px;
}
.connectingDotsItem .camdidAvatar {
  width: 100%;
  border-radius: 20px;
  height: 190px;
  transform: translateY(-30px);
  margin-bottom: 0;
}
.connectingDotsItem.candidcard {
  padding-top: 0;
  padding-bottom: 68px;
  position: relative;
  height: calc(100% - 60px);
}
.connectingDotsItem .candidChat .primaryBtn {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}
.connectingDotsItem .candidChat h4 {
  font-size: 20px;
  line-height: 23px;
}
.connectingbanner.detailbanner .softoverley {
  bottom: 70px;
}
section.connectingDotsListing {
  padding-bottom: 30px;
}

/* ====dots details start=== */
.dotdetailImg {
  width: 570px;
  height: 330px;
  border-radius: 14px;
  overflow: hidden;
  float: left;
  margin-right: 30px;
  margin-bottom: 30px;
}
.dotdetailImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.dotsDetailsWrapper {
  clear: both;
}
.dotsDetailsWrapper h3 {
    font-weight: 600;
    font-size: 30px;
    line-height: 34px;
    letter-spacing: 0%;
    color: var(--black);
    margin-bottom: 35px;
}
span.dotdetailTiming {
  background: #fbf8f4;
  display: inline-block;
  padding: 5px 20px;
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--black);
}
.dotsDetailsWrapper p {
  font-weight: 400;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--black);
}
.dotsDetailsWrapper p strong {
  margin: 30px 0 8px;
  display: block;
}
.dotsDetailsWrapper p a {
  color: var(--primaryColor);
  word-break: break-all;
}
section.dotsDetails {
  padding: 0 0 120px;
}
.dotsAboutcontent {
  background: linear-gradient(90deg, #fbf8f4 25.14%, #ffffff 100%);
  padding: 30px;
}
.dotsAboutcontent h3 {
  font-weight: 600;
  font-size: 30px;
  line-height: 32px;
  letter-spacing: 0%;
  color: var(--black);
}
.dotsAboutcontent h3 span {
  display: block;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
}
.dotsAboutcontent p {
  font-weight: 400;
  font-size: 15px;
  leading-trim: NONE;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--black);
  margin-top: 20px;
}
section.dotsAbout {
  padding-bottom: 120px;
}
ul.list_faq {
  display: inline-grid;
  gap: 5px;
}
.list_faq li {
  padding-left: 20px;
  position: relative;
}
.list_faq li::before {
  content: "";
  width: 6px;
  aspect-ratio: 1;
  display: inline-block;
  position: absolute;
  left: 0;
  background: var(--black);
  top: 10px;
  border-radius: 50%;
}
.aboutPagePara p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #363330;
    margin-top: 10px;
    text-align: center;
}
.aboutPagePara h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
  color: #363330;
  margin: 30px 0;
}
.segmentItem {
  position: relative;
  margin-bottom: 30px;
}
.segmentItem img {
  width: 100%;
}
.segmentOverlry {
  position: absolute;
  width: calc(100% - 20px);
  left: 10px;
  z-index: 3;
  bottom: 10px;
  background: #fbf8f4;
  padding: 20px 20px;
  height: 68px;
  transition: 0.5s;
  overflow: hidden;
}
.segmentItem:hover .segmentOverlry {
  height: calc(100% - 20px);
  transition: 0.5s;
  padding: 30px 20px;
}
.segmentOverlry h4 {
  font-weight: 400;
  font-size: 30px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  color: #363330;
  margin-bottom: 30px;
}
.segmentOverlry p {
  color: #363330;
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: center;
}
.segmentOverlry p a {
  color: var(--primaryColor);
}
section.aboutSegments {
  padding: 20px 0 90px;
}
/* ========media page start======= */
.mediaSingleItem {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #ede3d6;
  margin-bottom: 70px;
  position: relative;
}
.mediaSingleItem img {
  width: 100%;
}
.mediaOverley {
  background: #000000b2;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}
.mediaSingleItem:hover .mediaOverley {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}
.mediaOverley a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  color: #fff;
}
.mediaOverley a i {
  background: var(--primaryColor);
  padding: 3px 5px;
  border-radius: 6px;
  font-size: 12px;
}
.mediaPage {
  padding: 0 0 50px;
}
/* ========media page start======= */

/* ========merchandise page start======= */
.merchandiseSingle {
  margin-bottom: 30px;
}
.merchandiseSingle {
  display: block;
  text-align: center;
}
.merchandisePageSec {
  padding: 0 0 80px;
}
a.merchandiseSingleImg {
  display: block;
  text-align: center;
  width: 100%;
  height: 295px;
}
a.merchandiseSingleImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: 0.5s;
}
a.merchandiseSingleImg:hover {
  transform: scale(1.1);
  transition: 0.5s;
}
.merchandiseSingletitle {
  font-weight: 200;
  font-size: 40px;
  line-height: 60px;
  color: var(--black);
  margin: 10px 0;
  font-family: "IvyPresto Headline";
}
.merchandiseSingleInfo p {
  margin-bottom: 20px;
}
.merchandiseSingleInfo .shopbtn img {
  display: block;
}
/* ========merchandise page close======= */

/* ========share bar==================== */
ul.SidesocialBar {
  display: grid;
  grid-gap: 7px;
  gap: 7px;
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  right: 10px;
}
.SidesocialBar li a {
  width: 35px;
  height: 35px;
  display: inline-grid;
  place-content: center;
  border-radius: 50%;
  color: var(--white);
  transition: 0.5s;
}
.SidesocialBar li:first-child a {
  background: #1976d2;
}
.SidesocialBar li:nth-child(2) a {
  background: linear-gradient(
    131.5deg,
    #fbd524 14.87%,
    #f33288 50.79%,
    #6e1ccf 85.13%
  );
}
.SidesocialBar li:nth-child(3) a {
  background: #0077b5;
}
.SidesocialBar li:nth-child(4) a {
  background: #e60000;
}
/* ========share bar==================== */

/* ========contact page start=========== */
.contctQuicksItem {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.contctQuickswrap .contctQuicksItem:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #ede3d6;
  position: absolute;
  bottom: -30px;
  left: 0;
}
.contctQuickIcon {
  width: 80px;
  aspect-ratio: 1;
  display: grid;
  place-content: center;
  background: var(--black);
  border-radius: 10px;
  font-size: 40px;
  color: #fff;
}
.contctQuickText {
  font-size: 20px;
  line-height: 22px;
  color: var(--black);
  font-weight: 400;
}
.contctQuickText h3 {
  font-weight: 600;
  margin-bottom: 8px;
}
.contctQuickText p a {
  color: var(--primaryColor);
}
.contactRest {
  padding: 120px 0;
}
.contactRestSingle {
  border: 1px solid #ede3d6;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  min-height: 290px;
  padding: 10px;
  clear: both;
}
.crHead {
  padding: 5px 20px;
  font-weight: 400;
  font-size: 23px;
  line-height: 30px;
  letter-spacing: 0%;
  text-align: center;
  background: #ede3d6;
  color: var(--black);
  margin-bottom: 15px;
}
.crBody {
  padding: 0px;
  color: var(--black);
}
.crBody p {
  font-weight: 400;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  text-align: left;
}
.crBody p a {
  color: var(--primaryColor);
}
.contactForm .primaryBtn {
  position: static;
  transform: none;
}
.contctQuickswrap {
  display: grid;
  gap: 60px;
  max-width: 400px;
}
.contctQuicks .contactWrapper {
  margin-left: 0px;
  padding-left: 0px;
  position: relative;
  transform: translateX(0%);
  opacity: 1;
  transition: 0.1s;
  background: #fbf8f4;
  padding: 30px;
}
.contctQuicks .contactWrapper::before {
  display: none;
}
.contctQuicks .contactWrapper .contactHead h2 {
  color: var(--black);
  margin-bottom: 40px;
}
.contctQuicks .contactForm .form-control,
.contctQuicks .contactForm .form-select {
  background: var(--white);
  color: var(--black);
}
.contctQuicks .contactForm .form-control::placeholder {
  color: var(--black);
}
.contctQuicks .lowerPortion .primaryBtn {
  color: var(--black);
}
.contctQuicks .lowerPortion .primaryBtn:hover {
  color: var(--white);
}
.contactRestImg {
  float: left;
  background: #fff;
}
.contactRestImg img {
  margin-right: 20px;
}
/* ========contact page close=========== */

/* ========journey page start=========== */
.journeysecouter.journeyContent .nav-tabs {
  margin: 0px 0 50px;
  gap: 6px;
  border: none;
  justify-content: center;
}
.journeysecouter.journeyContent .nav-tabs .nav-link {
  font-size: 18px;
  padding: 9px 32px;
}
.journeysecouter.journeyContent .tab-content {
  background: transparent;
  padding: 0px;
}
.journeyouter {
  background: #fbf8f4;
  border-radius: 30px;
  padding: 40px 40px 0;
}
.journeysecouter .tab-content h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--black);
    margin-bottom: 30px;
}
.journeysecouter.journeyContent .journeyLeft p {
  display: -webkit-box;
  -webkit-line-clamp: 5;
}
.journeysecouter.journeyContent .journeyItem {
  height: calc(100% - 60px);
  margin-bottom: 60px;
}
.journeysecouter.journeyContent .journeyRight figure,
.journeysecouter.journeyContent .journeyRight {
  height: auto;
  overflow: hidden;
}
.journeysecouter.journeyContent .journeyRight figure img {
  transform: scale(1);
  transition: 0.5s;
}
.journeysecouter.journeyContent .journeyRight figure:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}
/* ========journey page close=========== */

/* ========stories page start=========== */
.storiesPage .journeyouter {
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.storiesImg {
  position: relative;
}
.storiesImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.storiesImg::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #000000a1;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  transition: 0.5s;
  z-index: 1;
}
.storiesImg:hover::after {
  opacity: 1;
  transition: 0.5s;
}
.viewStories {
  width: 34px;
  aspect-ratio: 1;
  display: inline-grid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: var(--primaryColor);
  border-radius: 50%;
  place-content: center;
  color: #fff;
  transition: 0.5s;
}
.storiesImg:hover .viewStories {
  transform: translate(-50%, -50%) scale(1);
  transition: 0.5s;
  z-index: 2;
}
.storiesGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.storiesPage.journeyContent {
  padding-bottom: 50px !important;
}
.journeyLeft .primaryBtn {
  position: static;
  transform: none;
}
/* ========stories page close=========== */

/* ========celebrations page start=========== */
.celebrationSingleContent {
  padding: 30px 0 0;
}
.celebrationSingleImg {
  display: block;
  overflow: hidden;
}
.celebrationSingleImg img {
  transform: scale(1);
  transition: 0.5s;
}
.celebrationSingleImg:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}
.celebrationSingleTitle {
  font-weight: 600;
  font-size: 25px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 20px;
}
.celebrationSingleContent p {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 30px;
}
.celebrationsSec {
  padding: 0 0 80px;
}
/* ========celebrations page close=========== */

/* ========celebrations page close=========== */
.blogSingle {
  display: block;
  background: #fbf8f4;
  margin-bottom: 50px;
}
.blogpage {
  padding: 50px 0;
}
.blogsContent {
  padding: 20px;
  color: var(--black);
}
.blogsContent h4 {
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  margin-bottom: 20px;
  color: var(--black);
}
.blogsContent h4 a {
  color: var(--black);
}
.blogsContent p {
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--black);
}
.blogsImg {
  width: 100%;
  overflow: hidden;
  height: 180px;
}
.blogsImg img {
  transform: scale(1);
  transition: 0.5s;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogsImg:hover img {
  transform: scale(1.1);
  transition: 0.5s;
}
.blogSearchFrom {
  position: relative;
  margin-bottom: 40px;
}
.blogSearchFrom input {
  background: #f6f6f6 !important;
  border-radius: 0;
  box-shadow: none !important;
  border: none !important;
  padding-right: 35px;
}
.blogSearchFrom button {
  position: absolute;
  border: none !important;
  background: transparent;
  color: var(--primaryColor);
  position: absolute;
  top: 5px;
  right: 15px;
}
.blogpageWrapper {
  padding-right: 30px;
}
.blogListing {
  display: grid;
  gap: 15px;
}
.blogListing li .blogSmall {
  display: flex;
  align-items: center;
  gap: 18px;
}
.blogListing li .blogsmallImg {
  width: 100px;
  height: 80px;
}
.blogListing li .blogsmallImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blogListing li h3 {
  font-weight: 700;
  font-size: 15px;
  line-height: 21px;
  letter-spacing: 0%;
  color: var(--black);
  flex: 1;
}
.blogsticky {
  position: sticky;
  /* top: 30px; */
}

/* ============blog detaisl page start===== */
.blogSingleMainImg {
  margin-bottom: 50px;
}
.blogdetailSingle h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 50px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 20px;
}
.blogdetailSingle h3 {
  color: var(--black);
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0%;
}

.blogdetailSingle blockquote h3 {
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  color: var(--black);
}
.blogdetailSingle blockquote {
  display: block;
  border-bottom: 1px solid #ede3d6;
  padding-bottom: 40px;
  margin-bottom: 30px;
}
.blogdetailSingle p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 30px;
}
.blogdetailSingle blockquote p.quoteText {
  font-family: IvyPresto Headline;
  font-weight: 100;
  font-style: Thin;
  font-size: 30px;
  leading-trim: NONE;
  line-height: 38px;
  letter-spacing: 0%;
  padding-left: 60px;
  margin: 50px 0 15px;
  position: relative;
}
.blogdetailSingle blockquote p.quoteText::before {
  width: 40px;
  height: 40px;
  content: "";
  position: absolute;
  top: 0%;
  left: 0;
  background: url(../images/quoteIcon.svg) no-repeat;
  background-size: contain;
}
.bDetailImg {
  padding: 10px 0;
  position: relative;
  margin-bottom: 30px;
}
.bDetailImg::before,
.bDetailImg::after {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: var(--primaryColor);
  content: "";
  position: absolute;
}
.bDetailImg::after {
  top: inherit;
  bottom: 0;
}

.blogdetailSingle p a {
  color: var(--primaryColor);
  font-size: 18px;
  font-weight: 400;
  text-decoration: underline;
}

/* ============blog detaisl page start===== */

.blogdetailSingle .wp-block-image.alignwide.size-full {
  padding: 10px 0;
  position: relative;
  margin-bottom: 30px;
}
.blogdetailSingle .wp-block-image.alignwide.size-full::before,
.blogdetailSingle .wp-block-image.alignwide.size-full::after {
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background: var(--primaryColor);
  content: "";
  position: absolute;
}
.blogdetailSingle .wp-block-image.alignwide.size-full::after {
  top: inherit;
  bottom: 0;
}
.ast-scroll-top-icon.ast-scroll-to-top-right {
  display: none !important;
}


/* dubai retreat page start */
.dubaiRetreatSec {
  padding: 0 0 120px;
}
.writerWrightContent .sectioText h2 {
  font-size: 50px;
  line-height: 40px;
}
.writerWrightContent p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: var(--black);
    margin-top: 20px;
}
.writerWrightContent p:nth-child(3) {
  margin-top: 10px;
}
.writerWrightContent p a {
  color: var(--primaryColor);
}
.retreatCardSec {
  padding: 120px 0;
  background-size: cover !important;
}
.retreatCard {
  background: #FBF8F4E5;
  padding: 30px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.retreatCard h3 {
  font-weight: 400;
  font-size: 25px;
  letter-spacing: 0%;
  color: var(--black);
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  min-height: 80px;
}
.retreatCard h3::after {
  content: "";
  width: 70px;
  height: 3px;
  background: var(--primaryColor);
  position: absolute;
  left: 0;
  bottom: 0;
}
.retreatCard p {
  margin-bottom: 15px;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
}
.programmeOutline {
  background: #EDE3D6;
  padding: 120px 0;
}
.dayTag {
    background: var(--black);
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: var(--white);
    display: inline-block;
    padding: 9px 30px;
}
.programmeOutlineInner {
  padding: 20px 30px;
  background: var(--white);
}
.programmeOutlineInner p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: var(--black);
}
.programmeOutlineItem {
  margin-top: 30px;
}
.writerWrightContent .primaryBtn  {
  position: static;
  transform: none;
}
.programmeOutline .sectioText.text-center h2 {
    text-align: center;
    color: var(--black);
    font-size: 50px;
}
/* dubai retreat page start */
.gallerySec {
  padding: 120px 0;
}
.ekoWriterleftImg {
    float: left;
    padding-right: 30px;
    padding-bottom: 20px;
}
.galleryGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.galItem {
    border-radius: 4px;
    overflow: hidden;
    height: 200px;
    width: 100%;
}
.galItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ekoRetreatContent .sectioText h2 {
    font-size: 50px;
    line-height: 40px;
}
.ekoRetreatContent p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: var(--black);
    margin-top: 20px;
}
.ekoRetreatSec {
  padding: 0 0 120px;
}
.weatherText  .sectioText.text-center h2 {
    font-size: 50px;
}
.weatherText p {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: var(--black);
    text-align: center;
}
/* dubai retreat page start */

/* kangra_valley_intro page start */
.kangra_valley_intro  h2 {
    font-size: 50px;
    font-family: var(--mulishFont);
    font-weight: 300;
    margin-bottom: 30px;
}
.kangra_valley_intro {
  text-align: center;
  padding-bottom: 120px;
}
.kangra_valley_intro .placeName {
  font-weight: 600;
  font-size: 25px;
  line-height: 20px;
  color: var(--black);
  display: inline-block;
  margin-bottom: 50px;
}
.kangra_valley_intro h3 {
  font-size: 20px;
}
.kangra_valley_intro p {
  font-weight: 400;
  font-size: 18px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  margin-top: 10px;
}
.kangra_valley_intro p a {
  color: var(--primaryColor);
}
.kangra_valley_intro p strong {
  margin-top: 30px;
  display: inline-block;
}
.curatorSec h3 {
  font-weight: 600;
  font-size: 24px;
  line-height: 20px;
  letter-spacing: 0%;
  margin-bottom: 30px;
}
.curatorImg {
  float: left;
  padding-right: 30px;
  max-width: 270px;
}
.curatorText p {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0%;
  color: var(--black);
  margin-top: 20px;
}
.curatorText p a {
  color: var(--black);
  transition: 0.5s;
}
.curatorText p a:hover {
  color: var(--primaryColor);
  transition: 0.5s;
}
.curatorText p:first-child {
  margin-top: 0;
}
.curatorSec {
  padding: 0 0 120px;
}
.middleAlign {
    padding-top: 8%;
}
.popularBottom {
  margin-top: 60px;
  text-align: center;
}
.popularLink {
  color: var(--black);
}
.popularLink {
  transition: 0.5s;
}
.popularLink:hover {
  color: var(--primaryColor);
  transition: 0.5s;
}
.popularBottom .primaryBtn  {
  position: static;
  transform: none;
}
/* kangra_valley_intro page start */

/* registration banner */
.registrationBanner.detailbanner .softoverley {
  bottom: 0;
}
.joinDubai {
  padding: 50px 0 120px;
}
.subHead {
  font-weight: 300;
  font-size: 50px;
  line-height: 40px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 40px;
}
.joinIntro {
  background: #EDE3D6;
  padding: 30px;
}
.joinIntro h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 15px;
}
.joinIntro ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0%;
  color: var(--black);
  position: relative;
  padding-left: 20px;
}
.joinIntro ul li::before {
    content: "";
    width: 6px;
    aspect-ratio: 1;
    position: absolute;
    top: 9px;
    left: 0;
    background: var(--black);
    border-radius: 50%;
}
.joinIntro ul li:not(:last-child) {
  margin-bottom: 10px;
}
.registrationInner {
  display: grid;
  grid-template-columns: 470px  1fr;
}
.regContent {
    background: #FBF8F4;
    padding: 30px;
    padding-left: 60px;
}
.regContent .contactForm .form-control, .regContent .contactForm .form-select {
    background: var(--white);
    color: var(--black);
  }
.regContent .contactForm .form-control::placeholder {
  color: var(--black);
}
.regContent .form-check a {
  color: var(--primaryColor);
}
.regContent .lowerPortion .primaryBtn {
    color: var(--black);
}
.regContent .lowerPortion .primaryBtn:hover {
  color: var(--white);
  transition: 0.5s;
}
.regContent p {
  font-weight: 600;
  font-size: 16px;
  line-height: 17px;
  letter-spacing: 0%;
  color: var(--black);
}
.regContent p a {
  color: var(--primaryColor);
}
.regImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.connectingDotMore {
  padding: 150px 0 120px;
}

/* .curatorSec h3 {
  display: none;
} */

/* 24.03.2026 */
.contactForm .form-check.mb-3{
  padding-left: 0 !important;
}
.contactForm .form-check.mb-3 .wpcf7-list-item{
  margin-left: 0 !important;
}
.contactForm  .btnWrapper {
  position: relative;
}
.contactForm  .btnWrapper .wpcf7-spinner {
  position: absolute;
  top: 0;
  left: 0;
}

/* new edition page design */
.editionWrapper {
    background: #FBF8F4;
    padding: 30px;
    margin-bottom: 60px;
}
.editionWrapper .newCatItem {
    position: relative;
}
.editionWrapper .newCatItem img {
  width: 100%;
}
.editionWrapper .newCatItem .primaryBtn {
    position: absolute;
    bottom: 10px;
    left: 10px;
    width: calc(100% - 20px);
    background: #fff;
    border-color: #fff;
  }
  .editionWrapper .newCatItem .primaryBtn:hover {
  border-color: var(--btnColor);
  background-color: var(--btnColor);
  color: #fff;
  transition: 0.5s;
}

/* 13.04.2026 */
.editionItem {
  position: relative;
  display: block;
  margin-bottom: 30px;
  overflow: hidden;
}
.editionItem h3 {
  width: 100%;
  bottom: 30px;
  left: 0;
  left: 0;
  color: var(--white);
}
.editionItem img {
  width: 100%;
  transition: 0.5s;
}
.editionItem:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}
.merchandise .sectioText {
  margin-bottom: 40px;
}
.editionItem h3 {
    width: 100%;
    bottom: 20px;
    left: 0;
    left: 0;
    color: var(--white);
    position: absolute;
    font-family: IvyPresto Headline;
    font-weight: 300;
    font-size: 30px;
    line-height: 40px;
    letter-spacing: 0%;
    text-align: center;
}
.allProducts {
  margin-top: 50px;
}
.allProducts  .textUp::after {
  bottom: inherit;
  top: 50%;
  transform: translateY(-50%);
  background: #363330 !important;
}
.allProducts  .textUp span {
    background: var(--white);
    position: relative;
    z-index: 2;
    padding: 0 15px;
    display: inline-block;
}
.allProduct {
    display: block;
    position: relative;
    margin-bottom: 60px;
}
.allProduct .allProductImg {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}
.allProduct .allProductImg img {
  width: 100%;
  transition: 0.5s;
  height: 100%;
  object-fit: cover;
}
.allProduct:hover .allProductImg img {
  transform: scale(1.2);
  transition: 0.5s;
}
.allProduct .allProductCOntent {
    text-align: center;
    padding: 20px 0 0;
}
.allProduct .allProductCOntent h3 {
    font-family: IvyPresto Headline;
    font-weight: 300;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    color: var(--black);
    margin-bottom: 10px;
}
.allProduct .allProductCOntent p {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  color: var(--black);
}
/* 13.04.2026 */

/* 13.04.2026 */
.literaryObjects {
    padding: 200px 0 30px;
}
.literaryObjects h1 {
    color: var(--black);
    font-size: 64px;
    position: relative;
    margin-bottom: 30px;
}
.literaryObjects .journeyContent  .tab-content {
    padding: 0;
    background: transparent;
}
.literaryObjects .journeyContent  .tab-content .journeyouter {
    padding: 0;
    background: transparent;
    border-radius: 0;
}
.literaryObjects .journeyContent .nav-tabs {
    margin: 40px 0 30px;
    justify-content: center;
}
.literaryObjects .journeyContent   .nav-tabs .nav-link {
    font-size: 18px;
    padding: 9px 15px;
}
.literaryObjects .journeyContent {
    padding: 0;
}
.objectItem {
  margin-bottom: 60px;
}
.objectsitemContent {
    padding: 15px 0 0;
    text-align: center;
}
.objectsitemContent h3 {
    font-family: IvyPresto Headline;
    font-weight: 300;
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    color: var(--black);
    color: var(--black);
}
.objectsitemContent p {
  font-weight: 400;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
  margin: 10px 0 30px;
}
.objectItemImg img {
  width: 100%;
  transition: 0.5s;
}
.objectItem:hover .objectItemImg img{
  transform: scale(1.2);
  transition: 0.5s;
}
.objectItemImg {
    display: block;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1;
}
.objectItemImg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.objectsitemContent .primaryBtn {
    position: static;
    transform: none;
}

/* productSlider */
section.literaryDetails {
    padding: 190px 0 60px;
}
.literaryDetails .mySwiper2   {
  height: 425px;
  margin-bottom: 10px;
}
.literaryDetails .mySwiper   {
  height: 120px;
}
.literaryDetails .swiper-button-next::after,
.literaryDetails .swiper-button-prev::after {
  display: none;
}
.custom-nav {
  width: 40px;
  height: 40px;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
  display: none;
}

.custom-nav:hover {
  background: #fff;
  color: var(--black);
}
.productDetails h1 {
  font-family: IvyPresto Headline;
  font-weight: 100;
  font-size: 40px;
  line-height: 40px;
  letter-spacing: 0%;
  color: var(--black);
  margin-bottom: 15px;
}
.pTag {
  color: var(--black);
  font-family: Mulish;
  font-weight: 400;
  font-size: 20px;
  leading-trim: NONE;
  line-height: 20px;
  letter-spacing: 0%;
  display: block;
}
.productDetails h1 {
    font-family: IvyPresto Headline;
    font-weight: 100;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: 0%;
    color: var(--black);
    margin-bottom: 15px;
}
.aboutProduct {
    margin: 30px 0 30px;
}
.aboutProduct p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    margin-bottom: 15px;
}
ul.detilsListing {
    margin: 15px 0;
}
.detilsListing li {
    position: relative;
    padding-left: 20px;
    font-style: Bold;
    font-size: 18px;
    line-height: 30px;
    color: var(--black);
}
.detilsListing li::before {
    content: "";
    width: 5px;
    aspect-ratio: 1;
    background: var(--black);
    border-radius: 50%;
    position: absolute;
    top: 12px;
    left: 5px;
}
.printedListing {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 30px;
}
.printedListing li small {
    color: var(--black);
    font-size: 16px;
    color: var(--black);
  transition: 0.5s;
}
.printedListing li.active  small {
  color: #7a572d;
  transition: 0.5s;
}
.variation-type .form-check-input {
  box-shadow: none !important;
}
.variation-type .form-check-input:checked {
  background-color: #7a572d;
    border-color: #7a572d;
}
.printedListing li h6 {
    color: var(--black);
    font-size: 20px;
    font-weight: 600;
    transition: 0.5s;
}
.printedListing li.active h6 {
    color: #b58b5a;
    transition: 0.5s;
}
.detailsTag {
    font-weight: 500;
    display: inline-block;
    font-size: 16px;
    line-height: 15px;
    letter-spacing: 0%;
    color: var(--black);
    margin-bottom: 8px;
}

/* size listing */
.size-wrapper {
    display: flex;
    gap: 12px;
    margin: 0px 0 30px;
    align-items: center;
    justify-content: space-between;
  }

  /* Hide default radio */
    .size-wrapper .size-option {
      position: relative;
    }
  .size-wrapper .size-option input[type="radio"] {
    opacity: 0;
    position: absolute;
    inset: 0;
    cursor: pointer;
  }

  /* Style label as button */
  .size-label, .size-option label {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #444;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

.size-option label :hover {
    border-color: #b58b5a;
    color: #b58b5a;
  }

  /* Active (checked) state */
  input[type="radio"]:checked + .size-label,    .size-option input[type="radio"]:checked + label {
    background: #b58b5a;
    color: #fff;
    border-color: #b58b5a;
  }
/* size listing */
.sizesWrapper {
    margin: 30px 0;
}
.sizeChart {
    background: #F4F4F4;
    font-weight: 500;
    font-size: 16px;
    line-height: 15px;
    letter-spacing: 0%;
    text-align: center;
    border-radius: 44px;
    padding: 7px 15px;
    transition: 0.5s;
    color: var(--black);
    /* margin-left: auto; */
}
.sizeoptionWrapper {
    display: flex;
    gap: 5px;
    flex-flow: wrap;
    flex: 1;
}
.sizeChart:hover {
  background: var(--btnColor);
  transition: 0.5s;
  color: var(--white);
}
.sizeOuter {
    justify-content: space-between;
    align-items: center;
    flex-flow: wrap;
    gap: 7px 30px;
}
.sizeModal .btnclose {
    position: absolute;
    width: 30px;
    height: 30px;
    top: -30px;
    right: -30px;
    padding: 0;
    background: #ffffff5c;
    border: none;
    color: #fff;
    border-radius: 50%;
    transition: 0.5s;
    border: none !important;
    outline: none !important;
}
.sizeModal .btnclose:hover {
  background: var(--white);
  color: rgb(161, 5, 5);
}
.sizeModal .modal-content {
  border-radius: 0;
}
.sizeModal  .modal-body {
  padding: 0;
}
.sizeTable td, .sizeTable th{
  text-align: center;
  font-size: 20px;
   width: 33.33%; 
}
.sizeTable th {
    background: #363330;
    color: var(--white);
    font-weight: 300;
    border-right: 1px solid #fff;
}
.sizeTable thead th:last-child {
  border-right: none;
}
/* Zebra rows */
.sizeTable tbody tr:nth-child(odd) td:nth-child(odd) {
  background: #FBF8F4;
}

.sizeTable tbody tr:nth-child(even) td:nth-child(even) {
  background: #FBF8F4;
}

/* Optional: smoother text */
.sizeTable td {
  color: #333;
}
.sizeTable  {
  border: 1px solid #363330;
  margin: 0;
}

/* color picker */
.color-wrapper {
    display: flex;
    gap: 12px;
  }

  /* Hide default radio */
  .color-wrapper input[type="radio"] {
    display: none;
  }

  /* Card style */
  .color-label {
    width: 70px;
    height: 70px;
    border: 1px solid #ddd;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* Circle inside */
  .color-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    margin-bottom: 6px;
    margin-right: 0 !important;
    border: 1px solid #aaa;
  }

  .black {
    background: #333;
  }

  .white {
    background: #fff;
  }

  /* Text */
  .color-text {
    font-size: 12px;
    color: #555;
  }

  /* Active state */
  input[type="radio"]:checked + .color-label {
    border-color: #b58b5a;
    background: #eee;
  }

  input[type="radio"]:checked + .color-label .color-text {
    color: #000;
    font-weight: 500;
  }

  input[type="radio"]:checked + .color-label .color-circle {
    border-color: #333;
  }
/* color picker */

/* 17.04.2026 */
.woocommerce-notices-wrapper, .woocommerce-notices-wrapper {
    z-index: 99;
    position: fixed;
    animation: slideDown 0.5s ease-out;
    width: 100%;
    top: 0;
    left: 0;
}

@keyframes slideDown {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}
.woocommerce-error {
    outline: none !important;
}
section.commondesign-section {
    padding: 110px 0 0;
}
.shop_table_responsive thead tr th {
    background: #000;
    color: #fff;
    font-weight: 400 !important;
    font-size: 20px;
    line-height: 15px;
    letter-spacing: 0%;
}
.shop_table_responsive tr th:last-child, .shop_table_responsive tr td:last-child {
  text-align: right;
}
tr.woocommerce-cart-form__cart-item.cart_item {
    position: relative;
}
tbody tr.woocommerce-cart-form__cart-item.cart_item:nth-child(odd) {
  background: #FBF8F4;
}
th.product-remove {
    position: absolute;
    opacity: 0;
}
td.product-remove {
    position: absolute;
    padding: 0 !important;
    top: 13px;
    left: 8px;
    background: #f7e6e6;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    color: #a11212;
    font-size: 10px;
}
.shop_table {
    border: 1px solid #eee !important;
}
td.actions {
    background: #ddd;
}
.coupon .input-text {
    background: #fff !important;
    width: 140px !important;
    border-radius: 44px 0 0 44px !important;
    margin: 0 !important;
}
.coupon .button {
    padding: 7.5px 15px;
    align-items: center;
    justify-content: center;
    border-radius: 0 44px 44px 0 !important;
    border: none;
    margin: 0 !important;
    font-size: 14px;
    background: #9f9f9f;
    color: #fff;
    text-transform: capitalize;
}
.coupon .button:hover {
  background: var(--btnColor) !important;
}
.actions .button[name="update_cart"] {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    background: #9f9f9f;
    color: #fff;
    border-radius: 44px;
    display: inline-flex;
    gap: 10px;
    padding: 8px 14px;
    align-items: center;
    justify-content: center;
    border: none !important;
    height: 36px;
}
.actions .button[name="update_cart"]:hover {
  background: var(--btnColor) !important;
  transition: 0.5s;
}
.woocommerce-cart table.cart td.actions .coupon {
    margin: 0;
}
.woocommerce-js .quantity .qty {
    border-radius: 8px;
    border: 1px solid var(--btnColor);
    text-align: center;
}
.woocommerce-cart .cart-collaterals .cart_totals  {
  border: none !important;
  background: #FBF8F4;
  border-radius: 20px;
}
.cart-collaterals .shop_table_responsive tr th {
    background: transparent;
    color: #000;
    font-size: 16px;
}
.cart-collaterals .shop_table  {
    background: #fff;
}
.woocommerce-cart .commondesign-section .cart-collaterals .cart_totals>h2 {
    margin: 0;
    padding: 20px 0;
    font-family: "IvyPresto Headline";
}
.wc-proceed-to-checkout .checkout-button.button {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--black);
    border: 1px solid var(--btnColor);
    border-radius: 44px;
    display: inline-flex;
    gap: 10px;
    padding: 8px 0 !important;
    align-items: center;
    justify-content: center;
    line-height: 1 !important;
}
.wc-proceed-to-checkout .checkout-button.button:hover {
    background: var(--btnColor);
    color: #fff;
}
.product-name a {
  color: var(--primaryColor);
}
.product-thumbnail img {
    width: 70px !important;
    height: 70px !important;
    object-fit: cover;
}

/* 20.04.2026 */
.literaryDetailsLeft .mySwiper2  {
  background: #eee;
}
.literaryDetailsLeft .mySwiper  .swiper-slide {
  background: #eee;
}
.main-price span, .main-price {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  color: var(--black);
}
.main-price {
    margin-bottom: 10px;
    margin-top: 30px;
}
/* For Cart Page By Dipa */

#cart-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 99999; /* higher to avoid conflicts */
    display: flex;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: #fff;
    padding: 20px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    border-radius: 8px;
}

.close-popup {
    margin-top: 10px;
    padding: 8px 20px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}
/* end */

.popup-content .close-popup {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--black);
    border: 1px solid var(--btnColor);
    border-radius: 44px;
    display: inline-flex;
    gap: 10px;
    padding: 8px 0;
    align-items: center;
    width: 166px;
    justify-content: center;
    background: transparent;
    margin-top: 30px;
}
.popup-content .close-popup:hover {
    background: var(--btnColor);
    color: #fff;
}
/* //by dipa for cart page */
.woocommerce-cart .woocommerce-notices-wrapper {
    display: none !important;
}

/* check out page */
.woocommerce-checkout .col2-set{
  background: #fbf8f4;
  padding: 30px;
}
.checkout.woocommerce-checkout .input-text {
    background: #fff;
    border: 1px solid #dee2e6 !important;
    min-height: 50px;
    border-radius: 4px;
    padding: 10px;
}
.woocommerce-NoticeGroup.woocommerce-NoticeGroup-checkout {
  display: none !important;
}
/* .checkout.woocommerce-checkout .input-text[aria-required="true"] {
    border: 1px solid #c71818 !important;
} */
.checkout-inline-error-message {
    font-size: 12px;
    color: #c71818;
}
.checkout.woocommerce-checkout .form-row label {
    font-size: 14px;
    font-weight: 400;
}
.checkout.woocommerce-checkout #customer_details .woocommerce-billing-fields h3 {
    padding: 0;
    margin-bottom: 15px;
}
.checkout.woocommerce-checkout #customer_details .woocommerce-additional-fields h3 {
    padding: 0;
    margin: 30px 0 15px;
}
.checkout.woocommerce-checkout h3#order_review_heading {
    border: none !important;
    padding: 30px 0 !important;
}
.checkout.woocommerce-checkout #order_review {
    padding: 0 !important;
    border: none !important;
}
#order_review table.shop_table tr th, #order_review table.shop_table tr td {
    padding: 6px 10px !important;
}
#order_review table.shop_table tr td:first-child {
    font-size: 12px;
    min-height: 37px;
}
#order_review table.shop_table thead tr th {
  background: #000;
  color: #fff;
}
#order_review table.shop_table {
    border: none !important;
    background: #fbf8f4;
}
#payment .woocommerce-info {
    font-size: 12px;
}
.form-row.place-order .woocommerce-privacy-policy-text {
    font-size: 14px;
    margin-bottom: 15px;
}
.form-row.place-order .woocommerce-privacy-policy-text a {
  color: var(--primaryColor);
}
.woocommerce-page.woocommerce-checkout #payment #place_order {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--black);
    border: 1px solid var(--btnColor);
    border-radius: 44px;
    display: inline-flex;
    gap: 10px;
    padding: 8px 0;
    align-items: center;
    justify-content: center;
    background: transparent;
}
.woocommerce-page.woocommerce-checkout #payment #place_order:hover {
    background: var(--btnColor);
    color: #fff;
    transition: 0.5s;
}
.woocommerce-checkout .checkout_coupon {
    display: flex;
}
.woocommerce-checkout   .woocommerce-form-coupon-toggle a  {
  color: var(--primaryColor);
}
.woocommerce-checkout   .woocommerce-form-login-toggle a  {
  color: var(--primaryColor);
}
.woocommerce-checkout .woocommerce-form-login.login {
    padding: 15px;
    background: #FCF8F4;
    border-radius: 18px;
    margin-bottom: 30px;
}
.woocommerce-checkout .woocommerce-form-login.login .form-row .input-text {
    background: #fff;
    min-height: 40px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}
.woocommerce-checkout .woocommerce-form-login.login .woocommerce-form-login__submit, .place-order .log-paced {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--black);
    border: 1px solid var(--btnColor);
    border-radius: 44px;
    display: inline-flex;
    gap: 10px;
    padding: 8px 20px;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-top: 15px;
}
.woocommerce-checkout .woocommerce-form-login.login .woocommerce-form-login__submit:hover,
.place-order .log-paced:hover {
    background: var(--btnColor);
    color: #fff;
    transition: 0.5s;
}
.woocommerce-checkout .woocommerce-form-login.login .lost_password a {
    color: var(--primaryColor);
}
.woocommerce-checkout .checkout_coupon  .input-text {
    background: #fbf8f4 !important;
    /* width: 140px !important; */
    border-radius: 44px 0 0 44px !important;
    margin: 0 !important;
    border: none !important;
    height: 40px;
    padding-left: 15px;
}
.woocommerce-checkout .checkout_coupon .button {
    padding: 10.5px 20px !important;
    align-items: center;
    justify-content: center;
    border-radius: 0 44px 44px 0 !important;
    border: none;
    margin: 0 !important;
    font-size: 14px;
    background: #9f9f9f;
    color: #fff;
    text-transform: capitalize;
}
/* BY Dipa Check out Form  */

/* SelectWoo container */
.select2-container {
    width: 100% !important;
    z-index: 999999 !important;
}

/* Dropdown */
.select2-dropdown {
    z-index: 999999 !important;
    border-radius: 6px;
}

/* Selected field */
.select2-selection--single {
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    padding: 0 10px !important;
}

/* Text */
.select2-selection__rendered {
    line-height: normal !important;
}

/* Arrow */
.select2-selection__arrow {
    height: 100% !important;
}

html {
    scroll-behavior: auto !important;
}
/* Of Woocomace loader by dipa  */
/* Remove WooCommerce loader overlay */
.blockUI.blockOverlay {
    display: none !important;
}

.blockUI.blockMsg {
    display: none !important;
}

/* Remove small loading spinner/dot */
.woocommerce .blockUI.blockMsg,
.blockOverlay,
.woocommerce-loading,
.loading {
    background: none !important;
    display: none !important;
}



/* checkout page design fixing */
.commondesign-content .woocommerce-notice--success {
    color: green;
    background: #d5f1d5;
    padding: 15px 20px;
    text-align: center;
    font-size: 20px;
    margin-bottom: 15px;
}
.woocommerce-checkout .woocommerce-order-overview.order_details {
    background: #f1eae0;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    margin-bottom: 5px !important;
}
.woocommerce-checkout ul.order_details li {
    margin-bottom: 0;
    display: grid;
    padding-top: 0;
    padding-bottom: 0;
}
.woocommerce-checkout .woocommerce-order-details .woocommerce-order-details__title {
    background: transparent !important;
    text-align: center;
    text-transform: capitalize;
    border: none !important;
    font-weight: 600;
    padding: 60px 0 15px !important;
}
.woocommerce-checkout .shop_table.order_details {
    border: 1px solid #eee !important;
}
.woocommerce-checkout .shop_table.order_details thead th {
  color: #fff;
  background: #363330;
}
.woocommerce-checkout .shop_table.order_details tbody tr:nth-child(odd) td {
  background: #FBF8F4 !important;
}
.woocommerce-checkout .shop_table.order_details tfoot td, .woocommerce-checkout .shop_table.order_details tfoot th {
  background: #eee;
}
.woocommerce-checkout .woocommerce-column__title {
  border: none !important;
}
.woocommerce-checkout .woocommerce-customer-details {
    background: #fbfbfb;
}
.woocommerce-checkout .woocommerce-customer-details .woocommerce-column__title {
    padding: 16px 16px 0px !important;
}
/* checkout page design fixing */

/* my account page start */
.woocommerce-account section.commondesign-section {
  padding: 110px 0 60px;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
  background: #ede3d6;
  padding: 15px;
  border-radius: 8px;
}
.woocommerce-account .woocommerce-MyAccount-navigation>ul {
  display: grid;
  gap: 5px;
}
.woocommerce-account .woocommerce-MyAccount-navigation-link a {
    background: #ffffff24;
    color: #000;
    border-radius: 8px;
}
.woocommerce-account .woocommerce {
    padding: 15px;
    background: #fbf8f4;
    border-radius: 18px;
}
.woocommerce-account .woocommerce-MyAccount-content p a {
  color: var(--primaryColor);
}
.woocommerce-account .shop_table_responsive {
  margin-bottom: 0;
  background: #eee !important;
}
.woocommerce-account .shop_table_responsive .woocommerce-orders-table__cell-order-number a {
  color: var(--primaryColor);
}
.woocommerce-account .shop_table_responsive .woocommerce-orders-table__cell-order-actions a {
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    color: var(--black);
    border: 1px solid var(--btnColor);
    border-radius: 44px;
    display: inline-flex;
    gap: 10px;
    padding: 6px 15px;
    align-items: center;
    justify-content: center;
    margin: 0 !important;
}
.woocommerce-account .shop_table_responsive .woocommerce-orders-table__cell-order-actions a:hover {
    background: var(--btnColor);
    color: #fff;
    transition: 0.5s;
}
.woocommerce-account .shop_table {
  background: #eee !important;
}
.woocommerce-account .shop_table thead th {
    color: #fff;
    background: #363330;
    font-weight: 300;
}
.woocommerce-account  .woocommerce-customer-details {
    background: #eee !important;
}
.woocommerce-account  .woocommerce-customer-details .woocommerce-column__title {
    background: transparent;
    font-size: 20px;
    border: navajowhite;
    padding: 16px 16px 0;
}
.woocommerce-account .woocommerce-MyAccount-content p {
  margin-bottom: 5px;
}
.woocommerce-account .woocommerce-MyAccount-content .u-column1.col-1.woocommerce-Address,
.woocommerce-account .woocommerce-MyAccount-content .u-column2.col-2.woocommerce-Address {
    background: #eee !important;
    margin-top: 15px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
    background: #eee !important;
    border: none !important;
    padding: 16px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2 {
    font-size: 20px;
    margin-bottom: 10px !important;
    border-bottom: 1px solid #ddd;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a {
  color: var(--primaryColor);
  padding: 0 !important;
}
.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row label {
    font-size: 13px;
    font-weight: 500;
}
.woocommerce-account .woocommerce-EditAccountForm .woocommerce-Input {
    background: #fff;
    min-height: 40px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}
.woocommerce-account .woocommerce-EditAccountForm .woocommerce-form-row span {
    font-size: 12px;
    color: #333;
}
.woocommerce-account .woocommerce-MyAccount-content fieldset legend {
    margin: 10px 0 0;
    font-size: 20px;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button.button {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--black);
    border: 1px solid var(--btnColor);
    border-radius: 44px;
    display: inline-flex;
    gap: 10px;
    padding: 8px 0;
    align-items: center;
    width: 166px;
    justify-content: center;
    background: transparent;
}
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button.button:hover {
    background: var(--btnColor);
    color: #fff;
}
.page-935.woocommerce-account .woocommerce,
.page-933.woocommerce-account .woocommerce  {
    background: transparent;
}
.page-935.woocommerce-account .woocommerce .u-columns.col2-set {
    display: flex;
    justify-content: center;
}
.page-935.woocommerce-account .woocommerce .u-columns.col2-set .u-column1.col-1, .page-933.woocommerce-account .woocommerce .u-columns.col2-set .u-column2.col-2 {
    background: #fbf8f4;
    border-radius: 18px;
    max-width: 500px;
    margin: auto !important;
    box-shadow: 0px 0px 12px 0px rgb(171 171 171 / 50%);
}
.page-935.woocommerce-account .woocommerce .u-columns.col2-set .u-column1.col-1  .login,
.page-933.woocommerce-account .woocommerce .u-columns.col2-set .u-column2.col-2  .register {
    margin-top: 0 !important;
    margin-bottom: 0;
}
.page-935.woocommerce-account .woocommerce .u-columns.col2-set .u-column1.col-1 h2,
.page-933.woocommerce-account .woocommerce .u-columns.col2-set .u-column2.col-2 h2 {
  display: none;
}
.page-935.woocommerce-account .woocommerce .u-columns.col2-set .u-column1.col-1 .login .woocommerce-Input, .page-933.woocommerce-account .woocommerce .u-columns.col2-set .u-column2.col-2 .register .woocommerce-Input {
    background: #fff;
    min-height: 40px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}
.page-935.woocommerce-account .woocommerce .u-columns.col2-set .u-column1.col-1 .login .woocommerce-form-row label, .page-933.woocommerce-account .woocommerce .u-columns.col2-set .u-column2.col-2 .register .woocommerce-form-row label {
    font-size: 13px;
    font-weight: 500;
}
.page-935.woocommerce-account .woocommerce .u-columns.col2-set .u-column1.col-1 .login  .woocommerce-form-login__submit {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--black);
    border: 1px solid var(--btnColor);
    border-radius: 44px;
    display: table;
    padding: 8px 0;
    align-items: center;
    width: 100%;
    background: transparent;
    margin: auto;
    max-width: 220px;
}
.page-935.woocommerce-account .woocommerce .u-columns.col2-set .u-column1.col-1 .login  .woocommerce-form-login__submit:hover {
      background: var(--btnColor);
      color: #fff;
}
.page-935.woocommerce-account .woocommerce .u-columns.col2-set .u-column1.col-1 .login .form-row {
      text-align: center;
}
.page-935.woocommerce-account .lost_password {
      text-align: center;
}
.page-935.woocommerce-account .woocommerce .u-columns.col2-set .u-column1.col-1 .login .form-row.form-row-wide {
      text-align: left;
}
.page-935.woocommerce-account .lost_password a {
  color: var(--primaryColor);
}
.page-933.woocommerce-account .woocommerce .u-columns.col2-set .u-column2.col-2  .register p {
  font-size: 13px;
}
.page-933.woocommerce-account .woocommerce .u-columns.col2-set .u-column2.col-2  .register p a {
  color: var(--primaryColor);
}
.page-933.woocommerce-account .woocommerce .u-columns.col2-set .u-column2.col-2 .register .woocommerce-form-register__submit {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--black);
    border: 1px solid var(--btnColor);
    border-radius: 44px;
    display: table;
    padding: 8px 0;
    align-items: center;
    width: 100%;
    background: transparent;
    margin: 30px auto 0;
    max-width: 220px;
}
.page-933.woocommerce-account .woocommerce .u-columns.col2-set .u-column2.col-2 .register .woocommerce-form-register__submit:hover {
      background: var(--btnColor);
      color: #fff;
}
p.tws-login-register-msg, .tws-register-login-msg {
    text-align: center;
}
p.tws-login-register-msg a, .tws-register-login-msg a {
  color: var(--primaryColor);
}

.woocommerce-account.page-935 section.commondesign-section, .woocommerce-account.page-933 section.commondesign-section {
    background: url(https://pixeldevworks.in/dev/the-write-scene/wp-content/uploads/2026/02/journey-bg-1.png);
    background-size: contain;
    background-repeat: no-repeat;
}
/* my account page start */

/* shop page start */
.woocommerce-shop .woocommerce-breadcrumb{
    display:  none;
}
.woocommerce-shop .woocommerce-products-header h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}
.woocommerce-shop .woocommerce-ordering {
    margin-bottom: 20px;
}
.woocommerce-shop ul.products li.product, .woocommerce-shop ul.products li.product {
    background: #fbf8f4;
    border-radius: 8px;
    overflow: hidden;
}
.woocommerce-shop ul.products .astra-shop-summary-wrap {
    padding: 0 15px 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.woocommerce-shop ul.products .astra-shop-summary-wrap .product_type_simple, .woocommerce-shop ul.products .astra-shop-summary-wrap .add_to_cart_button,
.woocommerce-account.page-835 .woocommerce .woocommerce-Button.button  {
    margin-top: auto !important;
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color: var(--black);
    border: 1px solid var(--btnColor);
    border-radius: 44px;
    display: inline-flex;
    gap: 10px;
    padding: 8px 0;
    align-items: center;
    width: 166px;
    justify-content: center;
    margin-top: auto !important;
    background: transparent;
}
.woocommerce-shop ul.products .astra-shop-summary-wrap .product_type_simple:hover,
.woocommerce-shop ul.products .astra-shop-summary-wrap .add_to_cart_button:hover,
.woocommerce-account.page-835 .woocommerce .woocommerce-Button.button:hover  {
    background: var(--btnColor);
    color: #fff;
}
.woocommerce-shop ul.products .astra-shop-summary-wrap  .ast-loop-product__link {
    color: var(--primaryColor);
}
.woocommerce-shop ul.products .ast-on-card-button, .woocommerce-shop .woocommerce-result-count, 
.woocommerce-shop .woocommerce-ordering {
    display: none;
}
.woocommerce-shop .woocommerce-LoopProduct-link {
    overflow: hidden;
    height: 270px;
    margin-bottom: 15px;
}
.woocommerce-shop .woocommerce-LoopProduct-link img {
  transition: 0.5s;
}
.woocommerce-shop .woocommerce-LoopProduct-link:hover img {
  transform: scale(1.2);
  transition: 0.5s;
}
.woocommerce-cart .return-to-shop {
  display: none;
}
.pagination.justify-content-center {
  gap: 8px;
}
.pagination.justify-content-center .page-item  a, .pagination.justify-content-center .page-item  span,
.woocommerce-shop nav.woocommerce-pagination ul li .page-numbers   {
    width: 45px !important;
    height: 45px !important;
    border-radius: 50% !important;
    border: 1px solid #ddd;
    background: #f5f5f5;
    color: #444 !important;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.pagination.justify-content-center .page-item.active  a, .pagination.justify-content-center .page-item.active span, .woocommerce-shop nav.woocommerce-pagination ul li .page-numbers.current  {
    background: #b58b5a;
    color: #fff !important;
    border-color: #b58b5a;
}
.woocommerce-account.woocommerce-lost-password  .woocommerce {
    max-width: 500px;
    margin: auto;
}
.woocommerce-account.woocommerce-lost-password  .woocommerce .woocommerce-Input {
    background: #fff;
    min-height: 40px;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
}
.woocommerce-account.woocommerce-lost-password  .woocommerce .form-row-first {
    width: 100%;
}

/* 22.04.2026 */
.literaryObjects .journeyContent .nav-tabs {
    display: flex;
    margin: 0;
    padding: 10px 0;
}
#navtabwrapper {
  background: #fff;
  position: relative;
  z-index: 99;
}
.literaryObjects .journeyouter {
  padding: 10px 0;
  background: transparent;
}
.shopTitle {
    font-size: 36px;
    color: #000;
    padding-bottom: 2px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}
.literaryObjects .sectioText {
    margin-bottom: 30px;
}
/* 22.04.2026 */

.back-btn {
  color: var(--black);
  display: inline-block;
  margin-bottom: 30px;
  transition: 0.5s;
}
.back-btn:hover {
  color: var(--primaryColor);
  transition: 0.5s;
}
section.journeysecouter.journeyContent.journeysPage {
    padding-top: 50px;
}
a.cardsliderItem {
    width: 100%;
}
.btnWrapper .wpcf7-spinner {
    position: absolute;
    bottom: -5px;
    right: 0;
}
.woocommerce-shop ul.page-numbers {
    display: flex;
    gap: 8px;
    justify-content: center !important;
    margin-bottom: 50px !important;
}
.woocommerce-shop ul.page-numbers li {
  margin: 0 !important;
}

/* 28.04.2026 */
.storiessinglebanner   {
    margin-bottom: 80px;
}
.softoverley h6{
  font-family: var(--mulishFont);
  font-weight: 300;
  font-size: 30px;
  line-height: 51px;
  color: var(--black);
}
.softoverley p {
    font-weight: 300;
      font-family: var(--mulishFont);
  font-size: 30px;
  line-height: 51px;
}
.storiessinglebanner h6 {
  margin: 40px 0 15px;
}
.storiessinglesec .journeyouter {
  padding: 0;
  background: transparent;
  border-radius: 0;
}
.topContent p {
  max-width: 720px; margin: auto;
  line-height: 24px;
}
.journeySec .topContent p {
  margin-left: inherit;
}

.topContent h6 {
    font-weight: 400;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    max-width: 970px;
    margin: 0px auto 10px;
}
.storiessinglesec.journeysecouter .tab-content h2 {
    margin-bottom: 20px;
}
.tabmainwrapper {
  margin-top: 30px;
  margin-bottom: 30px;
}
.tabImg img {
  width: 100%;
}
.tabmainContent h3 {
  font-weight: 700;
  font-size: 20px;
  line-height: 25px;
  color: var(--black);
  margin-bottom: 30px;
}
.tabmainContent p {
  margin-bottom: 20px;
}
.tabmainContent h4 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 20px;
}
.tabmainContent  ul {
    display: inline-grid;
    gap: 6px;
    margin-bottom: 15px;
}
.tabmainContent li {
  position: relative;
  padding-left: 20px;
  text-align: left;
}
.tabmainContent li::before {
    content: "";
    width: 6px;
    aspect-ratio: 1;
    background: var(--black);
    position: absolute;
    top: 9px;
    left: 5px;
    border-radius: 50%;
}
.tabQuote {
    text-align: center;
    margin: 30px 0 0px;
}
.tabQuote em {
    display: block;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    font-style: normal;
    margin-bottom: 0 !important;
}
section.journeysecouter.journeyContent.storiessinglesec {
    padding: 0 0 80px;
}
.tabExp {
    display: grid;
    grid-template-columns: 50% 50%;
    padding: 80px 0;
}
.journeysecouter .tab-content .tabExp h2 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 26px;
    text-align: left;
    font-family: var(--mulishFont);
}
.tabExpLeft {
    background: #EDE3D6;
    padding: 100px 40px;
    padding-left: 360px;
}
.tabExpLeft p {
  margin-top: 30px;
}
.tabExpLeft strong {
  display: block;
  margin: 30px 0;
}
.tabExp li {
  position: relative;
    padding-left: 20px;
}
.tabExp li::before {
    content: "";
    width: 6px;
    aspect-ratio: 1;
    background: var(--black);
    position: absolute;
    top: 9px;
    left: 5px;
    border-radius: 50%;
}
.tabExpRight {
    padding: 100px 40px;
    padding-right: 360px;
    background-size: cover !important;
}
.journeysecouter .tab-content .tabExp .tabExpRight h2 {
  color: var(--white);
}
.tabExp .tabExpRight li::before {
  background: var(--white);
}
.tabExp .tabExpRight li {
  color: var(--white);
}
.notemsItem strong {
  font-family: var(--mulishFont);
  font-weight: 700;
  font-size: 20px;
  color: var(--black);
  line-height: 25px;
  letter-spacing: 0%;
  display: block;
  margin-bottom: 20px;
}
.notemsItem  p {
  margin-top: 15px;
}
.guidelines  h3 {
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--black);
    margin-bottom: 10px;
}
.guidelines strong.subStrong {
    text-align: center;
    display: block;
    font-weight: 400;
    font-size: 16px;
}
.notemsItem li {
    position: relative;
    padding-left: 20px;
}
.notemsItem li::before {
    content: "";
    width: 6px;
    aspect-ratio: 1;
    background: var(--black);
    position: absolute;
    top: 9px;
    left: 5px;
    border-radius: 50%;
}
/* 28.04.2026 */
.coming-soon.text-center {
    margin-bottom: 30px;
}

/* 13.05.2026 */
.blogdetailSingle .wp-block-list {
    display: inline-grid;
    gap: 8px;
    margin-bottom: 20px;
}
.blogdetailSingle .wp-block-list li {
  padding-left: 25px;
  position: relative;
}
.blogdetailSingle .wp-block-list li  a {
  color: var(--primaryColor);
}
.blogdetailSingle .wp-block-list li::before {
    content: "";
    width: 6px;
    aspect-ratio: 1;
    position: absolute;
    top: 9px;
    left: 10px;
    background: var(--black);
    border-radius: 50%;
}
.mobContent {
  display: none;
}
.addBanner  {
  display: none;
}
.newsletterForm .form-group {
    margin-bottom: 10px;
}
.newsletterForm .form-label {
  margin-bottom: 0;
}

/* 13.07.2026 */
.deebaBigImg {
  display: none;
}

/* 14.07.2026 */
.mobFounder {
  display: none;
}
.meetFounder {
    padding: 80px 0 80px;
}
.founderContent p {
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    letter-spacing: 0%;
    color: #363330;
    margin-top: 10px;
}
.founderContent .primaryBtn {
    margin-top: 30px;
    width: auto;
    padding: 8px 15px;
}
.founderContent h2 {
    font-size: 60px;
    margin-bottom: 10px;
    line-height: 1;
}
.allProducts {
  display: none;
}
.mobBigImg {
  display: none;
}
.pulisingMobile {
  display: none;
}
.legacyBookSec {
    padding: 40px 0 80px;
}
.legacyBookSec {
  text-align: center;
}
.legacyBookSec p {
  text-align: center;
}
.legacyBookSec .primaryBtn {
    width: auto;
    padding: 8px 20px;
    margin-top: 30px;
}
.formPage {
      padding: 130px 0 80px;
}
.formPage h1 {
  text-align: center;
  margin-bottom: 20px;
  display: block;
}
.form-control {
    width: 100%;
    padding: .75em;
}
.legacyBookForm {
    background: #fbf8f4;
    padding: 15px;
}

.legacyBookFormInfo h4{
  font-size:18px;
  margin-bottom:10px;
  font-weight: bold;
}

.legacyBookFormInfo {
    margin-bottom: 25px;
}
.page-template-aboutus .softoverley h1 {
  display: none;
}




/* 22.7.2026 */

.legacyBookSec .booksBody h3{
  padding: 20px 0;
}
.legacyBookSec .booksBody p{
  text-align: left;
  padding-bottom: 12px;
}

.legacyBookSec .booksBody .booksbody_lst{
  padding: 10px 0;
}

.legacyBookSec .booksBody .booksbody_lst p{
  padding-bottom: 5px;
}
/* end */

/* modification */
.page-template-legacy-book .journeyouter, .page-template-curated-anthologies .journeyouter{
    padding: 0;
    background: transparent;
    border-radius: 0;
    text-align: left;
}
.page-template-legacy-book .topContent {
    margin-bottom: 20px;
}
.page-template-legacy-book .tabmainContent, .page-template-legacy-book .legacyBookSec p {
    text-align: left;
}
.page-template-legacy-book .tabQuote em {
    text-align: center;
}
.page-template-legacy-book .tabExp li {
    text-align: left;
}
.page-template-legacy-book .tabExp  h2, .page-template-curated-anthologies .tabExp  h2 {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 26px;
    text-align: left;
    font-family: var(--mulishFont);
}
.page-template-legacy-book .tabExp .tabExpRight h2, .page-template-curated-anthologies .tabExp .tabExpRight h2 {
    color: var(--white);
}
.legacy-bottom-content p {
  margin-top: 15px;
}
.page-template-curated-anthologies .guidelines p, .page-template-curated-anthologies .notemsItem strong{
    text-align: left;
}
.notemsItem p {
   text-align: left;
}
.notesecWrapper .mt-5 {
  margin-top: 30px !important;
}
.lagacy-wrapp h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 20px;
    letter-spacing: 0%;
    text-align: center;
    color: var(--black);
    margin-bottom: 30px;
}

/* celebrationsSecNew  */
.celebrationsSecNew {
  position: relative;
}
#section1::before {
    content: "";
    width: 100%;
    bottom: 0;
    left: 0;
    height: calc(100% - 150px);
    position: absolute;
    background: linear-gradient(180deg, #FBF8F4 0%, rgba(251, 248, 244, 0) 100%);
    z-index: -1;
}
.celebrationsVideo {
    margin-bottom: 15px;
}
.celebrationsContent p {
  margin-top: 15px;
}
.celebrationsSecNew .primaryBtn {
    width: auto;
    padding: 8px 20px;
}
.pageReflink  {
    font-weight: 700;
    font-size: 18px;
    leading-trim: NONE;
    line-height: 100%;
    letter-spacing: 0%;
    text-align: center;
}
.celebrationsSectwo {
  padding: 120px 0
}
.celebrationsSecInfo {
    display: flex;
    /* align-items: center; */
    background: #FBF8F4;
    gap: 0px;
}
.celebrationsSecInfoImg {
    width: 100%;
    max-width: 470px
}
.celebrationsSecInfoImg img{
    width: 100%;
}
.celebrationsSecContent {
  flex: 1;
  padding: 30px
}
.celebrationsSecContent p:not(:first-child) {
  margin-top : 15px
}
.celebrationsSecContent .primaryBtn {
    width: auto;
    padding: 8px 20px;
}
.page-template-celebrations .sectioText.text-center h2 {
  font-size: 60px;
}
/* celebrationsSecNew  */
.editionWrapper .row {
  justify-content: center;
}
/* celebrationsSecNew  form*/
.redirected-form {
    background: #fbf8f4;
    padding: 30px 15px;
    margin-bottom: 50px;
}
.redirected-form h1, .redirected-form h2 {
    text-align: center;
    margin-bottom: 10px;
    display: block;
    font-family:  "IvyPresto Headline";
    font-weight: 100;
    font-size: 40px !important;
}
/* celebrationsSecNew  form*/

/* Hide iOS/Safari native play/playback buttons on videos */
video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}
video::-webkit-media-controls-panel {
  display: none !important;
  -webkit-appearance: none;
}
video::-webkit-media-controls {
  display: none !important;
}

.form-control.error {
  border: 1px solid red;
}
#fog-fiction-awards-form .primaryBtn {
  width: auto;
  padding: 8px 15px;
}
.legacyBookFormInfo h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}
#section1 .col-md-12.text-center.mt-4 a:nth-child(2) {
  display: none;
}