@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap");
@import url(all.min.css); /*RADHIKA */
@import url(slick.css); /*RADHIKA */
@import url(rome.css); /*RADHIKA */
@import url(chosen.css); /*RADHIKA */

:root {
  --default-font: "Lato", sans-serif;
  --heading-font: "PT Serif", serif;
  --title-font: "Cormorant", serif;
  --cursive-font: "Qwitcher Grypen", cursive;
  --background-color: #ffffff;
  --default-color: #3e4756;
  --heading-color: #333333;
  scroll-behavior: smooth;
  --nav-color: #ffffff;
  --nav-hover-color: #ffffff;
  --accent-color: #ffffff;
  --bold-text: 600;
  --extra-bold: 700;
  --button-color: #860853;
  --button-hover-color: #821541;
  --body-font-size: 18px;
  --body-font-line-height: 28px;
  --bs-gray: #959eae; /*RADHIKA */
  --secondary-color: #597498; /*RADHIKA */
  --transition: all 0.5s ease; /*Radhika */
  --bg-gray: #f6f6f6;
}
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-size: var(--body-font-size);
  line-height: var(--body-font-line-height);
}
section {
  overflow: hidden;
}
.hero {
  overflow: visible;
}
a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  /* color: color-mix(in srgb, var(--accent-color), transparent 25%); */
  text-decoration: none;
}
.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
}
.btn-default {
  background-color: var(--accent-color);
  color: var(--button-color);
  padding: 10px 30px;
  border-radius: 10px;
  font-weight: var(--extra-bold);
  font-size: 20px;
}
.gap37 {
  gap: 37px;
}
.btn-default:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
}
.header {
  color: var(--default-color);
  padding: 0 0 10px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 105px;
  margin-right: 8px;
  filter: brightness(0) invert(1);
}
.fixed-top {
  width: 100vw;
}
.scrolled .header {
  box-shadow: 0 0 30px 10px rgba(0, 0, 0, 0.1);
  background-color: rgba(89, 116, 152, 1);
  /* padding-top: 10px; */
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}
@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .navmenu {
    order: 3;
  }
}
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }
  .navmenu a::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: var(--button-color);
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.25s linear;
  }
  .navmenu a:hover::after,
  .navmenu a:focus::after,
  .menu-item .megamenu:hover ~ a::after {
    transform-origin: bottom left;
    transform: scaleX(1);
  }
  .menu-item:hover a::after,
  .menu-item .megamenu:hover ~ a::after {
    transform-origin: bottom left;
    transform: scaleX(1);
  }

  .navmenu a,
  .navmenu a:focus,
  .without-banner a {
    color: var(--nav-color);
    padding: 45px 15px;
    font-size: 16px;
    font-family: var(--default-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.6s;
  }
  .without-banner a {
    color: #333333;
  }
  .navmenu a i,
  .navmenu a:focus i,
  .without-banner a i,
  .without-banner a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a,
  .without-banner li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #d4d4d4;
    font-weight: normal;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--default-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  /* padding: 80px 0; */
  padding: 240px 0 80px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-hero {
  min-height: 440px;
}
.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 47px;
  font-weight: 700;
  max-width: 780px;
  margin: 0 auto;
}
.blog-hero h2 {
  max-width: 100%;
}
.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 30px auto 0;
  font-size: 22px;
  max-width: 650px;
}
.text-icon {
  position: relative;
  display: inline-block;
}
.text-icon img {
  position: absolute;
  max-width: 59px;
  max-height: 64px;
  width: 100%;
  height: 100%;
  left: 100%;
  top: -25px;
}
.supplier-search {
  background: rgb(0 0 0 / 45%);
  border-radius: 45px;
  padding: 15px 10px 15px 20px;
  max-height: 70px;
  color: rgba(255, 255, 255, 1);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 24px;
  margin-top: 80px;
  flex-wrap: wrap;
}
.supplier-search.rounded {
  padding: 15px 25px;
  max-height: 90px;
}
.supplier-search > .form-row {
  display: flex;
  /* flex-direction: column; */
  text-align: left;
  width: 45%;
  gap: 10px;
  color: rgb(255 255 255 / 65%);
  font-size: 18px;
  align-items: center;
}
.supplier-search.width45 > .form-row {
  width: 45%;
}
.supplier-search > .form-row::after {
  position: relative;
  content: "";
}
.supplier-search > .form-row select,
.supplier-search > .form-row input,
.supplier-search > .form-row .chosen-container-single .chosen-single,
.shop-search-box .chosen-container-single .chosen-single {
  background: transparent;
  border: 0px;
  color: rgb(255 255 255 / 65%);
  font-size: 18px;
}
.supplier-search > .form-row select option {
  background: #fff;
  color: #000;
}
.supplier-search > .form-row .chosen-container-single .chosen-single span,
.supplier-search > .form-row input::placeholder {
  color: rgb(255 255 255 / 65%);
  font-size: 18px;
}
.supplier-search > .form-row .chosen-container-single .chosen-single {
  padding-left: 0px;
  line-height: 27px;
  height: 27px;
}
.supplier-search > .form-row .chosen-container-single .chosen-single div:after {
  right: 0;
}
.supplier-search > .form-row .chosen-container .chosen-drop {
  border: 1px solid #0000007a;
  background-color: rgb(0 0 0 / 69%);
  top: 183%;
}
.supplier-search
  > .form-row
  .chosen-container-single
  .chosen-search
  input[type="text"] {
  border: 1px solid #0000007a !important;
  background-color: rgb(255 255 255 / 23%) !important;
  border-radius: 8px;
}
.supplier-search
  > .form-row
  .chosen-container
  .chosen-results
  li.active-result {
  color: #fff;
  border-bottom: 1px solid #00000059;
}

/* .supplier-search > .form-row  select option:checked {
  background: #860853 linear-gradient(0deg, #860853 0%, #860853 100%);
  color: #fff;

} */
.supplier-search > .form-row select:focus,
.supplier-search > .form-row input:focus {
  outline: none;
  border: 0px;
  color: #fff;
}
.search-btn {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--button-color);
  border: 0px;
  outline: none;
  border-radius: 10px;
}
.search-btn img {
  max-width: 24px;
  max-height: 24px;
  position: static;
}
.category-slider {
  font-size: 18px;
  line-height: 28px;
  padding: 68px 0;
  position: relative; /*Radhika*/
}
.category-slider h2 {
  font-size: 40px;
  line-height: 70px;
}
.category-slider span.cursive {
  font-family: "Qwitcher Grypen", cursive;
  font-size: 150px;
  line-height: 70px;
}
/* Slider */
/* .swiper {
  width: calc(100% - 60px);
  padding: 1.875rem 0;
  box-sizing: border-box;
} */
.swiper-button-next,
.swiper-button-prev {
  /* width: 44px;
  height: 44px; */
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid var(--button-color);
  color: var(--button-color);
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 30px;
  left: auto;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 30px;
  right: auto;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}
