@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Spectral:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");

/* font-family: "Spectral", serif; */
/* font-family: "Montserrat", sans-serif; */
*,
::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 {
  --spectral: "Spectral", serif;
  --montserrat: "Montserrat", sans-serif;
  --white: #ffffff;
  --themePrimary: #bc2130;
  --primaryHover: #7d141f;
  --themesecondary: #c7b376;
  --black: #000000;
}

/* ===================== common css start ====================== */
*,
html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 100px;
}

.clear {
  clear: both;
}

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

body {
  background: #fff;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  font-family: var(--nunitoSans);
  /* display: none; */
}

/* section {
  padding: 60px 0;
} */
.ml-auto {
  margin-left: auto;
}

.container {
  max-width: 1170px;
  padding: 0px 15px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

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 {
  margin: 0;
}

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

p,
figure {
  margin: 0;
}

.BtnPrimary {
  background-color: var(--themePrimary);
  position: relative;
  margin: 0 7px;
  padding: 3px 15px 4px;
  border-color: var(--themePrimary) !important;
  transition: 0.5s;
  corner-shape: scoop;
}

.headerWrapper .BtnPrimary {
  margin-right: 0;
}

.BtnPrimary:hover {
  background-color: var(--primaryHover) !important;
  border-color: var(--primaryHover) !important;
  transition: 0.5s;
}

.BtnPrimary span {
  color: var(--white);
  font-family: var(--spectral);
  font-weight: 500;
  font-size: 14px;
  line-height: 10px;
  letter-spacing: -0.32px;
  text-align: center;
}

.BtnPrimary svg path {
  fill: var(--themePrimary);
  transition: 0.5s;
}

.BtnPrimary:hover svg path {
  fill: var(--primaryHover);
  transition: 0.5s;
}

.svgRight,
.svgLeft {
  position: absolute;
  height: 100%;
  top: 0;
}

.svgLeft {
  left: -5px;
}

.svgRight {
  right: -5px;
}

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

/*********START LOADER ANIMATION CSS**************/
.sky_banner {
  position: relative;
  z-index: 0;
  opacity: 0;
  transition: 1s ease-in-out;
}

.sky_banner.show {
  opacity: 1;
}

.animation-container {
  position: fixed;
  width: 100%;
  height: 100vh;
  /* background: white; */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 10;
  transition: 1s ease-in-out;
}

.animation-container.zoom-out {
  /* transform: scale(5); */
  /* transition: 2s; */
  animation: ovelry 2s forwards;
}

.zoom-out .text-wrapper {
  opacity: 0;
  transition: 0.5s;
  visibility: hidden;
}

@keyframes ovelry {
  0% {
    transform: scale(1);
  }

  90% {
    transform: scale(5);
  }

  100% {
    /* opacity: 0; */
    visibility: hidden;
    transform: scale(5);
  }
}

.animation-container .loaderframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

span.text-left {
  background: #fff;
  padding: 100px 0;
  padding-left: 172px;
}

span.text-right {
  background: #fff;
  padding: 100px 0;
  padding-right: 172px;
}

.animation-container.hide {
  opacity: 0;
  pointer-events: none;
}

/* Text styling */
.text-wrapper {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 1;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  z-index: 99;
}

.text-left,
.text-right {
  font-size: 4rem;
  font-weight: 300;
  color: #d4d4d4;
  letter-spacing: 8px;
}

.text-animation .text-left {
  animation-delay: 0.8s;
  animation-name: slideOutLeft;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.text-animation .text-right {
  animation-delay: 0.8s;
  animation-name: slideOutRight;
  animation-duration: 0.8s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

.frame-container {
  position: absolute;
  width: 0px;
  height: 293px;
  z-index: 10;
  animation: slideInCenter 0.8s ease-in-out forwards;
  animation-delay: 0.5s;
  transform-origin: center center;
  top: 50%;
  transform: translateY(-50%);
}

.frame-image {
  position: absolute;
  width: 0%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  transition: 0.15s ease-in-out;
  transform-origin: center;
  left: 50%;
  transform: translateX(-50%) scale(1.2);
}

.frame-image.active {
  z-index: 5;
  width: 100%;
  transition: 0.15s ease-in-out;
  transform: translateX(-50%) scale(1);
}

.frame-image.zoom-out {
  animation: zoomOut 1.2s ease-in-out forwards;
}

.frame-border {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  pointer-events: none;
  z-index: 2;
}

/* Keyframes */
@keyframes slideOutLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  95% {
    transform: translateX(-280px);
    opacity: 1;
    background: #fff;
  }

  100% {
    opacity: 1;
    transform: translateX(-280px);
    background: transparent;
  }
}

@keyframes slideOutRight {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  95% {
    transform: translateX(270px);
    opacity: 1;
    background: #fff;
  }

  100% {
    opacity: 1;
    transform: translateX(270px);
    background: transparent;
  }
}

@keyframes slideInCenter {
  from {
    width: 0;
  }

  to {
    width: 520px;
  }
}

@keyframes zoomOut {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) scale(5);
    opacity: 0;
  }
}

/* Image backgrounds */
.frame-image.img1 {
  background: url(../images/loader/Layer_1.png) no-repeat center/cover;
}

.frame-image.img2 {
  background: url(../images/loader/Layer_2.png) no-repeat center/cover;
}

.frame-image.img3 {
  background: url(../images/loader/Layer_3.png) no-repeat center/cover;
}

.frame-image.img4 {
  background: url(../images/loader/Layer_4.png) no-repeat center/cover;
}

.frame-image.img5 {
  background: url(../images/loader/Layer_5.png) no-repeat center/cover;
}

.frame-image.img6 {
  background: url(../images/loader/Layer_6.png) no-repeat center/cover;
}

.frame-image.img1.active,
.frame-image.img2.active,
.frame-image.img3.active,
.frame-image.img4.active,
.frame-image.img5.active {
  animation: disappear 1s forwards;
  animation-delay: 0.5s;
}

.frame-image.img6.active {
  animation: disappear 1s forwards;
}

/* .frame-image.img5.active {
    animation: disappear 1s forwards;
} */

@keyframes disappear {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.frameOuter {
  position: fixed;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9;
}

.zoom-out .frameOuter {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
}

/*********END LOADER ANIMATION CSS**************/

/* *******header sec**************************** */
.headerArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
  padding: 2.5px 0;
  padding-top: 8px;
  opacity: 1;
  transition: 1s;
  /* filter: blur(20px); */
}

.headerArea::before {
  content: "";
  left: 0;
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  backdrop-filter: blur(5px);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent);
  mask-image: linear-gradient(to bottom, black 50%, transparent);
  z-index: -1;
}

/* .headerArea::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0.6),
        rgba(255,255,255,0.0)
    );
    z-index: -1;
} */

