@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&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: "Roboto", sans-serif;
  --heading-font: "Roboto", sans-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;
  --theme-color:#860853;
  --button-hover-color: #821541;
  --body-font-size: 15px;
  --body-font-line-height: 28px;
  --bs-gray:#959EAE; /*RADHIKA */
  --secondary-color:#597498; /*RADHIKA */
  --transition: all 0.5s ease; /*Radhika */
  --bg-gray:#F6F6F6;
  --border-color: #e9e9e9;
  --color-border: #DDDDDD;
  --light-bg:  #f1f4f8;

}
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;
}
.btn-default i{
  font-size: 15px;
  color: #adadad;
}
.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: 9;
}
.swiper-pagination{z-index: 8 !important;}
.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 105px;
  margin-right: 8px;
  /*filter: brightness(0) invert(1);*/
}
.scrolled .header .logo img {
  max-height: 70px;
}

.scrolled .header,.fixedheader {
  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);
}
.scrolled .topbar{display: none;}
/* @media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }
  .header .navmenu {
    order: 3;
  }
} */

  .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 li.position-static a::after{
    width: 85px;
    left: auto;
  }
  .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 13px;
    font-size: 15px;
    font-family: var(--default-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.6s;
    
  }
  .scrolled .navmenu a,
  .navmenu a:focus,
  .without-banner a 
  {
    padding: 25px 15px;
  }
  .without-banner a {
    color: #333333;
  }
  .navmenu a i,
  .navmenu a:focus i,
  .without-banner a i,
  .without-banner a:focus i {
    font-size: 15px;
    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: #e0e0e0;
    /* font-weight: 600; */
  }
  .megamenu li a:hover{
    color: #161616 
  }
 

  .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 */

.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: 40px; */
  line-height:50px;
  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;
}
.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: 50px 0; 
  position: relative; /*Radhika*/
}
.category-slider h2 {
 
  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); */
  border: 1px solid #bababa;
  color: #bababa;
}
.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: center;
  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 .card-slide-img img{
  max-height: none;
  min-height: auto;
  height: 209px;

}
.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); width: 100%;
}
.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,.dark-overlay .bs-gradient h2 {
  color: rgba(89, 116, 152, 1);
  font-family: var(--heading-font);
  font-weight: normal;
  font-size: 20px;
  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: 14px;
  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);
  
}
.testimonial-slider-swiper .swiper-slide-active:hover img {
    transform: none !important
  
}

.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: 50px 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: 0px;
}
.tools-slider .swiper-button-next,.tools-slider .swiper-button-prev
{
  top:50%
}
.tools-slider .swiper-button-prev{
  left: -55px;
}
.tools-slider .swiper-button-next{
  right: -55px;
}
h2.section-heading {
 
  line-height: 50px;
  /* 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: -55px;
    color: #000;
    width: 400px;
  z-index: 2;
  left: -20px;
  font-size: 40px;
  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: 210px 0;
}
.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,.dark-overlay .bs-gradient 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: 12px;
  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:var(--light-bg);
  padding: 50px 0;
  text-align: center;
  background-position: top;
}

.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;
}
.shape-mockup {
  position: absolute;
  /* z-index: -1; */
  pointer-events: none;
}
.movingX {
  animation: 8s linear 0s infinite normal none running movingX;
}
.shape-mockup.shape3 {
  animation: 20s linear 0s infinite normal none running cloudAni;
}
@keyframes cloudAni {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-80px);
    transform: translateY(-80px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes movingX {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(50px);
            transform: translateX(50px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.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 a,.swiper-slide-img a{position: relative; height: 100%;}
.packages .swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-bottom: 2px solid #ccc;
}

.packages .swiper-slide .destination-name {
 padding: 15px;
    font-size: 13px;
    font-weight: bold;
    text-align: left;
    position: absolute;
    z-index: 99;
    line-height: 25px;
    color: var(--accent-color);
    bottom: 0;
    width: 100%;
    /* overflow: hidden; */
    /* display: -webkit-box; */
    /* -webkit-line-clamp: 1; */
    /* -webkit-box-orient: vertical; */
    /* width: 100%; */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
 
}
/* .packages .swiper-slide .destination-name::before{
       position: relative;
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    box-shadow: 0px -20px 2px 0px rgba(0, 0, 0, 0.5);
    width: 123%;
    display: block;
    height: 50px;
    margin-left: -15px;
    margin-bottom: -50px;
    z-index: -1;
} */
.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: 2px 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:20px 0;
  padding-bottom: 50px;
}
footer {
  background-color:var(--button-color);
  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: 185px;
  height: 105px;
  object-fit: contain;
  width: auto;
}
.footer-logo .swiper-slide{
  background: #fff;
  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: 14px;
  font-weight: 400;
  line-height: 25px;
}
/* .footer-content a {
  color: rgba(255, 255, 255, 0.75);
} */
.footer-content h5 {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 15px;
  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;
}
.subscribe-box {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 35px;
}
.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: 7;
}
.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;    background: #fbfbfb;
}
.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: 16.604vw;
  width: 100%;
}
.card-slide-flex {
  border: 1px solid rgba(89, 116, 152, 0.2);
  border-radius: 12px;
  padding: clamp(5px, 0.521vw, 10px);
  /* display: grid;
  max-width: 16.604vw;
  width: 100%; */
}
.card-slide-flex .swiper-slide{
  height: 100% !important;
}
.card-slide-flex .swiper
{
  padding: 0 !important;
  border-radius: 12px;
}
.card-slide-flex .swiper-slide-active:hover img {
  transform:none;
}
.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;    width: 100%;
  
}
.slide-content > div {
  /* display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px; */
  font-size: 15px;
  font-weight: 300;
  line-height: 17px;
}
.slide-content h5 {
  font-size: 17px;
    font-weight: 500;
  line-height: 17px;
  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;
  align-items: center;
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  color: #272727;
  justify-content: left;
}
.package-price strong {
  font-weight: 700;
  font-size: 15px;
  line-height: 16px;
}
.booknow-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--button-color);
  font-size: 15px;
  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);
}
.outline-btn
{
  min-width: 150px;
  font-size: 15px;
    font-weight: normal;
    line-height: 25px;
  max-height: 35px;
  min-height: 35px;
  color: var(--bs-white);
  border: 1px solid var(--bs-white);
  border-radius: 0.375rem;
  padding: 0.275rem 1.75rem;
  background-color: transparent;text-align:center
}

.default-btn {
  min-width: 150px;
  font-size: 15px;
    font-weight: normal;
    line-height: 25px;
  max-height: 35px;
  min-height: 35px;
  color: var(--button-color);
  border: 1px solid var(--button-color);
  border-radius: 0.375rem;
  padding: 0.275rem 1.75rem;
  background-color: var(--accent-color); text-align:center
}
.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{
  min-width: 150px;
  background-color:transparent;
  border:var(--button-color) solid 1px;
  color:var(--button-color);
  font-size: 15px;
  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: 0.475rem 1.75rem;
}
.color-button,.btn-primary {
  background-color: var(--button-color);
  color: #fff;
  font-size: 15px;
  font-weight: normal;
  line-height: 25px;
  border: 0px;
  outline: none;
  max-width: max-content;
  padding: 0.375rem 1.75rem;
  line-height: 25px;
  min-width: 150px;
  /* max-height: 35px;
  min-height: 35px; */
  /* width: 100%;
  height: 100%; */
  transition: background-color 0.3s ease, box-shadow 0.3s ease,
    transform 0.3s ease;text-align:center
}
.reveal6{    padding: 1px 30px;}

.color-button:hover,.btn-primary:hover,.btn-primary:focus {
  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 {
  background-color: rgba(134, 8, 83, 0.8);
  color: #fff;
  /* transform: scale(0.98);
  box-shadow: 0 2px 12px rgba(134, 8, 83, 0.2); */
}
.nav-link{
  color: var(--button-color);
}
.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 {
  bottom: 85px;
  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: 0;
  margin: 0;
  white-space: nowrap;
  justify-content: center;padding: 0px 20px;
}
.venue-item {
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal; /* Ensures text wraps */
  text-align: center; /* Keeps alignment */
  background: transparent;
  height: auto;
  box-shadow: none;
  display: flex;
  flex-direction: column; /* Stack content vertically */
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: normal; /* Allows text wrapping */
  word-wrap: break-word;
  overflow-wrap: break-word;  flex: 0 0 auto; /* Ensures slidesPerView works */
  width: auto; /* Let Swiper control width */
  max-width: 200px; /* Prevents excessive stretching */
}
/*Radhika*/
.venue-item .venue-icon {
  height: 24px;
  margin-bottom: 5px;
  color: #333333;
  width: 43px;
  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;
    line-height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.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);
}
.product-container::-webkit-scrollbar {
  width: 8px;
}
.venue-selector-container::-webkit-scrollbar{
  height: 8px;
}

.venue-selector-container::-webkit-scrollbar-thumb ,.product-container::-webkit-scrollbar-thumb {
  background-color: var(--button-color);
  border-radius: 10px;
}

.venue-selector-container::-webkit-scrollbar-track,.product-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: 25px;
      width: 100%;
      padding: 0px 0;
}
.stock-items .classic-box{margin-bottom: 0px;}
/* @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 ,.slide-content{
  /* flex-direction: column; */
  /* margin-top: 30px; */
  display: flex;
  gap: 6px;
}
.stock-items .slide-content .price,.slide-content .price {
  font-size: 25px;
  font-weight: 500;
  color: rgba(51, 51, 51, 1);
}
.stock-items .slide-content .price span:first-child,.slide-content .price span:first-child {
  font-weight: 900;
  line-height: 30px;
  color: var(--button-color);
  font-size: 18px;
}
.stock-items .card-slide-grid,.card-slide-grid {
  max-width: 100%;
}
.stock-items .slide-content span,.slide-content span{
  color: #808080;
  font-size: 15px;
}
.stock-items .slide-content .icon,.slide-content .icon{
  font-size: 13px;
  color: #ffce00;
  border: none;
  width: auto;
  height: auto;
  padding: 0px;
}
.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, .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);
  cursor: pointer;
}
.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: 50px 50px;
}
.free-delivery img.free-delivery-icon {
  transform: translateX(92px);
}
.free-delivery-text {
  background-color: #597398;
  border-radius: 15px;
  padding: 40px 60px 40px 60px;
  flex-direction: column;
  font-size: 44px;
  line-height: 44px;
  align-items: flex-start;
  color: #fff; width: 100%;
}
.free-delivery-icon{display: none !important;}
.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%;
  /* border-radius: 8px; */
  /* border: 1px solid #E2E2E2; */
  margin-bottom: 20px;
  z-index: 0;
}
.sidebar h4 {
  /* font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 24px; */
  font-size: 20px;
    padding: 30px 30px 20px 30px;
    border-bottom: 1px solid #E2E2E2;
    margin-bottom: 0;
}
.buying-container {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.top-search-filter-bar {
  width: 100%;
  height: 50px;
  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: 15px;
  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: 10px;
}
.list-filter input[type="checkbox"] {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(89, 115, 152, 0.2);
  border-radius: 4px;
}
.category-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  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;
  padding-left: 0;
    padding-bottom: 10px;
}

.modal-title {
  font-size: 20px;
  font-weight: normal;
  display: flex
;
  align-items: center;
  text-transform: uppercase;
  color: var(--secondary-color);
}

.modal-body {
  padding-top: 20px;
}
.modal-body h5{font-size: 15px;
  font-weight: normal;}

.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: 15px;
  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: 15px;
  color: #333333;
  text-wrap: balance;
}
.summary-items li > span {
  font-weight: 700;
  font-size: 15px;
  width: 25%;
  text-align: right;
}
.promo-code {
  margin-bottom: 1rem;
}
.promo-code > div {
  display: flex;
}
.promo-code label {
  width: 100%;
  flex: 0 0 100%;
  font-size: 15px;
}
.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;
  border-radius: 10px;
  border:#ccc solid 1px;
}

.apply-btn:hover {
 border: var(--button-color) solid 1px;
}

.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: normal;
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
    max-height: 40px;
    min-height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 10px; display: block;
}

.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: 15px;
  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: 15px;
  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: 15px;
  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: 0px 25px;
  }

  .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: 15px;
}

.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: 15px;
  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: 0px;
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.property-tabs .nav-item .nav-link {
  font-weight: bold;
  color: #000; /* Default color */
  font-size: 15px;
}
.google-maps #map{height:400px}

.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; */
}
.chosen-container-single .chosen-single{border-radius: 10px !important;}
/*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: 55%;
  color: #888;
  font-size: 18px;
  border: none;
  padding: 0;
  width: auto;
  height: auto;
}
.cart-table .input-field i.icon {
  top:21px;
  display: none;
}

.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: 767px) {
  .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: 0px 13px 9px #00000017 !important;
  border: none!important;
  background: #f5f5f5!important;
  margin-top: 15px!important;left: 0 !important;
  padding: 20px;}
  .nav-item .dropdown-menu{
    left:auto !important;
    background: #fff !important;
    width: 100% !important;
  }
  .nav-item .dropdown-menu a{color :#000 !important;    padding: 0;}
  .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: 15px;
  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: 240px;}
  .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%;    max-height: max-content;}
  @media(min-width:1920px)
  {
    .grid-item img {
      height: 310px;
  }
  .grid-item-1 img {
    height: 670px;
}
  }
  /** RADHIKA's CSS ADDITION **/
  .w-5{
    width: 20px;
    height: 20px;
}
#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: #d8d8d8 solid 1px !important;
    color: #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    display: block;
    padding: 0 !important;
    line-height: 30px;
    font-size: 12px;
  }
  .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); */
  grid-template-columns:repeat(auto-fit, minmax(185px, 1fr));
  gap: 20px;
}
.product-description{
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -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: -8px;
  right: -7px;
  /* display: inline-block; */
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  /* letter-spacing: -0.1em; */
  color: var(--accent-color);
  width: 20px;
  height: 20px;
  line-height: 14px;
  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: 15px;
  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: 15px;
  font-weight: bold;
  color: var(--secondary-color); */
}
.cartmini__title a{    color: #060606;
  font-size: 15px;}
.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: 20%;
  margin-bottom: 20%;
}
.cartmini__empty img {
  margin-bottom: 30px;
  height: 150px;
}
.cartmini__empty p {
  font-size: 15px;
  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: 45px;
  line-height: 35px;
  max-width: 245px;
  max-height: 56px; */
  /* display: block; */
    text-align: center;
    margin: auto;text-align: center;
    margin: auto;
    margin-bottom: 0 !important;
    max-width: max-content;
}
/** 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: 350px;
  object-fit: cover;
  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;justify-content: left;
}
.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: 15px;
  font-weight: 400;
  margin-bottom: 13px;
}
.product-quantity {
  width: 100px;
  position: relative;
  border-radius: 20px;
}
.product-details-quantity .product-quantity,.product-quantity {
  width: 100px;
  border-radius: 0;
}
.cart-plus, .cart-minus {
  display: inline-block;
  text-align: center;
  font-size: 15px;
  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: 40px;
  line-height: 40px;
  background-color: #F3F5F6;
  border: 0;
  border-radius: 0;
  font-size: 15px;
  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: 25px;
  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: 10px;
}
.cart-button {
  position: relative;
  transition: .3s ease-in-out;
  overflow: hidden;
}
.cart-button:active {
  transform: scale(.9);
}

.cart-button .fa-shopping-cart {
	position: absolute;
	z-index: 2;
	top: 50%;
	left: -16%;
	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: #fff;
  width: 100%;
  height: 40px;
  border-radius: 0px;
  box-shadow: none !important;
  padding-right: 25px;
  border: 1px solid #E3E3E3;
  color: #7c7b7b;
  margin-bottom: 5px;
  font-size: 14px;
  border-radius: 8px;
}
.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: normal;
  border-right: 1px solid rgba(255,255,255,.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: 35px;
  height: 35px;
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-size: 15px;
  display: flex
;
    align-items: center;
    justify-content: center;
}
/* .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, .95);
  transition: all 1500ms cubic-bezier(.86,0,.07,1);
  transition-timing-function: cubic-bezier(.86,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 .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; text-align: center;
}
/**CATEGORY SLIDER **/
.category-slider-swiper .swiper-slide{
  height: 310px;
  /* 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%
}
.related .swiper-button-prev,.related .swiper-button-next,.explore .swiper-button-next{
  top:55%
}
.related .swiper,.explore .swiper{padding:0px !important}
.category-slider .swiper-button-next, .packages .swiper-button-next,.related .swiper-button-next,.explore .swiper-button-next
{
  right: -4%;
}
.category-slider .swiper-button-prev, .packages .swiper-button-prev,.related .swiper-button-prev,.explore .swiper
{
  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;
  /* width:245px; */
  object-fit: cover;
  border-radius: 10px;
}
.supplier-item .swiper-slide{
  height: 100%;
  background: transparent;
  box-shadow: none;
}
.supplier-item .swiper-slide-active:hover img,.venue-item .swiper-slide-active:hover img
{
  transform: none;
}
.location-pin{
  font-size: 13px;
    color: #7b7b7b;
    font-family: var(--heading-font);
}
.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: 450px; 
  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:35%
}
.weddingDestinations .swiper-button-next{
  right:auto;
  left:50%;  
}
/* 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, .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, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}
.card-image-hover:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .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, .85), transparent);
  padding: 20px 0px;
  width: 100%; height: 100px;
}
.transform-none
{
  transform: none !important;
}
/**SUPPLIER CATEGORY BOX **/
.thumb-wrapper {
  position: relative;
  overflow: hidden;border-radius: 10px;    margin-bottom: 15px;
}
.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(--bs-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: 70px;
  height: 70px;
  border-radius: 50%;
  background: #fff;
  padding: 10px;
}
.thumb-hover img {
  width: auto;
  height: 45px;
  margin: auto;
}
.thumb-hover p {
  font-size: 20px;
  color: var(--bs-white);
  font-weight: 700;
  margin: 15px 0;
}
.thumb img {
  min-height: 360px;
  width: 100%;
}
.thum__single .title {
  background: linear-gradient(0deg, rgba(0, 0, 0, .85), transparent);
  position: absolute;
  bottom: 0;
  color: #fff;
  width: 100%;
  padding: 20px;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
}
/* 
.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%;
}
.explore .swiper-slide-img{border-radius: 20px;}
.explore img{height: 100%;}
/** SUPPLIER DETAILS **/
.single-property-4 {
  position: relative;
  overflow: hidden;
}
.single-property-4::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #00000070;
}
.single-property-4 .position-absolute {
  top:50%; width: 80%;}