.swiper-slide {
  width: 346px;
  height: 400px;

  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
  box-shadow: 0 0px 16px 0px rgba(0, 0, 0, 0.25);
  background: url("../images/gradient.png") no-repeat top left / cover;

  border-radius: 20px;
}
.swiper-slide-img {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: rotate(180deg);
  line-height: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper-slide-img img {
  position: absolute;
  object-fit: contain;
  z-index: -1;
  transition: all 0.3s ease-in-out;
  transform: rotate(-180deg);
}
.swiper-slide-content {
  background: transparent;
  padding: 0 1.65rem;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  width: 100%;
  transition: all 0.3s ease-in-out;
  text-align: center;
}
.swiper-slide-content > div {
  transform: translateY(-1.25rem);
}
.swiper-slide-content h2 {
  color: rgba(89, 116, 152, 1);
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.4;
  margin-bottom: 0.425rem;
  text-transform: capitalize;
  letter-spacing: 0.02rem;
}
.swiper-slide-content p {
  color: #000;
  line-height: 1.6;
  font-size: 0.9rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.swiper-slide-content .show-more {
  width: 3.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #24aad9;
  border-radius: 50%;
  box-shadow: 0px 0.125rem 0.875rem #24aad96b;
  margin-top: 1em;
  margin-bottom: 0.2em;
  height: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in;
  margin-left: auto;
}
.swiper-slide-content .show-more:hover {
  background: #1184ac;
}
.swiper-slide-content .show-more svg {
  width: 1.75rem;
  color: var(--accent-color);
}

.swiper-slide-active:hover img {
  transform: scale(1.2) rotate(-185deg);
}

.swiper-slide-active:hover .show-more {
  opacity: 1;
  height: 3.125rem;
}

.swiper-slide-active:hover p {
  display: block;
  overflow: visible;
}

.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right {
  background-image: none;
}

/* @media screen and (min-width: 93.75rem) {
  .swiper {
    width: 85%;
  }
} */

.tools-section {
  overflow: visible;
  padding: 60px 0;
}
.tools-slider,
.weddingDestinations-slider {
  /* max-width: 1059px; */
  width: 100%;
  right: 0;
}
.weddingDestinations-slider {
  width: 65%;
}
@media (min-width: 1500px) {
  .weddingDestinations-slider {
    width: 60%;
  }
  .weddingDestinations-slider-swiper .swiper-slide {
    height: 435px !important;
  }
  .weddingDestinations {
    padding: 200px 0 !important;
    padding-bottom: 210px !important;
  }
}
.tools-slider .swiper-slide {
  background: transparent;
  box-shadow: none !important;
}
.tools-slider .swiper-slide-content {
  margin-top: 30px;
  background: #fff;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  padding-top: 40px;
  border: 0.96px solid #59749833;
  border-bottom: 0px;
}
.tools-slider .swiper-slide-active {
  transform: scale(1.1);
  z-index: 3;
  margin-left: 20px;
}
.tools-slider .swiper-slide-next {
  margin-left: -25px;
}
/* .tools-slider .swiper-slide:nth-child(even) .swiper-slide-img{
  margin-left: 20px;
} */
.tools-slider .swiper-slide-img {
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
  border: 0.96px solid #59749833;
  border-bottom: 0px;
}

.tools-slider .swiper-slide-active .swiper-slide-content {
  box-shadow: 0px 0px 9px 0px #0000001f;
}
.tools-slider .swiper-slide-active .swiper-slide-img {
  box-shadow: 0px -3px 9px 0px #0000001f;
}
.tools-slider .swiper-wrapper {
  margin-top: 70px;
}
.tools-slider .swiper-button-next,
.tools-slider .swiper-button-prev {
  top: 65%;
}
.tools-slider .swiper-button-prev {
  left: -70px;
}
.tools-slider .swiper-button-next {
  right: -70px;
}
h2.section-heading {
  font-size: 30px;
  font-weight: 700;
  color: rgba(51, 51, 51, 1);
  text-align: center;
}

.swiper {
  width: 100%;
}
.right-text {
  /* max-width: 424px; */
  /* max-width: 30%;
  max-height: 589px;
  width: 100%; */
  height: 100%;
  padding-left: 10%;
  position: relative;
  padding-top: 5%;
}
.right-text img {
  object-fit: contain;
  width: 100%;
}
.slide-btn {
  border: 1px solid var(--button-color);
  border-radius: 20px;
  color: var(--button-color);
  padding: 5px 15px;
  background-color: var(--bs-white);
}
.right-text img.arrow {
  position: absolute;
  top: 20%;
  left: 3%;
  object-fit: contain;
  aspect-ratio: 80 / 123;
  max-height: 369px;
  max-width: 155px;
  z-index: 1;
}
.right-text .cursiveText {
  font-family: var(--cursive-font);
  position: absolute;
  top: -80px;
  color: #000;
  width: 490px;
  z-index: 2;
  left: -20px;
  font-size: 50px;
  line-height: 42px;
  transform: rotate(330deg);
  transition: transform 2s ease;
}
.primebtn {
  border: 1px solid var(--button-color);
  border-radius: 10px;
  color: var(--button-color);
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  text-align: center;
}
.weddingDestinations {
  padding: 150px 0;
  padding-bottom: 160px;
}
.weddingDestinations .left-text {
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
}
.weddingdestination-grid {
  gap: 40px;
  align-items: center;
  display: grid;
  grid-template-columns: 30% 70%;
}
/* .weddingDestinations .swiper-slide-content,
.explore-slider-swiper .swiper-slide-content {
  position: absolute;
} */
.weddingDestinations .swiper-slide-content h2,
.explore-slider-swiper .swiper-slide-content h2 {
  color: var(--accent-color);
}
/* .tabbtns {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 10px;
  margin: 30px 60px;
  white-space: nowrap;
} */

.tabbtn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background-color: var(--accent-color);
  border-radius: 10px;
  /* box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); */
  border: 1px solid #597498;
  transition: background-color 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.tabbtn img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.tabbtn span {
  font-size: 15px;
  color: #333;
  transition: color 0.3s ease;
}

.tabbtn.active {
  background-color: #8e0d56;
  color: var(--accent-color);
  transform: scale(1.05);
}

.tabbtn.active span {
  color: var(--accent-color);
}

.tabbtn:hover {
  background-color: #8e0d56;
  color: var(--accent-color);
  transform: scale(1.05);
}

.tabbtn:hover span {
  color: var(--accent-color);
}

.tabbtn:hover img {
  filter: brightness(0.9);
  transform: scale(1.1);
}

.tabbtns:hover .tabbtn {
  /* filter: blur(1.5px); */
  transition: filter 0.3s ease;
}

.tabbtns .tabbtn:hover {
  filter: none;
}

.inspiration-grid {
  padding: 50px 0;
}

.tabdata {
  display: grid;
  /* grid-template-columns: repeat(5, 1fr); */
  grid-template-columns: 0.8fr 1fr 1fr 1fr 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 10px;
}

.grid-item {
  position: relative;
  overflow: hidden;
}

.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
}

.grid-item-text h4 {
  /* position: absolute;
  bottom: 10px;
  left: 10px;
  color: var(--accent-color);
  background-color: rgba(0, 0, 0, 0.5);
  padding: 5px 10px; */
  font-size: 1rem;
  max-width: 97%;
  box-sizing: border-box;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 10px 0px;
  /* color: #fff; */
}

.grid-item-1 {
  grid-column: span 2;
  grid-row: span 2;
}

.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testimonials {
  background: url(../images/flower.png) no-repeat center center / contain;

  background-color: #f6f6f6;
}
.testimonial-slider-swiper .swiper-slide {
  background: none;
  box-shadow: none;
}
.testimonial-slider-swiper .swiper-slide-content {
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  color: var(--accent-color);
  padding: 50px 0px;
}
.testimonial-slider-swiper .swiper-slide-content h2,
.testimonial-slider-swiper .swiper-slide-content h3,
.testimonial-slider-swiper .swiper-slide-content p {
  color: var(--accent-color);
}
.testimonial-slider-swiper .swiper-slide-content p {
  line-height: 28px;
}
.testimonial-slider-swiper .slide-btn {
  border-radius: 10px;
}
.testimonial-slider-swiper .swiper-slide-content p span {
  display: block;
}
.fade-text {
  opacity: 0.6;
}
.packages {
  position: relative;
  background-color: #f7f7f7;
  padding: 50px 0;
  text-align: center;
  background-image: url("../images/slider/packages/packages-bg.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 100% 49.5%;
  color: var(--accent-color);
  /* padding-bottom: 100px; */
}
.packages h2 {
  color: var(--accent-color);
  font-size: 40px;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}
.packages:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.packages .swiper-container {
  padding: 50px 0;
}

.packages .swiper-slide {
  background: var(--accent-color);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  justify-content: flex-start;
  height: 350px;
}
.packages .swiper-slide-active + .swiper-slide {
  transform: scale(1.1);
  margin-left: 3px;
}
.packages .swiper-slide-active:hover img {
  transform: scale(1.2);
  transition: var(--transition);
}
.packages .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 2px solid #ccc;
}

.packages .swiper-slide .destination-name {
  padding: 15px;
  font-size: 22px;
  font-weight: bold;
  text-align: left;
  position: absolute;
  z-index: 99;
  line-height: 25px;
  color: var(--accent-color);
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 0 -15px 10px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
}
.packages .slide-btn {
  border-radius: 10px;
}
/* .packages .swiper-button-next,
.packages .swiper-button-prev {
  color: #d50066;
} */

.packages .view-all-button {
  margin-top: 20px;
  background-color: var(--accent-color);
  color: var(--button-color);
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  border: 2px solid var(--button-color);
}

/* .packages .new-badge,
.card-slide-img .new-badge,.new-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: red;
  color: var(--accent-color);
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 5px;
  z-index: 1;
} */

.footer-tabs .nav-tabs {
  margin-top: 20px;
  margin-bottom: 0px;
  background-color: rgba(89, 115, 152, 1);
  padding: 40px 0;
  gap: 40px;
}
.footer-tabs .nav-tabs {
  border: 0px;
}
.footer-tabs .nav-tabs .nav-link {
  padding: 10px 40px;
  color: var(--accent-color);
  border-bottom: 1px solid transparent;
}
.footer-tabs .nav-link.active,
.footer-tabs .nav-link:hover {
  background-color: transparent;
  border: 0px;
  border-bottom: 1px solid var(--accent-color);
}
.footer-tabs .tabs-content {
  margin-top: 20px;
  /*RADHIKA */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  padding: 50px 0;
}
footer {
  background-color: #94184a;
  padding: 40px 0 0;
}
.footer-logo {
  width: 100%;
  background-color: rgba(89, 115, 152, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  /* gap: 130px; */
  padding: 50px 0;
  position: relative;
}
.footer-logo img {
  max-width: 205px;
}
.footer-logo .swiper-slide {
  background: none;
  height: auto;
  box-shadow: none;
  align-items: center;
  justify-content: center;
}
.footer-logo .swiper-slide:hover img {
  transform: rotate(0);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
}
.footer-content a {
  color: rgba(255, 255, 255, 0.75);
}
.footer-content h5 {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
}
.footer-content ul {
  padding: 0;
}
.footer-content ul li {
  list-style: none;
  list-style-position: inside;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 8px;
}
.footer-section {
  margin-bottom: 20px;
}
.footer-section img {
  width: 185px;
  filter: brightness(0) invert(1);
}
.footer-bottom {
  color: var(--accent-color);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}
.footer-bottom a {
  color: var(--accent-color);
  text-decoration: none;
  font-size: 14px;
}
.footer-bottom p {
  font-size: 14px;
}
/* 22-10-2024 */
.footer-section ul {
  list-style: none;
  padding-left: 0;
  transition: max-height 0.3s ease;
  display: block;
}

.accordion-header {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.accordion-header i {
  display: none;
}

.accordion-header i {
  transition: transform 0.3s ease;
}

.footer-section.active .accordion-header i {
  transform: rotate(-180deg);
}

.accordion-body {
  display: block;
  max-height: none;
  overflow: visible;
}

.footer-section.active .accordion-body {
  display: block;
  max-height: 100px;
  transition: max-height 0.3s ease;
}

.subscribe-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px 45px;
}
.btn-subsrifbe {
  background: var(--button-color);
  color: #fff;
  font-size: 20px;
}
.btn-subsrifbe:hover {
  background: #79084b;
}
.footer-bottom-right {
  display: flex;
  gap: 150px;
}
.footer-bottom-right img {
  width: 35px;
  height: 35px;
  object-fit: cover;
}
.footer-bottom-right > div {
  display: flex;
  gap: 15px;
}
.searchBtn {
  width: 50px;
  height: 50px;
  position: absolute;
  left: 10px;
  z-index: 9;
}
.form-control.seachInput {
  height: 70px !important;
  padding-left: 70px;
  font-size: 20px;
}
.searchBtn button {
  background-color: var(--button-color) !important;
  border-radius: 50%;
  height: 100%;
  width: 100%;
}
.seachInput {
  height: 82px;
  background-color: #d0cfcf;
}
.hot-topics {
  background-image: none;
  background-color: var(--accent-color);
}
.hot-topics h2,
.hot-topics p {
  color: #000000;
}
.hot-topics h2 {
  text-shadow: none;
}
.wedding-grid {
  padding: 50px 0;
}
.wedding-grid h1,
.shop-content h1,
.wedding-event-right h1 {
  text-align: center;
  font-size: 26px;
  line-height: 45px;
  margin-bottom: 10px;
  color: rgba(89, 116, 152, 1);
  font-weight: 700;
}

.wedding-grid p,
.shop-content p {
  text-align: center;
  font-size: 18px;
  line-height: 28px;
  color: #959eae;
  margin-bottom: 20px;
}
.wedding-grid .grid-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: 15px;
}

.wedding-grid .grid-item {
  position: relative;
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: bold;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  border-radius: 8px;
}

.wedding-grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.wedding-grid .grid-item span {
  position: absolute;
  /* bottom: 20px;
  left: 20px; */
  bottom: 70px;
  left: 6px;
  font-size: 1.2rem;
}

.wedding-grid .grid-item small {
  display: block;
  font-size: 1rem;
  font-weight: normal;
}

/* Large screen layout */
.wedding-grid .item-1 {
  grid-column: span 8;
  grid-row: span 1;
}

.wedding-grid .item-2 {
  grid-column: span 4;
  grid-row: span 2;
}

.wedding-grid .item-3 {
  grid-column: span 3;
  grid-row: span 2;
}

.wedding-grid .item-4 {
  grid-column: span 5;
  grid-row: span 2;
}

.wedding-grid .item-5 {
  grid-column: span 4;
  grid-row: span 1;
}
.card-slide-grid {
  border: 1px solid rgba(89, 116, 152, 0.2);
  border-radius: 12px;
  padding: clamp(5px, 0.521vw, 10px);
  display: grid;
  max-width: 17.604vw;
  width: 100%;
}
.card-slide-img img {
  width: 100%;
  object-fit: cover;
  /*Radhika*/
  min-height: 350px;
  max-height: 350px;
}

.supplier-tabs-data,
.top-supplier-category {
  padding: clamp(15px, 2.604vw, 50px);
}
.supplier-wrapper {
  display: flex;
  justify-content: space-between;
  padding: 0px;
  gap: clamp(10px, 1.163vw, 30px);
}
.left-data {
  max-width: 55.938vw;
  width: 100%;
  display: flex;
  gap: clamp(10px, 0.763vw, 30px);
  flex-wrap: wrap;
}
.right-data {
  max-width: 37.917vw;
  width: 100%;
}
.map-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 100%;
  overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.slide-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
.slide-content > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}
.slide-content h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0px;
}
.slide-content h5 a {
  color: var(--bs-black);
}
.location-pin {
  display: flex;
  align-items: center;

  gap: 5px;
}
.card-slide-footer,
.Buy-now-btn {
  background-color: var(--button-color);
  border-radius: 4px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}