.opacitylow.headerArea {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

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

.menuWrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menuWrapper ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menuWrapper ul li a,
.dropdowntitlle {
  font-family: var(--spectral);
  font-weight: 400;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: -0.32px;
  text-align: center;
  color: var(--black);
  transition: 0.5s;
}

.menuWrapper ul li {
  position: relative;
}

.menuWrapper ul li.hasdropdown:after {
  top: 15px;
}

.menuWrapper ul li:hover:before,
.menuWrapper ul li:hover:after {
  opacity: 1;
}

.menuWrapper ul li:before {
  position: absolute;
  content: "";
  background: url(../images/hover-bracket1.svg) no-repeat center;
  left: -7px;
  width: 6px;
  height: 19px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menuWrapper ul li:after {
  position: absolute;
  content: "";
  background: url(../images/hover-bracket2.svg) no-repeat center;
  right: -7px;
  width: 6px;
  height: 19px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.menuWrapper ul ul li:before,
.menuWrapper ul ul li:after {
  display: none;
}

.dropdowntitlle {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hasdropdown {
  position: relative;
  cursor: pointer;
  padding: 15px 0;
}

.hasdropdown i.bi-chevron-down {
  transition: 0.5s;
  position: relative;
  top: 1px;
  font-size: 11px;
}

.hasdropdown:hover i.bi-chevron-down {
  transform: rotate(-180deg);
  transition: 0.5s;
}

.hasdropdown ul {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
  background: #eaeaea;
  min-width: 322px;
  corner-shape: scoop;
  border-radius: 6px;
  padding: 0 30px;
}

.hasdropdown:hover ul {
  max-height: 500px;
  transition: 0.5s;
}

.hasdropdown ul li a {
  display: block;
  text-align: left;
  padding: 24px 0 !important;
  font-family: var(--spectral);
  font-weight: 300;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: -1px;
  color: var(--black) !important;
  transition: 0.5s;
}

.hasdropdown ul li:first-child a {
  padding-top: 26px !important;
}

.hasdropdown ul li:last-child a {
  padding-bottom: 26px !important;
}

.hasdropdown ul li:not(:last-child) a {
  border-bottom: 1px solid #0000001a;
}

.show .menuWrapper ul.menunav {
  /* transform: translateX(55px); */
  transition: transform 2s ease;
  transition-delay: 1s;
}

.move-in.show .menuWrapper ul.menunav {
  transform: translateX(0px);
  transition: transform 2s ease;
  transition-delay: 1s;
}

.white-text .menuWrapper ul li {
  padding: 15px 0;
}

.white-text .menuWrapper ul ul li {
  padding: 0;
}

.white-text .menuWrapper ul li a,
.white-text .dropdowntitlle {
  color: var(--white);
  transition: 0.5s;
}
.white-textrnd .menuWrapper ul li a,
.white-textrnd .dropdowntitlle {
  color: var(--white);
  transition: 0.5s;
}
.white-textrnd .menuWrapper .BtnPrimary {
  background: #c7b376 !important;
  border-color: #c7b376 !important;
}

.white-textrnd .menuWrapper .BtnPrimary:hover {
  border-color: var(--primaryHover) !important;
  background: var(--primaryHover) !important;
}
a.brandLogo {
  width: 185px;
}
.brandLogo img {
  transition: 0.5s;
}

.white-text .brandLogo img,
.white-textrnd .brandLogo img {
  filter: brightness(0) invert(1);
  transition: 0.5s;
}

.menuWrapper ul li ul li a {
  position: relative;
  padding-left: 28px;
  overflow: hidden;
}

/* text wrapper */
.menuWrapper ul li ul li a span {
  display: inline-block;
  transition: transform 0.3s ease;
}

/* flower icon */
.menuWrapper ul li ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 20px;
  background: url("../images/flower.svg") no-repeat center / contain;
  transform: translateY(-50%) scale(0.6);
  opacity: 0;
  transition: all 0.3s ease;
}

/* hover effects */
.menuWrapper ul li ul li a:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.menuWrapper ul li ul li a:hover span {
  transform: translateX(25px);
}

.hasdropdown ul li:first-child a:after {
  top: 39px;
}

.hasdropdown ul li:last-child a:after {
  top: 36px;
}
.mobcontact,
.toogleBtn,
.dropdowntitlle img {
  display: none;
}
/* *******header sec**************************** */

/* *******hero banner************************** */
.herobanner {
  background: var(--white);
}
span.mobiletext {
  display: none;
}
.herobanner .img1 {
  transform: translateY(0px);
  height: 100%;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.show.herobanner .img1 {
  transform: translateY(-120px);
  transition: 3s;
  opacity: 0;
  z-index: 2;
  /* visibility: hidden; */
}

.herobanner .img2 {
  transform: translateY(0px);
  transition: 2s;
  opacity: 1;
  height: 100vh;
}

.moon {
  position: absolute;
  top: 18%;
  right: 30%;
  z-index: 3;
}

.moon img {
  max-width: 100px;
  margin: auto;
}

.show .moon {
  opacity: 0.8;
  transform: scale(0.8);
  transition: 2.5s;
  right: 17%;
}

.bannerGate {
  position: absolute;
  width: 100%;
  top: 70%;
  opacity: 0;
}

.show .bannerGate {
  top: 50%;
  opacity: 1;
  transition: 2s;
  z-index: 3;
  transition-delay: 0.5s;
}

.show .bannerGate img {
  width: 100%;
}

.herobanner {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.imgBig {
  position: absolute;
  width: 100%;
  top: -120%;
  left: 0;
  z-index: 3;
}

.show .imgBig {
  top: -200%;
  transition: 2s;
}

.flower {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotate(190deg);
  top: 61%;
  z-index: 4;
  opacity: 0;
}

.show .flower {
  opacity: 1;
  transition: 1s;
}

.flower img {
  max-width: 62px;
}

.topFlower {
  position: absolute;
  top: -60px;
  z-index: 4;
  opacity: 0;
}

.topFlower img {
  /* max-width: 321px; */
}

.topFlower.left {
  left: -710px;
}

.show .topFlower {
  opacity: 1;
  transition: 3s;
  transition-delay: 3s;
  top: -120px;
}

.show .topFlower.left {
  left: -260px;
  transition-delay: 3s;
  transition: 3s;
}

.topFlower.right {
  transform: rotate(-45deg);
  right: -670px;
  top: -350px;
}

.show .topFlower.right {
  right: -570px;
  top: -210px;
  transition-delay: 3s;
  transition: 3s;
}

.heroOverley {
  position: absolute;
  top: 30%;
  left: 0;
  width: 100%;
  z-index: 5;
  text-align: center;
  opacity: 0;
  transition: 1s;
}

.show .heroOverley {
  opacity: 1;
  transition: 1s;
  top: 10%;
}

.heroOverley h1 {
  font-family: var(--spectral);
  font-weight: 300;
  font-size: 84px;
  line-height: 92.4px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
  margin-bottom: 40px;
}

.heroOverley h1 span {
  font-weight: 300;
  font-style: italic;
}

.heroOverley h6 {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0%;
  text-align: center;
  color: var(--white);
}

.loadingBar {
  height: 80px;
  width: 2px;
  margin: auto;
  position: relative;
  background: rgba(255, 255, 255, 0.4);
  /* background: var(--white); */
  margin: 50px auto 10px;
  overflow: hidden;
  z-index: 1;
}

.loadingBar::after {
  width: 100%;
  height: 100%;
  background: var(--themesecondary);
  content: "";
  position: absolute;
  left: 0;
  animation: barloading 2s linear infinite;
  transition: 0.5s;
  z-index: 2;
}

.heroOverley a {
  color: var(--themesecondary);
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 14px;
  line-height: 40px;
  letter-spacing: 2.24px;
  text-align: center;
}

@keyframes barloading {
  0% {
    top: -100%;
    opacity: 1;
  }

  30% {
    top: 0;
    opacity: 1;
  }

  70% {
    top: 0;
    opacity: 1;
  }

  90% {
    top: 100%;
    opacity: 0;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

.herobanner::after {
  content: "";
  width: 100%;
  height: 104px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.92) 10%,
    rgba(255, 255, 255, 0) 90%
  );
  /* background: url(../images/fader.png); */
  /* backdrop-filter: blur(10px); */
  top: 0;
  left: 0;
  position: absolute;
  z-index: 4;
}

/* *******hero banner************************** */

/* *******offering sec start******************* */
.outerWrapper {
  position: relative;
  z-index: 5;
}

.outerWrapper::after {
  width: 100%;
  content: "";
  left: 0;
  top: -20px;
  height: 50px;
  backdrop-filter: blur(5px);
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent);
  mask-image: linear-gradient(to bottom, black 50%, transparent);
  z-index: 6;
  position: absolute;
  transform: rotate(180deg);
}

/* .outerWrapper::before {
  width: 100%;
  content: "";
  left: 0;
  top: -20px;
  height: 50px;
  position: absolute;
  background: #000;
} */
.offeringSliderWrapper {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.sectionWrapper {
  position: relative;
  overflow: hidden;
  /* z-index: 5; */
}

.site-main {
  z-index: 5;
}

.sectionbg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-size: cover;
}

.offeringInner {
  /* padding-top: 500px; */
  /* transform: translateY(500px); */
  position: relative;
  top: 500px;
}

.offeringInner .exploreBtnouter {
  transform: translateX(20px);
  transition: 0.5s;
}

.offeringInner .exploreBtnouter:hover {
  transform: translateX(0px);
  transition: 0.5s;
}

.offeringsec {
  position: relative;
  z-index: 2;
  padding: 80px 0 120px;
  overflow: hidden;
  min-height: 100vh;
}

.offeringsec .sectionTitle {
  transform: scale(1.4);
}

.sectionTitle h2 {
  font-family: var(--spectral);
  font-weight: 400;
  font-size: 84px;
  line-height: 92px;
  letter-spacing: 0%;
  margin-bottom: 25px;
}

.sectionTitle h6 {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0%;
}

.offeringsec .sectionTitle h6 {
  display: block;
}

.offeringsec .sectionTitle h6 .char {
  display: inline-block;
  opacity: 0.5;
  filter: blur(4px);
  transform: translateY(0px);
  /* optional small rise effect */
}

.offeringsec .sectionTitle {
  transform-origin: center center;
  /* scale from center */
  /* margin-bottom: 75px; */
}

/* offering slider */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  /* display: flex; */
  /* justify-content: center; */
  /* align-items: center; */
}

.swiper-slide img {
  display: block;
  object-fit: cover;
  margin: auto;
}

.offeringSliderWrapper {
  /* margin-top: 75px; */
  padding: 70px 0 110px;
}

.offeringSliderWrapper .swiper-slide img {
  transform: scale(0.7);
  transition: 0.5s;
  filter: blur(8px);
}

.offeringSliderWrapper .swiper-slide .offeringItem {
  transform: translateY(80px);
  transition: 0.5s;
}

.offeringSliderWrapper .swiper-slide h5 {
  opacity: 0;
  font-size: 48px;
  max-width: 305px;
  margin: 23px auto 0;
  font-family: var(--spectral);
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  color: var(--white);
  transition: 0.5s;
}

.offeringSliderWrapper .swiper-slide.swiper-slide-active img {
  transform: scale(1);
  transition: 0.5s;
  filter: blur(0px);
}

.offeringSliderWrapper .swiper-slide.swiper-slide-active .offeringItem {
  transform: translateY(0px);
  transition: 0.5s;
}

.offeringSliderWrapper .swiper-slide.swiper-slide-active h5 {
  opacity: 1;
  transition: 0.5s;
}

.offeringSliderWrapper .swiper-button-next::after,
.offeringSliderWrapper .swiper-button-prev::after {
  display: none;
}

.offeringSliderWrapper .swiper-button-next,
.offeringSliderWrapper .swiper-button-prev {
  height: 56px;
  width: 56px;
  border: 2px solid #c7b376;
  right: inherit;
  left: 92%;
  padding: 5px;
  transition: 0.3s;
  corner-shape: scoop;
  border-radius: 10px;
}

.offeringSliderWrapper .swiper-button-next::before {
  width: 1000px;
  height: 2px;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--themesecondary);
  left: calc(100% + 16px);
}

.offeringSliderWrapper .swiper-button-prev::before {
  width: 1000px;
  height: 2px;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--themesecondary);
  right: calc(100% + 16px);
}

.offeringSliderWrapper .swiper-button-prev {
  left: inherit;
  right: 92% !important;
}

.offeringSliderWrapper .swiper-button-next:hover,
.offeringSliderWrapper .swiper-button-prev:hover {
  background-color: #d4c59b;
  transition: 0.3s;
  border-top: 2px solid #d4c59b;
  border-bottom: 2px solid #d4c59b;
  width: 80px;
  padding-left: 35px;
}

.offeringSliderWrapper .swiper-button-prev:hover {
  padding-left: 5px;
  padding-right: 35px;
}

.offeringSliderWrapper .arrowImfleft {
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  height: 100%;
  left: -10px;
  top: -2px;
}

.offeringSliderWrapper .arrowImfRight {
  opacity: 0;
  transition: 0.3s;
  position: absolute;
  height: 100%;
  right: -10px;
  top: -2px;
}

.offeringSliderWrapper .swiper-button-next:hover .arrowImfleft,
.offeringSliderWrapper .swiper-button-next:hover .arrowImfRight,
.offeringSliderWrapper .swiper-button-prev:hover .arrowImfleft,
.offeringSliderWrapper .swiper-button-prev:hover .arrowImfRight {
  opacity: 1;
  transition: 0.3s;
}

.offeringSliderWrapper .swiper-button-next .arrowshapeLeft,
.offeringSliderWrapper .swiper-button-prev .arrowshapeLeft {
  position: absolute;
  height: 100%;
  left: -10px;
  width: auto;
}

.offeringSliderWrapper .swiper-button-next .arrowshapeRight,
.offeringSliderWrapper .swiper-button-prev .arrowshapeRight {
  position: absolute;
  height: 100%;
  right: -10px;
  width: auto;
}

.offeringSliderWrapper .swiper-button-next:hover .arrowIcon,
.offeringSliderWrapper .swiper-button-prev:hover .arrowIcon {
  filter: brightness(0) invert(1);
  transform: scale(1.2);
}

.offeringSliderWrapper {
  position: relative;
}

.offeringSliderWrapper .slideframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 395px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slideframe img {
  max-width: 24px;
}

.offeringSliderWrapper {
  transform: scale(2);
  filter: blur(20px);
  /* margin-top: 500px; */
  transition: none;
  will-change: transform, filter, margin-top;
}

/* offering slider */
.exploreBtn {
  font-family: var(--spectral);
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
  text-align: center;
  position: relative;
  padding: 0;
  z-index: 1;
  transition: 0.3s;
  border: none;
  border-radius: 0;
  box-shadow: none !important;
  position: relative;
  height: 68px;
}

.explore-small {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  max-width: 206px;
}

.exploreBtn:hover .explore-small {
  /* opacity: 0; */
  transition: 0.05s;
  visibility: hidden;
}

.explore-big {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 244px;
  height: 68px;
  opacity: 0;
  /* transition: s; */
}

.exploreBtnouterr {
  position: relative;
  display: inline-block;
  width: 344px;
  height: 68px;
}

.exploreBtnouter {
  position: relative;
}

.exploreBtnouter .explore-arrow {
  position: absolute;
  opacity: 0;
  top: 0;
  right: 3px;
  z-index: 3;
  transition: 0.5s;
  transform: scale(0.5);
}

/* .exploreBtnouter:hover .explore-arrow {
  right: -39px;
  opacity: 1;
  transition: 0.3s;
  transform: scale(1);
} */

.exploreBtn {
  background-color: var(--themesecondary) !important;
  padding: 10px 60px;
  display: inline-block;
  text-decoration: none;
  transition: 0.5s;
  color: var(--black);
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  transition: 0.5s ease-in-out;
  overflow: hidden;
  animation: moveback 0.5s forwards;
  clip-path: polygon(88% 0%, 100% 50%, 88% 100%, 12% 100%, 0 49%, 12% 0);
}

@keyframes moveback {
  0% {
    clip-path: polygon(76% 0%, 65% 48%, 76% 100%, 10% 100%, 0 49%, 10% 0);
    padding-right: 120px;
  }

  50% {
    padding-right: 60px;
    clip-path: polygon(88% 0%, 100% 50%, 88% 100%, 12% 100%, 0 49%, 12% 0);
  }

  100% {
    clip-path: polygon(88% 0%, 100% 50%, 88% 100%, 12% 100%, 0 49%, 12% 0);
    padding-right: 60px;
  }
}

.exploreBtnouter {
  text-align: left;
  display: inline-block;
  position: relative;
  width: 206px;
}

/* .exploreBtnouter:hover .exploreBtn {
  clip-path: polygon(76% 0%, 65% 48%, 76% 100%, 10% 100%, 0 49%, 10% 0);
  background: #e8e2d2 !important;
  transition: 0.5s ease-in-out;
  padding-right: 120px;
  animation: moving 0.5s forwards;
} */

@keyframes moving {
  0% {
    padding-right: 60px;
    transition: 0.5s;
  }

  50% {
    padding-right: 120px;
    transition: 0.5s;
  }

  100% {
    clip-path: polygon(76% 0%, 65% 48%, 76% 100%, 10% 100%, 0 49%, 10% 0);
    transition: 0.5s;
    padding-right: 120px;
  }
}

/* *******offering sec close******************* */

.secSpacer {
  height: 100vh;
}

section.reserchDevelopment.secnew {
  margin-top: -250px;
  /* overflow: hidden; */
  margin-bottom: -250px;
}

.text-center.exploreBtnWrapper {
  text-align: center !important;
  position: relative;
  top: -70px;
  z-index: 5;
}

/* *******video sec start********************** */
.videoMargin {
  margin-bottom: 480px;
}

.CommitmentvideoWrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  display: block;
}