.single-property-4 h2{
  color: #fff;
}
.w100 {
  width: 100% !important;
}
.single-property-4 .popup-img img{
  max-height: 550px;
  min-height: 550px;
  object-fit: cover;
}
.equalheight img
{
  max-height: 275px !important; min-height: 275px !important;
  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);display: flex
  ;
      align-items: center;
      justify-content: center;
}
.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;
}
.footer-section ul li a{
  color:#ffffffeb
}
/**VIDEO PLAYER **/
.video-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  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 .3s ease;
}
.read-more {
  transform: rotate(-45deg);
  transition: all .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 .15s ease-in-out, background-color .15s ease-in-out, border-color .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;
    line-height: 21px;
}


.megamenu {
  position: absolute !important;
  left: 0;
  top: 100% ;
  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;  */
  width: 100% !important;        
  opacity: 0;              
  overflow: hidden;          
  /* transform: rotateX(-75deg); */
  transform-origin: 0% 0%;
  transition: .3s;
  box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 41%);
  border-radius: 10px;
}

.menu-item:hover .megamenu {
  transition: .3s !important;
        opacity: 1;
        visibility: visible;
        transform: rotateX(0deg)!important;
      min-height:max-content !important;
       
}
/* .megamenu .d-flex{width: 92%;} */
 
.flex-item {
  padding: 15px;
  box-sizing: border-box;
}
.item-1
{
  flex: 0 0 50%;
  background-color: #fff;
}
.item-1-30
{
  flex: 0 0 100%;
  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 100%;
  background-color: #fff;
}

.item2 {
  flex: 0 0 33%;
  background-color: #f5f5f5; 
}
.grid-3{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap:30px;
}
.grid-3 img{
  width: 100%;
height: 150px;
max-height: 150px;
min-height: 150px;
  object-fit: cover;
  border-radius: 8px;
}
.category-list
{
  display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap:5px;
}
.item-1 .category-list,.item-1-30 .category-list
{
  grid-template-columns: repeat(2, 1fr);
}
.category-item {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap:10px;
  transition: all 0.4s ease;
}
.category-item a{display: flex; gap:5px;
  padding:4px !important;}
.category-item a div{
  width: 38px;
  height: 38px;
  background-color: #f5f5f5;
  border-radius: 50%;
  position: relative;
  transition: all 0.4s ease;
  z-index: 1;
  text-align: center;
}
.bg-transparent .category-item a div{
  background-color: #fff;
}
.category-item a div::after {
  position: absolute;
  content: "";
  background-color: var(--secondary-color);
  width: 100%;
  height: 0%;
  left: 50%;
  top: 50%;
  border-radius: 25px;
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: -1;
  transition: all 500ms ease;
}
.category-item:hover a div::after {
  height: 100%;
}

.category-item img
{
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  filter: brightness(0) invert(0.5);
  transition: all 0.4s ease;
 
}
.category-item:hover img {
 filter: brightness(0) invert(1);
 /* transform: scale(0.9); */
}

/* .category-item:hover{
 
  border-radius: 10px;
} */
.bg-transparent .category-item:hover
{
  background: var(--bs-white);
}
.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(--secondary-color) !important
}
.category-item a:hover::before,.category-item a:hover::after{
  display: none !important;
}