.Buy-now-btn {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-color);
  border: 0px;
  outline: none;
  justify-content: center;
}
.package-price {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: var(--accent-color);
}
.package-price strong {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
}
.booknow-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--button-color);
  font-size: 16px;
  font-weight: 700;
  font-family: var(--default-font);
  border: 0;
  outline: 0px;
  max-width: 114px;
  border-radius: 4px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.booknow-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.default-btn {
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
  color: var(--button-color);
  border: 1px solid var(--button-color);
  border-radius: 10px;
  max-width: 154px;
  max-height: 56px;
  padding: 5px 15px;
  background-color: var(--accent-color);
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}
.section-title h2 {
  font-style: normal;
  font-variant: normal;
  font-weight: 700;
  font-size: 40px;
  line-height: 32px;
  color: #597498;
}
.supplier-category-grid {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.042vw, 20px);
  flex-wrap: wrap;
}
.supplier-category-grid img {
  max-width: 100%;
  border-radius: 10px;
}
.wedding-team h2 {
  width: 100%;
}
.wedding-planner-teams {
  max-width: 1104px;
  margin: 0px auto 50px;
  border-bottom: 1px solid #d9d9d9;
}
.wedding-planner-teams .team-names {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(20px, 7.433vw, 160px);
}
.team-name {
  max-width: 264px;
  display: grid;
  text-align: center;
  position: relative;
  min-height: 386px;
  height: 100%;
}
.team-name img {
  max-width: 100%;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.team-name h2 {
  font-size: 23px;
  font-weight: 700;
  line-height: 23px;
  color: #3e4756;
}
.team-name img:first-child {
  max-height: 230px;
  max-width: 230px;
}
.team-name img:nth-of-type(2) {
  max-height: 265px;
  max-width: 159px;
}
.team-name img:last-child {
  max-height: 230px;
  max-width: 230px;
}
.team-name figcaption {
  margin-top: 30px;
}
.team-name p {
  font: 14px;
  color: #959eae;
}
.find-relevents {
  max-width: 1710px;
  padding: 50px;
  margin: 0 auto;
}
.relevents-grid-boxes {
  display: flex;
  gap: 60px;
}
.relevents-box {
  background: rgba(89, 115, 152, 0.1);
  max-width: 500px;
  height: 445px;
  width: 100%;
  position: relative;
  flex: 1;
}
.center-box {
  max-width: 556px;
  max-height: 520px;
  flex: 2;
}
.rotate-left {
  transform: rotate(-4deg);
}
.rotate-right {
  transform: rotate(4deg);
}
.relevents-box-content {
  display: grid;
  place-items: center;
  place-content: center;
  text-align: center;
  height: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.relevents-box-content h3 {
  font-size: 23px;
  line-height: 28px;
  color: rgba(62, 71, 86, 1);
  font-weight: 700;
}
.relevents-box-content p {
  font-size: 14px;

  color: rgba(149, 158, 174, 1);
  line-height: 23px;
}
.border-button {
  background-color: transparent;
  border: var(--button-color) solid 1px;
  color: var(--button-color);
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  box-shadow: none;
  outline: none;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
  padding: 10px;
}
.color-button {
  background-color: var(--button-color);
  color: #fff;
  font-size: 20px;
  font-weight: normal;
  line-height: 40px;
  box-shadow: 0 2px 16px 0 rgba(134, 8, 83, 0.25);
  border: 0px;
  outline: none;
  max-width: 245px;
  max-height: 56px;
  min-height: 56px;
  width: 100%;
  height: 100%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;
}
.color-button:hover {
  background-color: rgba(134, 8, 83, 0.8);
  color: #fff;
  box-shadow: 0 4px 24px rgba(134, 8, 83, 0.4);
  transform: scale(1.05);
}

.color-button:active {
  transform: scale(0.98);
  box-shadow: 0 2px 12px rgba(134, 8, 83, 0.2);
}
.party-icn,
.ring-icn,
.party3,
.center-box-icn,
.community-icn,
.community-icn-2,
.community-icn-3 {
  position: absolute;
}
.party-icn {
  left: 136px;
  top: -12px;
}
.ring-icn {
  left: -30px;
  top: 289px;
}
.party3 {
  top: 152px;
  right: -40px;
}
.center-box-icn {
  top: 11px;
  right: -30px;
}
.community-icn {
  top: 36px;
  left: 87px;
}
.community-icn-2 {
  right: 54px;
  bottom: 35px;
}
.community-icn-3 {
  bottom: 50px;
  left: -30px;
}
.search-box {
  border-radius: 50px;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  max-height: 100px;
  min-height: 100px;
  height: 100%;
  max-width: 1052px;
  justify-content: space-between;
  padding: 15px;
  margin-top: 50px;
}
.search-box label {
  font-size: 18px;
  color: rgba(162, 172, 189, 1);
  padding-left: 12px;
}
.search-box input[type="text"],
.search-box .form-select {
  font-size: 24px;
  line-height: 24px;
  font-weight: 700;
  color: rgba(62, 71, 86, 0.5);
}
.search-box .form-select {
  font-weight: 400;
}
.search-box .form-control,
.search-box .form-select {
  border: 0px;
}
.search-btn {
  background: var(--button-color);
  border-radius: 50%;
  max-width: 50px;
  max-height: 50px;
}
.search-btn i {
  font-size: 22px;
}
.fa-search,
.breadcrumb-item + .breadcrumb-item::before,
.breadcrumb-item.active,
.breadcrumb-item .fas {
  color: var(--accent-color);
}
.breadcrumb-item + .breadcrumb-item a {
  opacity: 0.7;
}
.venue-selector-container {
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  /* display: flex; */ /*Radhika*/
  /* align-items: center; */
  justify-content: center;
  border-bottom: 1px solid #d9d9d9;
}

.venue-list {
  display: flex;
  list-style-type: none;
  padding: 40px 0 15px;
  margin: 0;
  white-space: nowrap;
}
.venue-item {
  display: inline-block;
  text-align: center;
  padding: 0 15px;
  cursor: pointer;
}
/*Radhika*/
.venue-item .venue-icon {
  height: 70px;
  margin-bottom: 5px;
  color: #333333;
  width: 70px;
  object-fit: contain;
  filter: brightness(0) invert(0.3);
}
.venue-item.active .venue-icon {
  filter: none !important;
}

.venue-item span {
  display: block;
  font-size: 14px;
  color: #333333;
}

.venue-item.active .venue-icon,
.venue-item.active span {
  color: var(--button-color);
}

.venue-item:hover .venue-icon,
.venue-item:hover span {
  color: var(--button-color);
}

.venue-selector-container::-webkit-scrollbar {
  height: 8px;
}

.venue-selector-container::-webkit-scrollbar-thumb {
  background-color: var(--button-color);
  border-radius: 10px;
}

.venue-selector-container::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}
.shop-search-box {
  background-color: transparent;
  justify-content: flex-start;
  gap: 50px;
}
.shop-search-box .form-select {
  font-size: 18px;
  width: auto;
  border-radius: 30px;
  padding: 1.1rem 2.25rem 1.1rem 2.25rem;
}
.shop-content .grid-item {
  border-radius: 8px;
}
.shop-content a {
  color: var(--button-color);
  text-decoration: underline;
}
.shop-content-title {
  max-width: clamp(700px, 65.104vw, 1250px);
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
}
/* .stock-items {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 50px;
} */

.stock-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
  padding: 50px 0;
}

/* @media (max-width: 1200px) {
  .stock-items {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .stock-items {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .stock-items {
    grid-template-columns: 1fr;
  }
} */
.stock-items > div {
  width: 100%;
}
.stock-items .slide-content {
  flex-direction: column;
  margin-top: 30px;
  gap: 6px;
}
.stock-items .slide-content .price {
  font-size: 25px;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
}
.stock-items .slide-content .price span:first-child {
  font-weight: 900;
  line-height: 30px;
  color: var(--button-color);
  font-size: 18px;
}
.stock-items .card-slide-grid {
  max-width: 100%;
}
.stock-items .slide-content span {
  color: var(--bs-gray);
  font-size: 15px;
}
.stock-items .slide-content .icon {
  font-size: 13px;
  color: #ffce00;
}
.stock-items .card-slide-img {
  position: relative;
}
.view-add-prodcut,
.icon-body,
.like-icn,
.testimonial-text,
.free-delivery-text,
.free-delivery {
  display: flex;
  align-items: center;
  justify-content: center;
}
.view-add-prodcut {
  position: absolute;
  gap: 10px;
  bottom: -26px;
  left: 0;
  right: 0;
}
.view-add-prodcut i {
  cursor: pointer;
}
.icon-body {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 18px;
  color: var(--button-color);
  background-color: var(--bs-white);
  border-bottom: 0;
  box-shadow: 0 1px 2px rgba(1, 15, 28, 0.2);
  border-radius: 50%;
  margin-bottom: 6px;
}
.icon-body a {
  color: var(--button-color);
}
.like-icn {
  width: 30px;
  height: 30px;
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  right: 16px;
  top: 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  border-radius: 4px;
  backdrop-filter: blur(10px);
}
.like-icn:hover {
  background-color: var(--button-color);
}
.shop-footer-logo {
  background-color: var(--accent-color);
}
.wedding-event-testimonials {
  background-color: rgba(89, 115, 152, 0.1);
  height: 800px;
  align-items: center;
  justify-content: space-around;
  display: flex;
}
.wedding-event-left {
  position: relative;
  height: 100%;
}

.wedding-event-left img:first-child {
  z-index: 1;
  opacity: 0.1;
  height: 100%;
  object-fit: cover;
}
.wedding-event-left img:last-child {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 170px;
}
.wedding-event-right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 90px;
  text-align: center;
}
.wedding-event-right div:first-child {
  max-width: 548px;
}
.testimonial-box {
  border-radius: 20px;
  box-shadow: 0 0 44px 0 rgba(0, 0, 0, 0.08);
  padding: 22px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 700px;
  width: 100%;
  flex-direction: column;
  background-color: var(--accent-color);
}
.user-image {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  overflow: hidden;
  top: -40px;
  position: absolute;
}
.user-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.wedding-event-right p {
  font-size: 24px;
  line-height: 36px;
  color: rgba(149, 158, 174, 1);
}
.testimonial-text {
  flex-direction: column;
  padding: 60px 0 0;
}
.testimonial-text p {
  color: rgba(51, 51, 51, 1);
  font-size: 24px;
  line-height: 36px;
}
.free-delivery {
  padding: 100px 50px;
}
.free-delivery img.free-delivery-icon {
  transform: translateX(92px);
}
.free-delivery-text {
  background-color: #597398;
  border-radius: 15px;
  padding: 40px 60px 40px 100px;
  flex-direction: column;
  font-size: 44px;
  line-height: 44px;
  align-items: flex-start;
  color: #fff;
}
.free-delivery-text span:first-child {
  font-size: 24px;
  line-height: 24px;
}
.sidebar {
  background-color: #eff1f5;
  padding: 20px;
  height: 100%;
  max-width: 280px;
  width: 100%;
}
.sidebar h4 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 24px;
}
.buying-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.top-search-filter-bar {
  width: 100%;
  height: 80px;
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.clearPaddingY {
  padding-top: 0px;
  padding-bottom: 0px;
}
.found-results {
  background-color: #eff1f5;
  font-size: 16px;
  font-weight: 400;
  color: #333333;
  line-height: 20px;
  padding: 15px;
  max-width: 326px;
  width: 100%;
}
.search-products {
  max-width: 680px;
  width: 100%;
}
.search-products .fa-search {
  font-size: 12px;
}
.search-products .seachInput {
  height: 50px;
  padding-left: 56px;
  background-color: #ffffff;
  border-color: #597398 !important;
}
.search-products .searchBtn {
  width: 38px;
  height: 38px;
}
.filter-bar-left {
  display: flex;
  width: 100%;
  gap: 30px;
}
.list-filter {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.list-filter input[type="checkbox"] {
  width: 24px;
  height: 24px;
  border: 1px solid rgba(89, 115, 152, 0.2);
  border-radius: 4px;
}
.category-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  line-height: 20px;
  color: rgba(51, 51, 51, 1);
}

/* Common Modal Content Styles */
.modal-content {
  padding: 20px;
  border-radius: 10px;
  background-color: #ffffff;
  transition: all 0.4s ease;
}

.modal-header {
  border-bottom: none;
  padding-bottom: 0;
}

.modal-title {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
}

.modal-body {
  padding-top: 20px;
}

.product-details {
  display: flex;
  flex-wrap: wrap;
}

.product-image img {
  width: 100%;
  border-radius: 5px;
}

.product-info {
  padding: 0 20px;
}

.product-info h5 {
  font-size: 22px;
  margin-bottom: 10px;
}

.product-price {
  font-size: 20px;
  font-weight: bold;
  color: rgba(134, 8, 83, 1);
}

/* Quickview Modal Specific Styles */
.quickview-modal .modal-title {
  color: rgba(134, 8, 83, 1);
}

.quickview-modal .product-description {
  margin-top: 15px;
  color: #555;
  font-size: 14px;
  line-height: 1.5;
}

.quickview-modal .modal-footer {
  border-top: none;
  padding-top: 20px;
}

.quickview-modal .btn {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.quickview-modal .wishlist-btn {
  background-color: transparent;
  color: #6c757d;
  font-weight: bold;
}

.quickview-modal .wishlist-btn:hover {
  color: #d63384;
}

.quickview-modal .add-to-cart-btn {
  background-color: rgba(134, 8, 83, 1);
  color: #fff;
}

.quickview-modal .add-to-cart-btn:hover {
  background-color: rgba(101, 6, 62, 1);
  color: #fff;
}

.quickview-modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translateY(-50px);
}

.quickview-modal.show .modal-dialog {
  transform: translateY(0);
}

/* Add to Cart Modal Specific Styles */
.add-to-cart-modal .modal-title {
  color: #28a745;
}

.add-to-cart-modal .product-price {
  margin-bottom: 15px;
}

.add-to-cart-modal .quantity-selector .form-control {
  width: 80px;
  text-align: center;
}

.add-to-cart-modal .total-price {
  font-size: 18px;
  font-weight: bold;
  color: rgba(134, 8, 83, 1);
  margin-top: 10px;
}

.add-to-cart-modal .modal-footer {
  border-top: none;
  padding-top: 20px;
}

/* Buttons */
.add-to-cart-modal .continue-shopping-btn {
  background-color: transparent;
  color: #6c757d;
  font-weight: bold;
}

.add-to-cart-modal .continue-shopping-btn:hover {
  color: #d63384;
}

.add-to-cart-modal .checkout-btn {
  background-color: rgba(134, 8, 83, 1);
  color: #fff;
}

.add-to-cart-modal .checkout-btn:hover {
  background-color: rgba(101, 6, 62, 1);
  color: #fff;
}

.add-to-cart-modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translateY(-50px);
}