.CommitmentvideoWrapper.deactive {
  display: none;
}

.CommitmentvideoWrapper video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.videocontrolBtn span {
  font-size: 18px;
}

.videocontrolBtn span:nth-child(1) {
  font-size: 24px;
}

.videocontrolBtn span:nth-child(2) {
  font-size: 24px;
}

/* *******video sec start********************** */

/* ******video control ************************ */
.reserchDevelopment .container {
  max-width: 1600px;
}

.videoControl {
  margin-bottom: 300px;
  position: relative;
  z-index: 5;
}

.videoControl .sectionTitle h2 {
  font-family: var(--spectral);
  font-weight: 400;
  font-size: 40px;
  line-height: 44px;
  letter-spacing: 0%;
  margin: 0;
  transition: 0.5s;
}

.videoControl p {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 16px;
  color: var(--white);
}

.BtnPrimary.learnMore {
  background: #00000033 !important;
  color: var(--white);
  border: 1px solid #29292905 !important;
  padding: 15px 21px;
}

.BtnPrimary.learnMore .svgRight {
  right: -11px;
}

.BtnPrimary.learnMore .svgLeft {
  left: -11px;
}

.BtnPrimary.learnMore svg path {
  fill: #00000033;
  transition: 0.5s;
}

.BtnPrimary.learnMore.videocontrolBtn {
  padding: 0;
  display: flex;
}

.videoControl .BtnPrimary.learnMore.videocontrolBtn span {
  display: inline-grid;
  place-content: center;
  padding: 18px 16px;
  height: 56px;
}

.videoButtonWrapper {
  display: flex;
  justify-content: flex-end;
  gap: 17px;
}

.active.videoControl .col-md-4 {
  animation: modify 1s forwards;
  animation-delay: 1s;
}

@keyframes modify {
  0% {
    filter: 0;
    opacity: 1;
  }

  50% {
    filter: blur(8px);
    opacity: 0.5;
  }

  100% {
    opacity: 0;
  }
}

/* research and development */
.reserchDevelopment {
  position: relative;
  z-index: 3;
}

.videocontrolBg {
  position: absolute;
  top: -220px;
  left: 50%;
  width: 100%;
  transform: translateX(-50%) scale(0.9);
  background: var(--themePrimary);
  height: 100%;
  z-index: -1;
  opacity: 0;
  corner-shape: scoop;
  border-radius: 15px;
}

/* .videocontrolBg::before {
  content: "";
  width: 15px;
  position: absolute;
  top: 0;
  background-image: url(../images/redshapeLeft.png);
  left: -15px;
  height: 900px;
  background-size: cover;
}

.videocontrolBg::after {
  content: "";
  width: 15px;
  position: absolute;
  top: 0;
  background-image: url(../images/redshapeRight.png);
  right: -15px;
  height: 900px;
} */

.videoControl .sectionTitle {
  transform: translateX(30px);
  transition: 0.5s;
}

.videoControl .videoButtonWrapper {
  transform: translateX(-30px);
  transition: 0.5s;
}

.videoControl.move .sectionTitle,
.videoControl.move .videoButtonWrapper {
  transform: translateX(0px);
  transition: 0.5s;
}

.rndtext-wrapper {
  text-align: center;
  transition: 0.5s;
  height: 334px;
  position: relative;
  padding-top: 100px;
}

.rndtext-wrapper .col-sm-12 {
  position: relative;
}

.rndtext-wrapper.text-move {
  transition: 0.5s;
}

.rndtext-wrapper h2 {
  font-family: var(--spectral);
  font-weight: 400;
  font-size: 84px;
  line-height: 80px;
  letter-spacing: 0%;
  color: var(--white);
  transform: scale(2.5);
  filter: blur(8px);
  opacity: 0;
  position: absolute;
  top: 190px;
  left: 35%;
  transition: 0.5s;
  /* transform: translateX(-50%); */
}

.logoMark {
  overflow: hidden;
  margin-bottom: 20px;
  height: 54px;
  position: relative;
}

.rndtext-wrapper::after {
  content: "";
  position: absolute;
  top: 173px;
  left: 0;
  width: 100%;
  opacity: 0;
  height: 2px;
  background: var(--white);
  transition: 0.5s;
}

.active .rndtext-wrapper::after {
  opacity: 1;
  transition: 0.5s;
}

.logoMark img {
  transform: translateY(55px);
  left: 46%;
  position: absolute;
  top: 0;
  transition: 1s;
}

.rnd-textouter.active .rndtext-wrapper h2 {
  left: 0;
  transition: 1s;
  text-align: left;
}

.rnd-textouter.active .rndtext-wrapper .logoMark img {
  left: 0;
  transition: 1s;
}

.rndtext-wrapper .logoMark img {
  width: 132px;
  height: 54px;
}

.rnd-textouter .rndtext-wrapper::before {
  content: "";
  width: 50%;
  left: 50%;
  bottom: 140px !important;
  background: #bc2130;
  position: absolute;
  height: 100%;
  /* transform: translateY(-170px); */
  display: none;
}

.rnd-textouter.active .rndtext-wrapper::before {
  display: block;
}