/* 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: 20px;
  line-height: 29px;
  /* 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: normal;
}
.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;
}
.pricing-form label{color:#f5f5f5 !important}
.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: .5px solid rgba(154, 86, 58, .4);
  outline-offset: 5px;
  position: relative;
  transition: all ease .4s;
}
.team-thumbnail img, .team-style1 .team-img img {
  width: 100%;
  position: relative;
  z-index: 2;
  transform: scale(1.001);
  transition: all ease .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; margin-bottom: 20px;
}
.form-row .category-filter ul li img{
  width: 40px;
  height: 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(--bs-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: 15px;
  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 .2s linear;
    -moz-transition: all .2s linear;
    -ms-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .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 .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .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: .05;
  transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .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 {
  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, .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%;width: 100%;
}
/**WEDDING TOOLS **/
.svg-shape, .svg-shape01 {
  bottom: 0;
  inset-inline-start: 0;
  height: 100px;
  z-index: 2;
}
.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;
  justify-content: center;
}
.about_img::before {
  content: "";
  position: absolute;
  left: 50%;
  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: .3s;
  margin-top: 0;
  border: none;
  left: -15px;
  border-radius: 10px;
  padding: 15px 12px;
  background: var(--bs-white) !important;
  width: 220px;
  box-shadow: 0px 2px 6px 0px rgb(0 0 0 / 41%);
    border-radius: 10px;
}
@media (min-width: 992px) {
  .menu-item:hover .dropdown-menu {
      transition: .3s;
      opacity: 1;
      visibility: visible;
      top: 100%;
      transform: rotateX(0deg);
      margin-top: 0 !important;
        left: 0 !important;
  }
  .menu-item:hover .dropdown-menu.megamenu
  {
    top: 100% !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;
}
.icon {width: 50px; height: 50px; border: rgba(var(--solox-base-rgb, 194, 167, 78), 1) solid 1px; padding:10px; margin: auto;}
.icon img{ height: 100%; filter: brightness(0) invert(0.5);}
.icon-rounded{border-radius: 50%;}
.progress-bar {
  font-size: 12px;
  line-height: 19.41640788px;
  font-weight: 600;
  margin: 5px auto 15px;
  height: 10px;
  width: 300px;
  text-align: left;
  border-radius: 15px;
    background-color: #ededed;
    border: 1px solid #fff;
    overflow: hidden;
    position: relative;
}
.progress-bar-complete {
  display: inline-block;
  background-color: #48964d;
  height: 10x;
  transition: .25s width;
  border-radius: 20px 0 0 20px;
  text-align: center;
}
.progress-bar-complete {
  transition: width .6s ease-out;
  height: 20px;
  background: #48964d;
}
.progress-bar-complete-red {
  background: -webkit-gradient(linear, left top, right top, from(#aa0015), to(#cf5338));
  background: -webkit-linear-gradient(left, #aa0015 0, #cf5338 100%);
  background: linear-gradient(to right, #aa0015 0, #cf5338 100%);
}
.progress-bar-label {
  position: absolute;
  top: 2px;
  left: 15px;
  color: #fff;
}
tbody, td, tfoot, th, thead, tr
{
  font-size: 13px;
    padding: 3px !important;
}
.input-underline
{
background: transparent;
border: none;
border-bottom: transparent solid 1px;
}
.input-underline:hover{
  border-bottom: #ccc solid 1px;
}
.input-underline:focus{
  outline: none;
  border-bottom: #000 solid 1px;
}
.main-title
{
  
  line-height:50px;
}
.footer-bottom .item
{
  flex: 1;
}
.popover-content .btn-primary{
  background: var(--button-color) !important;
  min-width: fit-content !important;
  padding: 5px 10px;
  top: -5px;
  right: -5px;
}
.popover-content .input-group-btn{
  right: 8px;
    top: 8px;
    z-index: 99;
}
table .chosen-container-single .chosen-single{
  background:transparent !important;
  line-height:30px !important;
  height:min-content !important;
  border:none !important;
  padding-left:0px !important;
  font-size: 13px;
}
.guests-invitationForm-upload {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  width: 100%;
  position: absolute;
  text-align: center;
}.guests-invitationForm-upload-label {
  color: #6c6c6c;
  text-transform: uppercase;
  border-radius: 3px;
  padding: 10px 15px;
  background: #fff;
  cursor: pointer;
  display: inline-block;
  margin-top: 30px;
}.guests-invitation-preview img {
  width: 100%;
  max-height: 325px;
}
/**CONTACT US **/
.contact-card {
  position: relative;
  padding: 0;
  text-align: center;
}
.contact-card .box-icon {
  background-color: var(--secondary-color);
  display: inline-block;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  color: #fff;
}
.contact-card .box-icon i {
  -webkit-transform: translate(0, 10px);
  -ms-transform: translate(0, 10px);
  transform: translate(0, 10px);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 35px;
}
.contact-card .box-icon:after {
  content: '';
  position: absolute;
  inset: 0;
  border: 10px solid #354a66;
  border-radius: 50%;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0.3;
}
.contact-card .box-content {
  background-color: #fbfbfb;
  padding: 40px;
  border-radius: 10px;
  margin-top: -3rem;
  padding-top: 70px;
  font-size: 15px;
}
.contact-card .box-title {
  margin-bottom: 14px;
  font-size: 20px;
    line-height: 1.417;
    font-weight: 600;
}
.contact-card:hover .box-icon i{
  transform: translate(0, 10px) rotateY(180deg);
}
.contact-card:hover .box-icon:after{
  border-color:#f6f6f6;
}
.contact-card a{
  color: #000;
}
.st-shape-bg {
  position: absolute;
  top: 0;
  width: 100%;
  left: 0;
  z-index: -1;
}
.st-shape-bg:before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#fff));
  background-image: linear-gradient(transparent, #fff);
  bottom: 0;
  left: 0;
}
.st-shape-bg img {
  width: 100%;
  height: 500px;
}
.appoinment-box {
  padding: 40px;
  background: #ffffff;
  border: #f9f9f9 solid 2px;
}
.contacts-section{position: relative;padding: 50px 0px;}
.appoinment-box label{color: #1b1b1b;}
.features-items {
  padding-left: 35px;
}
.features-items li {
  border-bottom: 1px solid #e7e7e7;
  margin-bottom: 20px;
  padding-bottom: 10px;
  display: flex;
}
.features-items i {
  text-align: center;
  font-size: 60px;
  margin-bottom: 25px;
  color: #dbdbdb;
  display: inline-block;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  min-width: 65px;
}
.features-items li .info {
  padding-left: 20px;
}
.features-items h4 {
  text-transform: capitalize;
  font-weight: 600;
}
.features-items p{
  font-size: 15px;
}
.bottom {
  border: 1px solid #e7e7e7;
  display: flex;
  padding: 30px;
  margin-top: 30px;
}
.video-play-button.relative {
  position: relative;
  height: 80px;
  width: 80px;
  display: inline-block;
  left: 0;
  top: 0;
  line-height: 80px;
  text-align: center;
  transform: inherit;
}
.video-play-button {
  color: var(--button-color);
  font-size: 30px;
  left: 50%;
  padding-left: 7px;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  z-index: 1;
}
.video-play-button.relative.theme::after, .video-play-button.relative.theme::before {
  background: var(--button-color);
}
.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 80px;
  height: 80px;
  background: #ffffff repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
  z-index: -1;
}
.video-play-button.relative.theme i {
  color: #ffffff;    font-size: 30px;
}
.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: #ffffff repeat scroll 0 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  transition: all 200ms;
  -webkit-transition: all 200ms;
  -moz-transition: all 200ms;
  -ms-transition: all 200ms;
  -o-transition: all 200ms;
  z-index: -1;
}.bottom .content {
  padding-left: 30px;
}.bottom h4 {
  text-transform: uppercase;
  font-weight: 600;
  color: #666666;
}
/**PRESS MEDIA **/
.gallery-page__filter__list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}.gallery-page__filter__list li.active {
  background-color: var(--secondary-color);
  color:#fff
}
.gallery-page__filter__list li {
  padding: 8px 23px;
  font-size: 15px;
}
.mediox-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: #d0d0d0;  
  font-size: 15px;
  color: var(--bs-black);
  text-align: center;
  font-weight: 600;
  line-height: 1.75;
  padding: 12px 20.5px;
  cursor: pointer;
  transition: 500ms;
  text-transform: capitalize;
  z-index: 1;
  overflow: hidden;
  border-radius: 100px;
}.gallery-page__filter__list li::before, .gallery-page__filter__list li::after {
  background-color: var(--secondary-color);
}
.mediox-btn::before {
  left: -5px;
  border-radius: 100px 0 0 100px;
}
.mediox-btn::before, .mediox-btn::after {
  content: "";
  background-color: var(--mediox-black, #0A2241);
  height: calc(100% + 6px);
  width: 0%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
  transition: all 500ms ease;
}.mediox-btn::after {
  right: -5px;
  border-radius: 0 100px 100px 0;
}
.mediox-btn:hover::before, .mediox-btn:hover::after {
  width: calc(50% + 6px);
}
.portfolio-card {
  position: relative;
  overflow: hidden;
  border: #e7e7e7 solid 3px;
  padding: 20px;
  min-height: 300px;
  margin-bottom: 30px;
  display: flex;
    justify-content: center;
    align-items: center;
}
.portfolio-card__hover__box {
  height: 100%;
  top: 0;
  opacity: 0;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: RGBA(var(--mediox-black-rgb, 10, 34, 65), 0.8);
  -webkit-transition: all 0.5s ease 0s;
  transition: all 0.5s ease 0s;
  width: 25%;
}
.portfolio-card__hover__box--1 {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.portfolio-card__hover__box--2 {
  left: 25%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.portfolio-card__hover__box--3 {
  left: 50%;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.portfolio-card__hover__box--4 {
  left: 75%;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}
.portfolio-card:hover .portfolio-card__hover__box {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.portfolio-card__image {
  width: 100%;
  display: block;
}
.portfolio-card__content {
  width: 100%;
  padding: 31px 40px;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  transform: translateY(100px);
  z-index: 1;
  transition: all 500ms ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .portfolio-card__content {
    padding: 21px 30px;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .portfolio-card__content {
    padding: 21px 30px;
  }
}
@media (max-width: 375px) {
  .portfolio-card__content {
    padding: 21px 30px;
  }
}
.portfolio-card:hover .portfolio-card__content {
  opacity: 1;
  transform: translateY(0);
  transition: all 500ms ease;
}
.portfolio-card__title {
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 24px;
  color: var(--bs-white);
  text-transform: capitalize;
  line-height: 1.375;
}
@media (max-width: 375px) {
  .portfolio-card__title {
    font-size: 22px;
  }
}
.portfolio-card__title:hover {
  color: #d0d0d0;
}
.portfolio-card__title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.portfolio-card__title a:hover {
  background-size: 100% 1px;
}
.portfolio-card__text {
  margin: 0;
  font-weight: 500;
  color: var(--bs-white);
  text-transform: capitalize;
}
.portfolio-card__btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color:var(--secondary-color);
  position: absolute;
  top: 30px;
  right: 30px;
  opacity: 0;
  transform: translateX(100px);
  z-index: 1;
  transition: all 500ms ease;
}
.portfolio-card__btn__icon {
  display: inline-flex;
  font-size: 18px;
  color: var(--bs-white);
  transition: all 500ms ease;
}
.portfolio-card__btn__icon svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}
.portfolio-card__btn:hover .portfolio-card__btn__icon {
  transform: rotate(45deg);
}
.portfolio-card:hover .portfolio-card__btn {
  opacity: 1;
  transform: translateX(0);
}
.portfolio-card--one {
  border-radius: 10px;
}
.portfolio-card--one .portfolio-card__hover__box {
  width: 20%;
  opacity: 1;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
}
.portfolio-card--one .portfolio-card__hover__box--1 {
  left: 0;
  -webkit-transition-delay: 0.105s;
  transition-delay: 0.105s;
}
.portfolio-card--one .portfolio-card__hover__box--2 {
  left: 20%;
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}
.portfolio-card--one .portfolio-card__hover__box--3 {
  left: 40%;
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}
.portfolio-card--one .portfolio-card__hover__box--4 {
  left: 60%;
  -webkit-transition-delay: 0.25s;
  transition-delay: 0.25s;
}
.portfolio-card--one .portfolio-card__hover__box--5 {
  left: 80%;
  -webkit-transition-delay: 3s;
  transition-delay: 0.3s;
}
.portfolio-card--one:hover .portfolio-card__hover__box {
  transform: translateY(0);
}
.portfolio-card--one .portfolio-card__image {
  border-radius: inherit;
}
.portfolio-card--one .portfolio-card__content {
  padding: 21px 30px;
}
.portfolio-card__content p{
  color: #d7d7d7;
  font-size: 15px;
}
.items-data{
  padding: 20px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 10px;
    min-width: 200px;
    text-align: center;
}
.pricing-block {
  margin-bottom: 30px;
}.pricing-block .inner-box {
  border: #e5e5e5 solid 1px;
  background-color: var(--bs-white);
  
  border-radius: 10px;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.06);
          box-shadow: 0 10px 60px rgba(0, 0, 0, 0.06);
  padding:40px 20px 39px;
  position: relative;
  overflow: hidden;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;min-height: 610px;
}
@media (max-width: 1199.98px) {
  .pricing-block .inner-box {
    padding: 40px 20px 39px;
  }
}
@media (max-width: 991.98px) {
  .pricing-block .inner-box {
    padding: 40px 20px 39px;
  }
}
@media (max-width: 575.98px) {
  .pricing-block .inner-box {
    padding: 40px 20px;
  }
}
.pricing-block .inner-box:hover {
  -webkit-box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.pricing-block .inner-box.active {
  border: 1px solid var(--secondary-color);
}
.pricing-block .inner-box .title {
  letter-spacing: 0;
  margin-bottom: 7px;
  position: relative;
}
.pricing-block .inner-box .price-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 11px;
}
.pricing-block .inner-box .price-box .price {
  display: block;
  font-size: 30px;
  line-height: 1em;
  font-weight: 700;
  color: var(--secondary-color);
}
.pricing-block .inner-box .price-box .validaty {
  position: relative;
  color: var(--secondary-color3);
  margin-left: 2px;
  top: -5px;
}
.pricing-block .inner-box .text {
  border-bottom: 1px solid #e6e8e9;
  padding-bottom: 20px;
  margin-bottom: 30px;
}
.pricing-block .inner-box .pricing-plan-label {
  position: absolute;
  top: 20px;
  right: -135px;
  background-color: var(--secondary-color);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 340px;
  padding: 10px;
  font-size: 11px;
  font-weight: 400;
  line-height: 1;
  color: var(--text-color-bg-theme-color1);
  text-transform: uppercase;
  text-align: center;
  display: block;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.pricing-block .inner-box .features-list li {
  color: #2e2d2d;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 25px;
  padding-left: 30px;
  position: relative;
}
.pricing-block .inner-box .features-list li i {
  color: #d3d3d3;
  font-size: 20px;
  left: 0;
  line-height: 1em;
  position: absolute;
  top: 0;
}
.pricing-block .inner-box .theme-btn {
  margin-top: 25px;
  padding: 20px 46px;
}
.features-list
{list-style: none; padding: 0;}
small{
  font-size: 13px;
    line-height: normal;
}.news-block {
  margin-bottom: 30px;
}
.news-block .inner-box {
  position: relative;
  padding: 14px 14px;
  border: 1px solid #d4d0e4;
  -webkit-box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
          box-shadow: 0 10px 60px rgba(0, 0, 0, 0.07);
  background-color: var(--secondary-color-white);
}
.news-block .inner-box:hover .images-box .image img:first-child {
  -webkit-transform: translateX(0) scaleX(1);
          transform: translateX(0) scaleX(1);
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
}
.news-block .inner-box:hover .images-box .image img:nth-child(2) {
  -webkit-transform: translateX(-50%) scaleX(2);
          transform: translateX(-50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.news-block .inner-box .images-box {
  position: relative;
  overflow: hidden;
}
.news-block .inner-box .images-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.news-block .inner-box .images-box .image img {
  position: relative;
  width: 100%;
  display: block;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
.news-block .inner-box .images-box .image img:first-child {
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1;
  -webkit-transform: translateX(50%) scaleX(2);
          transform: translateX(50%) scaleX(2);
  opacity: 0;
  -webkit-filter: blur(10px);
          filter: blur(10px);
}
.news-block .inner-box .images-box .date {
  background: var(--gradient-2);
  bottom: 0;
  color: var(--text-color-bg-theme-color1);
  font-size: 12px;
  font-weight: 600;
  height: 34px;
  left: 20px;
  line-height: 34px;
  position: absolute;
  width: 110px;
  text-align: center;
  z-index: 1;
}
.news-block .inner-box .content-box {
  position: relative;
  padding: 20px 20px 10px; text-align: center;
}
.news-block .inner-box p{font-size: 15px;}
@media (max-width: 575.98px) {
  .news-block .inner-box .content-box {
    padding: 20px 0px 10px;
  }
}
.cs_post_btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--button-color);
}
.network-block .inner-box {
  position: relative;
}
.network-block .image-boxs {
  position: relative;
  max-width: 355px;
  margin: 0 auto;
  width: 100%;
}
.network-block .image-boxs .image {
  position: relative;
  padding: 100px 13px;
  text-align: center;
}
.network-block .image-boxs .image:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 100%;
  border: 1px solid var(--secondary-color);
  border-radius: 300px;
}.image-boxs .icon-flower-3 {
  position: absolute;
  top: 30px;
  left: -115px;
  background-repeat: no-repeat;
}.bounce-y {
  -webkit-animation: bounce-y 10s infinite linear;
  animation: bounce-y 10s infinite linear;
}
.icon-flower-3 {
  width: 141px;
  height: 217px;
  background-image: url(../images/icon-flower-3.png);
}@keyframes bounce-y {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
            transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}.icon-flower-4 {
  position: absolute;
  bottom: 10px;
  right: -120px;
  background-repeat: no-repeat;
}.icon-flower-4 {
  width: 134px;
  height: 188px;
  background-image: url(../images/icon-flower-4.png);
}
.time-counter {
  position: relative;

}
.time-counter .time-countdown {
  border: 1px solid #4c4c4c;
  border-radius: 300px;
  padding: 35px 60px;
  
  justify-content: center;
}
@media (max-width: 575.98px) {
  .time-counter .time-countdown {
    display: -webkit-box;
    display: -ms-flexbox;
   
            margin-bottom: 50px;
  }
}
.time-counter .time-countdown .counter-column {
  position: relative;
  max-width: 250px;
  width: 100%;
  padding: 0 32px;
  border-left: 1px solid #d6d6d6;
}
@media (max-width: 575.98px) {
  .time-counter .time-countdown .counter-column {
    border-left: 0;
  }
}
.time-counter .time-countdown .counter-column:first-child {
  border-left: 0;
}
@media (max-width: 991.98px) {
  .time-counter .time-countdown .counter-column {
    min-width: auto;
  }
}
@media (max-width: 575.98px) {
  .time-counter .time-countdown .counter-column {
    padding: 20px 0;
  }
}
.time-counter .time-countdown .counter-column .count {
  position: relative;
  color: var(--secondary-color);
  font-size: 70px;
  font-weight: 400;
  line-height: 1em;
  display: block;
  text-align: center;
}
@media (max-width: 767.98px) {
  .time-counter .time-countdown .counter-column .count {
    font-size: 50px;
  }
}
.time-counter .time-countdown .counter-column sub {
  position: relative;
  margin-bottom: 7px;
  font-weight: 400;
  font-size: 18px;
  color: var(--secondary-color);
}
@media (max-width: 767.98px) {
  .time-counter .time-countdown .counter-column sub {
    font-size: 15px;
  }
}
.time-counter .btn-box {
  position: absolute;
  left: 0;
  text-align: center;
  bottom: -25px;
  width: 100%;
}
.time-counter .btn-box .theme-btn {
  min-width: 175px;
}
.toggleContainer {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  border: 3px solid var(--secondary-color);
  border-radius: 20px;
  background: var(--secondary-color);
  font-weight: bold;
  color: var(--secondary-color);
  cursor: pointer;
}
.toggleContainer::before {
  content: '';
  position: absolute;
  width: 50%;
  height: 100%;
  left: 0%;
  border-radius:20px;
  background: white;
  transition: all 0.3s;
}
.toggleCheckbox:checked + .toggleContainer::before {
   /* left: 50%; */
}
.toggleContainer div {
  padding: 6px;
  text-align: center;
  z-index: 1; color:#fff
}
.toggleContainer .active{
  color:var(--secondary-color)
}
.toggleCheckbox {
  display: none;
}
.toggleCheckbox:checked + .toggleContainer div:first-child,.toggleCheckbox .active{
  color:var(--secondary-color) ;
  transition: color 0.3s;
}
.toggleCheckbox:checked + .toggleContainer div:last-child{
  color:white ;
  transition: color 0.3s;
}
.toggleCheckbox + .toggleContainer div:first-child{
  color: var(--secondary-color);
  transition: color 0.3s;
}
.toggleCheckbox + .toggleContainer div:last-child{
  color: white;
  transition: color 0.3s;
}
.small{
  font-size: 13px;
}
.text-success
{
  color:green
}
.cta-one {
	position: relative;
	display: block;
	z-index: 2;
}

.cta-one__inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: var(--secondary-color);
	padding: 60px 60px 55px;
  padding-left: 20px;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;

}

.cta-one__shape-1 {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}

.cta-one__shape-1 img {
	width: auto;
	opacity: .50;
}

.cta-one__icon-2 {
	position: absolute;
	top: 0;
	right: 60px;
}

.cta-one__icon-2 span {
	position: relative;
	display: inline-block;
	font-size: 200px;
	color: rgba(var(255,255,255), .20);
}

.cta-one__left {
	position: relative;
	display: flex;
	align-items: center;
	gap: 30px;
}

.cta-one__icon {
	position: relative;
	display: inline-block;
}

.cta-one__icon span {
	position: relative;
	display: inline-block;
	font-size: 80px;
	color: var(--bs-white);
	transition: all 500ms linear;
	transition-delay: 0.1s;
	transform: scale(1);
}

.cta-one__icon:hover span {
	transform: scale(.9);
}

.cta-one__left .content {
	position: relative;
	display: block;
}

.cta-one__left .content p {
	font-weight: 500;
	color: var(--bs-white);
	text-transform: uppercase;
}

.cta-one__left .content h3 {
	font-size: 36px;
	font-weight: 700;
	line-height: 46px;
	text-transform: capitalize;
	margin-top: 2px;
	color: var(--bs-white);
}

.cta-one__btn-box {
	position: relative;
	display: block;
}

.cta-one__btn {
	color: var(--bs-white);
}

.cta-one__btn:hover {
	color: var(--thm-base);
}

.cta-one__btn:after {
	background-color: var(--thm-black);
}

.cta-one__btn:before {
	background: var(--bs-white);
}
/* .product-container {
  height: 800px; 
  overflow-y: scroll; 
} */

/**MAP**/
#map {
  height: 100%;
  width: 100%;
}

.swiper-button-next, .swiper-button-prev,.leaflet-top, .leaflet-bottom{z-index: 8 !important;}
.map-container {
	/* float:left; */
	width:100%;
	position:relative;
	overflow: hidden;
  height:800px; z-index: 0;
}
.map-popup-wrap {
  display: block;
  width: 300px !important;
  position: relative;
}.map-popup-wrap:before {
  border-color: transparent;
  border-top-color: #fff;
  border-width: 15px;
  margin-left: -15px;
}
.map-popup-wrap:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  margin-top: -1px;
  z-index: 20;
}.map-popup {
  display: block;
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 9px 16px rgba(58, 87, 135, 0.15);
}
.leaflet-popup-content{margin: 0!important;}
.infoBox-close,.leaflet-popup-close-button {
  position: absolute;
  width: 30px !important;
  height: 30px !important;
  line-height: 30px !important;
  top: 20px !important;
  right: 20px !important;
  color: #fff !important;
  border-radius: 100% !important;
  z-index: 20 !important;
  box-shadow: 0px 0px 0px 5px rgba(255, 255, 255, 0.4) !important;
  cursor: pointer !important;
  background: var(--secondary-color) !important;
}.listing-img-content {
  overflow: hidden;
}
.fl-wrap {
  float: left;
  width: 100%;
  position: relative;
}.listing-img-content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #292929;
  opacity: 0.3;
}.map-popup img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  -webkit-transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  transition: all 2000ms cubic-bezier(.19,1,.22,1) 0ms;
  max-width: none;
}
.listing-content {
  background: #fff;
  padding: 10px 10px;
  z-index: 20;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.listing-title h4 {
  font-size: 17px;
    font-weight: 500;
    line-height: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 0px;
    overflow: hidden;
}.listing-title h4 a {
  color: #566985;
}.map-popup-location-phone, .map-popup-location-info {
  float: left;
  color: #666;
  font-size: 13px;
  width: 100%;
  text-align: left;
  margin-bottom: 5px;
}
/**TRAVEL DETAI: **/
.resort-grid-list {
  display: grid;
  grid-template-columns: auto auto auto;
  border: 1px solid #E1E4E5;
  border-radius: 8px;
  padding: 40px 20px;
  list-style: none;
  margin: 0;
  gap: 20px;
}
.resort-grid-list li {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
}.resort-grid-list li .resort-grid-list-icon {
  -webkit-box-flex: 0;
  -webkit-flex: none;
  -ms-flex: none;
  flex: none;
  width: 50px;
  height: 50px;
  line-height: 45px;
  border-radius: 4px;
  border: 1px solid #E1E4E5;
  text-align: center;
}.resort-grid-list li .resort-grid-list-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--black-color2);
  margin-bottom: 0;
}.room-list-item {
  border-radius: 2px;
  margin-bottom: 40px;
  border: 1px solid #efefef;
  position: relative;
}
.gradient-overlay-hover
{
  height: 100%;
}
.gradient-overlay-hover .popup-img img{
  height: 100%;
}
.room-list-item figure a:before {
  display: block;
  content: '';
  position: absolute;
  top: 10px;
  right: 0px;
  bottom: 10px;
  left: 10px;
  border: 5px double rgba(255, 255, 255, 0.5);
  z-index: 0;
  border-right: none;
  -webkit-transition: 1s;
  transition: 1s;
}.gradient-overlay:after, .gradient-overlay-hover:after, .gradient-slider .slotholder:after {
  width: 100%;
  height: 100%;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  background: linear-gradient(45deg, rgb(240, 100, 150), rgb(140, 200, 208));
  opacity: 0;
  -webkit-transition: .4s;
  transition: .4s;
}.room-list-item .room-info {
  padding: 15px 0;
}.room-list-item .room-info .room-title {
  margin-top: 0;
}.room-list-item .room-services {
  margin-top: 38px;
}.room-list-item .room-services img {
  width: 30px;
  height: 30px;
  border: 1px solid #e3e3e3;
  margin-right: 5px;
  margin-bottom: 10px;
  text-align: center;
  line-height: 30px;
  color: #afafaf;
  border-radius: 1px;
  font-size: 11px;
  -webkit-transition: .5s;
  transition: .5s;
}.room-list-item .room-services span {
  height: 30px;
  display: inline-block;
  padding: 0 8px;
  border: 1px solid #e3e3e3;
  margin-right: 5px;
  margin-bottom: 10px;
  text-align: center;
  line-height: 30px;
  color: #afafaf;
  border-radius: 1px;
  font-size: 12px;
  -webkit-transition: .5s;
  transition: .5s;
}.room-list-item .room-price {
  text-align: center;
  padding: 10px;
  height: 100%;
  border-left: 1px dashed #efefef;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}.room-list-item .room-price .price {
  margin-bottom: 30px;
  font-size: 20px;
  color:var(--button-color);
  text-transform: uppercase;
}
.commentlist {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}.commentlist li {
  position: relative;
  padding-left: 90px;
  margin-top: 25px;
} .commentlist li .comment-body {
  border-bottom: 1px solid #cacaca;
  padding-bottom: 20px;
  overflow: hidden;
}.commentlist li .comment-body .comment-avatar {
  position: absolute;
  width: 70px;
  height: 70px;
  display: block;
  top: 5px;
  left: 0;
  border-radius: 50%;
  overflow: hidden;
  background: #e2dfdf;
  line-height: 70px;
  text-align: center;
  font-size: 35px;
  color: #414141;
}.commentlist li .comment-body p {
  color: #444444;
  font-size: 15px;
  line-height: 1.428em;
  margin-bottom: 0;
  margin-top: 10px;
}.commentlist li .comment-body .comment-meta {
  float: left;
  margin-top: 20px;
  color: #898989;
}.commentlist li .comment-body .comment-meta span {
  color: #444;
  font-weight: bold;
  text-transform: capitalize;
  -webkit-transition: all .2s ease;
  -moz-transition: all .2s ease;
  -ms-transition: all .2s ease;
  -o-transition: all .2s ease;
}.commentlist li .comment-body .action {
  float: right;
  margin-top: 15px;
  font-size: 0;
}
.commentlist li .comment-body .action .awe-btn {
  padding: 3px 15px;
  min-width: inherit;
  margin-left: 10px;
  border: 2px solid #000;
}
.commentlist li .comment-body .action .awe-btn {
  padding: 3px 15px;
  min-width: inherit;
  margin-left: 10px;
  border: 2px solid #000;
  font-size: 12px;
    color: #000;
}
.room-detail_total {
  padding: 20px 30px;
  text-align: center;
}
.room-detail_total h6 {
  color: #232323;
  font-size: 12px;
  font-weight: bold;
  margin-top: 10px;
}
.room-detail_total .price {
  margin-bottom: 0;
  margin-top: 10px;
  color: #898989;
  font-size: 18px;
  line-height: 1;
}.room-detail_total .price .amout {
  font-weight: bold;
  font-size: 40px;
  color: #232323;
}
.package-meta {
    border-top: 1px solid rgba(167, 167, 167, 0.2);
    border-bottom: 1px solid rgba(167, 167, 167, 0.2);
    margin: 40px 0;
    padding: 20px 0;
    position: relative;
}
.package-meta ul {
  font-size: 0;
  margin: 0;
  padding: 0;
}
.package-meta ul li {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.1;
  padding: 0 12px;
  position: relative;
}
.package-meta ul li:first-child {
  padding-left: 0;
}
.package-meta ul li:before {
  color: #BBBBBB;
  content: "|";
  position: absolute;
  right: -3px;
  top: 0;
}
.package-meta ul li [class*=fa-] {
  color: var(--secondary-color);
  margin-right: 4px;
}
.tour-include-exclude {
  border-radius: 10px;
  padding: 35px 20px 28px;
  border: 1px solid var(--border-color);
  background-color: #F8F8F8;
}
.tour-include-exclude.exculsion
{
  background-color: #fff;
}
.list-style-one{
  padding: 0;
  list-style:none;
}
.list-style-one li {
  /* display: flex; */
  margin-bottom: 5px;
  font-size: 15px;
}
.list-style-one li i {
  font-size: 18px;
  margin-right: 15px;
  color: #f7921e;
}
.check li i {
  color: #63ab45;
}
ul.cbp_tmtimeline {
  margin: 45px 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.cbp_tmtimeline:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ebeef3;
  left: 0%;
  margin-left: -2px;
}.cbp_tmtimeline>li .cbp_tmtime {
  display: block;
  width: 23%;
  padding-right: 80px;
  position: absolute;
}
.cbp_tmtimeline>li .cbp_tmicon {
  width: 48px;
  height: 48px;
  font-weight: 500;
  background-color: var(--secondary-color);
  text-transform: none;
  font-size: 1.5rem;
  line-height: 50px;
  position: absolute;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 2px #999;
  text-align: center;
  left: 0%;
  top: 0;
  margin: 0 0 0 -25px;
}
.cbp_tmtimeline>li .cbp_tmlabel {
  margin: 0 0 15px 7%;
  background: #eef3f7;
  padding: 20px;
  position: relative;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  font-size: 15px;
}.cbp_tmtimeline>li .cbp_tmlabel h4 {
  margin: 0 0 5px;
  padding: 0;
  font-size: 20px;
  font-weight: bold;
}.cbp_tmtimeline>li .cbp_tmlabel:after {
  right: 100%;
  border: 10px solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-right-color: #eef3f7;
  top: 15px;
}
.destination-item
{
  display: flex;
    height: 190px;
    border-radius: 12px;
    border: 1px solid rgb(226, 226, 226);
}
.image-container {
  width:35%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.curved-image {
  width: 150%;
  height: 125%;
  overflow: hidden;
  border-radius: 0 100% 100% 0; /* Creates a half-circle effect */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.curved-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.destination-info
{padding: 10px;
font-size: 14px; width: 65%;}
.destination-info h4{
  font-size: 18px;
    font-weight: bold;
}
.destination-info .description
{
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.searchMenu-date {
  position: relative;
}

.searchMenu-date.-left .searchMenu-date__field {
  transform: none !important;
}

.searchMenu-date.-right .searchMenu-date__field {
  left: unset;
  right: 0;
  transform: none !important;
}

.searchMenu-date__field {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 900px;
  max-width: 100vw;
  margin-top: 30px;
  box-shadow: 0px 10px 60px 0px #0510360D;
  transform: translateX(-31%);
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  opacity: 0;
}

.searchMenu-date__field.-is-active {
  pointer-events: auto;
  opacity: 1;
}

@media (max-width: 991px) {
  .searchMenu-date__field {
    transform: none;
    width: auto;
    left: -20px;
    right: -20px;
  }
}

@media (max-width: 575px) {
  .searchMenu-date__field {
    left: -35px;
    right: -35px;
  }
}

.searchMenu-guests {
  position: relative;
}

.searchMenu-guests__field {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  width: 400px;
  max-width: 100vw;
  margin-top: 30px;
  box-shadow: 0px 10px 60px 0px #0510360D;
  transition: all 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  opacity: 0;
}

@media (max-width: 991px) {
  .searchMenu-guests__field {
    width: auto;
    left: -20px;
    right: -20px;
  }
}

@media (max-width: 575px) {
  .searchMenu-guests__field {
    left: -35px;
    right: -35px;
  }
}

.searchMenu-guests__field.-is-active {
  pointer-events: auto;
  opacity: 1;
}
.border-light {
  border: 1px solid var(--color-border) !important;
}
.rounded-4 {
  border-radius: 4px !important;
}
.px-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}
.px-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}
.py-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}.fw-500 {
  font-weight: 500;
}