.add-to-cart-modal.show .modal-dialog {
  transform: translateY(0);
}
.add-to-cart-modal .product-added-message {
  color: #28a745;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
}
.delete-icon {
  cursor: pointer;
  color: #dc3545;
}

.delete-icon:hover {
  color: #a71d2a;
}

.cart-page {
  display: flex;
  justify-content: space-between;
  padding: 2rem;
  gap: clamp(10px, 2.604vw, 50px);
  align-items: flex-start;
}

.cart-page h2 {
  font-size: 28px;
  color: #597398;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 22px;
}
.cart-page h2 span {
  color: #597398;
}
.cart-section {
  flex: 2;
}

.cart-section h2 span:last-child {
  font-weight: normal;
  font-weight: 700;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  background-color: white;
  /* box-shadow: 0 0 15px rgba(0, 0, 0, 0.1); */
  border-radius: 8px;
  overflow: hidden;
}

.cart-table th,
.cart-table td {
  padding: 1rem;
  text-align: left;
}

.cart-table th {
  /* background-color: #f1f1f1; */
  font-weight: bold;
}

.cart-table tbody tr {
  border-bottom: 1px solid #ddd;
}

.cart-product-info img {
  max-width: 7.083vw;
  max-height: 7.083vw;
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-right: 1rem;
  vertical-align: middle;
}

/* .quantity {
  display: flex;
  align-items: center;
} */

.qty-btn {
  border: 1px solid #292d32;
  cursor: pointer;
  border-radius: 8px;
  background-color: #fff;
  transition: background-color 0.3s ease;
  width: 28px;
  height: 28px;
  line-height: 18px;
  font-size: 18px;
  font-weight: 700;
}

.qty-btn:hover {
  background-color: #ddd;
}

/* input[type="number"] {
  width: 50px;
  text-align: center;
  border: 1px solid #ddd;
  margin: 0 0.5rem;
} */

.delete {
  color: #dc3545;
  cursor: pointer;
  transition: color 0.3s ease;
}

.delete:hover {
  color: #a71d2a;
}

.order-summary {
  flex: 1;
  background-color: #eff1f5;
  padding: 1rem;
  border-radius: 8px;
  display: grid;
  height: 100%;
  position: static;
}

.summary-items {
  list-style: none;
  margin-bottom: 1rem;
  padding: 0;
}

.summary-items li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  font-size: 1rem;
  color: #333333;
  text-wrap: balance;
}
.summary-items li > span {
  font-weight: 700;
  font-size: 20px;
  width: 18%;
  text-align: right;
}
.promo-code {
  margin-bottom: 1rem;
}
.promo-code > div {
  display: flex;
}
.promo-code label {
  width: 100%;
  flex: 0 0 100%;
  font-size: 16px;
}
.promo-code input {
  width: calc(100% - 60px);
  padding: 0.5rem;
  border: 0px;
  border-bottom: 1px solid #d9d9d9;
  margin-right: 5px;
  background-color: transparent;
}