/* @keyframes textmove {
  0% {
        left: 35%;
  }
  100% {
    left: 0;
    text-align: left;
  }
} */
.rnd-textouter {
  width: 100%;
  left: 0;
  position: absolute;
  top: 50px;
  z-index: 3;
}

.rnd-textouter.text-move {
  left: 0;
  top: 30px;
}

.rndSection {
  background-color: var(--themePrimary);
  padding: 360px 0 200px;
  margin-top: 100px;
  position: relative;
  overflow: hidden;
}

.rndSection::before {
  content: "";
  left: -15px;
  bottom: -15px;
  width: 30px;
  aspect-ratio: 1;
  background: #fff;
  position: absolute;
  border-radius: 50%;
}

.rndSection::after {
  content: "";
  right: -15px;
  bottom: -15px;
  width: 30px;
  aspect-ratio: 1;
  background: #fff;
  position: absolute;
  border-radius: 50%;
}

.rndSection .container {
  max-width: 1600px;
}

.textscrollsec p {
  font-family: var(--montserrat);
  font-weight: 400;
  font-style: Regular;
  font-size: 40px;
  leading-trim: NONE;
  line-height: 78px;
  letter-spacing: 0%;
  /* padding-bottom: 300px; */
  color: var(--white);
}

.textscrollsec p span {
  transition: 0.5s;
}

.textscrollsecPara {
  /* overflow-y: scroll;
  height: 500px; */
}

.rndsecWrapOuter {
  position: relative;
  z-index: 2;
}

.rndsecWrapOuter .rndsecWrap {
  transition: 0.5s;
  opacity: 1;
  width: 650px;
  margin-top: 130px;
}

.rndsecWrapOuter.imgdeactive .rndsecWrap {
  overflow: hidden;
  position: relative;
  transform: translateX(440px) translateY(200px) scale(0.5);
  opacity: 0;
  filter: blur(8px);
  transition: 0.5s;
}

.rndsecWrapOuter::before {
  content: "";
  bottom: 120%;
  left: 100%;
  position: absolute;
  width: 100%;
  background: linear-gradient(
    180deg,
    rgba(188, 33, 48, 0.92) 79%,
    rgba(255, 255, 255, 0) 100%
  );
  height: 360px;
}

.rndsecWrapOuter::after {
  content: "";
  top: 100%;
  left: 100%;
  position: absolute;
  width: 100%;
  background: linear-gradient(
    359deg,
    rgba(188, 33, 48, 0.92) 21%,
    rgba(255, 255, 255, 0) 100%
  );
  height: 180px;
}

.rndsecWrap {
  overflow: hidden;
  position: relative;
  corner-shape: scoop;
  border-radius: 10px;
}

.rnd01 {
  position: relative;
  overflow: hidden;
}

.rnd02,
.rnd03,
.rnd04,
.rnd05 {
  position: absolute;
  transform: translateY(100%);
  top: 0;
  left: 0;
  /* will-change: transform; */
  transition: 0.5s;
}

.rnd02,
.rnd03,
.rnd04,
.rnd05 {
  transform: translateY(100%);
}

/* collaborate sec start */
.collaboratebtnWrapper .exploreBtnouter {
  transform: translateX(-20px);
}

.collaborateSec .collaborateSecWrapper {
  filter: blur(8px);
}

.collaborateSec .collaborateSecWrapper.active .pinned_tab {
  display: none;
}

.collaborateSec {
  background: var(--white);
  padding: 100px 0 0;
  position: relative;
  transform: translateY(200px);
}

.homecollab.collaborateSec {
  transform: translateY(0px) !important;
}

.collaborateSec .container {
  max-width: 1600px;
}

.collaborateSec .sectionTitle h2 {
  font-family: var(--spectral);
  font-weight: 400;
  font-size: 96px;
  line-height: 91.2px;
  letter-spacing: -4.8px;
  color: #4c3327;
  text-align: right;
}

.collaborateSec .secSpan1 {
  transform: translateX(500px);
  display: inline-block;
  /* transition: 0.5s; */
}

.collaborateSecWrapper.active .secSpan1 {
  transform: translateX(0px);
  display: inline-block;
  /* transition: 0.5s; */
}

.collaborateSec .secSpan2 {
  transform: translateX(500px);
  display: inline-block;
}

.collaboratePara {
  margin-left: 125px;
  max-width: 303px;
  transform: translateX(530px);
  opacity: 0;
}

.collaboratePara p {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0%;
  color: #4c3327;
}

.collaboratebtnWrapper {
  margin-left: 125px;
  margin-top: 50px;
}

.textscrollsecPara {
  max-width: 648px;
}

.peopleHolder {
  padding-top: 90px;
  transform: translateY(140px);
  transition: 0.5s;
}

.lh {
  position: absolute;
  bottom: 275px;
  left: 36px;
  /* filter: blur(8px); */
  transition: 0.5s;
  transform: translateY(200px);
  opacity: 0.5;
}

.rh {
  position: absolute;
  bottom: 240px;
  right: 96px;
  opacity: 0.5;
  /* filter: blur(8px); */
  transition: 0.5s;
  transform: translateY(100px);
}

/* collaborate sec start */

/* footer start */
.footerArea {
  position: relative;
  padding: 350px 0 67px;
  background: var(--themesecondary);
}

.footerFlower {
  position: absolute;
  width: 100%;
  top: -406px;
  left: 0;
  z-index: 2;
}

.footerFlower.butterfly {
  top: -657px;
}

.footerFlowerfront {
  position: absolute;
  width: 100%;
  transform: translateY(50px);
  top: -206px;
  left: 0;
  z-index: 3;
  /* opacity: 0.5; */
}

.footerFlowerfront img {
  width: 100%;
}

.footerFlower img {
  width: 100%;
}

.footerContentWrapper {
  display: flex;
  justify-content: space-between;
  filter: blur(8px);
  opacity: 0.5;
  transition: 0.5s;
}

.footerArea .container {
  max-width: 100%;
}

.footerContents h4 {
  font-family: var(--spectral);
  font-weight: 600;
  font-size: 24px;
  line-height: 46px;
  letter-spacing: -0.64px;
  color: var(--white);
  margin-bottom: 24px;
}
.footerContents h4 img {
  display: none;
}

.footerNav li a {
  font-family: var(--montserrat);
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: -0.48px;
  /* padding-bottom: 30px; */
  text-align: center;
  color: var(--white);
  transform: translateY(0px) scale(1.2);
  display: inline-block;
  transition: 0.5s;
}

.footerNav li {
  transition: 0.5s;
}

.footerNav li:nth-child(1) {
  transform: translateY(30px);
}

.footerNav li:nth-child(2) {
  transform: translateY(60px);
}

.footerNav li:nth-child(3) {
  transform: translateY(90px);
}

.footerNav li:nth-child(4) {
  transform: translateY(120px);
}

.footerNav li a:hover {
  color: var(--black);
  transition: 0.5s;
}

.socialNav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--white);
  transform: translateY(80px) scale(1.2);
  transition: 0.5s;
}

.socialNav li a {
  color: var(--white);
  font-size: 40px;
  transition: 0.5s;
}

.socialNav li a:hover {
  color: var(--black);
  transition: 0.5s;
}

.downloadCatalogs {
  max-width: 536px;
  transform: translateX(50px);
  transition: 0.5s;
}

.downloadCatalogs h4 {
  font-weight: 600;
  font-size: 32px;
  line-height: 34.5px;
  letter-spacing: -0.48px;
}

.downloadCatalogs p {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 19px;
  line-height: 40px;
  letter-spacing: -0.48px;
  color: var(--white);
  transition: 0.5s;
  transform: translateY(80px);
}

.downloadCatalogs p span {
  transform: translateY(30px);
  transition: 0.5s;
  display: inline-block;
}

.downloadCatalogs p span:nth-child(2) {
  transform: translateY(60px);
}

.downloadCatalogs p span:nth-child(3) {
  transform: translateY(90px);
}

.downloadCatalogs .BtnPrimary {
  margin: 24px 0px 0;
  background-color: var(--white) !important;
  border-color: var(--white) !important;
  padding: 15px 29px;
  border-radius: 0;
  corner-shape: scoop;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.downloadCatalogs .BtnPrimary:hover {
  background-color: #323232 !important;
  transition: 0.5s;
  border-color: #323232 !important;
}

.downloadCatalogs .BtnPrimary span {
  color: var(--black) !important;
  transition: 0.5s;
}

.downloadCatalogs .BtnPrimary span img {
  width: 18px;
  height: 18px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  top: -2px;
}

.downloadCatalogs .BtnPrimary:hover span {
  color: var(--white) !important;
  transition: 0.5s;
}

.downloadCatalogs .BtnPrimary:hover span img {
  filter: invert(1);
}

.downloadCatalogs .BtnPrimary .svgRight,
.downloadCatalogs .BtnPrimary .svgLeft {
  width: 20px;
}

.downloadCatalogs .BtnPrimary svg path {
  fill: var(--white);
  transition: 0.5s;
}

.downloadCatalogs .BtnPrimary:hover svg path {
  fill: #323232;
  transition: 0.5s;
}

.downloadCatalogs .BtnPrimary .svgLeft {
  left: -15px;
}

.downloadCatalogs .BtnPrimary .svgRight {
  right: -15px;
}

.copyRightText {
  margin-top: 35px;
  transform: translateY(200px);
  transition: 0.5s;
}

.copyRightText p {
  text-align: center;
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 20px;
  line-height: 42px;
  letter-spacing: -0.64px;
  text-align: center;
  color: var(--white);
}

.footerLogomark {
  text-align: center;
  margin: 36px 0 76px;
}

.footerLogomark img {
  max-width: 190px;
  /* height: 91px; */
}

.ehs_hd img {
  max-width: 50px;
}

.flogoImg {
  position: relative;
  top: 30px;
  transition: 0.5s;
}

.flogoImg img {
  transform: scale(1.5);
  opacity: 0.2;
  transition: 0.5s;
  display: table;
  margin: 0 auto;
  filter: blur(8px);
}

/* footer start */

/* ************about page start*************** */
.theLegend {
  padding: 40vh 0;
  position: relative;
}

.videoThumb {
  overflow: hidden;
  position: absolute;
  filter: blur(0);
  top: 60%;
  width: 70%;
  height: 100vh;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.3);
  corner-shape: scoop;
  border-radius: 45px;
}

.videoThumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* .videoThumb span {
  width: 70px;
  height: 70px;
  display: block;
  position: absolute;
  background: var(--white);
  border-radius: 50%;
}

.videoThumb span.top {
  top: -35px;
}

.videoThumb span:nth-child(1) {
  left: -35px;
}

.videoThumb span:nth-child(2) {
  right: -35px;
}

.videoThumb span:nth-child(3) {
  bottom: -35px;
  left: -35px;
}

.videoThumb span:nth-child(4) {
  bottom: -35px;
  right: -35px;
} */

.videoThumb.active span {
  opacity: 0;
  transition: 0.5s;
}

.theLegend h1 {
  font-family: var(--spectral);
  font-weight: 300;
  font-size: 96px;
  line-height: 110.4px;
  letter-spacing: -4.8px;
  text-align: center;
  color: #4c3327;
  transform: translateY(-200px);
  transition: 0.5s;
  opacity: 1;
}

.theLegend h1.active {
  transform: translateY(0px);
  transition: 0.5s;
}

.treepartLeft,
.treepartright {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  /* transition: 0.5s; */
}

.treepartLeft {
  left: -16px;
}

.treepartright {
  right: -16px;
}

/* .treepartLeft img,
.treepartright img {
  transform: translateX(0);
} */

.theLegend .BtnPrimary.learnMore.videocontrolBtn {
  bottom: 100px;
  justify-content: center;
  padding: 15px 21px;
  width: 110px;
  /* background: #fff !important; */
  margin: 0 auto;
  gap: 15px;
  opacity: 0;
}

.theLegend.move .videoThumb.active span,
.theLegend.move .videoThumb.active .BtnPrimary.learnMore.videocontrolBtn {
  opacity: 1;
}

.theLegend .videoThumb .videocontrolBtn span {
  position: inherit;
  background: transparent;
  width: auto;
  height: auto;
}

.theLegend .videoThumb span:nth-child(1) {
  left: 0;
  /* opacity: 1; */
}

.theLegend .videoThumb span:nth-child(3) {
  bottom: -4px;
  left: 0;
}

.theLegend .videoThumb span:nth-child(2) {
  right: 0;
  /* opacity: 1; */
}

.theLegend .videoThumb.active {
  width: 100%;
  top: 50%;
  border-radius: 0;
}

/* .move .treepartLeft {
  left: -100%;
  transition: left 2s ease;
}

.move .treepartright {
  right: -100%;
  transition: right 2s ease;
} */

/* .perfumeGirl,
.perfume_manufracturerContent {
  transform: translateY(-200px);
  transition: all 0.5s
} */

.perfume_manufracturer .container {
  max-width: 1560px;
}

.perfume_manufracturer {
  padding-left: 160px;
  position: relative;
  z-index: 9;
  /* overflow: hidden; */
}

/* .perfume_manufracturer::before {
  position: absolute;
  content: '';
  background: url(../images/back-grass1.png) repeat center/cover;
  bottom: 0;
  height: 70px
} */

.manufacturing_cont {
  padding-top: 100px;
  min-height: 100vh;
  position: relative;
}

.perfume_manufracturer:after {
  position: absolute;
  content: "";
  background: url(../images/back-grass.png) repeat center/cover;
  width: 100%;
  height: 478px;
  bottom: -160px;
  left: 0;
  z-index: -1;
}

.front_grass {
  position: absolute;
  bottom: -120px;
  left: 0;
  width: 100%;
  z-index: 3;
  will-change: transform;
  display: none;
}

.perfumeGirl {
  position: relative;
  top: 140px;
}

.perfume_manufracturerContent {
  position: relative;
  top: 140px;
}

/* .perfume_manufracturer:before {
  position: absolute;
  content: '';
  background: url(../images/front-grass.png) repeat center/cover;
  width: 935px;
  height: 315px;
  bottom: 0;
  left: 0;
  z-index: -1;
} */

.perfume_manufracturer .sectionTitle h2 {
  font-weight: 300;
  font-size: 86px;
  line-height: 98.9px;
  letter-spacing: -4.3px;
  color: #4c3327;
}

.perfume_manufracturer .sectionTitle h2 span {
  font-style: italic;
  display: inline;
}

.perfume_manufracturerContent p {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 20px;
  line-height: 40px;
  letter-spacing: 0;
  color: #4c3327;
  max-width: 673px;
}

.worldwide {
  position: relative;
  z-index: 1;
}

.world_ovrlay {
  position: relative;
}

.overlay {
  background: url(../images/overlay.png) no-repeat center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  opacity: 1;
}

.worldwide .world_ovrlay img {
  transform: translateY(0);
}

.worldwide.ovrlyactive .world_ovrlay img {
  transform: translateY(-50px);
  transition: 1s;
}

/* .worldwide .earth {
  position: absolute;
  top: 10% !important;
  z-index: 9;
  left: 25% !important;
  transform: translate(-50%, -50%) scale(1) !important;
  width: 100% !important;
  max-width: 100% !important;
} */

.worldwide .earth {
  position: absolute;
  top: 50% !important;
  z-index: 9;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.2) !important;
  width: 100% !important;
  max-width: 100% !important;
}

/*****************************/
/* .worldwide .container {
  height: 100%;
}

.worldwide .earth {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-container,
.rotating-globe-test {
  width: 420px;
  height: 420px;
} */

/* .worldwide {
  position: relative;
}

.earth {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh; 
}

.globe-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;   
  height: 400px;
  margin: 0 auto;
}

.rotating-globe-test {
  width: 100%;
  height: 100%;
} */

.worldwide .container {
  width: 100%;
}

.earth {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.globe-container {
  width: 420px;
  height: 420px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rotating-globe-test {
  width: 100%;
  height: 100%;
}

/* Canvas fix (VERY IMPORTANT) */
.rotating-globe-test canvas {
  width: 100% !important;
  height: 100% !important;
  display: block;
}

/*****************************/

div#earthContainer {
  opacity: 1 !important;
}

.worldwide .earth {
  transition: all 0.5s;
}

.worldwide.ovrlyactive .earth {
  transform: translate(-50%, -150%) scale(3.5) !important;
  -webkit-transform: translate(-50%, -150%) scale(3.5) !important;
  -moz-transform: translate(-50%, -150%) scale(3.5) !important;
  -ms-transform: translate(-50%, -150%) scale(3.5) !important;
  -o-transform: translate(-50%, -150%) scale(3.5) !important;
}

.earth {
  position: relative;
}

.pin span:nth-child(1) {
  position: absolute;
  bottom: 121px;
  left: 51px;
}

.pin span:nth-child(2) {
  position: absolute;
  bottom: 176px;
  left: 73px;
}

.pin span:nth-child(3) {
  position: absolute;
  bottom: 106px;
  left: 134px;
}

.pin span:nth-child(4) {
  position: absolute;
  bottom: 155px;
  left: 177px;
}

.pin span:nth-child(5) {
  position: absolute;
  bottom: 114px;
  left: 214px;
}

.worldwide:after {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0) 0%,
    #ffffff 95.53%
  );
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.worldwide.ovrlyactive:after {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}

.country {
  position: relative;
  z-index: 2;
  /* padding-top: 80px; */
  top: -200px;
}

.country_hd {
  text-align: center;
  color: #fff;
  transform: translateY(420px);
  filter: blur(0);
  transition: 1s ease-in-out;
  margin-bottom: 50px;
  opacity: 0;
  position: absolute;
  z-index: 9;
  left: 0;
  /* transform: translateX(-50%); */
  top: 100px;
  right: 0;
}

.country_hd.active {
  transform: translateY(0);
  opacity: 1;
}

.country_hd.active h2 {
  line-height: 55px;
}

/* {
    transform: scale(0.7) translateY(-130px);
  filter: blur(5px);
  transition: 0.5s;
} */

.country.timelineactive.timelineprogress .country_hd {
  transform: translateY(330px);
  filter: blur(10px);
  opacity: 0;
  transition: 1s ease-in-out;
}

.country_hd h2 {
  font-family: var(--spectral);
  font-style: normal;
  font-size: 32px;
  line-height: 110px;
  font-weight: 300;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.7);
}

.country_hd span {
  display: block;
  font-size: 64px;
  font-style: italic;
}

/* Country slider */

.countrySliderWrapper {
  /* transform: scale(0.7);
  transition: 1s; */
  padding: 0 0 100px;
}

.country .countrySliderWrapper {
  transition: 0.5s;
}

.country.timelineactive .countrySliderWrapper {
  transform: scale(1.2) !important;
  transition: 0.5s;
}

.country.timelineactive.timelineprogress .countrySliderWrapper {
  transform: scale(1) !important;
  transition: 0.5s;
}

.country .country_hd {
  transition: 0.5s;
}

.country.timelineactive .country_hd {
  transform: scale(0.7) translateY(-130px);
  filter: blur(5px);
  transition: 0.5s;
}

.countrySliderWrapper .swiper-slide .country_card {
  transform: scale(0);
  opacity: 0;
  transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.countrySliderWrapper .swiper-slide.swiper-slide-active .country_card {
  transform: scale(1);
  opacity: 1;
  transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1);
  filter: blur(0);
}

.countrySliderWrapper .swiper-slide .countryItem .timelineYear {
  position: absolute;
  left: 50%;
  transform: translateY(-50%);
  font-family: var(--spectral);
  font-weight: 600;
  font-size: 24px;
  line-height: 46px;
  letter-spacing: -0.64px;
  transition: 0.5s;
  z-index: 99;
}