.lh-16 {
  line-height: 1.6 !important;
}
.text-15 {
  font-size: 15px !important;
}
.capitalize {
  text-transform: capitalize;
}
.text-light-1 {
  color:#697488;
}
.shadow-2 {
  box-shadow: 0px 10px 35px 0px #0510361A;
}.px-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
.py-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}
.elCalendar__slider {
  overflow: hidden;
}
.elCalendar .swiper-slide{
background:none !important;
box-shadow: none !important;
align-items: center !important;
}
.elCalendar__sliderNav {
  position: absolute;
  top: 40px;
  z-index: 10;
}

.elCalendar__sliderNav.-prev {
  left: 60px;
}

.elCalendar__sliderNav.-next {
  right: 60px;
}

@media (max-width: 767px) {
  .elCalendar__sliderNav.-prev {
    left: 54px;
  }
  .elCalendar__sliderNav.-next {
    right: 54px;
  }
}

.elCalendar__month {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.elCalendar__header {
  display: grid;
  grid-template-columns: repeat(7, min-content);
  gap: 8px;
}

.elCalendar__header__sell {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 14px;
  font-weight: 600;
}

@media (max-width: 767px) {
  .elCalendar__header__sell {
    width: 32px;
    height: 32px;
  }
}

.elCalendar__body {
  display: grid;
  grid-template-columns: repeat(7, min-content);
  gap: 8px;
}

.elCalendar__sell {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 100%;
  transition: 0.2s;
}

@media (max-width: 767px) {
  .elCalendar__sell {
    width: 32px;
    height: 32px;
  }
}

.elCalendar__sell.-dark {
  opacity: 0.4;
}

.elCalendar__sell:hover {
  background-color: rgba(0, 0, 0, 0.041);
}

.elCalendar__sell.-is-active {
  position: relative;
  color: white;
  background-color: var(--secondary-color);
  z-index: 1;
}

.elCalendar__sell.-is-in-path {
  position: relative;
  color: #051036 !important;
  z-index: 0;
}

.elCalendar__sell.-is-in-path::before {
  content: "";
  position: absolute;
  top: 0;
  left: -12px;
  right: -12px;
  height: 100%;
  background-color: #F5F5F5;
  z-index: -2;
}
.button {
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  text-align: center;
  line-height: 1;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.size-38 {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.size-20 {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.mr-15 {
  margin-right: 15px !important;
}
.ml-15 {
  margin-left: 15px !important;
}
.button.-outline-blue-1 {
  border-color: var(--button-color);
  background: #fff;
}.border-top-light {
  border-top: 1px solid var(--color-border);
}
.mb-24 {
  margin-bottom: 24px !important;
}
.mt-24 {
  margin-top: 24px !important;
}
.supplier-item .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.supplier-item .swiper-pagination-bullet{
  background: #eaeaea;
  opacity: 1;
}
.supplier-item .swiper-pagination{
  bottom: 10%;
}
.supplier-item .swiper{padding:0px;max-width: 400px;}
.destination-three-column > .row > [class*=col-] {
  padding: 0;
}.destination-three-column .row .row [class*=col-] {
  padding: 7px;
}.desti-item {
  background-color: #ffffff;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.1);
  padding: 8px;
  position: relative;
}
.desti-item .desti-image {
  position: relative;
}.desti-item .desti-image:before {
  background-color: #101F46;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}
.desti-content {
  padding: 20px;
}
.overlay-desti-item .desti-content {
  position: absolute;
  bottom: 10px;
  left: 10px;
}.overlay-desti-item .desti-content h3 {
  color: #ffffff;
  margin-bottom: 4px;
}
.supplier-search .border-light{border:  none !important;}
.supplier-search .text-light-1{
  color: rgb(255 255 255 / 65%) !important;
  font-size: 18px !important;
}
.supplier-search .bg-white{
  border: 1px solid #0000007a !important;
    background-color: rgb(0 0 0 / 69%) !important;
}
.supplier-search .searchMenu-guests__field{
  margin-top: 10px;
}
.thumbnail
{
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
  -webkit-transition: .4s;
  transition: .4s;
  border-radius: 20px !important;
}
.link-service-3 {
  position: absolute;
  display: block;
  bottom: 1px;
  right: 14px;
  font-size: 19px;
  color: var(--button-color);
}


.service-3-card {
  position: relative;
  padding: 15px 22px 15px 15px;
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.06));
  filter: drop-shadow(0px 1px 1px rgba(0, 0, 0, 0.06));
  background-image: url(../images/service-3-card-bg.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-bottom: 20px;
}
.service-3-card .iconimg{
  border-radius: 30px;
    width:95px;
    height: 106px;
    line-height: 106px;
    text-align: center;
    position: relative;
}
.service-3-card .content{
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.service-3-card .content .badge{
  background: #e0e0e0;
    color: #000;
    font-weight: normal;
}
.venue-coach-details .venue-options {
  padding: 15px 15px 9px 15px;
  box-shadow: 0px 4px 44px rgba(211, 211, 211, 0.25);
  border-radius: 10px;
}
.white-bg {
  background: #FFFFFF;
}
.venue-coach-details .venue-options ul,.venue-coach-details #amenities ul, .venue-coach-details .accordion .accordion-item#lesson-with-me .accordion-body ul
{
  padding: 0;
}
.venue-coach-details .venue-options ul li {
  margin-bottom: 20px;
  margin: 0 6px 6px 0;
  float: left;
  list-style-type: none;
}
.venue-coach-details .venue-options ul li a {
  padding: 10px 15px;
  border: 1px solid #EAEDF0;
  border-radius: 10px;
  display: flex
;
  align-items: center;
  color: #192335;
}.venue-coach-details .venue-options ul li.active a, .venue-coach-details .venue-options ul li:hover a {
  background: #192335;
  color: #FFFFFF;
  border-color: #192335;
}
.venue-coach-details .accordion .accordion-item {
  color: #6B7385;
  box-shadow: 0px 4px 44px rgba(211, 211, 211, 0.25);
  border-radius: 10px;
  border: none;
}
.venue-coach-details .accordion .accordion-item .accordion-header .accordion-button {
  padding: 20px;
  font-size: 20px;
  margin-bottom: 0;
  color: #192335;
  font-weight: 600;
  border-color: #EAEDF0;
  cursor: pointer;
}
.venue-coach-details .accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  color: #192335;
  background: none;
  box-shadow: none;
  border-bottom: 1px solid #EAEDF0;
}
.venue-coach-details .accordion-body {
  padding: 20px;
}.venue-coach-details .accordion .accordion-item#overview .text.show-more-height, .venue-coach-details .accordion .accordion-item#short-bio .text.show-more-height {
  -webkit-transition: all 0.7s ease-in-out 0s;
  -ms-transition: all 0.7s ease-in-out 0s;
  transition: all 0.7s ease-in-out 0s;
  height: 75px;
  overflow: hidden;
}.venue-coach-details .accordion .accordion-item#overview .show-more, .venue-coach-details .accordion .accordion-item#short-bio .show-more {
  padding-top: 10px;
  cursor: pointer;
  font-size: 14px;
}
.venue-coach-details .accordion .accordion-item#overview .show-more i, .venue-coach-details .accordion .accordion-item#short-bio .show-more i {
  margin-right: 5px;
}
.venue-coach-details #amenities, .venue-coach-details .accordion .accordion-item#lesson-with-me .accordion-body {
  padding-bottom: 9px;
}
.venue-coach-details #amenities ul li, .venue-coach-details .accordion .accordion-item#lesson-with-me .accordion-body ul li {
  padding: 10px;
  border-radius: 10px;
  background: #F9F9F6;
  margin-right: 15px;
  margin-bottom: 15px;
  float: left;
  list-style: none;
}
.venue-coach-details #amenities ul li i, .venue-coach-details .accordion .accordion-item#lesson-with-me .accordion-body ul li i {
  color: #A0A0A0;
  margin-right: 5px;
}
.venue-coach-details .accordion .accordion-item#location iframe {
  width: 100%;
}
.venue-coach-details .accordion .accordion-item#location .dull-bg {
  margin-top: 10px;
  border-radius: 5px;
  padding: 15px;
}
.dull-bg {
  background: #F9F9F6;
}
.venue-coach-details .accordion .accordion-item#location .dull-bg .white-bg {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  padding: 10px;
  line-height: 60px;
  text-align: center;
}
.venue-coach-details .accordion .accordion-item#location .dull-bg .white-bg i {
  font-size: 28px;
  color: var(--secondary-color);
}
.venue-coach-details aside .white-bg {
  padding: 24px;
  margin-bottom: 20px;
  border-radius: 10px;
  /* box-shadow: 0px 4px 44px rgba(211, 211, 211, 0.25); */
  border: #f1f1f1 solid 1px;
}.venue-coach-details aside .availability .icon-bg {
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: #F9F9F6;
  margin-right: 15px;
}.venue-coach-details aside .availability p {
  font-size: 14px;
}
.venue-coach-details aside h4.border-bottom {
  margin: 0 0 24px 0;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #EAEDF0;
}
.social-medias {
  display: inline-block; padding:0
}.social-medias li {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  margin-right: 5px;
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
  list-style: none; text-align: center;
}
.social-medias li.facebook, .social-medias li.linkedin {
  background: #3080F8;
}
.social-medias li.instagram, .social-medias li.pinterest {
  background: #FF2D20;
}
.social-medias li.twitter {
  background: #35B6FF;
}
.social-medias li.instagram, .social-medias li.pinterest {
  background: #FF2D20;
}
.social-medias li.facebook, .social-medias li.linkedin {
  background: #3080F8;
}
.social-medias li:last-child {
  margin-right: 0;
}
.sticky-sidebar {
  /* position: sticky;
  top: 120px; */
}
.storefrontHeadingFaqs {
  /* box-shadow: rgba(0, 0, 0, 0.15) 0px 2px 8px; */
  border-radius: 0.5rem;
  margin-top: 0px;
  margin-bottom: 30px;border: #f1f1f1 solid 1px;
}
.storefrontHeadingFaqs > div:first-child {
  margin-top: 20px;
}
.storefrontHeadingFaqsCard {
  display: flex
;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgb(239, 239, 239);
  gap: 10px;
}
.storefrontHeadingFaqsCard__icon {
  width: 24px;
  height: 24px;
  margin-right: 1rem;
}
.venueslocation
{
  position: relative;
}
.venueslocation .image{
    margin: 0 0 25px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;

}
.venueslocation .swiper-slide:hover img{
  -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}