.apply-btn {
  background-color: transparent;
  color: var(--button-color);
  font-weight: bold;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.apply-btn:hover {
  background-color: #440044;
}

.total-amount {
  font-size: 1.25rem;
  color: #333;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.total-amount strong {
  font-size: 36px;
  font-weight: 700;
  color: var(--button-color);
  font-family: var(--heading-font);
}
.checkout-btn {
  background-color: var(--button-color);
  color: white;
  font-weight: 700;
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
  max-height: 56px;
}

.checkout-btn:hover {
  background-color: #440044;
}

.address-box-container {
  margin: 0 auto;
  background-color: #fff;
  padding: 20px;
  flex: 2;
}

.address-box-container h2 {
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.address-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.address-box:hover {
  border-color: #b3b3b3;
}

.address-text {
  flex: 1;
}

.address-edit {
  color: #ba89a7;
  cursor: pointer;
  transition: color 0.3s ease;
}

.address-edit:hover {
  color: #933579;
}

.payment-method {
  margin-bottom: 20px;
}

.payment-select {
  width: 100%;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s ease;
  margin-bottom: 10px;
}

.payment-select:hover {
  border-color: #b3b3b3;
}

.card-method {
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px;
  transition: border-color 0.3s ease;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.card-method:hover {
  border-color: #b3b3b3;
}

.card-method label {
  display: flex;
  align-items: center;
  margin: 0;
  font-size: 14px;
  width: 100%;
  justify-content: space-between;
}

.card-method input[type="radio"] {
  margin-right: 10px;
}
.card-method-container {
  border: 1px solid #dddddd;
  padding: 20px;
  border-radius: 8px;
}
.card-method-container h3 {
  font-size: 18px;
  font-weight: 400;
}
.card-details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.card-logo img {
  width: 40px;
  margin-right: 10px;
}

.add-card {
  color: var(--button-color);

  cursor: pointer;
  display: flex;
  align-items: center;
}

.add-card i {
  margin-right: 5px;
  font-size: 22px;
}

.add-card:hover {
  color: #933579;
}
.success-container {
  text-align: center;
  background-color: #fff;

  border-radius: 10px;
  padding: 250px 0;
  max-width: 490px;
  margin: 0 auto;
}

.success-title {
  color: #333333;
  font-size: 24px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

.success-message {
  font-size: 16px;
  color: #333;
  margin-bottom: 20px;
  border-bottom: 1px solid #cccccc;
  padding-bottom: 10px;
}

.order-info {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}
.order-info p {
  display: flex;
  justify-content: space-between;
}
.order-info span {
  font-weight: bold;
  color: var(--button-color);
}

.email-confirmation {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

.button-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.button-container .btn {
  background-color: var(--button-color);
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 0px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.button-container .btn:hover {
  background-color: var(--accent-color);
  color: var(--button-color);
  border: 1px solid var(--button-color);
}

.button-container .btn-outline {
  background-color: transparent;
  color: var(--button-color);
  border: 1px solid var(--button-color);
  transition: all 0.3s ease;
}

.button-container .btn-outline:hover {
  background-color: var(--button-color);
  color: #fff;
}
/* Responsive Styles */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .card-details {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (min-width: 1400px) {
  .custom-container {
    max-width: 1486px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.travel-search-box {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  position: relative;
}

.travel-search-box form {
  background-color: #fff;
  padding: 10px 40px;
  border-radius: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.travel-search-box .input-field {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 210px;
}

.travel-search-box .input-field input {
  padding: 10px;
  padding-right: 40px;
  border: 0px;
  border-radius: 4px;
  margin-top: 5px;
  font-size: 14px;
  background-color: transparent;
  font-size: 24px;
  line-height: 24px;
  width: 100%;
}
.iconcalener {
  display: flex;
  align-items: center;
  justify-content: center;
}
.travel-search-box .input-field i.icon {
  color: #888;
}

.travel-search-box .search-btn {
  background-color: var(--button-color);
  color: white;
  padding: 20px 30px;
  border: none;

  cursor: pointer;
  font-size: 14px;
  align-self: flex-end;
  border-radius: 50%;
}

.travel-search-box .search-btn:hover {
  opacity: 0.7;
}

.travel-search-box .hidden {
  display: none;
}

.travel-search-box #calendarContainer {
  position: absolute;
  top: 150px;
  z-index: 10;
}

/* Customize Flatpickr styles */
.flatpickr-calendar {
  font-size: 16px;
}

.flatpickr-day.today {
  background-color: #860853;
  color: white;
  border-radius: 50%;
}

.flatpickr-day.selected {
  background-color: #bc87a6 !important;
  color: #333333 !important;
  border-radius: 0%;
}

.flatpickr-day.startRange {
  background-color: #bc87a6 !important;
  color: #333333 !important;
  border-radius: 0;
}

.flatpickr-day.endRange {
  background-color: #bc87a6 !important;
  color: #333333 !important;
  border-radius: 0%;
}

.flatpickr-day.inRange {
  background-color: #f3d6e2 !important;
  color: #333333 !important;
  border-radius: 50%;
}

.flatpickr-day:hover {
  background-color: #f3d6e2;
  border-radius: 50%;
  color: black;
}

.flatpickr-day.disabled,
.flatpickr-day.disabled:hover {
  background-color: #f5f5f5;
  color: #ccc;
  cursor: not-allowed;
}

.flatpickr-day {
  font-size: 14px;
}

.travel-venu-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 1px;
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Ensuring images fit inside grid items */
.travel-venu-gallery-grid .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* First large image spanning two rows */
.travel-venu-gallery-grid .large-image-1 {
  grid-row: span 2;
}

.travel-venu-gallery-grid .large-image-2 {
  grid-row: span 2;
}

.travel-venu-gallery-grid .small-image-1,
.travel-venu-gallery-grid .small-image-2,
.travel-venu-gallery-grid .small-image-3 {
  grid-row: span 1;
  grid-column: span 1;
}

/* Button to see all photos */
.travel-venu-gallery-grid .see-all-photos {
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  z-index: 1;
}

.travel-venu-gallery-grid .see-all-photos:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.detail-section {
  display: flex;
  gap: 20px;
  padding: 20px;
}

.left-column {
  flex: 1;
}

.right-column {
  flex: 0.4;

  padding: 20px;
  border-radius: 10px;
}

/* Tabs */
.property-tabs {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.property-tabs .nav-item .nav-link {
  font-weight: bold;
  color: #000; /* Default color */
}

.property-tabs .nav-item .nav-link.active {
  color: #860853;
  border-bottom: 2px solid #860853; /* Underline effect for active tab */
}

/* Property Info */
.property-info h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.property-info .rating {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #f9a825;
}

.property-info p {
  font-size: 14px;
  line-height: 1.6;
}

/* Booking Box */
.booking-box {
  padding: 20px;
  background-color: white;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
}

.booking-box p {
  margin: 10px 0;
}

.old-price {
  text-decoration: line-through;
  color: #999;
}

.new-price {
  color: #860853;
  font-weight: bold;
}

.input-field {
  position: relative;
  margin-bottom: 20px;
}
/*Radhika */
/* .input-field input,
.input-field select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
} */

.input-field i.icon {
  position: absolute;
  right: 10px;
  top: 44px;
  color: #888;
  font-size: 18px;
}

.book-now-btn {
  background-color: #860853;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.book-now-btn:hover {
  background-color: #bc87a6;
}

.price-breakdown p {
  display: flex;
  justify-content: space-between;
}

.total-amount {
  font-weight: bold;
  color: #860853;
  font-size: 18px;
}
@media (max-width: 768px) {
  .wedding-grid .grid-container {
    grid-template-columns: 1fr;
    grid-gap: 10px;
  }

  .wedding-grid .grid-item {
    grid-column: span 12;
  }
}

/** MODIFIED CSS OWN ********************************
 *********************************************/
.tabbtns {
  position: relative;
  padding: 10px 0px;
  display: flex;
  gap: 0px;
}
.dropdown {
  z-index: 99;
}
.dropdown .dropdown-toggle {
  background: #fff;
  border: none;
  width: 43px;
  height: 43px;
  gap: 10px;
  border-radius: 10px;
  border: 1px 0px 0px 0px;
  opacity: 0px;
  border: 1px solid #333333;
  line-height: 43px;
  padding: 0;
}
.dropdown-menu {
  width: 300px !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1) !important;
  border: none !important;
  background: #f5f5f5 !important;
  margin-top: 15px !important;
  left: 25% !important;
  padding: 20px;
}
.dropdown-menu label {
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 18px;
  margin-bottom: 13px;
}
.dropdown-toggle::after {
  display: none;
}
.blogcategories-slider-swiper .swiper-slide {
  width: fit-content !important;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: self-start;
  box-shadow: none;
  background: none;
  border-radius: 0px;
}
.blogcategories-slider-swiper .swiper-slide a {
  width: 100%;
}

.sidebar__widget {
  padding: 30px;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid rgba(0, 29, 8, 0.1);
}
.sidebar__search {
  position: relative;
}
.sidebar__search input {
  width: 100%;
  height: 48px;
  line-height: 48px;
  background: #fff;
  padding: 0 41px;
  text-transform: capitalize;
  border: 1px solid rgba(0, 29, 8, 0.1);
  outline: none;
  padding-right: 50px;
}
.sidebar__search button {
  position: absolute;
  top: 0px;
  left: 5px;
  height: 100%;
  line-height: 48px;
  color: rgba(0, 29, 8, 0.1);
  background: transparent;
  border: none;
}
.rc__post-thumb {
  flex: 0 0 auto;
}
.rc__meta span {
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  line-height: 10px;
  color: var(--button-color);
  margin: 0;
  margin-bottom: 3px;
  display: inline-block;
}
.rc__meta span i {
  color: var(--button-color);
}
.rc__post-title,
.rc__post-title a {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.rc__post-thumb img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  border: #e3dedecc solid 1px;
  border-radius: 10px;
  padding: 5px;
}
.bg-gray {
  background: #efefef;
}
.border-rounded {
  border-radius: 10px;
}
.category-filter {
  position: absolute;
  width: 100%;
  z-index: 9;
}
.category-filter .card {
  border-radius: 30px;
  box-shadow: 0px 0px 10px 2px #0000001a;
  border: none;
}

.grid-item img {
  height: 260px;
}
.grid-item-1 img {
  height: 570px;
}
.shop-content .grid-item img {
  height: 390px;
}
.shop-content .grid-item-1 img {
  height: 845px;
}
.grid-item a {
  text-decoration: none !important;
}
.detail-block img {
  max-width: 100%;
}
@media (min-width: 1920px) {
  .grid-item img {
    height: 310px;
  }
  .grid-item-1 img {
    height: 670px;
  }
}
/** RADHIKA's CSS ADDITION **/
.w-5 {
  width: 40px;
  height: 30px;
}
#data_container nav div:first-child {
  display: none;
}
#data_container nav div:nth-child(2) span:first-child {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  box-shadow: none !important;
}
.pagination {
  justify-content: center;
  margin-top: 50px;
}
.pagination a,
.pagination .border-gray-300 {
  border: var(--button-color) solid 1px !important;
  color: #000;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  text-align: center;
  display: block;
  padding: 0 !important;
  line-height: 50px;
}
.pagination .border-gray-300:hover,
.pagination a:hover,
.pagination span[aria-current="page"] span {
  background: var(--button-color) !important;
  color: #fff;
}
input[type="radio"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
}

/* Style when the radio button is checked */
input[type="radio"]:checked {
  border-color: var(--button-color);
}

/* Inner circle to show the check mark */
input[type="radio"]:checked::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: var(--button-color);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.stock-items #data_container {
  display: grid;
  width: 100%;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-description {
  display: -webkit-box;
  -webkit-line-clamp: 30;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/** CART **/
.cartmini-open-btn {
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 38px;
  background-color: transparent;
  font-size: 24px;
  color: var(--accent-color);
  border: none;
  position: relative;
}
.header-action-badge-5 {
  position: absolute;
  top: -4px;
  right: -11px;
  display: inline-block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.1em;
  color: var(--accent-color);
  width: 26px;
  height: 26px;
  line-height: 20px;
  border-radius: 50%;
  border: 3px solid var(--button-color);
  background-color: var(--button-color);
}
.cartmini__area {
  position: fixed;
  right: 0;
  top: 0;
  width: 320px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  background: var(--bs-white) none repeat scroll 0 0;
  -webkit-transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -ms-transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -o-transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999;
  scrollbar-width: none;
}
.cartmini__wrapper {
  position: relative;
  min-height: 50%;
  padding-left: 25px;
  padding-right: 25px;
}
.cartmini__top-title {
  padding: 20px 0;
  border-bottom: 1px solid var(--bs-gray);
}
.cartmini__top-title h4 {
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  margin-bottom: 0;
}
.cartmini__close {
  position: absolute;
  top: 17px;
  right: 0;
}
.cartmini__close-btn {
  background: transparent;
  color: var(--bs-black);
  font-size: 22px;
  border: none;
}
.cartmini__widget {
  height: calc(100vh - 380px);
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.cartmini__widget-item:last-child {
  border-bottom: 0;
}
.cartmini__widget-item {
  position: relative;
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid rgba(129, 129, 129, 0.2);
  line-height: 20px;
}
.cartmini__thumb {
  border: 1px solid var(--bs-gray);
  margin-right: 15px;
}
.cartmini__thumb img {
  width: 70px;
  height: auto;
}
.cartmini__content {
  padding-right: 15px;
}
.cartmini__title {
  font-size: 18px;
  margin-bottom: 4px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--default-font);
}
.cartmini__style-green .cartmini__price {
  color: var(--secondary-color);
}
.cartmini__content small {
  font-size: 13px;
  line-height: 15px;
}
.cartmini__price {
  font-size: 16px;
  font-weight: bold;
  color: var(--secondary-color);
}
.cartmini__title a {
  color: var(--button-color);
}
.cartmini__quantity {
  font-size: 12px;
  font-weight: 500;
}
.cartmini__del {
  position: absolute;
  top: 15px;
  right: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  color: var(--bs-black);
  font-size: 14px;
}
.cartmini__del.position-relative {
  top: 0;
}
.body-overlay.opened {
  opacity: 0.7;
  visibility: visible;
}
.body-overlay {
  background-color: var(--bs-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.cartmini__area.cartmini-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cartmini__empty {
  margin-top: 150px;
}
.cartmini__empty img {
  margin-bottom: 30px;
}
.cartmini__empty p {
  font-size: 16px;
  color: var(--bs-black);
  margin-bottom: 15px;
}
.cartmini__checkout {
  padding-top: 15px;
  padding-bottom: 85px;
  width: 100%;
  background: var(--bs-white);
  border-top: 2px solid var(--bs-gray);
  text-align: center;
}
.cartmini__area .btn {
  min-height: 56px;
  line-height: 40px;
  max-width: 245px;
  max-height: 56px;
}
/** PRODCUT DETAILS **/
.detail-gallery {
  position: relative;
}
.detail-gallery .zoom-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  font-size: 22px;
  opacity: 0.6;
}
.detail-gallery .product-image-slider {
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 15px;
  border: 1px solid #ececec;
  overflow: hidden;
}
.detail-gallery .product-image-slider img {
  height: 550px;
  object-fit: contain;
  width: 100%;
}
.slider-nav-thumbnails .slick-list {
  margin: 0 -10px;
}
.slider-nav-thumbnails .slick-slide {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}
.slider-nav-thumbnails .slick-slide img {
  width: 100%;
  border-radius: 17px;
  height: 100px;
  object-fit: cover;
}
.slider-nav-thumbnails .slick-slide.slick-current::before {
  border-bottom: 5px solid #333;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  content: "";
  height: 0;
  left: 50%;
  margin-left: -5px;
  position: absolute;
  top: -6px;
  width: 0;
}
.slider-nav-thumbnails .slick-slide.slick-current img {
  border: 2px solid #a2d2c9;
}
.slider-nav-thumbnails div.slick-slide {
  margin: 0 10px;
}
.slider-nav-thumbnails button {
  opacity: 0;
}
.slider-nav-thumbnails button.slick-arrow {
  margin: 0;
  border: 0;
  background: #f2f3f4;
  border-radius: 40px;
  width: 40px;
  height: 40px;
  line-height: 44px;
  font-size: 24px;
  z-index: 9;
  color: #7e7e7e;
}
.slider-nav-thumbnails button.slick-arrow:hover {
  color: #fff;
  background-color: #3bb77e;
}
.slider-nav-thumbnails button.slick-arrow.slick-prev {
  left: -20px;
}
.slider-nav-thumbnails button.slick-arrow.slick-next {
  right: -20px;
}
.slider-nav-thumbnails:hover button {
  opacity: 1;
}

.slider-nav-thumbnails .slick-prev,
.slider-nav-thumbnails .slick-next {
  font-size: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.font-xs {
  font-size: 13px;
}
/* .float-start {
  float: left !important;
  list-style: none;
  padding: 0;
  margin-right: 40px;
} */
.text-brand {
  color: var(--button-color) !important;
}
.sidebar-widget {
  position: relative;
  padding: 30px;
  border: 1px solid #ececec;
  border-radius: 15px;
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}
.product-price {
  display: flex;
  align-items: center;
  margin: 15px 0 30px 0;
}
.product-price .save-price {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #fdc040;
}
.product-price .old-price {
  text-decoration: line-through;
  color: #b6b6b6;
  margin-left: 20px;
  font-size: 28px;
  font-weight: 700;
  display: block;
}
.product-details-social {
  margin-bottom: 22px;
}
.product-details-social span {
  font-size: 15px;
  color: var(--bs-black);
  margin-right: 2px;
}
.product-details-social a {
  display: inline-block;
  width: 38px;
  height: 38px;
  line-height: 36px;
  text-align: center;
  border: 1px solid #e6e7e8;
  border-radius: 50%;
  color: var(--button-color);
}
.product-details-action-wrapper {
  margin-bottom: 17px;
}
.product-details-action-title {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 13px;
}
.product-quantity {
  width: 100px;
  position: relative;
  border-radius: 20px;
}
.product-details-quantity .product-quantity,
.product-quantity {
  width: 122px;
  border-radius: 0;
}
.cart-plus,
.cart-minus {
  display: inline-block;
  text-align: center;
  font-size: 16px;
  color: var(--bs-black);
  position: absolute;
  top: 50%;
  left: 16px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.product-details-quantity .cart-plus,
.product-details-quantity .cart-minus,
.quantity .cart-plus,
.quantity .cart-minus {
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  left: 14px;
}
.product-details-quantity .cart-input[type="text"],
.quantity .cart-input[type="text"] {
  height: 56px;
  line-height: 56px;
  background-color: #f3f5f6;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  color: var(--bs-black);
  width: 100%;
  text-align: center;
}
.cart-plus.cart-plus,
.cart-minus.cart-plus {
  left: auto;
  right: 16px;
}
.custom-radio-group {
  display: flex;
  align-items: center;
  justify-content: center;
}

.variations {
  position: relative;
  margin-right: 10px;
  margin-bottom: 20px;
  cursor: pointer;
}

.variations input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.variations label {
  width: fit-content;
  height: 40px;
  border: #dbdbdb solid 1px;
  padding: 5px;
  border-radius: 10px;
}

.variations input:checked + label {
  background-color: var(--button-color);
  color: #fff;
}

.variations label:after {
  content: "";
  position: absolute;
  display: none;
}

.variations input:checked + label:after {
  display: block;
}
/** LOGIN REGISTER **/
.login {
  padding: 50px 0px;
  position: relative;
}
.login-wrapper {
  box-shadow: 0px 30px 70px rgba(1, 15, 28, 0.1);
  padding: 50px 60px 70px;
  background-color: var(--bs-white);
}
.login-title {
  font-weight: 500;
  font-size: 30px;
  margin-bottom: 4px;
}
.login-shape-1 {
  top: 7%;
  left: 18%;
}
.login-shape-1,
.login-shape-2,
.login-shape-3,
.login-shape-4 {
  position: absolute;
  z-index: -1;
}
.login-shape-2 {
  bottom: 38%;
  left: 26%;
}
.login-shape-3 {
  top: 7%;
  right: 22%;
}
.login-shape-4 {
  bottom: 27%;
  right: 20%;
}
.input-box {
  margin-bottom: 20px;
}
.cart-button {
  position: relative;
  transition: 0.3s ease-in-out;
  overflow: hidden;
}
.cart-button:active {
  transform: scale(0.9);
}

.cart-button .fa-shopping-cart {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: -12%;
  font-size: 2em;
  transform: translate(-50%, -50%);
}
.cart-button .fa-box {
  position: absolute;
  z-index: 3;
  top: -20%;
  left: 54%;
  font-size: 1.2em;
  transform: translate(-50%, -50%);
}
.cart-button span {
  position: absolute;
  z-index: 3;
  width: 100%;
  color: #fff;
  transform: translate(-50%, -50%);
}
.cart-button span.add-to-cart {
  opacity: 1;
}
.cart-button span.added {
  opacity: 0;
}
.cart-button.clicked .fa-shopping-cart {
  animation: cart 1.5s ease-in-out forwards;
}
.cart-button.clicked .fa-box {
  animation: box 1.5s ease-in-out forwards;
}
.cart-button.clicked span.add-to-cart {
  animation: txt1 1.5s ease-in-out forwards;
}
.cart-button.clicked span.added {
  animation: txt2 1.5s ease-in-out forwards;
}
@keyframes cart {
  0% {
    left: -10%;
  }
  40%,
  60% {
    left: 50%;
  }
  100% {
    left: 110%;
  }
}
@keyframes box {
  0%,
  40% {
    top: -20%;
  }
  60% {
    top: 40%;
    left: 52%;
  }
  100% {
    top: 40%;
    left: 112%;
  }
}
@keyframes txt1 {
  0% {
    opacity: 1;
  }
  20%,
  100% {
    opacity: 0;
  }
}
@keyframes txt2 {
  0%,
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.form-control {
  background: #f9f9f9;
  width: 100%;
  height: 55px;
  border-radius: 0px;
  box-shadow: none !important;
  padding-left: 25px;
  border: 1px solid #e3e3e3;
  color: #7c7b7b;
}
.text-color {
  color: var(--button-color) !important;
  font-weight: bold !important;
}
.text-secondary {
  color: var(--secondary-color);
}
.form-group {
  position: relative;
}
.input-group-btn {
  position: absolute;
  right: -10px;
  top: 2px;
}
.input-group-btn button {
  background: transparent !important;
  border: none;
  outline: none;
  background: none;
  box-shadow: none !important;
}
.section-padding {
  padding: 50px 0px;
}
.shop-cart-summary {
  padding: 0;
  list-style-type: none;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 20px;
}
.shop-cart-summary li {
  margin-bottom: 10px;
}

.shop-cart-summary li strong {
  color: var(--bs-black);
}
.shop-cart-summary li span {
  float: right;
}
#coupon-type .coupon-remove {
  font-size: 17px;
  color: var(--button-color);
}
.removeCoupon i {
  font-size: 17px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
  border-radius: 50px;
  background: #fff;
}
/**TOPBAR **/

.topbar {
  position: relative;
  border-bottom: #ffffff3b solid 1px;
  padding: 10px 0px;
}
.topbar-list {
  margin-bottom: 0px;
  padding: 0;
}
.topbar-list li {
  display: inline-block;
  color: var(--bs-white);
  font-size: 14px;
  font-weight: 500;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  padding: 0 13px 0 6px;
}

.topbar-list li:last-child {
  border-right: none;
  padding-right: 0;
}

.topbar-list li:first-child {
  padding-left: 0;
}

.topbar-list li a {
  color: var(--bs-white);
}

.topbar-list li a:hover {
  color: var(--bs-white);
}

.topbar-list li i {
  color: var(--bs-white);
  margin-right: 5px;
}

.topbar-right {
  float: right;
}
.topbar-right .dropdown .dropdown-toggle {
  background: transparent;
  border: none;
  line-height: 25px;
}
.topbar-right .dropdown-menu {
  border: none;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  padding: 10px;
  min-width: 80px;
  background: transparent;
  width: 80px !important;
  left: 0 !important;
  margin-top: 0px !important;
}

.topbar-right .dropdown-item {
  color: var(--bs-black);
  border-radius: 10px;
  text-align: center;
}

.topbar-right .dropdown-item:hover {
  background: var(--button-color);
  color: var(--bs-white);
}
.rounded-transparent {
  background: #ffffff4f;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
}
/* .scrolled .topbar{display: none;} */

/**SEARCH POPUP **/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.95);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}
.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  border: none;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50px;
  text-align: center;
  background: var(--button-color);
  text-align: center;
  width: 50px;
  height: 50px;
  color: var(--bs-white);
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-popup .close-search span {
  transition: all 0.5s ease-in-out;
}

.search-popup .close-search:hover span {
  transform: rotate(180deg);
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  transition-delay: 1200ms;
}

.search-popup .form-group {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.search-popup .form-control {
  position: relative;
  width: 100%;
  height: 70px;
  outline: none;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid var(--bs-white);
  background-color: transparent;
  color: var(--bs-white);
  font-size: 40px;
  padding: 0 70px 0 20px;
  transition: all 500ms ease;
  text-transform: capitalize;
}

.search-popup .form-control::placeholder {
  color: var(--bs-white);
  font-size: 40px;
}

.search-popup .form-group button {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 50px;
  background: 0 0;
  text-align: center;
  font-size: 30px;
  color: var(--bs-white);
  height: 50px;
  width: 50px;
  border: none;
  cursor: pointer;
  transition: all 500ms ease;
}

.search-popup .form-group button:hover {
  color: var(--button-color);
}
/**TAB PRODUCT BOX **/
.product-box {
  position: relative;
  margin-bottom: 50px;
}
.product-box .image {
  overflow: hidden;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #f5f5f5;
  padding: 10px;
}
.product-box .image img {
  transition: all 0.3s ease-in-out;
  height: 280px;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.product-box:hover .image img {
  transform: scale(1.1);
  opacity: 60%;
}
.product-box .content {
  left: 13px;
  bottom: 10px;
  width: 85%;
  height: 67px;
  margin: 0 10px 14px;
  padding: 0 12px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  border-radius: 16px;
  background-color: #f3f3f3;
}
.product-box .content h5 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-box .content i {
  font-size: 14px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  text-align: center;
  border-radius: 100%;
  color: var(--bs-white);
  background-color: var(--button-color);
  transition: all 0.8s ease-in-out;
}
.product-box .content i:hover {
  background-color: var(--secondary-color);
}
/**TEXT SWIPER **/
.text-slider-swiper .swiper-slide {
  background: none;
  box-shadow: none;
  height: auto;
}
/**CATEGORY SLIDER **/
.category-slider-swiper .swiper-slide {
  height: 270px;
  /* box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.05); */
  box-shadow: 0px 4px 4px 0px #00000040;

  border: 1px solid #f5f5f5;
  transform: none; /* Prevent 3D transformation on text */
  -webkit-transform: none; /* Add vendor prefix for compatibility */
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
}
.category-slider-swiper img {
  height: 100px;
}
.category-slider .swiper-button-next,
.category-slider .swiper-button-prev {
  top: 65%;
}
.category-slider .swiper-button-next,
.packages .swiper-button-next {
  right: -4%;
}
.category-slider .swiper-button-prev,
.packages .swiper-button-prev {
  left: -4%;
}
.category-slider-swiper .swiper-slide-active {
  width: 235px !important;
  margin-right: 0px !important;
  margin-left: -20px;
}
@media (min-width: 1500px) {
  .category-slider-swiper .swiper-slide-active {
    width: 290px !important;
  }
  .category-slider-swiper .swiper-slide {
    height: 335px;
  }
}

/* .category-slider .swiper-button-next
{
right: 0px;
border-radius: 8px;
height: 208px;
top: 27%;
background: #f5f5f5;
opacity: 1;
width: 49px;
border: #e2e2e2 solid 1px;
border-left: 0;
} */
/* .category-slider .swiper-button-prev
{
  left: 0px;
    border-radius: 8px;
    height: 208px;
    top: 27%;
    background: #f5f5f5;
    opacity: 1;
    width: 49px;
    box-shadow: none;
    border: #e2e2e2 solid 1px;
    border-right: 0;
} */
/**SUPPLIER*/
.supplier-wrapper .card-slide-img img {
  min-height: 245px;
  max-height: 245px;
}
.location-pin {
  font-size: 15px;
  color: var(--bs-gray);
}
.swiper-slide-img a {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  line-height: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.weddingDestinations-slider-swiper .swiper-slide {
  height: 350px;
  box-shadow: none !important;
}
.weddingDestinations-slider-swiper .swiper-slide .swiper-slide-img {
  border-radius: 10px;
}
.weddingDestinations-slider-swiper .swiper-slide-active {
  transform: scale(1.1);
  margin-left: 20px;
  margin-right: 25px !important;
  width: 300px !important;
}
/* .weddingDestinations .swiper-slide-img img
{
  height: 350px;
} */
.left-text .swiper-button-next,
.left-text .swiper-button-prev {
  top: auto;
  bottom: -31%;
}
.weddingDestinations .left-text .text-slider-swiper {
  overflow: hidden;
}
.weddingDestinations .swiper-button-prev {
  left: 0px;
}
.weddingDestinations .swiper-button-next {
  right: auto;
  left: 55px;
}
/* SUPPLIER BOX */
.card-badge {
  bottom: 25px;
  padding: 5px 10px;
  border-radius: 10px;
  letter-spacing: 1px;
  font-size: 0.719rem !important;
  border-width: 1px 1px 1px 1px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--secondary-color);
}
.bg-blur {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(255, 255, 255, 0.2);
}

.card-image-hover::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0)),
    to(rgba(255, 255, 255, 0.3))
  );
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.card-image-hover:hover::before {
  -webkit-animation: shine 0.75s;
  animation: shine 0.75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
/**GRADIENT FOR CARDS*/
.bs-gradient {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85), transparent);
  padding: 20px 0px;
  width: 100%;
}
.transform-none {
  transform: none !important;
}
/**SUPPLIER CATEGORY BOX **/
.thumb-wrapper {
  position: relative;
  overflow: hidden;
}
.thumb-wrapper::before {
  content: "";
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.11);
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transition-delay: 100ms;
  transition-delay: 100ms;
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 2;
}
.thumb-wrapper .arr {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  background-color: var(--white);
  border-radius: 50%;
  color: var(--quaternary-color);
  font-size: 20px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 3;
}
.thumb-wrapper .arr span {
  line-height: 0px;
}
.thumb-wrapper .arr span::before {
  font-weight: 700;
}
.thumb-hover {
  position: absolute;
  inset: 0px;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  z-index: 3;
  overflow: hidden;
}
.small-thumb {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
}
.thumb-hover img {
  width: auto;
  height: 100px;
  margin: auto;
}
.thumb-hover p {
  font-size: 20px;
  color: var(--bs-white);
  font-weight: 700;
  margin: 15px 0;
}
.thumb img {
  min-height: 260px;
  width: 100%;
}

.thum__single:hover .thumb-wrapper::before {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.thum__single:hover .thumb-hover {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}
.supplier-category-grid .grid-item {
  width: 24%;
}
.explore-slider-swiper {
  width: 100%;
}
/** SUPPLIER DETAILS **/
.single-property-4 {
  position: relative;
  overflow: hidden;
}
.w100 {
  width: 100% !important;
}
.equalheight img {
  max-height: 275px;
  object-fit: cover;
}
/** TOOLTIp **/
.custom-tooltip {
  position: absolute;
  top: -40%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 100%;
  font-weight: 500;
  font-size: 12px;
  color: var(--bs-white);
  background-color: var(--bs-black);
  display: inline-block;
  width: max-content;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -moz-transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -ms-transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  -o-transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
  transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
}
.custom-tooltip::before {
  position: absolute;
  content: "";
  left: 50%; /* Adjust left or right positioning as needed */
  top: 100%; /* Position the arrow at the bottom of the element */
  transform: translateX(-50%); /* Center the arrow horizontally */
  width: 0;
  height: 0;
  border-left: 8px solid transparent; /* Make left side transparent */
  border-right: 8px solid transparent; /* Make right side transparent */
  border-top: 8px solid var(--bs-black); /* Arrow color (black in this case) */
  border-bottom: 0; /* Remove bottom border */
}
.custom-tooltip-right {
  left: -10px;
  right: 0;
}
.custom-tooltip-right::before {
  left: -4px;
  right: auto;
  border-left: 0;
  border-right: 8px solid var(--tp-common-black);
}
.custom-action-btn:hover .custom-tooltip {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-8px) translateY(-50%);
  -moz-transform: translateX(-8px) translateY(-50%);
  -ms-transform: translateX(-8px) translateY(-50%);
  -o-transform: translateX(-8px) translateY(-50%);
  transform: translateX(-8px) translateY(-50%);
}
/*PRODUCTS*/
.buying-container .slide-content {
  max-height: 125px;
  min-height: 125px;
}
/**SOCIAL ICONS**/
.social-icons a {
  width: 38px;
  height: 38px;
  border: #ffffff7d solid 1px;
  border-radius: 50%;
  line-height: 38px;
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--button-hover-color);
  border: var(--button-hover-color) solid 1px;
  color: var(--bs-white);
}
.footer-section .default-btn:hover {
  border: #fff solid 1px;
}
/**VIDEO PLAYER **/
.video-icon {
  position: absolute;
  left: -5%;
  bottom: 5%;
  height: 90px;
}
@media (min-width: 1300px) {
  .video-icon {
    left: 11%;
  }
}
@media (min-width: 1920px) {
  .video-icon {
    left: 15%;
  }
}
.video-icon a {
  width: 90px;
  height: 90px;
  border-radius: 45px;
  background-color: var(--secondary-color);
  display: inline-block;
  color: #fff;
  text-align: center;
  line-height: 90px;
  font-size: 35px;
}
.video-icon a::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--secondary-color);
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  z-index: 0;
}
@keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
@-webkit-keyframes pulse-border {
  0% {
    transform: scale(1);
    opacity: 0.67;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
/* .grid-item:before {
    height: 100%;
    opacity: .95;
    background: linear-gradient(rgba(17, 255, 43, 0), rgba(1, 20, 37, .231) 56%, #0f1b24 90%);
}
.grid-item:after,  .grid-item:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  pointer-events: none;
  transition: all .3s ease;
  z-index: 1;
}
.grid-item:after {
  height: 0;
  opacity: 0;
  background: linear-gradient(rgba(17, 255, 43, 0), #0f1b24 56%, #0f1b24 80%);
} */
/* .grid-item-text
{
  background-color: rgba(0, 0, 0, 0.5);
  padding: 7px 27px 8px 20px;
  position: absolute;
  bottom: 27px;
  left: 30px;
  right: 30px;
  transition: all .3s ease;
  z-index: 2;
} */
.grid-item-text a {
  color: #000;
}
.read-more {
  color: var(--bs-white);
  position: absolute;
  right: 10px;
  top: 9px;
  font-size: 22px;
  transition: all 0.3s ease;
}
.read-more {
  transform: rotate(-45deg);
  transition: all 0.3s ease;
}
/* .grid-item:hover .grid-item-text {
  background-color:var(--button-color);
  padding: 22px 27px 17px 20px;
  z-index: 2;
} */
/* .grid-item:hover .grid-item-text h4{
  -webkit-line-clamp: 2;
} */
/**MEGA MENU **/
.menu-item {
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
.menu-item a::before {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: "font awesome 6 pro";
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
  position: absolute;
  right: -2px;
}

.megamenu {
  position: fixed;
  left: 2%;
  width: 95%;
  background-color: #f9f9f9;
  visibility: hidden;
  box-sizing: border-box;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  /* transform: rotateX(-75deg); */
  transform-origin: 0% 0%;
  transition: 0.3s;
  box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 41%);
  border-radius: 8px;
}

.menu-item:hover .megamenu {
  transition: 0.3s;
  opacity: 1;
  visibility: visible;
  transform: rotateX(0deg);
  max-height: 100%;
}

.flex-item {
  padding: 15px;
  box-sizing: border-box;
}
.item-1 {
  flex: 0 0 50%;
  background-color: #fff;
}
.item-1-30 {
  flex: 0 0 30%;
  background-color: #fff;
  border-right: #e7e7e7 solid 2px;
}
.item-1-70 {
  flex: 0 0 70%;
  background-color: #f5f5f5;
}
.item-2 {
  flex: 0 0 50%;
  background-color: #f5f5f5;
}
.item1 {
  flex: 0 0 65%;
  background-color: #fff;
}

.item2 {
  flex: 0 0 35%;
  background-color: #f5f5f5;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.grid-3 img {
  width: 170px;
  height: 150px;
  max-height: 150px;
  min-height: 150px;
  object-fit: cover;
  border-radius: 8px;
}
.category-list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.item-1 .category-list,
.item-1-30 .category-list {
  grid-template-columns: repeat(1, 1fr);
}
.category-item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-slide-img h6 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0px;
}
.category-item a {
  padding: 0 !important;
  color: #000;
}
.category-item a::before,
.category-item a::after {
  content: "";
  height: 0;
}
.category-item a:hover {
  color: var(--button-color) !important;
}
.category-item a:hover::before,
.category-item a:hover::after {
  display: none !important;
}
.category-item img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  padding: 10px;
  background-color: #f5f5f5;
  border-radius: 50%;
}

/* Responsive Styles */
/* @media (max-width: 768px) {
  .megamenu {
    flex-direction: column;
  }
} */
/**NEED PLANNER **/
.about-one__image {
  position: relative;
  z-index: 2;
}

.about-one__double-image {
  display: grid;
  grid-template-columns: repeat(2, auto);
}
.about-one__double-image img {
  max-width: 100%;
  height: auto;
}
.about-one__double-image img:last-child {
  margin-left: 10px;
}
.about-one__image__info {
  position: absolute;
  right: 42px;
  bottom: 55px;
  width: 278px;
  background-color: var(--bs-white);
  padding: 24px 30px 6px 105px;
  box-shadow: 15px 29px 87px 0px rgba(0, 0, 0, 0.1);
}
.about-one__image__info__icon {
  position: absolute;
  left: 40px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 50px;
  height: 50px;
  background-color: var(--button-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--solox-white, #fff);
}
.about-one__image__info__icon span {
  display: block;
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}
.about-one__image__info:hover .about-one__image__info__icon span {
  transform: rotateY(180deg);
}
.about-one__image__info::after {
  position: absolute;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  left: 10px;
  top: 10px;
  content: "";
  border-width: 2px;
  border-style: solid;
  border-image: linear-gradient(
      -45deg,
      rgba(var(--solox-base-rgb, 194, 167, 78), 1) 0%,
      rgba(var(--solox-black-rgb, 28, 26, 29), 1) 100%
    )
    1;
  z-index: -1;
}
.about-one__image__arrow {
  position: absolute;
  right: -14px;
  bottom: -35px;
  z-index: -1;
}
.about-one__image__arrow img {
  filter: brightness(0) invert(0.8);
  max-width: 100%;
  -webkit-animation-name: float-bob-y-2;
  animation-name: float-bob-y-2;
  -webkit-animation-duration: 4s;
  animation-duration: 4s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@keyframes float-bob-y-2 {
  0% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(10px) rotate(5deg);
    transform: translateY(10px) translateX(10px) rotate(5deg);
  }
  100% {
    -webkit-transform: translateY(0px) translateX(0px) rotate(0deg);
    transform: translateY(0px) translateX(0px) rotate(0deg);
  }
}
.section-title {
  font-size: 22px;
  line-height: 34px;
  color: var(--button-color);
  margin: 0 0 34px;
  font-style: italic;
}
.section-title {
  border-left: 3px solid var(--button-color);
  padding-left: 15px;
  font-weight: 700;
}
.price-list {
  background-color: var(--button-color);
  border: 1px solid var(--button-color);
  padding: 10px 16px;
  font-size: 13px;
  line-height: 34px;
  color: var(--bs-black);
  border-radius: 0;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  margin-bottom: 40px;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.pricing-tabs {
  gap: 15px;
}

@media (max-width: 1199px) {
  .pricing-tabs {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .pricing-tabs {
    gap: 10px;
  }
}

@media (max-width: 575px) {
  .pricing-tabs {
    gap: 20px 10px;
  }
}

.pricing-tabs.nav-tabs {
  border-bottom: 0;
}

.pricing-tabs.nav-tabs .nav-link {
  border: none;
}

.pricing-tabs.nav-tabs .nav-item.show .nav-link,
.pricing-tabs.nav-tabs .nav-link.active {
  color: #fff;
  background-color: var(--button-color);
  border-color: var(--button-color);
  border-radius: 0;
}
.price-list:before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #f2f2f2;
  border: 1px solid var(--button-color);
  z-index: -1;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  -webkit-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;
}
.price-list:after {
  content: "";
  position: absolute;
  top: 100%;
  left: calc(50% - 17px);
  border-style: solid;
  border-width: 0 17px 0 17px;
  border-color: var(--button-color) transparent transparent transparent;
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.price-list.active::before {
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
}
.price-list.active:after {
  border-width: 13px 17px 0 17px;
}
.price-list-area {
  padding: 40px;
  border: 1px solid #f2f2f2;
  box-shadow: 0px 13px 25px rgba(0, 0, 0, 0.05);
  background-color: var(--bs-white);
  margin-top: 35px;
}
.pricing-form {
  background-color: var(--secondary-color);
  padding: 40px;
}
.text-white {
  color: #fff;
}
.list-check {
  list-style: none;
  position: relative;
  padding: 0;
}
.list-check li {
  padding: 0px 0px 5px 25px;
  list-style: none;
  position: relative;
}
.list-check li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 20px;
  color: var(--bs-gray);
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.form-label {
  font-size: 13px;
  color: #f5f5f5;
}
.singleswiper .swiper-slide {
  height: 490px;
}
.singleswiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-thumbnail,
.team-style1 .team-img {
  background-color: #e5d4ce;
  border-radius: 9999px;
  overflow: hidden;
  margin: 7px;
  outline: 0.5px solid rgba(154, 86, 58, 0.4);
  outline-offset: 5px;
  position: relative;
  transition: all ease 0.4s;
}
.team-thumbnail img,
.team-style1 .team-img img {
  width: 100%;
  position: relative;
  z-index: 2;
  transform: scale(1.001);
  transition: all ease 0.4s;
}
.team-about h3 {
  color: var(--secondary-color);
}
.team-about .social-icons {
  display: flex;
  gap: 15px;
}
.team-about .social-icons a {
  color: var(--button-color);
  text-align: center;
  border: var(--button-color) solid 1px;
}
.form-row .category-filter {
  border: 1px solid #0000007a;
  background-color: rgb(0 0 0 / 69%);
  top: 85%;
  padding: 10px;
}
.form-row .category-filter ul {
  list-style: none;
  padding: 0;
}
.form-row .category-filter ul li {
  display: flex;
  gap: 10px;
  align-items: center;
}
.form-row .category-filter ul li img {
  width: 40px;
  position: relative;
  border-radius: 50%;
  object-fit: cover;
}
.swiper-pagination-bullet-active {
  background: #fff !important;
}
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .tools-slider {
    max-width: 940px;
  }
  .tools-slider h2.section-heading,
  .tools-slider p {
    max-width: 655px;
  }
}

@media only screen and (min-width: 1500px) {
  .tools-slider {
    max-width: 1059px;
  }
  .tools-slider h2.section-heading,
  .tools-slider p {
    max-width: none;
  }
}
/* .service-card {
  padding: 0 40px 40px;
}
.service-card::before {
  position: absolute;
  z-index: -1;
  left: 0;
  content: "";
}
.service-card::before {
  width: 100%;
  height: 100%;
  bottom: 0;
  background: var(--bs-white);
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
}
.service-card::before {
  height: calc(100% - 44px);
}
.service-card i {
  border: 2px solid var(--color-white);
  border-radius: 100px;
  -webkit-transition: .4s;
  -moz-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  width: 88px;
  height: 88px;
  font-size: 44px;
  line-height: 88px;
  background: var(--button-color);
    display: inline-block;
    text-align: center;
} */
/*ABOUT US */

.service-block-four .inner-box {
  background-color: #fbfbfb;
  position: relative;
  overflow: hidden;
}

.service-block-four .inner-box.style-two {
  background-color: #fff7eb;
}

.service-block-four .inner-box.style-three {
  background-color: #f4ecdf;
}

.service-block-four .inner-box.style-four {
  background-color: #f2efea;
}

.service-block-four .inner-box:hover:before {
  height: 100%;
}

.service-block-four .inner-box:hover .image-box .bg-image {
  opacity: 1;
}

.service-block-four .inner-box:hover .content-box {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.service-block-four .inner-box:hover .content-box .icon {
  -webkit-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
  color: var(--bs-white);
  opacity: 0;
  width: 0;
}

.service-block-four .inner-box:hover .content-box .title {
  color: var(--bs-white);
}

.service-block-four .inner-box:hover .content-box .text {
  color: var(--bs-white);
}

.service-block-four .inner-box:before {
  background-color: rgba(0, 0, 0, 0.7);
  content: "";
  position: absolute;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.service-block-four .inner-box .image-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.service-block-four .inner-box .image-box .bg-image {
  width: 100%;
  height: 100%;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.service-block-four .inner-box .content-box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
  padding: 60px 42px;
  min-height: 534px;
  z-index: 2;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.service-block-four .inner-box .content-box .icon {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  text-align: center;
  width: 100px;
  height: 100px;
  background: var(--secondary-color);
  border-radius: 50%;
  margin: auto;
  right: 0;
  padding: 20px;
}
.service-block-four .inner-box .content-box .icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}
.service-block-four .inner-box .content-box .title {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 21px;
  font-family: var(--title-font);
}

.service-block-four .inner-box .content-box .text {
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  font-size: 16px;
  line-height: 26px;
}

.service-block-four .inner-box .content-box .theme-btn {
  margin-top: 30px;
}
.elementor-video {
  width: 100%;
  width: 100%;
  z-index: 9;
  display: block;
  position: relative;
}
.videoelem {
  position: relative;
}
.videoelem::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #efefef;
  z-index: 0;
}
.dlab-box {
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
  position: relative;
}
.dlab-media {
  overflow: hidden;
  position: relative;
}
.dlab-media img,
.dlab-post-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.dlab-media-info {
  background-color: #000c;
  padding: 20px;
  position: absolute;
  bottom: -56%;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.dlab-media-info .dlab-title {
  font-size: 20px;
  line-height: 28px;
}
.dlab-info {
  position: relative;
  padding: 30px 10px;
  margin-bottom: 30px;
}
.dlab-info h2 {
  color: #000;
  font-size: 110px;
  margin: 0;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: -10px;
  opacity: 0.05;
  transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}
.dlab-title {
  font-family: Abhaya Libre, serif;
  color: #000;
  font-size: 28px;
  margin: 0;
}
.dlab-box:hover .dlab-media-info {
  bottom: 0;
}
.dlab-box .dlab-media-info .dlab-title a {
  color: #fff;
}
.dlab-media-info p {
  font-size: 14px;
  color: #fff;
  margin-bottom: 0;
}
.choose-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 15px;
  padding: 15px;
  margin-bottom: 20px;
}
.choose-icon {
  width: 70px;
  height: 70px;
  line-height: 65px;
  background: var(--button-color);
  border-radius: 15px;
  text-align: center;
  color: var(--bs-white);
  font-size: 40px;
}
.choose-icon img {
  width: 100%;
  padding: 10px;
  filter: brightness(0) invert(1);
}
.choose-item-content {
  flex: 1;
}
/* .choose-item:nth-child(2) {
  margin-left: 30px;
} */
.choose-item.active {
  margin-left: 30px;
  background: var(--bs-white);
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  border: none;
}
.image-box .image {
  padding: 30px 0px 30px 30px;
  position: relative;
  z-index: 0;
}
.image-box .image:before {
  background-color: #f6f6f6;
  border-radius: 10px;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}
.overlay-anim:after {
  background: rgba(255, 255, 255, 0.3);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 0;
  opacity: 1;
  z-index: 9;
  pointer-events: none;
}
.image-box .image img {
  border-radius: 10px;
  min-height: 650px;
  max-height: 650px;
  object-fit: cover;
  width: 100%;
  margin-left: 20px;
}
.w-100 {
  max-width: 100%;
}
/**WEDDING TOOLS **/
.svg-shape,
.svg-shape01 {
  bottom: 0;
  inset-inline-start: 0;
  height: 100px;
  z-index: 9;
}
.banner-1 {
  height: 100%;
  width: 100%;
  z-index: 2;
  position: relative;
  background-color: var(--secondary-color);
  background-image: url(../images/21.png);
  background-size: cover;
}
.banner-1::before {
  display: none;
}
.banner-1 img {
  width: 400px;
  inset: auto;
  bottom: -30px;
  height: auto;
}
.banner-1 p {
  font-size: 14px;
  margin: 0;
  padding: 0;
}
.feature-card {
  padding: 25px;
  position: relative;
  box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  background: var(--bs-white);
  z-index: 1;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.feature-card .feature-card-bg-shape {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  opacity: 0;
  width: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.feature-card .box-number {
  font-size: 65px;
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px #d8dde1;
  position: absolute;
  right: 40px;
  top: 20px;
  line-height: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.feature-card .box-icon {
  display: inline-block;
  background: #d8dde1;
  border-radius: 20px;
  margin-bottom: 40px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  padding: 10px;
}
.box-icon img {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  height: 50px;
}
.feature-card .box-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 11px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.feature-card .box-text {
  margin-bottom: -0.4em;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 15px;
  line-height: 25px;
}
.feature-card:hover {
  background: var(--black-color3);
}

.feature-card:hover .feature-card-bg-shape {
  opacity: 1;
  width: 306px;
}
.feature-card .feature-card-bg-shape img {
  filter: brightness(0) invert(0.95);
}

.feature-card:hover .box-icon {
  background: var(--button-color);
}

.feature-card:hover .box-icon img {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  filter: brightness(0) invert(1);
}

@media (max-width: 1199px) {
  .feature-card {
    padding: 30px;
  }

  .feature-card .box-number {
    font-size: 80px;
    right: 30px;
    top: 15px;
  }

  .feature-card .box-icon {
    margin-bottom: 30px;
  }

  .feature-card .box-title {
    font-size: 24px;
  }

  .feature-card:hover .feature-card-bg-shape {
    width: 200px;
  }
}
section.parallax-section {
  padding: 110px 0;
  position: relative;
  padding-bottom: 50px;
}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background-size: cover;
  background-attachment: scroll;
  background-position: center;
  background-repeat: repeat;
  background-origin: content-box;
}
section.parallax-section .bg {
  height: 120%;
  top: 0;
}
.fl-wrap {
  float: left;
  width: 100%;
  position: relative;
}
.intro-item h2 {
  font-size: 34px;
  text-align: center;
  font-weight: 700;
  padding-bottom: 20px;
}
.intro-item h3 {
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}
.parallax-section img {
  max-width: 600px;
  margin: auto;
  display: block;
}
.about_img {
  display: flex;
  align-items: center;
  position: relative;
}
.about_img::before {
  content: "";
  position: absolute;
  left: 38%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background-color: #f5f5f5;
  border-radius: 100%;
  z-index: -1;
}
.about_img img {
  max-width: 100%;
}

.moving_position_animatin {
  position: relative;
  animation: moving_position_animatin 6s infinite linear;
  z-index: -1;
}
.moving_animation {
  animation: moving_object 6s infinite linear;
}
@keyframes moving_object {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes moving_position_animatin {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0);
  }
}
.about_img .screen_img {
  margin-left: -135px;
  margin-top: 110px;
}
.about_img .screen_img img {
  animation-delay: 3s;
}
.choose_us_row {
  margin-top: 30px;
}
.choose_us_box {
  border: 1px solid #ececec;
  margin-bottom: 30px;
  width: 100%;
  display: flex;
  padding: 30px;
}
.choose_us_box_text h4 {
  text-transform: capitalize;
  font-size: 22px;
}
.choose_us_box_text p {
  font-size: 14px;
  line-height: 23px;
}
.right_content {
  text-align: right;
}
.left_content {
  text-align: left;
}
.choose_us_svg img {
  height: 40px;
  width: 40px;
  filter: brightness(0) invert(1);
}
.left_content .choose_us_svg {
  width: 70px;
  float: left;
  text-align: center;
  height: 80px;
  line-height: 80px;
  background: var(--secondary-color);
  border: 1px solid transparent;
  position: relative;
  margin: auto;
}
.left_content .choose_us_box_text {
  width: calc(100% - 70px);
  margin-left: 10px;
}
.right_content .choose_us_svg {
  width: 70px;
  float: right;
  text-align: center;
  height: 80px;
  line-height: 80px;
  background: var(--secondary-color);
  border: 1px solid transparent;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  margin: auto;
}
.choose_us_box:hover .choose_us_svg {
  background-color: transparent;
  border-color: var(--secondary-color);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.choose_us_box:hover .choose_us_svg img {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  filter: brightness(1) invert(0);
}
.choose_us_box:hover .choose_us_box_text h4 {
  color: #b8824f;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.right_content .choose_us_box_text {
  float: left;
  width: calc(100% - 70px);
  margin-right: 10px;
}
.choose_us_svg:after {
  content: "";
  position: absolute;
  width: 2px;
  height: 75px;
  background: var(--secondary-color);
  top: -75px;
  left: 34px;
}
.choose_us_svg:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 75px;
  background: var(--secondary-color);
  bottom: -73px;
  left: 34px;
}
.choose_us_img img {
  max-width: 100%;
}
.section-gray {
  background: var(--bg-gray);
}
/**SWIPER ARROWS **/
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
}
.swiper-button-prev:after {
  content: "\f177";
}
.swiper-button-next:after {
  content: "\f178";
}
.swiper-slide-content h2 {
  font-family: var(--heading-font);
}
.new-badge {
  height: 29px;
  width: fit-content;
  position: absolute;
  background: red;
  color: white;
  top: 10px;
  line-height: 29px;
  text-align: center;
  background: linear-gradient(to right, #e63946, #d31f26);
  left: 0;
  z-index: 0;
  font-size: 13px;
  padding-left: 5px;
}
.new-badge:before,
.new-badge:after {
  content: "";
  position: absolute;
  right: -10px;
  top: 0;
  height: 49%;
  width: 40px;
  background: inherit;
  z-index: -1;
}
.new-badge:before {
  transform: skewX(-45deg);
}
.new-badge:after {
  transform: skewX(45deg);
  top: 50%;
}
@media (min-width: 992px) {
  .menu-item .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }
}
.menu-item .dropdown-menu {
  display: block;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  margin-top: 0;
  border: none;
  left: -15px;
  border-radius: 15px;
  padding: 15px 12px;
  background: var(--bs-white);
  width: 220px;
}
@media (min-width: 992px) {
  .menu-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
    margin-top: 0 !important;
    left: 0 !important;
  }
}
.menu-item .dropdown-menu a {
  padding: 5px 10px;
  color: var(--bs-black);
}
.menu-item .dropdown-menu a::after,
.menu-item .dropdown-menu a::before {
  display: none;
}