.countrySliderWrapper
  .swiper-slide.swiper-slide-prev
  .countryItem
  .timelineYear {
  /* left: -100px; */
  top: 46.5%;
}

.countrySliderWrapper .swiper-slide.swiper-slide-prev .countryItem {
  left: -413px;
  top: 46.5%;
  position: relative;
}

.countrySliderWrapper
  .swiper-slide.swiper-slide-next
  .countryItem
  .timelineYear {
  right: -100px;
  left: inherit;
  top: 46.5%;
}

.countrySlider {
  z-index: 9;
  position: relative;
}

.countrySlider:before {
  width: 100%;
  height: 3px;
  content: "";
  position: absolute;
  top: 57.5%;
  transform: translateY(-50%);
  background: linear-gradient(90deg, #d9d9d9 0%, #bc2130 50%, #bc2130 100%);
  z-index: -1;
}

.countrySliderWrapper .swiper-slide .countryItem {
  transform: translateY(80px);
  transition: 1s;
  position: relative;
  overflow: hidden;
  corner-shape: scoop;
  border-radius: 15px;
}

.countrySliderWrapper .swiper-slide.swiper-slide-prev .countryItem:before {
  position: absolute;
  content: "";
  background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  z-index: 999;
  height: 100%;
  left: 200px;
  top: -65px;
}

.countrySliderWrapper .swiper-slide.swiper-slide-next .countryItem:after {
  position: absolute;
  content: "";
  background: linear-gradient(to left, #fff 0%, rgba(255, 255, 255, 0) 100%);
  width: 100%;
  z-index: 999;
  height: 100%;
  right: -200px;
  top: -65px;
}

.countrySliderWrapper .swiper-slide h5 {
  font-family: var(--spectral);
  font-weight: 600;
  font-size: 24px;
  line-height: 46px;
  letter-spacing: -0.64px;
  transition: 0.5s;
  margin-bottom: 15px;
}

.countrySliderWrapper
  .swiper-slide.swiper-slide-active
  .countryItem
  .timelineYear {
  top: 57.5%;
  transform: translate(-50%, -50%);
  background-color: #b71c1c;
}

.countrySliderWrapper .swiper-slide.swiper-slide-active .countryItem {
  transform: translateY(0px);
  transition: 0.5s;
}

.countrySliderWrapper .swiper-button-next::after,
.countrySliderWrapper .swiper-button-prev::after {
  display: none;
}

.countrySliderWrapper .swiper-button-next,
.countrySliderWrapper .swiper-button-prev {
  height: 58px;
  width: 58px;
  right: inherit;
  left: 80%;
  transition: 0.3s;
  top: 56.2%;
  z-index: 10;
  corner-shape: scoop;
  border-radius: 10px;
}

.countrySliderWrapper .swiper-button-prev .prev_icon {
  height: 58px;
  width: 58px;
  right: inherit;
  left: 92%;
  transition: 0.3s;
  top: 54.6%;
  z-index: 10;
  background: #fff;
  border: 2px solid #c7b376;
  corner-shape: scoop;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countrySliderWrapper .swiper-button-next .next_icon {
  height: 58px;
  width: 58px;
  right: inherit;
  left: 92%;
  transition: 0.3s;
  top: 54.6%;
  z-index: 10;
  background: #fff;
  border: 2px solid #c7b376;
  corner-shape: scoop;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.countrySliderWrapper .swiper-button-prev {
  left: inherit;
  right: 80% !important;
}

.countrySliderWrapper .swiper-button-prev:hover {
  padding-left: 5px;
  width: 80px;
}

.countrySliderWrapper .swiper-button-next:hover {
  padding-left: 5px;
  width: 80px;
}

.countrySliderWrapper .swiper-button-prev:hover .prev_icon,
.countrySliderWrapper .swiper-button-next:hover .next_icon {
  background-color: #c7b376;
  width: 80px;
}

.countrySliderWrapper .swiper-button-prev:hover .prev_icon {
  padding-right: 35px;
}

.countrySliderWrapper .swiper-button-next:hover .next_icon {
  padding-left: 35px;
}

/* .countrySliderWrapper.swiper-button-next .arrowshapeRight,
.countrySliderWrapper .swiper-button-prev .arrowshapeRight {
  position: absolute;
  height: 100%;
  right: -10px;
  width: auto;
} */

.countrySliderWrapper .swiper-button-next:hover .arrowIcon,
.countrySliderWrapper .swiper-button-prev:hover .arrowIcon {
  filter: brightness(0) invert(1);
  transform: scale(1.2);
}

.slideframe img {
  max-width: 24px;
}

/* .countrySliderWrapper {
  transform: scale(2);
  transition: none;
  will-change: transform, filter, margin-top;
} */

.gray_bg {
  background: #eaeaea;
  padding: 35px 28px;
  text-align: left;
  height: 100%;
}

.guardian_card img {
  height: 100%;
}

.gray_bg p {
  font-family: var(--montserrat);
  font-weight: normal;
  font-size: 18px;
  line-height: 36px;
  letter-spacing: -0.48px;
}

.countrySliderWrapper .countryItem img {
  border-bottom: 3px solid transparent;
  border-image-slice: 1;
}

.timelineYear {
  width: 190px;
  height: 60px;
  background-color: #d9d9d9;
  clip-path: polygon(
    20px 0%,
    calc(100% - 20px) 0%,
    100% 50%,
    calc(100% - 20px) 100%,
    20px 100%,
    0% 50%
  );
  display: flex;
  justify-content: center;
  color: #fff;
  align-items: center;
}

/* Country slider */

.vision_mission {
  position: relative;
  z-index: 1;
  height: 80vh;
  margin-bottom: 150px;
}

.vision_mission:after {
  position: absolute;
  content: "";
  background: url(../images/vision-bg.jpg) no-repeat center/cover;
  width: calc(100% - 430px);
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.vision_mission .container-fluid {
  padding: 0 60px 0 0;
  /* display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh; */
}

.mission_cont {
  padding: 90px 0;
}

.vision_cont {
  padding: 120px 0;
}

.vision_bg {
  background: #c8b477;
  padding: 0 9.4% 0;
  max-width: 838px;
  corner-shape: scoop;
  border-radius: 15px;
  margin-left: auto;
  text-align: center;
  color: #fff;
  height: 80vh;
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; */
  position: relative;
  top: -75px;
}

.vision_bg:after {
  content: "";
  position: absolute;
  width: 90%;
  height: 1px;
  left: 50%;
  transform: translateX(-50%);
  top: 53%;
  background: repeating-linear-gradient(
    to right,
    #e7e0c8 0px,
    #e7e0c8 15px,
    transparent 15px,
    transparent 30px
  );
}

.vision_bg h2 {
  font-family: var(--spectral);
  font-weight: 300;
  font-size: 86px;
  line-height: 114.99999999999999%;
  letter-spacing: -0.05em;
  padding-bottom: 25px;
}

.vision_bg p {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.48px;
  text-align: center;
}

.vision_cont {
  padding: 40px 0;
}

.vision_mission .vision_bg {
  /* opacity: 0; */
  transform: translate(-120px, 100px);
}

/* .guardian {
  padding: 200px 0
} */

.guardian_hd {
  text-align: center;
  margin-bottom: 50px;
  transform: translateY(0px);
  filter: blur(0);
  transition: 0.5s ease-in-out;
  color: #4c3327;
}

.guardian_hd.active {
  transform: translateY(330px);
  filter: blur(10px);
  opacity: 0;
}

.guardian h2 {
  font-family: var(--spectral);
  font-weight: 300;
  font-size: 96px;
  line-height: 90%;
  letter-spacing: -0.05em;
  padding-bottom: 30px;
}

.guardian h2 span {
  font-style: italic;
}

.guardian_hd p {
  font-family: var(--montserrat);
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: -0.48px;
  padding: 0 20%;
}

.guardian_card {
  display: flex;
  height: 100%;
}

.guardianItem {
  corner-shape: scoop;
  border-radius: 15px;
  overflow: hidden;
}

.gray_bg h3 {
  font-family: var(--spectral);
  font-weight: 300;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: -0.05em;
  color: #4c3327;
  margin-bottom: 15px;
}

.book-section .gray_bg span {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 24px;
  line-height: 100%;
  display: block;
  margin-bottom: 25px;
  color: #4c3327;
}

.guardian {
  position: relative;
  z-index: 1;
}

.guardian:after {
  position: absolute;
  content: "";
  background: url(../images/line.png) no-repeat center;
  height: 58px;
  width: 100%;
  top: 75%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.guardianSliderWrapper .swiper-button-next::after,
.guardianSliderWrapper .swiper-button-prev::after {
  display: none;
}

.guardianSliderWrapper .swiper-button-next,
.guardianSliderWrapper .swiper-button-prev {
  height: 58px;
  width: 58px;
  right: inherit;
  transition: 0.3s;
  bottom: 40px;
  z-index: 10;
  corner-shape: scoop;
  border-radius: 10px;
  top: inherit;
}

.guardianSliderWrapper .swiper-button-prev {
  left: inherit;
  right: 160px;
}

.guardianSliderWrapper .swiper-button-next {
  left: 88%;
}

.book-section .prev_icon {
  height: 58px;
  width: 58px;
  right: inherit;
  left: 92%;
  transition: 0.3s;
  top: 54.6%;
  z-index: 10;
  border: 2px solid #c7b376;
  corner-shape: scoop;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.book-section .next_icon {
  height: 58px;
  width: 58px;
  right: inherit;
  left: 92%;
  transition: 0.3s;
  top: 54.6%;
  z-index: 10;
  border: 2px solid #c7b376;
  corner-shape: scoop;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.book-section .prev_icon:hover {
  padding-left: 5px;
  width: 80px;
}

.book-section .next_icon:hover {
  padding-left: 5px;
  width: 80px;
}

.book-section .prev_icon:hover,
.book-section .next_icon:hover {
  background-color: #c7b376;
  width: 80px;
}

.book-section .prev_icon:hover {
  padding-right: 35px;
}

.book-section .next_icon:hover {
  padding-left: 35px;
}

.book-section .gray_bg {
  padding: 35px 50px;
}

.book-section .prev_icon:hover .arrowIcon,
.book-section .next_icon:hover .arrowIcon {
  filter: brightness(0) invert(1);
  transform: scale(1.2);
}

/* .guardianSliderWrapper {
  transform: scale(1);
  transition: 0.5s;
} */

.guardian {
  filter: blur(0);
  transform: translateY(40px);
  transition: all 0.5s ease-in-out;
}

.video_wraper {
  position: relative;
  z-index: 1;
}

:not(:root):fullscreen::backdrop {
  background: rgba(0, 0, 0, 0.6);
}

.abt_video_wraper {
  height: 100vh;
  position: relative;
  z-index: 1;
}

.abt_video_wraper video {
  object-fit: cover;
}

section.reserchDevelopment.secnew.about_commit_video {
  margin-top: -210px;
}

.abt_sec_video {
  position: relative;
  z-index: 1;
}

.about_commit_video .container {
  max-width: 1600px;
}

.about_commit_video {
  position: relative;
  z-index: 2;
  padding-top: 90vh;
  padding-bottom: 0;
}

.abt_sec_video .CommitmentvideoWrapper {
  position: absolute;
}

.your_vision {
  background: var(--themePrimary);
  padding: 0 0 80px;
  position: relative;
  z-index: 1;
  margin-bottom: 500px;
}

.your_vision:after {
  background: var(--themePrimary);
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: -450px;
  z-index: -1;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}

.your_vision.active:after {
  opacity: 1;
  transition: all 0.2s ease-in-out;
}

.your_vision h2 {
  color: #fff;
  font-family: var(--spectral);
  font-weight: 400;
  font-size: 64px;
  line-height: 110.00000000000001%;
  letter-spacing: -0.05em;
  padding-bottom: 50px;
}

.your_vision video {
  corner-shape: scoop;
  border-radius: 15px;
}

.about_commit_video .videoControl {
  margin-bottom: 100px;
}

.your_vision .container {
  position: relative;
}

.visionbtn.videocontrolBtn {
  position: absolute;
  bottom: 40px;
  left: 50px;
  background: #651018;
  color: #d1b7ba;
  padding: 10px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  corner-shape: scoop;
  border-radius: 10px;
}

.visionbtn.videocontrolBtn #restart {
  font-size: 20px;
  display: flex;
  gap: 5px;
}

.visionbtn.videocontrolBtn .refresh {
  font-size: 0;
  transition: all 0.3s ease;
}

.visionbtn.videocontrolBtn:hover .refresh {
  font-size: 18px;
  font-family: var(--spectral);
}

.book-section {
  height: 100vh;
  margin-bottom: 250px;
}

.arrow_btn {
  max-width: 1170px;
  position: absolute;
  right: 25%;
  bottom: 0;
  display: flex;
  gap: 15px;
}

.book-section > .container {
  width: 100%;
  position: relative;
}

.container > .right {
  position: absolute;
  height: 100%;
  width: 50%;
  transition: 0.7s ease-in-out;
  transform-style: preserve-3d;
}

.book-section > .container > .right {
  right: 0;
  transform-origin: left;
  border-radius: 10px 0 0 10px;
}

.right > figure.front,
.right > figure.back {
  margin: 0;
  height: 650px;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-repeat: no-repeat;
  backface-visibility: hidden;
  overflow: hidden;
}

.right > figure.front {
  background-position: right;
  border-radius: 0 10px 10px 0;
  corner-shape: scoop;
}

.right > figure.back {
  background-position: left;
  border-radius: 10px 0 0 10px;
  transform: rotateY(180deg);
  corner-shape: scoop;
}

.flip {
  transform: rotateY(-180deg);
}

.vision_step {
  background: #7e141e;
  padding: 40px 80px 3px;
  corner-shape: scoop;
  border-radius: 15px;
  max-width: 1330px;
  margin: auto;
}

.visionItem h4 {
  font-family: var(--montserrat);
  font-weight: 600;
  font-size: 27.7px;
  line-height: 180%;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  text-align: left;
  border-bottom: 4.16px solid #c55657;
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-left: 100px;
}

.vision_details {
  color: #fff;
  text-align: left;
  padding-left: 100px;
}

.visionItem h3 {
  font-family: var(--spectral);
  font-weight: 400;
  font-size: 66.48px;
  line-height: 110.00000000000001%;
  letter-spacing: -0.06em;
  text-align: left;
}

.vision_details p {
  max-width: 445px;
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 27.7px;
  line-height: 180%;
}

.vision_details .d-flex {
  gap: 150px;
}

.thumbstep {
  color: #fff;
  background: #651018;
  corner-shape: scoop;
  border-radius: 10px;
  display: table;
  width: auto;
  margin: 20px auto 40px;
  padding: 0 10px;
}

.thumbstep .swiper-slide-thumb-active {
  background: var(--themesecondary);
}

.thumbstep .swiper-slide {
  font-family: var(--spectral);
  font-weight: 600;
  font-size: 14px;
  line-height: 100%;
  width: auto !important;
  margin: 0 !important;
  text-transform: capitalize;
  padding: 21px 22px;
  cursor: pointer;
  transition:
    background-color 0.4s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    opacity 0.35s ease;
}

.thumbstep .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* ************about page end*************** */

/* ************know more modal**************** */
.knowmoremodal {
  width: 90%;
  /* min-height: 100vh; */
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 11;
  padding: 30px 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
}

.knowmoremodalInner {
  padding: 40px 44px 0;
  background: #3a2e28;
  corner-shape: scoop;
  border-radius: 15px;
  transform: translateY(80px);
  transition: 0.5s;
}

.showmodal .knowmoremodalInner {
  transform: translateY(0px);
  transition: 0.5s;
}

.knowmoremodal.showmodal {
  opacity: 1;
  visibility: visible;
  transition: 0.5s;
}

.knowmorebg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #000000ad;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.knowmorebg.showbg {
  opacity: 1;
  visibility: visible;
}

.knowmoremodalInner h2 {
  font-family: var(--spectral);
  font-weight: 400;
  font-size: 64px;
  line-height: 60.8px;
  letter-spacing: -3.2px;
  color: #c7b376;
  position: absolute;
  top: 70px;
  left: 44px;
  background: #3a2e28;
  padding-bottom: 30px;
  z-index: 6;
}

.videoslider-next,
.videoslider-prev {
  width: 50px;
  height: 45px;
  position: static !important;
  display: grid;
  place-content: center;
  top: inherit !important;
  left: inherit !important;
  right: inherit !important;
  transform: none !important;
  margin: 0 !important;
}

.swiper-button-disabled.videoslider-next,
.swiper-button-disabled.videoslider-prev {
  opacity: 0.5;
}

.swiper-button-disabled.videoslider-next img,
.swiper-button-disabled.videoslider-prev img {
  filter: brightness(0) invert(1);
}

.arrowWrapper {
  display: flex;
  flex-direction: column-reverse;
  position: absolute;
  right: 0;
  bottom: 20%;
  transition: 0.5s;
  background: #0000001a;
  z-index: 5;
}

.arrowWrapper img {
  transform: rotate(180deg);
}

.upwards .arrowWrapper {
  bottom: 65%;
  transition: 0.5s;
  opacity: 0;
}

.videoslider-next::after,
.videoslider-prev::after {
  display: none;
}

.thumbImgwrapper {
  color: #fff;
  text-align: left;
}

.thumbImgwrapper h3 {
  font-family: var(--spectral);
  font-weight: 400;
  font-size: 40px;
  line-height: 38px;
  letter-spacing: -2px;
  color: #c7b376;
  margin-bottom: 22px;
}

.thumbImgwrapper p {
  font-weight: 400;
  font-size: 24px;
  line-height: 56px;
  letter-spacing: 0%;
  color: var(--white);
  font-family: var(--montserrat);
}

.videosliderWrapperInner {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-right: 10px;
  height: 90vh;
}

.videosliderWrapperInner::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  backdrop-filter: blur(0px);
  transition: 0.5s;
}

.upwards .videosliderWrapperInner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  backdrop-filter: blur(8px);
  transition: 0.5s;
}

.videosliderOuter {
  width: 40%;
  height: 90%;
  margin-top: auto;
}

.videothumbouter {
  height: 100%;
  width: 60%;
  padding-right: 70px;
  padding-top: 170px;
}

.videosliderOuter .swiper-slide {
  display: flex;
}

figure.videonain {
  display: flex;
  align-items: flex-end;
}

figure.videonain img {
  margin: inherit;
  max-width: 440px;
}

.videothumbouter .swiper-slide {
  opacity: 0.2;
  transition: 0.5s;
}

.videothumbouter .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
  transition: 0.5s;
}

.lowerPortion {
  position: absolute;
  right: 44px;
  bottom: 40px;
  width: 60%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 6;
  background: #3a2e28;
}

.noteTitle {
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 24px;
  line-height: 45px;
  letter-spacing: 0%;
  text-decoration-style: solid;
  text-decoration-thickness: 0%;
  text-decoration-skip-ink: auto;
  color: #c7b3768a;
  padding-left: 30px;
  position: relative;
  border-bottom: 1px solid #c7b3768a;
  padding-bottom: 0px;
  display: inline-block;
  position: relative;
  z-index: 2;
  cursor: pointer;
}

.knowmoremodalInner .closebtn {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 6;
}

.noteTitle::after,
.noteTitle::before {
  width: 14px;
  height: 2px;
  background: #c7b3768a;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  transition: 0.5s;
}

.noteTitle::before {
  transform: translateY(-50%) rotate(90deg);
}

.noteWrapper {
  background: transparent;
  padding: 30px 40px;
  transition: 0.5s;
  max-width: calc(100% - 260px);
}

.upwards .noteWrapper {
  background: #0000001a;
  transition: 0.5s;
}

.upwards .noteTitle::after {
  transform: translateY(-50%) rotate(45deg);
  transition: 0.5s;
}

.upwards .noteTitle::before {
  transform: translateY(-50%) rotate(135deg);
  transition: 0.5s;
}

.noteBody ul li {
  color: #fff;
  font-family: var(--montserrat);
  font-weight: 400;
  font-size: 24px;
  line-height: 56px;
  letter-spacing: 0;
  padding-left: 30px;
  position: relative;
}

.noteBody ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--white);
  border-radius: 50%;
  position: absolute;
  top: 23px;
  left: 0;
}

.noteBody {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
  padding-top: 0;
}

.upwards .noteBody {
  max-height: 550px;
  padding-top: 30px;
}

/* ************know more modal**************** */

/* ************ques answer start************** */
.fixed_btn {
  position: fixed;
  right: 24px;
  bottom: 10%;
  z-index: 5;
}

.fixed_btn a {
  background-color: #0000004d;
  padding: 15px 17px;
  corner-shape: scoop;
  border-radius: 8px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 0px;
  transition: 0.8s all ease-in-out;
}

.fixed_btn a span {
  transition: 0.8s all ease-in-out;
  font-family: var(--montserrat);
  font-size: 14px;
  display: inline-block;
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.fixed_btn a:hover {
  transition: 0.8s all ease-in-out;
  gap: 10px;
}

.fixed_btn a:hover span {
  transition: 0.8s all ease-in-out;
  max-width: 100px;
}

.frm_mdl .modal-content-new {
  background-color: #e8e2d2;
  corner-shape: scoop;
  border-radius: 35px;
  padding: 52px 48px;
  background-color: #e8e2d2;
  width: 100%;
  max-width: 1029px;
  height: calc(100vh - 150px);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.frm_mdl .modal-content-new .modal-body-new h2 {
  font-size: 64px;
  font-weight: 300;
  color: #4c3327;
  font-family: var(--spectral);
  letter-spacing: -3.2px;
  position: sticky;
  top: 0;
}

.frm_mdl .modal-content-new .modal-body-new form h6 {
  color: #4c3327;
  font-size: 12px;
  font-weight: 600;
  font-family: var(--montserrat);
  text-transform: uppercase;
  letter-spacing: 3.6px;
  line-height: 40px;
  padding-top: 0px;
  padding-left: 25px;
}

@keyframes fadeIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-new {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999;
  justify-content: center;
  align-items: center;
  transition: 0.4s all ease-in-out;
}

.frm_mdl .modal-body-new {
  height: 100%;
  overflow-y: auto;
  padding: 0 20px 0 0;
  overflow-x: hidden;
}

.frm_mdl .modal-body-new::-webkit-scrollbar {
  width: 8px;
}

.frm_mdl .modal-body-new::-webkit-scrollbar-thumb {
  background: #b8b8b8;
  border-radius: 6px;
}

.closeModal {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
}

body.modal-open {
  scroll-behavior: auto !important;
  /* overflow: hidden !important;
    height: auto !important; */
}

.modal-body-new .collaboratebtnWrapper {
  margin-top: 0;
  margin-left: 0;
}

.float-label {
  position: relative;
  margin-bottom: 0px;
  /* -webkit-mask: radial-gradient(
      circle 15px at 0 0,
      transparent 0 15px,
      black 15px
    ),
    radial-gradient(circle 15px at 100% 0, transparent 0 15px, black 15px);
  -webkit-mask-composite: source-in;
  mask: radial-gradient(circle 10px at 0 0, transparent 0 10px, black 10px),
    radial-gradient(circle 10px at 100% 0, transparent 0 10px, black 10px);
  mask-composite: intersect; */
}

.float-label select {
  height: 56px;
  padding: 8px 24px 5px;
  background-color: #00000033;
  color: #fff;
  font-size: 18px;
  font-family: var(--montserrat);
  border-radius: 0;
}

.float-label select {
  position: relative;
  top: 50%;
  color: rgba(255, 255, 255, 0.7);
  transition: 0.2s ease;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--montserrat);
  transition: 0.4s all ease-in-out;
  corner-shape: scoop;
  border-radius: 10px;
  box-shadow: none !important;
  border: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
}

.float-label select:focus {
  border: none;
}

.float-label input {
  height: 56px;
  padding: 15px 28px 5px;
  background-color: #00000033 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 20px;
  font-family: var(--spectral);
  border-radius: 0;
  box-shadow: inherit !important;
  border: none !important;
  font-weight: 300;
  corner-shape: scoop;
  border-radius: 10px;
}

.float-label label {
  position: absolute;
  left: 25px;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffffb2;
  pointer-events: none;
  transition: 0.2s ease;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--montserrat);
  transition: 0.4s all ease-in-out;
}

/* When input is focused or has value */
.float-label input:focus + label,
.float-label input:not(:placeholder-shown) + label {
  top: 15px;
  font-size: 12px;
  opacity: 0.8;
}

.fixed_btn a.active {
  font-size: 14px;
}
.select-trigger {
  width: 100%;
  height: 52px;
  background: #bab5a8;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  color: #ffffffb2;
  font-size: 14px;
  font-weight: 300;
  font-family: var(--montserrat);
  text-transform: capitalize;
  transition: 0.4s ease-in-out;
  corner-shape: scoop;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.select-trigger .arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}
.custom-select.active .arrow {
  transform: rotate(-135deg);
}

.select-options {
  position: absolute;
  width: 100%;
  top: calc(100% + 6px);
  background: #fff;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
  z-index: 10;
  mask:
    radial-gradient(circle 10px at 0 0, transparent 0 10px, black 10px),
    radial-gradient(circle 10px at 100% 0, transparent 0 10px, black 10px),
    radial-gradient(circle 10px at 0 100%, transparent 0 10px, black 10px),
    radial-gradient(circle 10px at 100% 100%, transparent 0 10px, black 10px);
  mask-composite: intersect;
  height: 325px;
  overflow-y: scroll;
  overscroll-behavior: contain;
}

/* width */
.select-options::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.select-options::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.select-options::-webkit-scrollbar-thumb {
  background: #888;
}

.custom-select.active .select-options {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.select-options li {
  padding: 12px 16px 12px 27px;
  cursor: pointer;
  font-size: 14px;
  font-family: var(--montserrat);
  text-transform: capitalize;
  transition: 0.4s ease-in-out;
  color: #4c3327;
}

.select-options li img {
  margin-right: 10px;
}

span.selected-value {
  padding-left: 10px;
}

.custom-select .search {
  position: absolute;
  left: 25px;
  opacity: 0;
  width: 100%;
  display: flex;
  gap: 10px;
}
.custom-select.active span.search input {
  background-color: transparent !important;
  font-size: 14px;
  text-transform: capitalize;
  padding: 0;
  font-family: var(--montserrat);
}
.custom-select.active span.search {
  opacity: 1;
}

.custom-select.active .selected-value {
  opacity: 0;
}

.custom-select ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #fff;
}
.custom-select ::-moz-placeholder {
  /* Firefox 19+ */
  color: #fff;
}
.custom-select :-ms-input-placeholder {
  /* IE 10+ */
  color: #fff;
}
.custom-select :-moz-placeholder {
  /* Firefox 18- */
  color: #fff;
}

/************13-01-2026*************/

.footerContents span img {
  display: none;
}
.offeringsec .sectionTitle h6.mobblue {
  display: none;
}

#customModal {
  overscroll-behavior: contain;
}