.venueslocation .image img {
  border-radius: 50%;
  display: inline-block;
  width: 100%;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  height: 150px;
  object-fit: cover;
}
.venueslocation .swiper-slide{
  background: white;
    text-align: center;
    margin-bottom: 10px;
    border: 1px solid #E9E9E9;
    height: auto;
    box-shadow: none;
    padding: 30px;
    text-align: center;
    align-items: center;
}
.venue-listing__card {
  position: relative;
  border-radius: 10px;
  border: 1px solid var(--bs-white3, #EBE6DE);
  background-color: var(--bs-white, #ffffff);
  transition: all 500ms ease;
}
.venue-listing__card:hover {
  box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.06);
}
.venue-listing__card-image-box {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
  z-index: 1;
  margin: -1px -1px 0;
}
.venue-listing__card-image {
  display: block;
  width: 100%;
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
  height: 210px;
}
.venue-listing__card:hover .venue-listing__card-image {
  transform: scale(1.1);
}
.venue-listing__card-btn-group {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 11;
}
.venue-listing__card-btn-group div + div {
  margin-top: 5px;
}
.venue-listing__card-btn-group-hide {
  display: none !important;
}
.venue-listing__card-discount {
  min-width: 66px;
  padding: 3px 5px;
  display: table;
  background-color: var(--secondary-color);
  font-size: var(--trevlo-size-md, 12px);
  color: var(--bs-white, #ffffff);
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 5px;
}
.venue-listing__card-discount-hide {
  display: none;
}
.venue-listing__card-featured {
  min-width: 66px;
  padding: 3px 5px;
  display: table;
  background-color: var(--button-color);
  font-size: var(--trevlo-size-md, 12px);
  color: #fff;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 5px;
}
.venue-listing__card-wishlist {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: RGBA(var(--trevlo-primary-rgb, 45, 35, 48), 0.26);
  border-radius: 50%;
  z-index: 11;
  font-size: 14px;
  color: var(--bs-white, #ffffff);
}
.venue-listing__card-wishlist:hover {
  background-color: var(--secondary-color);
}
.venue-listing__card-image-overlay {
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: RGBA(var(--trevlo-primary-rgb, 45, 35, 48), 0.7);
  z-index: 1;
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
}
.venue-listing__card:hover .venue-listing__card-image-overlay {
  top: 0;
  height: 100%;
}
.venue-listing__card-content {
  padding: 15px;
  position: relative;
  z-index: 1;
  background-color: var(--bs-white, #ffffff);
  border-radius: 10px;
}
@media (max-width: 991px) {
  .venue-listing__card-content {
    padding: 32px 25px 25px;
  }
}
@media (max-width: 375px) {
  .venue-listing__card-content {
    padding: 32px 20px 20px;
  }
}
@media (max-width: 360px) {
  .venue-listing__card-content {
    padding: 32px 15px 20px;
  }
}
.venue-listing__card-camera-group {
  position: absolute;
  top: -17px;
  right: 18px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  z-index: 11;
}
.venue-listing__card-camera-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: var(--bs-white, #ffffff);
  border-radius: 50%;
  border: 1px solid var(--bs-white3, #EBE6DE);
  font-size: 15px;
  color: var(--secondary-color);
}
.venue-listing__card-camera-btn:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--bs-white, #ffffff);
}
.venue-listing__card-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1px;
}
.venue-listing__card-title:hover {
  color: var(--secondary-color);
}
.venue-listing__card-title a {
  color: inherit;
  background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95%/0px 1px no-repeat;
  transition: all 500ms ease;
}
.venue-listing__card-title a:hover {
  background-size: 100% 1px;
}
.venue-listing__card-text {
  line-height: 24px;
  margin-bottom: 18px;
}
.venue-listing__card-inner-content {
  position: relative;
  padding: 10px;
  margin-top:5px;
  background-color: #f3f6f9;
  border-radius: 10px;
  transition: all 400ms ease-in-out;
  z-index: 1;
}
.venue-listing__card-inner-content::after {
  content: "";
  width: 100%;
  height: 0%;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: var(--secondary-color);
  z-index: 1;
  border-radius: 10px 10px 0 0;
  transition: all 500ms ease;
  border-radius: 10px;
  z-index: -1;
}
.venue-listing__card:hover .venue-listing__card-inner-content::after {
  top: 0;
  height: 100%;
}
.venue-listing__card-review-box {
  display: flex;
  margin-bottom: 0px;
  font-size: 13px;
}
.venue-listing__card-review-box span {
  position: relative;
  top: 4px;
  font-size: 14px;
  color: var(--secondary-color);
  margin-right: 5px;
  transition: all 0.4s ease-in-out;
}
.venue-listing__card:hover .venue-listing__card-review-box span {
  color: var(--bs-white, #ffffff);
}
.venue-listing__card-review-text {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.venue-listing__card:hover .venue-listing__card-review-text {
  color: var(--bs-white, #ffffff);
}
.venue-listing__card-location-box {
  display: flex;
  font-size: 14px;
}
.venue-listing__card-location-box span {
  position: relative;
  top: 4px;
  font-size: 14px;
  color: var(--secondary-color);
  margin-right: 5px;
  transition: all 0.4s ease-in-out;
}
.venue-listing__card:hover .venue-listing__card-location-box span {
  color: var(--bs-white, #ffffff);
}
.venue-listing__card-location-text {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.venue-listing__card:hover .venue-listing__card-location-text {
  color: var(--bs-white, #ffffff);
}
.venue-listing__card-divider {
  margin-top: 3px;
  margin-bottom: 5px;

  height: 1px;
  background-color: var(--bs-white3, #EBE6DE);
  transition: all 0.4s ease-in-out;
}
.venue-listing__card:hover .venue-listing__card-divider {
  background-color: RGBA(var(--bs-white3-rgb, 235, 230, 222), 0.5);
}
.venue-listing__card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}
.venue-listing__card-bottom-left {
  display: flex;
  align-items: center;
}
.venue-listing__card-day {
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.venue-listing__card-day span {
  position: relative;
  top: -1px;
  font-size: 14px;
  color: var(--secondary-color);
  margin-right: 9px;
  transition: all 0.4s ease-in-out;
}
.venue-listing__card:hover .venue-listing__card-day span {
  color: var(--bs-white, #ffffff);
}
.venue-listing__card-day-text {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.venue-listing__card:hover .venue-listing__card-day-text {
  color: var(--bs-white, #ffffff);
}
.venue-listing__card-people {
  display: flex;
  align-items: center;
}
.venue-listing__card-people span {
  position: relative;
  top: -1px;
  font-size: 14px;
  color:var(--secondary-color);
  margin-right: 9px;
  transition: all 0.4s ease-in-out;
}
.venue-listing__card:hover .venue-listing__card-people span {
  color: var(--bs-white, #ffffff);
}
.venue-listing__card-people-text {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
}
.venue-listing__card:hover .venue-listing__card-people-text {
  color: var(--bs-white, #ffffff);
}
.venue-listing__card-price {
  font-size: 17px;
  line-height: 1;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.venue-listing__card:hover .venue-listing__card-price {
  color: var(--bs-white, #ffffff);
}
/*--------------------------------------------------------------
# Benefit
--------------------------------------------------------------*/
.benefit-one {
  position: relative;
  overflow: hidden;
  background-color: #fff;

}
.benefit-one__bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 41.4%;
  height: 85%;
  content: "";
  background-color: var(--secondary-color);
  border-radius: 0 0 0 30px;
}
@media (max-width: 1499px) {
  .benefit-one__bg {
    width: 35%;
  }
}
@media (max-width: 1199px) {
  .benefit-one__bg {
    display: none;
  }
}
.benefit-one .sec-title {
  margin-bottom: 25px;
}
.benefit-one__content {
  position: relative;
}
.benefit-one__content__heading {
  font-family: var(--trevlo-special-font, "Covered By Your Grace", cursive);
  font-size: 30px;
  color: var(--secondary-color);
  font-weight: 400;
  margin: 0 0 11px;
}
.benefit-one__content__text {
  margin: 0 0 30px;
}
.benefit-one__content .trevlo-btn:hover {
  color: #fff;
}
.benefit-one__box-wrapper {
  position: relative;
  z-index: 2;
  background-color: #efeefa;
  border-radius: 0 10px 10px 0;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin-right: -120px;
  margin-bottom: 40px;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .benefit-one__box-wrapper {
    margin-right: -190px;
  }
}
@media (max-width: 991px) {
  .benefit-one__box-wrapper {
    margin-right: 0;
  }
}
@media (max-width: 767px) {
  .benefit-one__box-wrapper {
    display: block;
  }
}
.benefit-one__box {
  position: relative;
  min-height: 82px;
  padding: 12px 0 0 102px;
}
@media (max-width: 767px) {
  .benefit-one__box {
    margin-bottom: 15px;
  }
}
.benefit-one__box__icon {
  width: 82px;
  height: 82px;
  background-color: #fff;
  border: 1px solid var(--trevlo-white3, #EBE6DE);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  overflow: hidden;
  color: var(--secondary-color);
}
.benefit-one__box__icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: #fff;
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.benefit-one__box__icon::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--secondary-color);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.benefit-one__box__icon span {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}
.benefit-one__box:hover .benefit-one__box__icon {
  border-color: var(--secondary-color);
  color: #fff;
}
.benefit-one__box:hover .benefit-one__box__icon span {
  transform: scale(0.95);
}
.benefit-one__box:hover .benefit-one__box__icon::before {
  top: 100%;
}
.benefit-one__box:hover .benefit-one__box__icon::after {
  bottom: -50%;
}
.benefit-one__box__title {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.4px;
  margin: 0;
  max-width: 140px;
}
.benefit-one__image {
  position: relative;
  margin-bottom: 26px;
}
.benefit-one__image img {
  max-width: inherit;
  border-radius: 30px 0 30px 30px;
}
@media (max-width: 991px) {
  .benefit-one__image img {
    max-width: 100%;
  }
}
.benefit-one__counter {
  position: relative;
  min-height: 54px;
  padding: 0 0 0 73px;
}
.benefit-one__counter__icon {
  width: 54px;
  height: 54px;
  background-color: var(--secondary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 10px;
  overflow: hidden;
  font-size: 30px;
  color: #fff;
}
.benefit-one__counter__icon::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  background-color: var(--secondary-color);
  transition: 700ms cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.benefit-one__counter__icon::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 150%;
  height: 150%;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  background-color: var(--trevlo-primary, #2D2330);
  transition-duration: 700ms;
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}
.benefit-one__counter__icon span {
  position: relative;
  z-index: 2;
  display: inline-block;
  transition: all 500ms linear;
  transition-delay: 0s;
  transition-delay: 0s;
  transition-delay: 0.1s;
  transform: scale(1);
}
.benefit-one__counter:hover .benefit-one__counter__icon span {
  transform: scale(0.95);
}
.benefit-one__counter:hover .benefit-one__counter__icon::before {
  top: 100%;
}
.benefit-one__counter:hover .benefit-one__counter__icon::after {
  bottom: -50%;
}
.benefit-one__counter__number {
  font-family: var(--trevlo-special-font, "Covered By Your Grace", cursive);
  font-size: 40px;
  color: var(--secondary-color);
  font-weight: 400;
  line-height: 1;
  display: block;
  margin-bottom: 1px;
}
.benefit-one__counter__title {
  margin: 0;
}
.bg-light{
  background: #efeefa;
}
.input-group {
  position: relative;
  display: flex
;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.venue-coach-details aside form .input-group input.form-control {
  background: #FFFFFF;
  height: 45px;
  border: 1px solid #E2E7F1;
  color: #6B7385;
  text-align: center;
}.input-group>.form-control, .input-group>.form-floating, .input-group>.form-select {
  position: relative;
  flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}.venue-coach-details aside form .input-group input {
  cursor: pointer;
}.venue-coach-details aside form .input-group input.active.form-control {
  background: #097E52;
  color: #FFFFFF;
  border-color: #097E52;
}
.heart-outline{
  padding: 0;
  height: 40px;
  width: 40px;
  align-items: center !important;
  justify-content: center !important;
  border: #ccc solid 1px !important;
  /* display: flex
; */
  float: right !important;
  background: var(--button-color) !important;
  border-radius: 50% !important;
  color: #fff !important;
  text-align: center !important  ;
  line-height: 40px;
}
.chat-messages {
  display: flex;
  flex-direction: column;
  max-height: 800px;
  overflow-y: scroll
}

.chat-message-left,
.chat-message-right {
  display: flex;
  flex-shrink: 0
}

.chat-message-left {
  margin-right: auto
}

.chat-message-right {
  flex-direction: row-reverse;
  margin-left: auto
}
.py-3 {
  padding-top: 1rem!important;
  padding-bottom: 1rem!important;
}
.px-4 {
  padding-right: 1.5rem!important;
  padding-left: 1.5rem!important;
}
.flex-grow-0 {
  flex-grow: 0!important;
}
.border-top {
  border-top: 1px solid #dee2e6!important;
}
.border-right {
  border-right: 1px solid #dee2e6 !important;
}
.comment-avatar {
    width: 58px;
    height: 40px;
    display: block;
    top: 5px;
    left: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #e2dfdf;
    line-height: 40px;
    text-align: center;
    font-size: 20px;
    color: #414141;
}.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}.list-group-item {
  position: relative;
  display: block;
  padding: .5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, .125);
}
.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.small, small {
  font-size: .775em;
}
.badge-danger {
    color: #9d4a4a;
    background-color: #fbbbc1;
    border-radius: 25px;
    font-size: 10px !important;
}
.badge-success {
  color: #277c18;
  background-color: #c1e1c8;
  border-radius: 25px;
  font-size: 10px !important;
}
.badge {
  text-transform: uppercase;
  line-height: 0.75;
}
.input-field label,.form-label{
  font-size: 11px;
    color: #8d8d8d;
    font-weight: normal;margin-bottom: 0;
}
.otp-input{    width: 40px;}
.aside-title h3 {
  width: 100%;
  font-size: 20px;
  line-height: 40px;
  padding: 0 0 10px;
  margin: 5px 0 10px 0;
  display: flex;
  font-weight: 600;
  text-align: left;
}
.aside-title h3 i {
  margin-right: 10px;
  color: #fff;
  width: 40px;
  height: 40px;
  background:var(--secondary-color);
  padding: 10px;
  border-radius: 50%;
}
.sec-title {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  margin-bottom: 30px;
  margin-top: 45px;
  display: block;
}
.sec-title:after {
  position: absolute;
  content: '';
  left: 0px;
  bottom: -10px;
  height: 2px;
  width: 40px;
  background-color: #ff2222;
}
.style-2 .ui-accordion-header{
  border: none;
  margin: 0;
  padding: 20px 0;
  padding-right: 0px;
  text-transform: none;
  font-size: 15px;
  line-height: 26px;
  font-weight: bold;
  background-color: transparent;
  color: #333;
  padding-right: 60px; 
padding-left:10px;	
}

.style-2 .ui-accordion-content {
  border-bottom: 1px solid #e0e0e0;
padding-left: 10px;
padding-right: 10px;	
}
.style-2 .ui-accordion-header:last-child{
  border-bottom:none;
}
.style-2 .ui-accordion-header{
border-bottom: 1px solid #e0e0e0;	
}
.style-2 .ui-accordion-header-active {
  border: none;
}
.style-2 .ui-accordion-header{
position:relative
}
.style-2 .accordion h3 i{
  position: absolute;
  right: 10px;
  top: 50%;
  font-size: 26px;
  transform: translate3d(0,-50%,0) rotate(0);
  transition: 0.2s;
}
.style-2 .ui-accordion-header:hover, .style-2 .ui-accordion-header-active{
color:#0c0c0c;
cursor:pointer;
}
.style-2 .accordion h3.ui-accordion-header-active i {
color:RGBA(var(--mediox-black-rgb, 10, 34, 65), 0.8);
  margin-top: 2px;
  transform: translate3d(0,-50%,0) rotate(45deg);
}

.utf_social_icon {
	width:100%;
	padding-left: 5px;
	display:inline-block;
	margin-bottom:0;
}
.utf_social_icon li {
	display: inline;
	float: left;
	text-align: left;
	margin-right: 16px;
	margin-top: 10px;
	transform: scale(1.19);
	-webkit-transform: scale(1.19);
	-webkit-filter: blur(radius);
}
.utf_social_icon li a {
	width: 36px;
	height: 36px;
	display: inline-block;
	background-color: #ffffff;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	position: relative;
	overflow: hidden;
	border: 1px solid #f3f3f3;
}
.utf_social_icon.fixed li a {
	display: block;
}
.utf_social_icon li a i {
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	position: absolute;
	z-index: 20;
	transform: scale(0.9);
	-webkit-transform: scale(0.9);
	-webkit-filter: blur(radius);
}
.utf_social_icon li a:hover, .utf_social_icon li a i {
	color: #fff;
}
.utf_social_icon li a i {
	top: -30px;
	opacity: 0;
}
.utf_social_icon li a:hover i {
	top: 0;
	opacity: 1;
}
.utf_social_icon.rounded li a {
	border-radius:50%;
}
.utf_social_icon.border li a {
	background-color: #fff;
	border: 1px solid #e0e0e0;
}
.utf_social_icon.border li a:hover {
	border-color: transparent;
}
.utf_social_icon.color li a {
	border-color: transparent;
}
.utf_social_icon.color li a i, .utf_social_icon.color li a:hover i {
	top: 0;
	opacity: 1;
}
.utf_social_icon.color a:before {
	opacity: 0;
}
.utf_social_icon.fixed {
	position: fixed;
	left: 0;
	padding-left: 2px;
	top: 100px;
	width: 50px;
}
.utf_social_icon.fixed li {
	transform: scale(1.15);
	-webkit-transform: scale(1.15);
	margin-top: 7px;
}
.utf_social_icon.fixed li a {
	background-color: rgba(51,51,51,0.35);
}
.utf_social_icon.fixed li a:before {
	color: #fff;
}
.twitter:before, .wordpress:before, .facebook:before, .linkedin:before, .steam:before, .tumblr:before, .github:before, .instagram:before, .instagram:before, .xing:before, .amazon:before, .dropbox:before, .paypal:before, .lastfm:before, .gplus:before, .yahoo:before, .pinterest:before, .dribbble:before, .flickr:before, .reddit:before, .vimeo:before, .spotify:before, .rss:before, .youtube:before, .blogger:before, .appstore:before, .digg:before, .evernote:before, .fivehundredpx:before, .forrst:before, .stumbleupon:before, .dribbble:before {
	font-family: "fontello";
	font-size: 15px;
	line-height: 16px;
	color: #a0a0a0;
	-webkit-transition: all 0.15s ease-in-out;
	-moz-transition: all 0.15s ease-in-out;
	-o-transition: all 0.15s ease-in-out;
	-ms-transition: all 0.15s ease-in-out;
	transition: all 0.15s ease-in-out;
	position: absolute;
	z-index: 20;
	transform: scale(0.9);
}
.twitter:before, .utf_social_icon li a.twitter i {
	font-size: 14px;
}
.twitter i, .twitter:before {
	margin: 10px 0 0 10px;
}
.twitter:before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
	content: "\e61b";
	top: 0;
	opacity: 1;
}
/*.twitter:hover:before {*/
/*	top: 30px;*/
/*	opacity: 0;*/
/*}*/
/*.twitter:hover {*/
/*	background-color: #3bc1ed!important;*/
/*}*/
/*.twitter:hover, .utf_social_icon.color .twitter, .utf_social_icon.fixed .twitter:hover {*/
/*	background-color: #3bc1ed;*/
/*	border-color: #3bc1ed;*/
/*}*/

.facebook i, .facebook:before {
	margin:9px 0 0 12px;
}
.facebook:before {
  font-family: "Font Awesome 6 Brands";
	content: "\f39e";
	top: 0;
	opacity: 1;
  font-weight: 400;
}
/*.facebook:hover:before {*/
/*	top: 30px;*/
/*	opacity: 0;*/
/*}*/
/*.facebook:hover {*/
/*	background-color: #4a6d9d!important;*/
/*}*/
.utf_social_icon.color .facebook, .utf_social_icon.fixed .facebook:hover {
	background-color: #4a6d9d;
	border-color: #4a6d9d;
}
.linkedin i, .linkedin:before {
	margin:9px 0 0 10px;
}
.linkedin:before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
	content: "\f08c";
	top: 0;
	opacity: 1;
}
/*.linkedin:hover:before {*/
/*	top: 30px;*/
/*	opacity: 0;*/
/*}*/
/*.linkedin:hover {*/
/*	background-color: #0b7bb5!important;*/
/*}*/
.utf_social_icon.color .linkedin, .utf_social_icon.fixed .linkedin:hover {
	background-color: #0b7bb5;
	border-color: #0b7bb5;
}
.instagram i, .instagram:before {
	margin:9px 0 0 10px;
}
.instagram:before {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
	content: "\f16d";
	top: 0;
	opacity: 1;
}
/*.instagram:hover:before {*/
/*	top: 30px;*/
/*	opacity: 0;*/
/*}*/
/*.instagram:hover {*/
/*	background-color: #3274d1!important;*/
/*}*/
.utf_social_icon.color .instagram, .utf_social_icon.fixed .instagram:hover {
	background-color: #3274d1;
	border-color: #3274d1;
}
.paypal i, .paypal:before {
	margin:9px 0 0 12px;
}
.paypal:before {
	content: "\24";
	top: 0;
	opacity: 1;
}
.paypal:hover:before {
	top: 30px;
	opacity: 0;
}
.utf_social_icon.color .paypal, .utf_social_icon.fixed .paypal:hover {
	background-color: #2e689a;
	border-color: #2e689a;
}
#map-contact {
  width: 100%;
  height: 300px;
}
.video-container {
    position: relative;
    height: 400px;
    overflow: hidden;
    border-radius: 20px;
}.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.leaflet-div-icon, .map-marker {
  background-color: #fa2964;
  border: 5px solid #fa2964;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  -webkit-transition: all .15s linear;
  transition: all .15s linear;
  z-index: 10;
}
.leaflet-div-icon:before, .map-marker:before {
  border: 4px solid transparent;
  border-width: 10px 8px;
  border-top-color: #fa2964;
  bottom: -24px;
  height: 0;
  content: '';
  display: block;
  left: 50%;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0;
  z-index: 11;
}
.leaflet-div-icon i, .map-marker i {
  color: #000;
  font-size: 23px;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  z-index: 13;
}
.leaflet-div-icon:after, .map-marker:after {
  background-color: #fff;
  border-radius: 50%;
  bottom: 0;
  -webkit-box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.3);
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 12;
}
/**TABS COUPLE WISHLIST**/
.cs_tab_links.cs_style_1 {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  overflow-x: auto;
  white-space: nowrap;
  flex-wrap: nowrap !important; 
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
}
@media (max-width: 991px) {
  /* .cs_tab_links.cs_style_1 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
  } */
}
@media (max-width: 575px) {
  /* .cs_tab_links.cs_style_1 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  } */
}
.cs_tab_links.cs_style_1 li {
  border-radius: 5px;
  position: relative;
  background-color:#eaeaea;
  color: var(--heading-color);
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li {
    width: 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;
  }
}
.cs_tab_links.cs_style_1 li::after {
  content: "";
  width: 15px;
  height: 15px;
  background-color: var(--secondary-color);
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translate(-50%, -10px) rotate(45deg);
          transform: translate(-50%, -10px) rotate(45deg);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 991px) {
  .cs_tab_links.cs_style_1 li::after {
    display: none;
  }
}
.cs_tab_links.cs_style_1 li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  padding-right: 40px;
  font-size: 23px;
  color: var(--heading-color);
  height: 45px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
@media (max-width: 1199px) {
  .cs_tab_links.cs_style_1 li a {
    padding-right: 20px;
  }
}
@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li a {
    height: 40px;
  }
  .cs_tab_links.cs_style_1 li .cs_tab_link_icon{
    line-height: 40px;
    height: 40px;
  }
}
.cs_tab_links.cs_style_1 li a span {
  position: relative;
  z-index: 1;
  font-size: 15px;
}
.cs_tab_links.cs_style_1 li .cs_tab_link_icon {
  width: 50px;
  height: 70px;
  background-color: #f1f1f1;
  border-right: 2px solid #dedede;
  border-radius: 30px 60px 60px 30px;
  margin-left: -2px;
  position: relative;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  line-height: 70px;
    text-align: center;
}
.cs_tab_links.cs_style_1 li .cs_tab_link_icon i {
  color: #000;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.cs_tab_links.cs_style_1 li.active {
  background-color: var(--secondary-color);
}
.cs_tab_links.cs_style_1 li.active a {
  color: var(--bs-white);
}
.cs_tab_links.cs_style_1 li.active::after {
  -webkit-transform: translate(-50%, 14px) rotate(45deg);
          transform: translate(-50%, 14px) rotate(45deg);
  opacity: 1;
}
.cs_tab_links.cs_style_1 li.active .cs_tab_link_icon {
  background-color: #bfc8d4;
  border-color: var(--bs-white);
}

@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li.active .cs_tab_link_icon {
    background-color: inherit;
    border: none;
  }
}
.cs_tab_links.cs_style_1 li:hover {
  background-color: var(--secondary-color);
  color: var(--bs-white);
}
.cs_tab_links.cs_style_1 li:hover a {
  color: var(--bs-white);
}
.cs_tab_links.cs_style_1 li:hover::after {
  -webkit-transform: translate(-50%, 14px) rotate(45deg);
          transform: translate(-50%, 14px) rotate(45deg);
  opacity: 1;
}
.cs_tab_links.cs_style_1 li:hover .cs_tab_link_icon {
  background-color: #bfc8d4;
  border-color: var(--bs-white);
}

@media (max-width: 575px) {
  .cs_tab_links.cs_style_1 li:hover .cs_tab_link_icon {
    background-color: inherit;
    border: none;
  }
}
@media (max-width: 1399px) {
  .cs_tab_links.cs_style_1 {
    gap: 15px;
  }
}
.banner-features {
  text-align: center;
  padding: 10px 10px;
  border-radius: 4px;
  border: 1px solid #cce7d0;
  box-shadow: 20px 20px 54px rgba(0, 0, 0, .03);
}.banner-features img {
  display: inline-block;
  margin-bottom: 15px;
}
.banner-features h4 {
  font-size: 15px !important;
  font-weight: normal !important;
  display: inline-block;
  padding: 9px 8px 6px;
  line-height: 1;
  border-radius: 4px;
  background: #eaeaea;
  font-family: var(--default-font) !important;
}
.bg-1 {
  background-color: #fddde4 !important;
}
.cs_tabs .tab-content{
  background: #fff;
    margin-top: 15px;
}
.cover-buttons>ul>li {
  float: left;
  position: relative;
  padding-left: 5px;
  list-style: none;
}
.cover-buttons .btn-outlined {
  font-size: 15px;
    font-weight: 400;
    padding: 15px 30px;
    display: inline-block;
    transition: all .2s ease;
    overflow: hidden;
    border-radius: 2px;
    line-height: 16px;
    transition: all .2s ease;
  color: #fff;
  border: 1px solid hsla(0, 0%, 100%, .5); background:transparent;
}

.cover-buttons .btn-outlined:hover, .cover-buttons .btn-outlined:focus {
  color: var(--button-color);
  background: #ffffff;
  border: 1px solid #ffffff;
}
.total-box {
    margin: 30px 0;
}
.total-box .totle-contain {
  align-items: center;
  background: rgba(255,255,255, 1) url(../images/ca8654d00a014fd7330d.png);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(var(--black), .04);
  display: flex
;
  gap: 15px;
  overflow: hidden;
  padding: 22px;
  position: relative;
}
.total-box .totle-contain .wallet-point img {
  width: calc(36px + 1.25vw);
}
.total-box .totle-contain .wallet-point .img-1 {
  opacity: .2;
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%);
  transition: all .4s ease-in-out;
  width: calc(32px + 2.5vw);
}
.total-box .totle-contain .totle-detail {
  width: calc(100% - 75px);
}
.total-box .totle-contain .totle-detail h6 {
  color: rgba(34,34,34, 1);
  margin-bottom: 6px;
}
.total-box .totle-contain .totle-detail h4 {
  color: rgba(34,34,34, 1);
  font-weight: 600;
  margin-bottom: 0;
}
.profile-information {
  margin-bottom: 45px;
  padding: 0;
}
.profile-information li {
  align-items: center;
  display: flex
;
  flex-wrap: wrap;
  gap: 12px;
  padding: 7px 0;
}
.profile-information li p{margin-bottom: 0px;}
.profile-information li:first-child {
  padding-top: 0;
}
.profile-information li h6 {
  font-weight: 500;
  margin-bottom: 0;
}
.profile-information li p span {
  color: var(--button-color);
  cursor: pointer;
  font-weight: 500;
  margin-left: 6px;
}
.address-option {
  background-color: rgb(241 241 241);
  border-radius: 4px;
  margin-bottom: 30px;
  padding: 20px;
}
.address-option label {
  width: 100%;
}
.address-option label {
  background-color: rgba(255,255,255, 1);
  border: 1px solid rgba(233,233,233, 1);
  margin-bottom: 0;
  padding: 15px;
}
.address-option p, .address-option span {
  color: rgba(118,118,118, 1);    line-height: 20px;
}
.address-option .delivery-address-box .address-detail .address {
  display: block;
  padding: 0 6px;
  width: 100%;
}.address-option .delivery-address-box .address-detail .address .address-home {
  font-size: calc(13.6px + .125vw);
}
.address-option .delivery-address-box .address-detail .address .address-tag {
  color: rgba(34,34,34, 1);
  font-weight: 500;
  padding-right: 6px;
}
.buttons {
  align-items: center;
  display: flex
;
  gap: 10px;
  width: 100%;
  /* padding: 10px; */
}
.address-option label .buttons a {
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
  padding: 4px;
}
.address-option label .buttons a.btn_black {
  background-image: none;
  border: 1px solid var(--button-color);
  color: var(--button-color) !important;
  transition: all .4s ease-in-out;
}
.add-address {
  background-color: var(--secondary-color);
  border-radius: 4px;
  color: var(--bs-white);
  font-weight: 500;
  padding: 6px 20px;
  /* position: absolute; */
  right: 0;
  top: 0;
}
button[type='submit']:disabled,
input[type='submit']:disabled,
button:disabled{
  cursor: default;
  background-color: var(--button-color);
    color: #fff;
}
.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;
}
.toggle-button {
    position: fixed;
    top: 37.96px;
    right: 30.08px;
    display: block;
    width: 30.08px;
    height: 30.08px;
    background: transparent;
    border: none;
    outline: none !important;
    border-radius: 0;
    display: none;
    z-index: 110;
}

.toggle-button span {
    display: block;
    width: 80%;
    height: 2.08px;
    position: absolute;
    top: 50%;
    background: #fff;
    transform: translate(0, -50%);
    transition: opacity 0.3s 0.3s;
}

.toggle-button::before,
.toggle-button::after {
    content: "";
    display: block;
    width: 80%;
    height: 2.08px;
    position: absolute;
    background:#fff;
    transition: transform 0.3s, top 0.3s 0.3s, bottom 0.3s 0.3s;
}

.toggle-button::before {
    top: 6.08px;
}

.toggle-button::after {
    bottom: 6.08px;
}

.toggle-menu .toggle-button span {
    opacity: 0;
    transition: opacity 0.3s;
}

.toggle-menu .toggle-button::before,
.toggle-menu .toggle-button::after {
    background-color:#ffffff;
}

.toggle-menu .toggle-button::before {
    top: calc(50% - .96px);
    transform: rotate(45deg);
}

.toggle-menu .toggle-button::after {
    bottom: calc(50% - .96px);
    transform: rotate(-45deg);
}

.toggle-menu .toggle-button::before,
.toggle-menu .toggle-button::after {
    transition: top 0.3s, bottom 0.3s, transform 0.3s 0.3s;
}

.black-shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  opacity: 0.5;
  z-index: 90;
  display: none;
  background-color: var(--bs-black);
}
.swal2-confirm{
  background:var(--button-color);
}
/*Product Card New */
.classic-box {
  padding: 10px 10px 25px;
  border-radius: 10px;
  z-index: 1;
  position: relative;
  border: 1px solid #e4e4e4;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
  background: #f8f8f8;
  width: 100%;margin-bottom: 25px;
}
.classic-box .classic_image_box {
  min-height: 244px;
  display: flex
;
  align-items: center;
  position: relative;
  text-align: center;
  border-radius: 10px;
  background-color: #fff;
  overflow: hidden;
}
.classic-box .classic_image_box figure {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
}
.classic-box .classic_image_box figure img {
  transition: all 0.3s ease-in-out;
}
.classic-box .classic_box_content {
  padding:15px 0px 5px 2px;
} .classic-box h6 {
  margin-bottom: 0px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; 
}
.classic-box .rating,.product-info .rating {
  position: relative;
  margin-top: -5px;
    margin-bottom: 10px;
}
.classic-box .rating i,.product-info .rating i {
  font-size: 9px;
  line-height: 10px;
  color: #d6d6d6;
  margin-right: -3px;
}.classic-box .rating span {
  font-size: 14px;
  line-height: 16px;
  font-weight: 600;
  color: var(--bs-black);
}
.classic-box .price_wrapper {
  display: flex
;
  align-items: center;
}.classic-box .price_wrapper span {
  /* font-size: 20px;
  line-height: 20px;
  font-weight: 700;
  color: var(--button-color); */
}
.classic-box .price_wrapper a {
  height: 46px;
  width: 46px;
  line-height: 46px;
  right: 0;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  color: var(--bs-white);
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}
.classic-box .classic_image_box .action-share-option {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) rotateX(-90deg);
  display: flex
;
  align-items: center;
  gap: 8px;
  height: 48px;
  border-radius: 10px 10px 0 0;
  background: var(--secondary-color);
  padding: 10px 29px;
  transform-origin: bottom;
  transition: 0.4s cubic-bezier(0.375, 1.185, 0.92, 0.975);
}.action-share-option .single-action {
  height: 28px;
  width: 28px;
  display: flex
;
  align-items: center;
  justify-content: center;
  border: 1.2px dashed rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  transition: all 0.3s;
}.openuptip[title] {
  position: relative;
  cursor: pointer;
} .action-share-option .single-action i {
  color: #fff;
  transition: all 0.3s;
}
.classic-box .classic_image_box:hover .action-share-option {
  bottom: 0;
  transform: translateX(-50%) rotateX(0deg);
}


/* shop sort */
.shop-sort{
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bs-white);
  border-radius: 10px;
  padding: 8px 15px;
  margin-bottom: 0px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}


.shop-sort .chosen-container-single .chosen-single{
 height:35px;
 line-height: 35px;border-radius: 10px;
}
.filterbox-body {
  padding: 30px;
}
.list-filter input[type=checkbox]
{
  display: none;
}
.list-filter label::before {
  background: #fff;
  border: 1px solid #E2E2E2;
  /* box-shadow: 0px 1.5px 6px rgba(37, 64, 32, 0.05); */
  border-radius: 2px;
}
.list-filter input[type=checkbox]~label::before, .list-filter input[type=radio]~label::before {
  content: " ";
  position: absolute;
  top: 1 px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  transition: all 0.3s;
  border-radius: 2px;
}
.list-filter input[type=checkbox]~label, .list-filter input[type=radio]~label {
  position: relative;
  font-size: 14px;
  line-height: 17px;
  color: #2C3C28;
  font-weight: 500;
  padding-left: 25px;
  cursor: pointer;
}
.list-filter input[type=checkbox]:checked~label::after, .list-filter input[type=radio]:checked~label::after {
  opacity: 1;
}
.list-filter input[type=checkbox]~label::after, .list-filter input[type=radio]~label::after {
  content: " ";
  position: absolute;
  top: 16%;
  left: 2px;
  width: 10px;
  height: 6px;
  background-color: transparent;
  border-bottom: 2px solid #b8b8b8;
  border-left: 2px solid #b8b8b8;
  border-radius: 2px;
  transform: rotate(-45deg);
  opacity: 0;
  transition: all 0.3s;
}
input[type="checkbox"]:invalid {
	outline: 2px solid red;
  }
  .form-control.is-invalid, .was-validated .form-control:invalid {
    border-color: #fd3550 !important;
}
.chosen-container.is-valid .chosen-single, .chosen-container.is-valid .chosen-choices {
  border-color: #15ca20;
}
.chosen-container.is-invalid .chosen-single ,.chosen-container.is-invalid .chosen-choices{
  border-color: #fd3550;
}
label{    font-size: 12px;
  color: #858585;
  font-weight: 600;}
  .mtop5{
    margin-top: 5%;
  }
  textarea{height: 125px !important;}
  .inspiration-grid .swiper{padding:0.875rem 0}
  .ad-banner .swiper-slide{
    background: none !important;
    box-shadow: none !important;
    height: 100% !important;
    display: block !important;
  }
  .ad-banner .swiper-slide img{
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: none !important;
  }
  .related .swiper-slide{
    background: transparent!important;
    box-shadow: none !important;
    height: 100% !important;
  }
  /**WEDDING TOOLS PAGE **/
.wpo-story-section-s3 .wpo-story-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 50px;
}
.wpo-story-section-s3 .wpo-story-item .wpo-story-img-wrap {
  position: relative;
  z-index: 1;
  -ms-flex-preferred-size: 30%;
  flex-basis: 30%;
  text-align: center;
}
.wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-img-wrap{
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  -webkit-order: 2;
  -moz-order: 2;
}
.wpo-story-section-s3 .wpo-story-item .wpo-story-img-wrap .wpo-story-img {
  width: 375px;
    height: 375px;
    padding: 5px;
  background: #fff;
  border-radius: 50%;
  margin: 0 auto;
  -webkit-box-shadow: 0px 2px 12px 2px rgba(4, 0, 52, 0.1);
  box-shadow: 0px 2px 12px 2px rgba(4, 0, 52, 0.1);
}
.wpo-story-section-s3 .wpo-story-item .wpo-story-img-wrap .wpo-story-img img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wpo-story-section-s3 .wpo-story-item .wpo-story-content {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  border: 1px solid #C7D9F8;
  padding: 20px;
  margin-left: -85px;
  padding-left: 130px;
  position: relative;
  background: #F8FAFF;
  border-top-right-radius: 350px;
  border-bottom-right-radius: 350px;
}
.wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-content {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
  -webkit-order: 1;
  -moz-order: 1;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 165px;
  margin-left: 0;
  position: relative;
  padding-left: 0;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 900px;
  margin: auto;
  margin-right: -430px;
  border-radius: 0;
  border-top-left-radius: 350px;
  border-bottom-left-radius: 350px;
}
.wpo-story-section-s3 .wpo-story-item .wpo-story-content .wpo-story-content-inner {
  position: relative;
  padding: 60px;
  padding-right: 200px;
}
.wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-content .wpo-story-content-inner{
  position: relative;
  padding: 60px;
  text-align: right;
  padding-right: 0;
  padding-left: 200px;
}
.wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-content .wpo-story-content-inner {
  padding: 40px;
  padding-left: 200px;
}
.wpo-story-section-s3 .wpo-story-item .wpo-story-content .wpo-story-content-inner:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 150%;
  height: 100%;
  left: -50%;
  content: "";
  border: 1px solid #C7D9F8;
  border-top-right-radius: 350px;
  border-bottom-right-radius: 350px;
}
.wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-content .wpo-story-content-inner:before {
  left: auto;
  right: -53%;
  border-radius: 0;
  border-top-left-radius: 350px;
  border-bottom-left-radius: 350px;
}
@media (max-width: 1800px) {
 .wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-content {
      margin-right: -85px;
  }
}
@media (max-width: 991px) {
  .wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-content .wpo-story-content-inner{
    text-align: center;
    padding: 30px 15px;
}
  .wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-content {
    max-width: 100%;
    border-radius: 0;
    padding: 15px;
}
  .wpo-story-section-s3 .wpo-story-item .wpo-story-content .wpo-story-content-inner{
    padding-right: 60px;
  }
  
  .wpo-story-section-s3 .wpo-story-item{
    flex-wrap: wrap;
  }
  .wpo-story-section-s3 .wpo-story-item .wpo-story-img-wrap {
      -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
      max-width: 600px;
      margin: 0 auto;
  }
  .wpo-story-section-s3 .wpo-story-item .wpo-story-content{
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    border-radius: 0;
}
.wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-content{
  padding: 20px;
  -webkit-box-ordinal-group: unset;
  -ms-flex-order: unset;
  order: unset;
  -webkit-order: unset;
  -moz-order: unset;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  margin-right: 0;
  text-align: center;
  margin-top: 100px;
}
.wpo-story-section-s3 .wpo-story-item .wpo-story-content {
  padding-left: 20px;
  margin-left: 0;
  text-align: center;
  margin-top: 100px;
}
.wpo-story-section-s3 .wpo-story-item .wpo-story-content .wpo-story-content-inner:before{
  width: 100%;
  left: 0;
  border-radius: 0;
}
.wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-img-wrap{
  -webkit-box-ordinal-group: unset;
  -ms-flex-order: unset;
  order: unset;
  -webkit-order: unset;
  -moz-order: unset;
}
.wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-content .wpo-story-content-inner:before {
  width: 100%;
  left: 0;
  border-radius: 0;
}
.service-block-four .inner-box .content-box{
  min-height: 275px;
}
.service-block-four .inner-box .content-box .icon{
  top: -12%; bottom:auto
}
.container .row .col-lg-3:nth-child(even) .dlab-box{
  display: flex
;
    flex-wrap: wrap;
    flex-direction: column-reverse;
}
.choose-item.active{margin-left: 0px;}
.contact-card{margin-bottom: 30px;}
.features-items{padding-left: 0px; margin-top: 30px;}
.features-items{padding-left: 0;}
.service-block-four .inner-box{overflow: visible;}
.scrollsmooth{margin-bottom: 30px;}
.items-data{
  min-width: 170px;padding: 10px;
}
.login{padding:0 !important}
.pricing-block .inner-box{min-height: 100%;}
.login .justify-content-evenly{overflow-x: auto;}
.cta-one__inner{    flex-wrap: wrap;    padding: 60px 20px 55px;}
.cta-one__left .content h3{font-size: 25px;}
.cta-one__left{gap:0}
.stock-items{grid-template-columns: repeat(2, 1fr);}
.stock-items .classic-box{margin-bottom: 0px;}
}
@media (max-width: 575px) {
  .cart-section{flex:auto}
  .cart-page{padding:0}
  .wpo-story-section-s3 .row:nth-child(even) .wpo-story-item .wpo-story-content{
    padding: 10px;
    margin-top: 30px;
}
  .wpo-story-section-s3 .wpo-story-item{
      padding-bottom: 50px;
  }
  .wpo-story-section-s3 .wpo-story-item .wpo-story-img-wrap {
    max-width: 400px;
}
.wpo-story-section-s3 .wpo-story-item .wpo-story-img-wrap .wpo-story-img {
  width: 260px;
  height: 260px;
}
.wpo-story-section-s3 .wpo-story-item .wpo-story-content {
  margin-top: 30px;
}
.wpo-story-section-s3 .wpo-story-item .wpo-story-content{
  padding: 10px;
}
}
.side-panel {
  position: fixed;
  top: 0;
  left: -300px; /* Initially hidden */
  width: 250px;
  height: 100%;
  background-color: #111;
  padding-top: 60px;
  transition: 0.3s ease-in-out;
}

.side-panel a {
  padding: 10px 15px;
  display: block;
  color: white;
  text-decoration: none;
}

.side-panel a:hover {
  background-color: #575757;
}

/* Close Button */
#closeBtn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}
/**BANNER **/
.inner_margin {
  margin-bottom: 50px;
}
.inner {
  border: 1px solid #e1e1e1;
  text-align: center;
}
.inner.disabled{
  background: #fafafa;
  filter: blur(1px);
}
.inner-heading {
  padding: 20px 0;
  font-weight: 600;
  border-bottom: 1px solid #e1e1e1;
}
.inner-heading h5 {
  font-size: 18px;
  color: #18212c;
}
.inner-heading h6{
  font-size: 15px;
  font-weight: bold;
  color:var(--theme-color)
}
.img-box {
  padding: 20px 0;
  border-bottom: 1px solid #e1e1e1;
}
.img-box img,.sample_file img{
  width: 105px;
  height: 105px;
  object-fit: cover;
  border-radius: 50%;
}
.sample_file img{
  width: 75px;
  height: 75px;
}
.inner_btn {
  padding: 30px 0;
}
a.comp_btn {
  text-align: center;
  height: 50px;
  padding: 10px 20px;
  font-size: 14px;
  background-color: #e53632;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  line-height: 1.8;
  border: 2px solid #e53632;
  font-weight: 500;
  transition: .5s;
  /* font-family: 'Roboto', sans-serif; */
  border-radius: 5px;
  min-width: 150px;
    font-size: 15px;
    font-weight: normal;
    line-height: 25px;
    max-height: 35px;
    min-height: 35px;
    color: var(--button-color);
    border: 1px solid var(--button-color);
    border-radius: 0.375rem;
    padding: 0.275rem 1.75rem;
    background-color: var(--accent-color);
}
a.btn-2 {
  background: transparent;
  border: 2px solid #e1e1e1;
  color: #18212c;
}
.ad_inner {
  border: 2px solid #e1e1e1;
  padding: 30px;
}
.margin_btm {
  margin-bottom: 30px;
}.title_box {
  border: 1px solid #e1e1e1;
  border-radius: 5px;
  width: 100%;
  height: 50px;
  padding: 15px;
  background: #f8f9fc;
  font-size: 12px;
  font-family: "Montserrat";
  font-weight: 600;
  color: #99a3ae;
}
.files-outer {
  border: 2px solid #e1e1e1;
  padding: 20px;    align-items: center;
}.zero-padding {
  padding: 0;
}
.progresss {
  height: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  background-color: #f5f5f5;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
}
.progresss {
  height: 6px;
  margin-top: 20px;
  width: 95%; overflow: visible; position: relative;
}
.progresss span i {
  font-size: 24px;
  position: absolute;
  right: -20px;
  top: -8px;
  color: var(--secondary-color);
}
.progresss-bar {
  float: left;
  width: 95%;
  height: 100%;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  background-color: #337ab7;
  -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
  -webkit-transition: width .6sease;
  -o-transition: width .6s ease;
  transition: width .6sease;
}
.progress-bar-success {
  background-color:var(--secondary-color);
  width: 100%;
}
.pricing{
  width: 70px;
    height: 70px;
    line-height: 70px;
    background: var(--theme-color);
    color:#fff;
    font-weight: bold;
    text-align: center;
    border-radius: 50%;
    margin: auto;
    font-size: 25px;
}
/* .borderedcontainer{
  border: #eeecec solid 1px;
  border-radius: 10px;
} */
 .venue-selector-container .swiper-button-next, .venue-selector-container .swiper-button-prev{
  width: 25px;
  height: 25px;
  color: #757575;
    background: #fff;
    border: 0.5px solid rgb(0 0 0 / 0.3);
 }
 .venue-selector-container .swiper-button-prev, .venue-selector-container .swiper-rtl .swiper-button-next
 {
  left:0
 }
 .venue-selector-container .swiper-button-next, .venue-selector-container .swiper-rtl .swiper-button-prev{
  right: 0;
 }
 .venue-selector-container .swiper-button-next:after, .venue-selector-container .swiper-button-prev:after {
  font-size: 10px;
}
.wedding-grid .card-img-wrap,.wedding-grid .card-img-wrap img{
  height: 230px;
  position: relative;border-radius: 10px;
  object-fit: cover;
}
.wedding-grid .card-img-wrap img{
  width: 100%;
}
.wdding-grid .card-badge{
  left: 25px !important;
}
.venue-selector-container{    padding-bottom: 15px;}

.sticky-btn
{
  position: fixed;
  bottom: 30px;
  line-height: 43px;
  left: 45%;
  right: auto;
  width: 135px;
  height: 43px;
  border-radius: 30px;
  background-color: var(--secondary-color);
  color: #fff;
  cursor: pointer;
  text-align: center;
  -webkit-transform-origin: right bottom;
  -moz-transform-origin: right bottom;
  -o-transform-origin: right bottom;
  transform-origin: right bottom;
  transition: all 0.35scubic -bezier(0.91, -0.28, 0.06, 1.3), background-color 0.25sease;
  -webkit-box-shadow: 0px 13px 40px 0px rgba(0, 0, 0, 0.21);
  -moz-box-shadow: 0px 13px 40px 0px rgba(0, 0, 0, 0.21);
  box-shadow: 0px 13px 40px 0px rgba(0, 0, 0, 0.21);
z-index: 999;
}
.custom-cluster {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: white;
  border-radius: 50%;
  border: 2px solid white;
}

/* Small clusters (1-9 markers) */
.custom-cluster.small {
  background-color: #3498db; /* Blue */
  width: 40px;
  height: 40px;
}

/* Medium clusters (10-49 markers) */
.custom-cluster.medium {
  background-color: #e67e22; /* Orange */
  width: 50px;
  height: 50px;
}

/* Large clusters (50+ markers) */
.custom-cluster.large {
  background-color: #e74c3c; /* Red */
  width: 60px;
  height: 60px;
}
.whiteness{filter:brightness(0) invert(1); width:120px}
.check-container {
  width: 6.25rem;
  height: 7.5rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between; margin:auto
}
.check-container .check-background {
  width: 100%;
  height: calc(100% - 1.25rem);
  background: linear-gradient(to bottom right, #5de593, #41d67c);
  box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  transform: scale(0.84);
  border-radius: 50%;
  animation: animateContainer 0.75s ease-out forwards 0.75s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.check-container .check-background svg {
  width: 65%;
  transform: translateY(0.25rem);
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: animateCheck 0.35s forwards 1.25s ease-out;
}
.check-container .check-shadow {
  bottom: calc(-15% - 5px);
  left: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, #49da83, transparent);
  animation: animateShadow 0.75s ease-out forwards 0.75s;
}

@keyframes animateContainer {
  0% {
    opacity: 0;
    transform: scale(0);
    box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  25% {
    opacity: 1;
    transform: scale(0.9);
    box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  43.75% {
    transform: scale(1.15);
    box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  62.5% {
    transform: scale(1);
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
  }
  81.25% {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
  100% {
    opacity: 1;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
}
@keyframes animateCheck {
  from {
    stroke-dashoffset: 80;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes animateShadow {
  0% {
    opacity: 0;
    width: 100%;
    height: 15%;
  }
  25% {
    opacity: 0.25;
  }
  43.75% {
    width: 40%;
    height: 7%;
    opacity: 0.35;
  }
  100% {
    width: 85%;
    height: 15%;
    opacity: 0.25;
  }
}
.login-wrapper .chosen-container-multi .chosen-choices
{
  background: #ffffff !important;
    width: 100%;
    border-radius: 0px;
    box-shadow: none !important;
    padding-left: 25px;
    border: 1px solid #E3E3E3;
    color: #7c7b7b;
    line-height: 43px;
    border-radius: 0 !important;
}
.price-input{
  width: 100%;
  display: flex;
  margin: 30px 0 35px;justify-content: space-between;    font-size: 12px;
  color: #626262;
}
.price-input .field{
  width: 20%;
    height: 45px;
    align-items: center;
}
.field input{
  width: 100%;
  height: 100%;
  outline: none;
  font-size: 14px;
  /* margin-left: 12px; */
  border-radius: 25px;
  text-align: center;
  border: 1px solid #999;
  -moz-appearance: textfield;
}
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
}
.price-input .separator{
  width: 130px;
  display: flex;
  font-size: 19px;
  align-items: center;
  justify-content: center;
}
.slider{
  height: 5px;
  position: relative;
  background: #ddd;
  border-radius: 5px;
}
.slider .progress{
  height: 100%;
  left: 25%;
  right: 25%;
  position: absolute;
  border-radius: 5px;
  background: var(--secondary-color);
}
.range-input{
  position: relative;
}
.range-input input{
  position: absolute;
  width: 100%;
  height: 5px;
  top: -5px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
input[type="range"]::-webkit-slider-thumb{
  height: 25px;
  width:25px;
  border-radius: 50%;
  background: #fff;
  pointer-events: auto;
  -webkit-appearance: none;
  border:#EBEBEB solid 1px;
}
input[type="range"]::-moz-range-thumb{
  height: 25px;
  width:25px;
  border: none;
  border-radius: 50%;
  background: #fff;
  pointer-events: auto;
  -moz-appearance: none;
  border:#EBEBEB solid 1px;
  box-shadow: 0 0 6px rgba(0,0,0,0.05);
}
.modal-body p{    font-size: 13px;    margin-bottom: 0;}
.acc-item {
  margin-bottom: 12px;
  border-style: solid;
  border-width: 1px;
  border-color: #e6e6e6;
  background-color: #fff;
}
.acc-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 16px 24px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.acc-body {
  padding: 24px;
}

.acc-body.active {
  display: block;
}

.acc-text {
  margin-bottom: 0px;
  color: rgba(0, 0, 0, 0.6);
}

.acc-text.mb-12 {
  margin-bottom: 12px;
}

.q-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
  color: #2002ff;
}

.q-icon.arrow-active {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}
.enChTB {
  display: flex
;
  flex-flow: wrap;
  gap: 6px;
}.iLpYmh {
  display: flex
;
  -webkit-box-align: center;
  align-items: center;
  width: fit-content;
}.iLpYmh>input {
  display: none;
}.iLpYmh>.image {
  cursor: pointer;
  border: 1px solid rgba(205, 205, 205, 0.6);
}
.jFJkQS {
  display: flex
;
  flex-flow: row;
  -webkit-box-pack: center;
  justify-content: center;
  background-color: #fff;
  height: 36px;
  padding: 10px;
  border-radius: 30px;
  cursor: pointer;
  align-items: center;
  gap: 10px;
}.dJlHZS {
  display: flex
;
  -webkit-box-pack: center;
  justify-content: center;
  /* filter: opacity(0.6);  */
}.bsojqq {
  
  height: 20px;
}
.listings{
  list-style: none;
  display: flex
;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}.q-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.toggle-arrow {
  width: 24px;
  height: 24px;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease;
  font-size: 14px;
}

.toggle-arrow.rotate {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.active {
  display: block;
}
.modal-body.overflow{
  max-height: calc(100vh - 200px);
  overflow-y: auto;
}.acc-body {
  display: none;
}
.iLpYmh > input:checked + .image {
  border: 2px solid var(--theme-color);
}
.dark-overlay .bs-gradient{
  position: absolute;
    bottom: 0%;border-radius: 10px;

}
.card-image-hover a{
  width: 100%;
  display: block;
  position: relative;
}
#services img,#areas img{border-radius: 10px;    min-height: 220px; max-height: 220px;}
figure{margin-bottom: 0px;}
.btnpadd{padding: 0.475rem 1.75rem;}
.brevo-conversations--pos-right{z-index: 9 !important;}
.category-tag{    position: absolute;
  display: inline-block;
  font-weight: normal;
  font-size: 12px;
  padding: 3px;
  /* margin: 10px 10px 10px -18px; */
  color: #e5e5e5 !important;
  background-color: var(--secondary-color);
  -webkit-box-shadow: 3px 2px 4px rgba(0, 0, 0, .5);
  -moz-box-shadow: 3px 2px 4px rgba(0,0,0,.5);
  box-shadow: 3px 2px 4px rgba(0, 0, 0, .5);
  bottom: 10px;
  z-index: 7;
  left: 0;}
  .category-tag:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    right: -10px;
    top: 0;
    border-width: 10px 5px;
    border-style: solid;
    border-color: var(--secondary-color) transparent transparent var(--secondary-color);
}
.category-tag b {
  position: absolute;
  width: 0;
  height: 0;
  right: -10px;
  bottom: 0;
  border-width: 10px 5px;
  border-style: solid;
  border-color: transparent transparent var(--secondary-color) var(--secondary-color);
}
.banner-1 p{color:#fff}
.packages .swiper-button-next, .packages .swiper-button-prev
{top:60%}

/* reveal grid after images loaded */
.grid.are-images-unloaded {
  opacity: 0;
}

.grid__item,
.grid__col-sizer {
  width: 23%;
}

.grid__gutter-sizer { width: 2%; }

/* hide by default */
.grid.are-images-unloaded .image-grid__item {
  opacity: 0;
}

.grid__item {
  margin-bottom: 20px;
  float: left;
}

.grid__item img {
  display: block;
  max-width: 100%;
}


.page-load-status {
  display: none; /* hidden by default */
  padding-top: 20px;
  border-top: 1px solid #DDD;
  text-align: center;
  color: #777;
}


/*loader-ellips style*/
.loader-ellips {
  font-size: 20px; /* change size here */
  position: relative;
  width: 4em;
  height: 1em;
  margin: 10px auto;
}

.loader-ellips__dot {
  display: block;
  width: 1em;
  height: 1em;
  border-radius: 0.5em;
  background: #555; /* change color here */
  position: absolute;
  animation-duration: 0.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}

.loader-ellips__dot:nth-child(1),
.loader-ellips__dot:nth-child(2) {
  left: 0;
}
.loader-ellips__dot:nth-child(3) { left: 1.5em; }
.loader-ellips__dot:nth-child(4) { left: 3em; }

@keyframes reveal {
  from { transform: scale(0.001); }
  to { transform: scale(1); }
}

@keyframes slide {
  to { transform: translateX(1.5em) }
}

.loader-ellips__dot:nth-child(1) {
  animation-name: reveal;
}

.loader-ellips__dot:nth-child(2),
.loader-ellips__dot:nth-child(3) {
  animation-name: slide;
}

.loader-ellips__dot:nth-child(4) {
  animation-name: reveal;
  animation-direction: reverse;
}
.media-content {
  border-top: 1.5px solid rgb(0 0 0 / 6%);
    border-bottom: 1.5px solid rgb(0 0 0 / 6%);
    margin-top: 50px;
}
.tagcloud span {
  color: #191f23;
  font-size: 24px;
  font-weight: 600;
  display: inline-block;
  margin-right: 10px;
}
.tagcloud a {
  color: #000000;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  font-family: "Radio Canada Big", serif;
  border: 1px solid #000;
  display: inline-block;
  padding: 10px 24px;
  margin: 5px 5px;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  position: relative;
  z-index: 1;
}
.tagcloud a::before {
  content: "";
  position: absolute;
  z-index: 1;
  background: #ffffff;
  width: 0px;
  height: 100%;
  left: 0;
  bottom: 0;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: -1;
}
.tagcloud a:hover {
  color: #ffffff;
  border-color: #104042;
}
.tagcloud a:hover::before {
  width: 100%;
  background: #104042;
}
@media only screen and (min-width: 1200px) and (max-width: 1600px) {
  .tagcloud a {
    padding: 16px 16px;
    margin: 5px 2px;
  }
}
@media (max-width: 767px) {
  .tagcloud a {
    padding: 16px 10px;
    margin: 5px 2px;
  }
  .grid__item,
.grid__col-sizer {
  width: 49%;
}
}

.team-social-2 a {
  font-size: 15px;
    text-align: center;
    line-height: 34px;
    border: 1px solid rgb(235 235 235);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    display: inline-block;
    margin-right: 10px;
  -webkit-transition: all 0.4s ease 0s;
  -moz-transition: all 0.4s ease 0s;
  -ms-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
  background: #fbfbfb;
  color: #818181;
}
.team-social-2 a:hover {
  color: #fff;
  border-color: var(--secondary-color);
  background: var(--secondary-color);
}
.team-social-2{
  margin: 10px 0px;
}
.menu-box{width: 100%; display: block; }
.menu-box a{
  background: #f9f9f9;
  border-radius: 10px;
    border: #f0f0f0 solid 1px;
    width: 100%;
    padding: 20px !important;
    display: block !important;margin-bottom: 20px;
}
.dropdown-menu .category-item:last-child .menu-box a{margin-bottom: 0px;}
.menu-box a h4,.megamenu h4{
  font-size: 16px;
  color:var(--secondary-color);
  display: block;
  margin-bottom: 10px;
}
.menu-box a:hover{
      box-shadow: 0 5px 12px #0003;
}
.menu-box a p{color: #a2a2a2;
  font-size: 14px; display: block; margin-bottom: 0px;
  white-space: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-height: 16px;
}
.menu-box a i{    color: var(--secondary-color);
  font-size: 18px;}
  .megamenu ul li i{color:var(--secondary-color)}
  .megamenu ul{padding:0 !important; margin:0 !important; display:  block !important;
    width: 100%;}
  .megamenu ul li{
    display:  block !important;
    width: 100%;
  }
  .megamenu ul li a{padding: 3px !important;font-size: 15px !important;display: flex !important;gap: 10px !important;justify-content: flex-start !important;}
  .megamenu ul li a img{width: 15px;     filter: brightness(0) opacity(0.55) drop-shadow(0 0 0 blue);}
  .megamenu .col-md-4,.megamenu .col-md-6,.megamenu .col-md-3,.megamenu .col-md-2{ border-left: #f0f0f0 solid 1px;}
  .megamenu ul.grid3 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
  
  }
  .megamenu ul.grid2 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
  
  }
  .removeWishlist{color:#000}
  .shopbox{
    height: inherit;
    border: #ccc solid 1px;
    border-radius: 10px;
    padding: 64px;
  }
  #data_container .pagination {
    justify-content: center;
    margin-top: 20px;
    display: flex
;
    align-items: center;
    /* justify-content: space-between; */
    width: 100%;
    width: 100%;
    /* height: 50px; */
    grid-column: 1 / -1;
}
#faqAccordion .accordion-card:not(:last-child) {
  margin-bottom: 16px;
}
#faqAccordion .accordion-card {
  -webkit-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f8f8f8;
  text-align: left;
  position: relative;
  z-index: 3;
  border-radius: 8px;
  border: 1px solid #E2E2E2;
}
#faqAccordion .accordion-header {
  margin-bottom: 0;
}
#faqAccordion .accordion-card .accordion-button {
  font-size: 16px;
  font-weight: 500;
  /* font-family: var(--title-font); */
  border: 0;
  border-color: var(--th-border-color);
  color: var(--title-color);
  background-color: transparent;
  border-radius: 0;
  padding: 10px 10px 10px 10px;
  min-height: 40px;
  gap: 10px;
  margin-bottom: 0;
  text-align: left;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
}
.subtotal{justify-content: center;
  font-size: 18px;}
  .categoryitem{
    position: relative;overflow: hidden;
  }
  .categoryitem img{
    transition: 0.5s; width: 100%;margin-bottom: 10px;overflow: hidden;
  }
  .categoryitem a{overflow: hidden; display: block; width:100%; height: 380px; margin-bottom: 10px;}
  .categoryitem a::before{
    position: absolute;
    z-index: 2;
    top: 15px;
    left: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 80px);
    content: "";
    transform: scale(1);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    border-image: initial;
    transition: 0.5s;
  }
  .categoryitem a:hover img{
    transform: scale(1.1);
  }
  .fixed
  {
    position: relative;
  }
  .modal-body .card{
      border: 0 solid transparent;
      margin-bottom: 1.5rem;
      box-shadow: 0 2px 6px 0 rgb(218 218 253 / 65%), 0 2px 6px 0 rgb(206 206 238 / 54%);
    }
    .modal-body .card-body{
      padding: 0.5rem 0.5rem !important;
    }
    .modal-body .btn-check:active+.btn-primary, .modal-body .btn-check:checked+.btn-primary,.modal-body  .btn-primary.active, .modal-body .btn-primary:active, .show>.btn-primary.dropdown-toggle {
      color: #fff;
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
  }
  .modal-body .btn-primary:hover ,.modal-body .btn-primary{
      color: #fff;
      background-color: var(--secondary-color);
      border-color: var(--secondary-color);
  }
  .dashboard-main .modal-body{
    padding:0px !important
  }
  #media-gallery{padding:0 !important}
  .dashboard-main #media-gallery .card{
    margin-top: 0px !important;
  }
  .modalbutton{text-align: center;}
  .social-text {
    margin: 10px 0;
    font-size: 14px;    color: #afafaf;
    text-align: center;
}
.social-media {
    display: flex;
    justify-content: center;
}
.social-icon {
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9a9a9a;
    border: 1px solid #9a9a9a;
    border-radius: 50px;
    margin: 0 5px;
}
a {
    text-decoration: none;
}
.social-icon:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.apexcharts-legend{display: none !important;}
/* .apexcharts-canvas{top:-65px} */
.actionContainer [type=checkbox] {
  width: 2rem;
  height: 2rem;
  color: var(--secondary-color);
  vertical-align: middle;
  -webkit-appearance: none;
  background: none;
  border: 0;
  outline: 0;
  flex-grow: 0;
  border-radius: 50%;
  background-color: #FFFFFF;
  transition: background 300ms;
  cursor: pointer;
}
.actionContainer h6{
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; 
}
.actionContainer [type=checkbox]::before {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}


/* Checked */

.actionContainer [type=checkbox]:checked {
  background-color: currentcolor;
}

.actionContainer [type=checkbox]:checked::before {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}


/* Disabled */

.actionContainer [type=checkbox]:disabled {
  background-color: #CCD3D8;
  opacity: 0.84;
  cursor: not-allowed;
}


/* IE */

.actionContainer [type=checkbox]::-ms-check {
  content: "";
  color: transparent;
  display: block;
  width: inherit;
  height: inherit;
  border-radius: inherit;
  border: 0;
  background-color: transparent;
  background-size: contain;
  box-shadow: inset 0 0 0 1px #CCD3D8;
}

.actionContainer [type=checkbox]:checked::-ms-check {
  box-shadow: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E %3Cpath d='M15.88 8.29L10 14.17l-1.88-1.88a.996.996 0 1 0-1.41 1.41l2.59 2.59c.39.39 1.02.39 1.41 0L17.3 9.7a.996.996 0 0 0 0-1.41c-.39-.39-1.03-.39-1.42 0z' fill='%23fff'/%3E %3C/svg%3E");
}
.apexcharts-canvas,#donut{
  height: 200px !important;
}
#donut{
     min-height: 270px !important;
}
tfoot td{    font-weight: bold;}
/* Add $ to only columns 2 to 7 in tbody */
.expenseTable tbody td:nth-child(2)::before,
.expenseTable tbody td:nth-child(3)::before,
.expenseTable tbody td:nth-child(4)::before,
.expenseTable tbody td:nth-child(5)::before,
.expenseTable tbody td:nth-child(6)::before{
  content: '$';
}

/* Same for tfoot */
.expenseTable tfoot tr:first-child td:nth-child(2)::before,
.expenseTable tfoot tr:first-child td:nth-child(3)::before,
.expenseTable tfoot tr:first-child td:nth-child(4)::before,
.expenseTable tfoot tr:first-child td:nth-child(5)::before,
.expenseTable tfoot tr:first-child td:nth-child(6)::before {
  content: '$';
}

/* Remove $ from column 8 explicitly */
.expenseTable tbody td:nth-child(7)::before,
.expenseTable tfoot td:nth-child(7)::before {
  content: '' !important;
}
.roundedpill{
      min-height:  36px;
    min-width: 36px;
    padding: 9px 15px;
    font-size: 12.99px;
    line-height: 1.4;
    background: #e9e9e9;
    color: #000;
    border-radius: 30px;
}
.whislistabsolute{
  position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    font-size: 18px;
    height: 30px;
    background: #0000005e;
    border: none;
    color: #fff;
    border-radius: 8px;
    text-align: center;
}
.imgblog{position: relative}
.imgblog img{
  width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}
.imgblog p{
   overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; 
}
.faqs,
.faqs .accordion-item,
.faqs .accordion-header,
.faqs .accordion-button,
.faqs .accordion-collapse {
  border: none !important;
  box-shadow: none !important;
}

.faqs .accordion-button:not(.collapsed) {
  background: transparent;
  box-shadow: none !important;
}

.faqs .accordion-button {
  background: transparent;
  outline: none;
  padding: 15px 0px;
}

.faqs .accordion-item:first-of-type > .accordion-header .accordion-button ,.faqs .accordion-body{
  padding: 0;
  margin-bottom: 15px;
}

.faqs .accordion-item {
  border: none !important;
  background: transparent;
}
.faqs .accordion-item:first-of-type > .accordion-header .accordion-button {
      font-weight: 500;
    font-family: var(--heading-font);
    text-transform: uppercase;
}
#back-to-top{display: none;}
#back-to-top .topbtn {
 position: fixed;
    bottom: 10px;
    right: 10px;
    margin: 0px;
    color: var(--bs-white);
    background: var(--secondary-color);
    z-index: 999;
    font-size: 18px;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    
}
.brevo-conversations__iframe{
  z-index: 9999999 !important;
}
.profilter{
      display: block;
    width: 42%;
    /* border-radius: 45px; */
    padding: 15px 10px 15px 20px !important;;
    left: 4% !important;;
    z-index: 9;
}
.profilter li a{
   overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; 
}