.modal-body-new {
  overflow-y: auto;
  height: 100%;
  touch-action: pan-y;
  -webkit-overflow-scrolling: touch;
}

/* body.modal-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
} */

.modal-body-new {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.loaderframe-mob {
  display: none;
}

.perfume_manufracturerContent p {
  display: none;
}
.video-mobile {
  display: none;
}

/* STORES SLIDER FIX */

.innerWrapper_hlder {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 42px;
}

.stores-slider .second {
  flex: 0 0 100%;
  width: 100%;
}

.inner_nav_holder .second_hdr {
  display: flex;
  align-items: center;
  gap: 54px;
}

.inner_nav_holder .second_upper_hdr h5.active {
  padding-bottom: 24px;
}

.inner_nav_holder .second_upper_hdr h5 {
  text-transform: uppercase;
  padding-bottom: 24px;
  border-bottom: 1px solid #fff;
  position: relative;
}

.inner_nav_holder .second_upper_hdr h5:after {
  position: absolute;
  content: "";
  background-color: #4c3327;
  height: 1px;
  width: 100%;
  transform: scale(0);
  transition: 0.4s all ease-in-out;
  transform-origin: center;
  left: 0;
  bottom: 0;
}

.inner_nav_holder .second_upper_hdr h5.active:after {
  transform: scale(1);
}

.innerWrapper_hlder .navs_btm_inner a {
  display: block;
}
.innerWrapper_hlder .second_inner_new {
  gap: 0;
}

#legendfullscreen {
  display: none;
}

.mobile_video,
.guardian_mobile_slider,
.mobile_leaf {
  display: none;
}

.guardianSliderWrapper .swiper-button-next,
.guardianSliderWrapper .swiper-button-prev {
  border-top: 2px solid #c7b376;
  border-bottom: 2px solid #c7b376;
  transition: 0.3s;
}

.storeThumbs {
  margin-bottom: 20px;
}

.storeThumbs .swiper-slide {
  cursor: pointer;
  padding: 10px;
  text-align: center;
}

.storeThumbs .swiper-slide-thumb-active {
  color: #fff;
  background-color: #000;
}

.mobile_address_tab,
.mobile_btn {
  display: none;
}

.menunav ul li a.for-mmenu {
  display: none;
}

.error-text {
  position: absolute;
  z-index: 9999;
  bottom: 8px;
  right: 18px;
  color: red;
  font-family: var(--spectral);
}

.offer_menu ul li:first-child {
  display: none;
}

.menuWrapper ul li.current_page_item:before,
.menuWrapper ul li.current_page_item:after {
  opacity: 1;
}
