:root {
  --color-brand: #D63384;
  --color-brand-dark: #C32272;
  --color-brand-5: rgba(214, 51, 132, 0.05);
  --color-brand-30: rgb(214 51 132 / 30%);
  --color-light: #FFF8FB;
  --color-bodycopy: #495057;
  --color-section-heading: #212529;
  --color-text-dark: #202826;
  /*FONT FAMILY*/
  --font-body: 'Inter';
  --font-heading: 'Plus Jakarta Sans';
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body), sans-serif;
  font-size: 16px;
  background-color: #fff;
  color: var(--color-bodycopy);
  font-weight: 400;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

/*TRANSITIONS*/
.btn,
a,
button,
.transition {
  webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}

/*FONTS*/
.body-font {
  font-family: var(--font-body), serif;
}

.heading-font {
  font-family: var(--font-heading), serif;
}


/*HEADINGS*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading), serif;
  margin-bottom: .5rem;
  line-height: 1.3;
  color: var(--color-section-heading);
  line-height: 120%;
  font-optical-sizing: auto;
  font-style: normal;
}

/* ENHANCED NAVIGATION STYLES */
.header-navbar .navbar-nav .nav-link {
  font-family: var(--font-heading), serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 15px 20px !important;
}

.header-navbar .navbar-nav .nav-link:hover {
  color: var(--color-brand) !important;
  transform: translateY(-2px);
}

.header-navbar .navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-brand-dark));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

.header-navbar .navbar-nav .nav-link:hover::after {
  width: 80%;
}

/* DROPDOWN MENU ENHANCEMENTS */
.dropdown-mega .dropdown-menu {
  border: none;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  animation: slideDown 0.3s ease-out;
  margin-top: 10px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

.mega-menu-column li a {
  font-family: var(--font-body), sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-bodycopy);
  transition: all 0.3s ease;
  padding: 8px 15px;
  border-radius: 8px;
  display: block;
  position: relative;
}

.mega-menu-column li a:hover {
  color: var(--color-brand);
  background: rgba(214, 51, 132, 0.1);
  transform: translateX(5px);
}

.mega-menu-column li a .icon-follow {
  opacity: 0;
  transition: all 0.3s ease;
  margin-left: 5px;
}

.mega-menu-column li a:hover .icon-follow {
  opacity: 1;
  transform: translateX(3px);
}

/* LOGIN/SIGNUP BUTTON ENHANCEMENTS */
.login-btn {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  color: white !important;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
  position: relative;
  overflow: hidden;
}

.login-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.login-btn:hover::before {
  left: 100%;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
  color: white !important;
}

/* HERO BANNER EFFECTS */
@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

.floating-icon {
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-overlay-effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.floating-shapes {
  position: relative;
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: floatShape 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes floatShape {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
    opacity: 0.1;
  }

  50% {
    transform: translateY(-30px) rotate(180deg);
    opacity: 0.3;
  }
}

/* POPULAR SEARCH EFFECTS */
.popular-search-block {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.popular-search-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s;
}

.popular-search-block:hover::before {
  left: 100%;
}

.popular-search-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.popular-search-block img {
  transition: transform 0.3s ease;
}

.popular-search-block:hover img {
  transform: scale(1.05);
}

/* VENUE SEARCH BLOCK EFFECTS */
.venue-search-block {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.venue-search-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(214, 51, 132, 0.1) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.venue-search-block:hover::after {
  opacity: 1;
}

.venue-search-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.venue-search-block h6 {
  transition: color 0.3s ease;
}

.venue-search-block:hover h6 {
  color: var(--color-brand);
}

/* ENHANCED SERVICE CARDS */
.enhanced-service-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.enhanced-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(214, 51, 132, 0.1), transparent);
  transition: left 0.6s;
}

.enhanced-service-card:hover::before {
  left: 100%;
}

.enhanced-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-description .enhanced-text {
  font-family: var(--font-body), sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: #666;
  font-weight: 400;
  display: block;
  padding: 15px 0;
}

.pricing-label {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
}

/* CATEGORY BLOCK ENHANCEMENTS */
.category-block {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  padding: 20px 10px;
}

.category-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(214, 51, 132, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.category-block:hover::after {
  opacity: 1;
}

.category-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.category-block img {
  transition: transform 0.3s ease;
  border-radius: 12px;
}

.category-block:hover img {
  transform: scale(1.05);
}

.category-block h5 {
  transition: color 0.3s ease;
  font-weight: 600;
  margin-top: 10px;
}

.category-block:hover h5 {
  color: var(--color-brand);
}

/* ENHANCED PACKAGE CARDS */
.enhanced-package-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.enhanced-package-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240, 147, 251, 0.2), transparent);
  transition: left 0.8s;
}

.enhanced-package-card:hover::before {
  left: 100%;
}

.enhanced-package-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.package-title {
  font-family: var(--font-heading), serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--color-brand);
  margin-bottom: 15px;
  text-align: center;
}

.package-description {
  padding: 20px 0;
}

.enhanced-description {
  font-family: var(--font-body), sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  font-weight: 400;
  text-align: center;
  margin-bottom: 0;
}

/* CART ICON STYLES */
.cart-icon-wrapper {
  position: relative;
  display: inline-block;
}

.cart-btn {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  color: white !important;
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.4);
  color: white !important;
}

.cart-count {
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  animation: cartBounce 0.3s ease-out;
}

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

  50% {
    transform: scale(1.2);
  }

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

/* USER DROPDOWN ENHANCEMENTS */
.dropdown-menu {
  border: none;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.95);
  padding: 10px 0;
  margin-top: 10px;
}

.dropdown-item {
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 2px 10px;
}

.dropdown-item:hover {
  background: rgba(214, 51, 132, 0.1);
  color: var(--color-brand);
  transform: translateX(5px);
}

.dropdown-item i {
  width: 16px;
  text-align: center;
}

/* ENHANCED SERVICE CARDS */
.enhanced-service-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(214, 51, 132, 0.1);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.enhanced-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
  text-align: center;
  margin-bottom: 20px;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 24px;
}

.service-title {
  font-family: var(--font-heading), serif;
  font-weight: 700;
  color: var(--color-brand);
  font-size: 1.5rem;
  margin: 15px 0;
}

.service-body {
  flex: 1;
}

.service-features ul li {
  padding: 5px 0;
  font-size: 14px;
  color: #666;
}

.service-footer {
  margin-top: 20px;
}

.service-badge .badge {
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* STATISTICS SECTION */
.stats-section {
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="stats-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.15)"/><circle cx="10" cy="60" r="1" fill="rgba(255,255,255,0.15)"/></pattern></defs><rect width="100" height="100" fill="url(%23stats-pattern)"/></svg>');
  opacity: 0.3;
}

.stat-item {
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  animation: countUp 2s ease-out;
}

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

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

/* RECENT BOOKINGS SECTION */
.booking-card {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.booking-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.booking-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--color-brand) 0%, var(--color-brand-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  font-size: 20px;
}

.booking-date {
  text-align: center;
}

.date-day {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--color-brand);
  line-height: 1;
}

.date-month {
  display: block;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.booking-body {
  flex: 1;
}

.booking-service {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.booking-location {
  color: #666;
  font-size: 14px;
  margin-bottom: 15px;
}

.booking-status .badge {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  font-size: 12px;
  padding: 5px 12px;
}

/* NOTIFICATION STYLES */
.notification-icon-wrapper {
  position: relative;
  display: inline-block;
}

.notification-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  padding: 10px 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
}

.notification-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
  color: white !important;
}

.notification-count {
  background: #ff4757;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  animation: cartBounce 0.3s ease-out;
}

.notification-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 320px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: none;
  margin-top: 10px;
}

.notification-dropdown.show {
  display: block;
  animation: slideDown 0.3s ease-out;
}

.notification-header {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notification-header h6 {
  margin: 0;
  font-weight: 600;
  color: #333;
}

.notification-header button {
  background: none;
  border: none;
  color: var(--color-brand);
  font-size: 12px;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.notification-header button:hover {
  background: rgba(214, 51, 132, 0.1);
}

.notification-list {
  max-height: 300px;
  overflow-y: auto;
}

.notification-item {
  padding: 15px 20px;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.3s ease;
}

.notification-item:hover {
  background: #f8f9fa;
}

.notification-item.unread {
  background: rgba(214, 51, 132, 0.05);
}

.notification-text {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

.notification-time {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.notification-footer {
  padding: 15px 20px;
  text-align: center;
  border-top: 1px solid #eee;
}

.notification-footer a {
  color: var(--color-brand);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.notification-footer a:hover {
  text-decoration: underline;
}


/*ANCHOR TAGS*/
a {
  color: var(--color-dark);
  text-decoration: none;
  background-color: transparent;
}

a:hover,
a:focus {
  color: var(--color-secondary);
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
  outline: none !important;
}

a:focus,
:focus {
  outline: 0 !important;
  box-shadow: none !important
}

/*FORM ELEMENTS*/
.form-control,
textarea,
select,
.form-select {
  border-color: #aaa;
}

.form-control,
textarea,
select,
.form-select,
button {}

.form-control:focus,
.form-select:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem #c72e300d;
  background-color: white;
  border-color: var(--color-brand);
}




/*SECTION HEADINGS*/
.section-heading {
  margin-bottom: 20px;
}

.section-heading h2,
.sectionhdn {
  font-size: 32px;
  font-weight: 700;
  color: var(--color-section-heading);
  line-height: 120%;
  margin-bottom: 10px;
  letter-spacing: -1px;
}

.section-heading p {
  color: var(--bs-body-color);
  font-size: 18px;
  margin-bottom: 0;
  line-height: 1.8;
}

/*TEXT COLOR*/
.text-brand {
  color: var(--color-brand);
}

.text-dark {
  color: var(--color-text-dark);
}


/*BACKGROUND*/
.bg-brand {
  background-color: var(--color-brand);
}

.bg-light-1 {
  background-color: var(--color-light);
}

/*SECTION TOP BOTTOM PADDINGS*/
.section-tb-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}

/*BUTTONS*/
.btn {
  border-radius: 5px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-sm {
  font-size: 11px;
  border-radius: 4px;
}

.btn-lg {
  font-size: 13px;
  border-radius: 6px;
  font-weight: 600;
  letter-spacing: 0.5px;
  height: 46px;
  line-height: 1;
}


/*BUTTON PRIME*/
.btn-prime {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
  color: white;
}

.btn-prime:hover,
.btn-prime:focus,
.btn-prime:active {
  background-color: var(--color-brand-dark) !important;
  border-color: var(--color-brand-dark) !important;
  color: white !important;
}

/*BUTTON OUTLINE PRIME*/
.btn-outline-prime {
  background-color: transparent;
  border-color: var(--color-brand);
  color: var(--color-brand);
}

.btn-outline-prime:hover,
.btn-outline-prime:focus,
.btn-outline-prime:active {
  background-color: var(--color-brand);
  border-color: var(--color-brand);
  color: white;
}

/*SECTION MAIN BUTTON*/
.section-button .btn {
  font-weight: 600;
  border-radius: 16px;
  font-size: 13px;
  box-shadow: 0 10px 10px rgb(199 46 48 / 10%);
  letter-spacing: -0.5px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 240px;
  padding-left: 20px;
  padding-right: 20px;
  text-transform: uppercase;
}

/*SHADOWS*/
.thin-shadow {
  -webkit-box-shadow: 0 0 2px 0 rgb(0 0 0 / 30%);
  box-shadow: 0 0 2px 0 rgb(0 0 0 / 30%);
  transition: all 200ms ease;
}

.thin-shadow:hover {
  -webkit-box-shadow: 0 3px 4px 0px rgb(0 0 0 / 10%);
  box-shadow: 0 3px 4px 0px rgb(0 0 0 / 10%);
}

/*SWIPER PAGINATION*/
.swiper-pagination {
  margin-top: 10px;
}

.swiper-pagination-bullet {
  background-color: var(--color-brand-30);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-brand);
}

/*SWIPER NAV BUTTONS*/
.swiper-button-next,
.swiper-button-prev,
.swiper-button-prev:after,
.swiper-button-next:after {
  height: 40px;
  width: 40px;
}

.swiper-button-next,
.swiper-button-prev {
  z-index: 1;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 16px;
  color: var(--color-brand);
  background-color: white;
  display: flex;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  box-shadow: 0 5px 10px rgb(0 0 0 / 20%);
  webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}

.swiper-button-prev:hover:after,
.swiper-button-next:hover:after {
  background-color: var(--color-brand);
  color: white;
}

/*TEXT WHITE TO LIGHT WHITE*/
.text-white-5 {
  color: rgb(255 255 255 / 5%) !important;
}

.text-white-10 {
  color: rgb(255 255 255 / 10%) !important;
}

.text-white-20 {
  color: rgb(255 255 255 / 20%) !important;
}

.text-white-25 {
  color: rgb(255 255 255 / 25%) !important;
}

.text-white-30 {
  color: rgb(255 255 255 / 30%) !important;
}

.text-white-35 {
  color: rgb(255 255 255 / 35%) !important;
}

.text-white-45 {
  color: rgb(255 255 255 / 45%) !important;
}

.text-white-50 {
  color: rgb(255 255 255 / 50%) !important;
}

.text-white-55 {
  color: rgb(255 255 255 / 55%) !important;
}

.text-white-60 {
  color: rgb(255 255 255 / 60%) !important;
}

.text-white-65 {
  color: rgb(255 255 255 / 65%) !important;
}

.text-white-70 {
  color: rgb(255 255 255 / 70%) !important;
}

.text-white-75 {
  color: rgb(255 255 255 / 75%) !important;
}

.text-white-80 {
  color: rgb(255 255 255 / 80%) !important;
}

.text-white-85 {
  color: rgb(255 255 255 / 85%) !important;
}

.text-white-90 {
  color: rgb(255 255 255 / 90%) !important;
}

.text-white-95 {
  color: rgb(255 255 255 / 95%) !important;
}

/*TEXT BLACK TO LIGHT BLACK*/
.text-black-5 {
  color: rgb(0 0 0 / 5%) !important;
}

.text-black-10 {
  color: rgb(0 0 0 / 10%) !important;
}

.text-black-20 {
  color: rgb(0 0 0 / 20%) !important;
}

.text-black-25 {
  color: rgb(0 0 0 / 25%) !important;
}

.text-black-30 {
  color: rgb(0 0 0 / 30%) !important;
}

.text-black-35 {
  color: rgb(0 0 0 / 35%) !important;
}

.text-black-45 {
  color: rgb(0 0 0 / 45%) !important;
}

.text-black-50 {
  color: rgb(0 0 0 / 50%) !important;
}

.text-black-55 {
  color: rgb(0 0 0 / 55%) !important;
}

.text-black-60 {
  color: rgb(0 0 0 / 60%) !important;
}

.text-black-65 {
  color: rgb(0 0 0 / 65%) !important;
}

.text-black-70 {
  color: rgb(0 0 0 / 70%) !important;
}

.text-black-75 {
  color: rgb(0 0 0 / 75%) !important;
}

.text-black-80 {
  color: rgb(0 0 0 / 80%) !important;
}

.text-black-85 {
  color: rgb(0 0 0 / 85%) !important;
}

.text-black-90 {
  color: rgb(0 0 0 / 90%) !important;
}

.text-black-95 {
  color: rgb(0 0 0 / 95%) !important;
}

/*TEXT GREY AND DARK*/
.text-grey {
  color: #6c757d;
}

.text-grey-dark {
  color: #343a40;
}

.text-grey-10 {
  color: #f8f9fa;
}

.text-grey-20 {
  color: #e9ecef;
}

.text-grey-30 {
  color: #dee2e6;
}

.text-grey-40 {
  color: #ced4da;
}

.text-grey-50 {
  color: #adb5bd;
}

.text-grey-60 {
  color: #6c757d;
}

.text-grey-70 {
  color: #495057;
}

.text-grey-80 {
  color: #343a40;
}

.text-grey-90 {
  color: #212529;
}

/*FONT WEIGHTS*/
.fw100 {
  font-weight: 100 !important;
}

.fw200 {
  font-weight: 200 !important;
}

.fw300 {
  font-weight: 300 !important;
}

.fw400 {
  font-weight: 400 !important;
}

.fw500 {
  font-weight: 500 !important;
}

.fw600 {
  font-weight: 600 !important;
}

.fw700 {
  font-weight: 700 !important;
}

.fw800 {
  font-weight: 800 !important;
}

.fw900 {
  font-weight: 900 !important;
}

.fr77 {
  text-align: center;
}

/*LETTER SPACING*/
.lshalf {
  letter-spacing: 0.5px
}

.ls1 {
  letter-spacing: 1px
}

.ls2 {
  letter-spacing: 2px
}

.ls3 {
  letter-spacing: 3px
}

.ls4 {
  letter-spacing: 4px
}

.ls5 {
  letter-spacing: 5px
}

.ls6 {
  letter-spacing: 6px
}

.ls7 {
  letter-spacing: 7px
}

.ls8 {
  letter-spacing: 8px
}

.ls9 {
  letter-spacing: 9px
}

.ls10 {
  letter-spacing: 10px
}

/*LINE HEIGHT*/
.lh100 {
  line-height: 100%
}

.lh120 {
  line-height: 120%
}

.lh130 {
  line-height: 130%
}

.lh140 {
  line-height: 140%
}

.lh150 {
  line-height: 150%
}

.lh160 {
  line-height: 160%
}

.lh170 {
  line-height: 170%
}

.lh180 {
  line-height: 180%
}

.lh190 {
  line-height: 190%
}

.lh200 {
  line-height: 200%
}

/*FONT SIZE 0 to 72px */
.fs0 {
  font-size: 0;
}

.fs7 {
  font-size: 7px;
}

.fs8 {
  font-size: 8px;
}

.fs9 {
  font-size: 9px;
}

.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs17 {
  font-size: 17px;
}

.fs18 {
  font-size: 18px;
}

.fs19 {
  font-size: 19px;
}

.fs20 {
  font-size: 20px;
}

.fs21 {
  font-size: 21px;
}

.fs22 {
  font-size: 22px;
}

.fs23 {
  font-size: 23px;
}

.fs24 {
  font-size: 24px;
}

.fs25 {
  font-size: 25px;
}

.fs26 {
  font-size: 26px;
}

.fs27 {
  font-size: 27px;
}

.fs28 {
  font-size: 28px;
}

.fs29 {
  font-size: 29px;
}

.fs30 {
  font-size: 30px;
}

.fs31 {
  font-size: 31px;
}

.fs32 {
  font-size: 32px;
}

.fs33 {
  font-size: 33px;
}

.fs34 {
  font-size: 34px;
}

.fs35 {
  font-size: 35px;
}

.fs36 {
  font-size: 36px;
}

.fs37 {
  font-size: 37px;
}

.fs38 {
  font-size: 38px;
}

.fs39 {
  font-size: 39px;
}

.fs40 {
  font-size: 40px;
}

.fs41 {
  font-size: 41px;
}

.fs42 {
  font-size: 42px;
}

.fs43 {
  font-size: 43px;
}

.fs44 {
  font-size: 44px;
}

.fs45 {
  font-size: 45px;
}

.fs46 {
  font-size: 46px;
}

.fs47 {
  font-size: 47px;
}

.fs48 {
  font-size: 48px;
}

.fs49 {
  font-size: 49px;
}

.fs50 {
  font-size: 50px;
}

.fs51 {
  font-size: 51px;
}

.fs52 {
  font-size: 52px;
}

.fs53 {
  font-size: 53px;
}

.fs54 {
  font-size: 54px;
}

.fs55 {
  font-size: 55px;
}

.fs56 {
  font-size: 56px;
}

.fs57 {
  font-size: 57px;
}

.fs58 {
  font-size: 58px;
}

.fs59 {
  font-size: 59px;
}

.fs60 {
  font-size: 60px;
}

.fs61 {
  font-size: 61px;
}

.fs62 {
  font-size: 62px;
}

.fs63 {
  font-size: 63px;
}

.fs64 {
  font-size: 64px;
}

.fs65 {
  font-size: 65px;
}

.fs66 {
  font-size: 66px;
}

.fs67 {
  font-size: 67px;
}

.fs68 {
  font-size: 68px;
}

.fs69 {
  font-size: 69px;
}

.fs70 {
  font-size: 70px;
}

.fs71 {
  font-size: 71px;
}

.fs72 {
  font-size: 72px;
}

/*OPACITY*/
.opacity0 {
  opacity: 0;
}

.opacity1 {
  opacity: 0.1;
}

.opacity2 {
  opacity: 0.2;
}

.opacity3 {
  opacity: 0.3;
}

.opacity4 {
  opacity: 0.4;
}

.opacity5 {
  opacity: 0.5;
}

.opacity6 {
  opacity: 0.6;
}

.opacity7 {
  opacity: 0.7;
}

.opacity8 {
  opacity: 0.8;
}

.opacity9 {
  opacity: 0.9;
}

/*PAGINATION*/
.pagination .page-link {
  color: var(--color-dark);
  font-size: 15px;
  height: 40px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.pagination .page-link:hover {
  color: #fff;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.pagination .active>.page-link,
.pagination .page-link.active {
  color: #fff;
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  width: auto;
}

.custom-width {
  max-width: 1140px;
}

/*##############################################################################*/
/*##################__________MAIN STYLE STARTS HERE_________###################*/
/*##############################################################################*/

.header-top {
  background-color: var(--color-brand-5);
  font-size: 12px;
  border-bottom: 1px solid rgba(104, 35, 36, 0.03);
}

.header-top .header-tagline,
.header-top .header-top-info {
  padding-top: 5px;
  padding-bottom: 5px;
}

.header-top .header-tagline {
  font-weight: 500;
}

.header-top .header-top-info {
  font-weight: 500;
}

.header-top .header-top-info span:first-child {
  margin-right: 20px;
}

.header-top .header-top-info span img {
  height: 16px;
  width: auto;
  margin-right: 3px;
}

/*##########################################################################################*/
.header-navbar {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #fff;
  border-bottom: 1px solid rgba(104, 35, 36, 0.03);
}

.header-navbar .header-logo .header-logo-img {
  width: 220px;
}


.header-navbar .navbar-nav .nav-item {
  padding-left: 10px;
  padding-right: 10px;
}

.header-navbar .navbar-nav .nav-item .nav-link {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  height: 72px;
  align-items: center;
  display: flex;
}





/*--Dropdown-megamenu CSS start---*/
.my-mega .dropdown-menu {
  border-radius: 0;
  margin-top: -1px !important;
  width: 100%;
  padding: 0;
}

.header-navbar .dropdown:hover .dropdown-menu {
  display: block;
  width: 100%;
  left: 0;
  right: 0;
}


.mega-menu-column li {
  line-height: 40px;
  border-bottom: 1px dashed rgba(192, 201, 210, .5);
  list-style: none;
}

.mega-menu-column li:last-child {
  border-bottom: none
}

.mega-menu-column li:hover {
  border-bottom: 1px solid #d63384
}

.mega-menu-column li a {
  font-size: 14px;
}

.mega-menu-column li a:hover {
  color: #d63384;
}


/*#################________image__overlay Menu_________#################*/
.image__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s;
  border-radius: 20px
}

.image__overlay>* {
  transform: translateY(20px);
  transition: transform 0.25s;
}

.image__overlay:hover {
  opacity: 1;
}

.image__overlay:hover>* {
  transform: translateY(0);
}


/*--dropdown-megamenu CSS END---*/






.login-btn {
  background-color: var(--color-brand-5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 9px 30px;
  font-weight: 600;
  font-size: 14px;
  color: #d63384;
}

.login-btn:hover {
  background-color: var(--color-brand);
  color: #fff;
  cursor: pointer
}


/*##########################################################################################*/


.hero-section {
  height: 508px;
  width: 100%;
  background-image: url(../images/banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  position: relative;
}

.hero-content {
  padding-top: 100px;
}

.hero-content h2 {
  font-size: 29px;
  font-weight: 600;
  letter-spacing: -2px;
  line-height: 1.4;
  margin-bottom: 16px;
}

.hero-content h2 span {
  color: var(--color-brand);
  font-style: italic;
}

.hero-content-search {
  background-color: #fff;
  padding: 10px;
  border-radius: 14px;
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%);
}

.search-select-wrapper {
  position: relative;
  background: white;
  border-radius: 10px;
  padding: 15px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  min-height: 60px;
}

.search-select-wrapper:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.search-select-wrapper .search-select-icon {
  height: 20px;
  width: 20px;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  z-index: 5;
  opacity: 0.7;
}

.search-select-wrapper .form-control {
  height: 50px;
  border: 2px solid #e9ecef;
  font-size: 16px;
  padding-left: 50px;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.search-select-wrapper .form-control:focus {
  border-color: var(--color-brand);
  box-shadow: 0 0 0 0.2rem rgba(214, 51, 132, 0.25);
}

.search-select-wrapper .form-control:hover {
  border-color: var(--color-brand);
}

.hero-search-form .btn {
  height: 46px;
}

/*HERO SLIDER*/
.hero-section .hero-slider {
  position: absolute;
  right: 0;
  top: 20px;
  bottom: -12px;
  width: 45%;
}

.hero-section .hero-slider .hero-slide-bg {
  height: 498px;
  border-radius: 230px 0 0 50px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
}


/*POPULAR SEARCH*/
.banner-icon {
  margin-top: 20px
}

.popular-search-wrap {
  padding-top: 55px;
  max-width: 540px;
}

.popular-search-wrap .popular-search-block {
  text-align: center;
  display: block;
  padding-top: 10px;
}

.popular-search-wrap .popular-search-block img {
  max-width: 95px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  margin-bottom: 10px;
}

.popular-search-wrap .popular-search-block p {
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.5px;
}

.popular-search-block:hover img {
  transform: scale(1.05);
}

.popular-search-slider .swiper-button-prev {
  margin-left: -12px;
}

.popular-search-slider .swiper-button-next {
  margin-right: -12px;
}

.popular-search-slider.swiper {
  padding-left: 20px;
  padding-right: 20px;
}

.popular-search-slider .swiper-button-prev:hover:after,
.popular-search-slider .swiper-button-next:hover:after {
  background-color: transparent;
  color: var(--color-brand);
}

.popular-search-slider .swiper-button-prev:after,
.popular-search-slider .swiper-button-next:after {
  font-size: 20px;
  background-color: transparent;
  border-radius: 0;
  box-shadow: none;
  color: #000;
}

.popular-search-slider .swiper-button-next,
.popular-search-slider .swiper-button-prev,
.popular-search-slider .swiper-button-prev:after,
.popular-search-slider .swiper-button-next:after {
  height: 25px;
  width: 20px;
}


.popular-search-slider .swiper-button-prev.swiper-button-lock,
.popular-search-slider .swiper-button-next.swiper-button-lock {
  display: block;
}

/*#################-------------USP SECTION-----------####################*/
.usp-section {
  background-color: var(--color-brand);
  padding-top: 10px;
  padding-bottom: 10px;
  background-image: url(../images/uspbg.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.usp-block {
  padding-top: 20px;
  padding-bottom: 20px;
}

.usp-block img {
  height: 34px;
  width: 34px;
}

.usp-block h6 {
  font-size: 16px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 2px;
  font-weight: 600;
}

.usp-block p {
  color: #fff;
  opacity: 0.8;
  font-size: 13px;
}


/*#################-------------VENUE SECTION-----------####################*/
.venue-search-block {
  text-align: center;
  margin-bottom: 24px;
}

.venue-search-block img {
  border-radius: 14px;
  height: 175px
}

.venue-search-block:hover img {
  transform: scale(1.03);
}

.venue-search-block h6 {
  font-weight: 500;
  color: var(--color-text-dark);
  font-size: 15px;
}

.venue-search-block p {
  color: var(--bs-gray-600);
  font-size: 8px;
  margin-bottom: 0;
}

.venue-search-block p a {
  color: var(--color-brand);
  font-size: 13px;
  padding: 5px;
}

.venue-search-block p a:hover {
  color: var(--color-brand-dark);
  text-decoration: underline;
}


/*#################-------------PLAN WEDDING SECTION-----------####################*/
.plan-wedding-block {
  background-color: #fff;
  display: block;
  border: 1px solid var(--bs-gray-200);
  border-radius: 20px;
  overflow: hidden;
}

.plan-wedding-block h5 {
  font-size: 21px;
  font-weight: 600;
  color: var(--color-text-dark);
}

.plan-wedding-block span {
  font-size: 11px;
  color: var(--color-brand);
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: underline;
}

.plan-wedding-block figure {
  margin-bottom: 0;
  overflow: hidden;
}

.plan-wedding-block figure .slant {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: auto;
  z-index: 5;
}

.plan-wedding-block:hover span {
  letter-spacing: 0.3px;
  font-weight: 500;
}

.plan-wedding-block:hover img.transition {
  transform: scale(1.05);
}


/*#################-------------CATEGORY SECTION-----------####################*/
.category-block:hover img {
  transform: scale(1.05);
  box-shadow: var(--bs-box-shadow-sm);
}

/*#################-------------FEATURED SECTION-----------####################*/
.feature-block {
  background-color: #fff;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}

.feature-block .feature-block-content {
  position: relative;
  padding: 22px 18px 18px;
}

.feature-block .feature-block-content .vendor-category {
  border-radius: 20px;
  padding: 5px 12px;
  position: absolute;
  top: -14px;
  left: 14px;
}

.feature-block .feature-block-content h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-block .feature-block-content p {
  font-size: 12px;
  color: var(--bs-gray-700);
  margin-bottom: 10px;
}

.feature-block .feature-block-content p i {
  font-size: 12px;
  margin-right: 3px;
}

.feature-block .feature-block-content .starting-price {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-brand);
}

.feature-block .feature-block-content .starting-price span {
  display: block;
  color: var(--color-text-dark);
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.5px;
}

.feature-block .feature-block-content .vendor-rating {
  font-size: 12px;
}

.feature-block .feature-block-content .vendor-rating i {
  color: var(--bs-yellow);
  font-size: 12px;
  margin-right: 3px;
}

.feature-block .feature-block-content .vendor-rating span {
  font-weight: 600;
  color: var(--color-text-dark);
  font-size: 14px;
}

.feature-block:hover img {
  transform: scale(1.05);
}


/*#################-------------REAL WEDDINGS SECTION-----------####################*/
.realwedding-block {
  background-color: #fff;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  margin: 5px;
}

.realwedding-block .realwedding-content {
  padding: 55px 30px 30px;
}

.realwedding-block:hover {}

.realwedding-block:hover img,
.article-block:hover img {
  transform: scale(1.05);
}

.article-block img {
  max-height: 220px
}

/*New BUTTONS*/
.btns {
  font-size: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-weight: 600;
  border-radius: 12px;
  min-width: 256px;
  display: inline-block
}

.btn-primary {
  border-color: #d63384;
  color: #fff;
  background: #d63384
}

.btn-primary:hover {
  background-color: #c32272;
  border-color: #c32272;
  color: #fff;
}



/*-----Testimonial Section CSS-----*/
.testimonial-block {
  max-width: 850px;
  margin: 0 auto;
}

.testimonial-block .dq {
  right: 0px;
  bottom: 40px;
  height: 70px;
  width: 70px;
  background-color: #d63384;
  color: #fff;
  font-size: 30px;
}

.ship-img {
  bottom: -55px;
  right: -260px
}

.testimonial-section .swiper-button-prev {
  margin-left: 50px
}

.testimonial-section .swiper-button-next {
  margin-right: 50px
}

.author-img img {
  width: 230px;
  height: 230px
}

/*#####################__________FAQS SECTION__________########################*/
.collapse-block {
  background-color: #fff;
  margin-bottom: 10px;
  border-radius: 15px;
}

.collapse-block .collapse-header {
  font-weight: 600;
  padding: 20px 65px 20px 30px;
  font-size: 16px;
  position: relative;
  cursor: pointer;
}

.collapse-block .collapse-header .collapse-icon {
  background-color: #969CA5;
  box-shadow: 0 7px 7px rgb(199 46 48 / 15%);
  color: #fff;
  height: 36px;
  width: 36px;
  border-radius: 50px;
  position: absolute;
  right: 30px;
  top: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  webkit-transition: all 250ms linear;
  -moz-transition: all 250ms linear;
  -o-transition: all 250ms linear;
  -ms-transition: all 250ms linear;
  transition: all 250ms linear;
}

.collapse-block .collapse-content {
  padding: 0 30px 30px 30px;
  font-size: 14px;
  display: none;
}

.collapse-block .collapse-content p {
  margin-bottom: 16px;
}

.collapse-block .collapse-content p:last-child {
  margin-bottom: 0;
}

.collapse-block.isOpen .collapse-header {
  color: var(--color-brand);
}

.collapse-block.isOpen .collapse-header .collapse-icon {
  background-color: var(--color-brand);
  transform: rotate(180deg);
  box-shadow: 0 -7px 7px rgb(199 46 48 / 15%);
}

.collapse-block.isOpen .collapse-content {
  display: block;
}

/*----need-help Form CSS----*/
.need-help-sec .form-control {
  font-size: 13px;
  height: 45px;
  border: transparent;
  font-weight: 600
}

.need-help-sec .btns {
  padding-top: 13px;
  padding-bottom: 13px;
  border: none;
}

/*#####################__________FOOTER__________########################*/
.footer-main {
  font-size: 14px;
  padding-top: 80px;
  background-color: #FFFCFD
}

.footerlogo img {
  width: 265px
}

.footer-main h6 {
  color: #212529;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.5px
}

.footer-main .social-handles a {
  font-size: 23px;
  line-height: 42px;
  border-radius: 50px;
  margin-right: 3px;
  color: #ffffff;
  width: 42px;
  height: 42px;
  display: inline-block;
  text-align: center;
  background-image: linear-gradient(to bottom, #b5179e, #bf1b97, #c82290, #d02a8a, #d63384);
}

.footer-main .social-handles a:hover {
  background-image: linear-gradient(to right bottom, #a80c91, #ad0c86, #b1117c, #b21872, #b32069);
  color: #ffffff;
}

.footer-main .footer-links ul li {
  margin-bottom: 15px;
}

.footer-main .footer-links ul li a {
  display: block;
}

.footer-main .footer-links ul li a,
.footer-main p,
.footer-main p a {
  color: #495057;
}

.footer-main .footer-links ul li a:hover,
.footer-main p a:hover {
  color: #D63384;
}

.footer-main .footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-main .ftr-contact-info .info-block h6 {
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 5px;
}


.footer-btm {
  font-size: 12px;
}

.footer-btm .copyrights,
.footer-btm .gototop {
  color: #495057;
}

.bdr {
  background: #efedee;
  box-shadow: 0px 1px 0px 0px rgba(197, 197, 197, 0.55);
}

.footer-btm .gototopbtn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  background: #E6E8EB;
  font-size: 12px;
  font-weight: 600;
  padding: 10px 16px;
  border-radius: 30px;
  line-height: 1;
  color: #6C757D
}

.footer-btm .gototopbtn:hover {
  background-color: #D63384;
  color: #fff;
}

.vender {
  font-size: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 600;
  border-radius: 12px;
  display: inline-block;
  width: 100%;
  text-transform: uppercase
}

.numbers.btns {
  border: 1px solid #c32272
}

.numbers.btns:hover {
  background-color: #c32272;
  color: #fff;
  border: 1px solid #c32272
}

.contact-info .numbers.btns,
.contact-info .btn-primary.btns {
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%
}

/*-------pricing-table------*/
.pricing-table {
  background: #fff;
  box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, .15);
  padding: 2rem;
  border-radius: 10px;
  transition: .3s;
}

.pricing-table:hover {
  box-shadow: 0px 1px 10px -4px rgba(0, 0, 0, .15);
}

.pricing-table .pricing-label {
  border-radius: 2px;
  padding: .25rem .5rem;
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
}

.pricing-table h2 {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 2px;
}

.pricing-table p {
  font-size: 14px;
  border-bottom: 1px solid #fcecf3;
  padding-bottom: 15px;
  height: 195px;
  overflow: hidden;
}

.pricing-table .price-tag {
  text-align: center;
  font-weight: 500;
  margin-bottom: 10px;
}

.pricing-table .price-tag .symbol {
  font-size: 24px;
}

.pricing-table .price-tag .amount {
  font-size: 45px;
}

.pricing-table a:focus {
  color: #fff !important
}


.purple .pricing-label {
  background: #ffeae8;
  color: #ff4e43;
}

.pricing-label#price-label-2 {
  background: #ffecb9;
  color: #e6b222;
}

.pricing-label#price-label-3 {
  background: #ffb9dc;
  color: #d63384;
}

#Quote .form-control,
#Login .form-control {
  height: 50px;
  font-size: 14px;
}

#Quote .modal-content,
#Login .modal-content {
  background-image: url(../images/about-wedblessed-bg.jpg);
  background-position: center top;
}


/*-------LOGIN PAGE CSS------*/
.loginForm .form-control {
  font-size: 14px;
  height: 45px
}

.loginForm .AppFormRight {
  height: 420px;
  background-size: cover;
  background-position: center;
}

.loginForm .AppFormRight:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #d63384, #000);
  opacity: 0.7;
}

.loginForm.AppFormRight h2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.loginForm .AppFormRight1 {
  height: 550px;
}

.loginForm .rdio {
  position: relative;
  border: 1px solid #d63384;
  border-radius: 20px;
  margin-right: 10px;
  padding: 2px 12px
}

.loginForm .rdio input[type=radio] {
  opacity: 0;
}

.loginForm .rdio label {
  padding-left: 1px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  vertical-align: top;
}

.loginForm .rdio label:before {
  width: 18px;
  height: 18px;
  position: absolute;
  top: 2px;
  left: 4px;
  content: "";
  display: inline-block;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  border: 1px solid #d63384;
  background: transparent;
}

.loginForm .rdio input[type=radio] {
  margin: 0px;
}

.loginForm .rdio input[type=radio]:disabled+label {
  color: #999;
}

.loginForm .rdio input[type=radio]:disabled+label:before {
  background-color: #d63384;
}

.loginForm .rdio input[type=radio]:checked+label::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 8px;
  display: inline-block;
  font-size: 11px;
  width: 10px;
  height: 10px;
  background-color: #d63384;
  -moz-border-radius: 50px;
  -webkit-border-radius: 50px;
  border-radius: 50px;
}

.loginForm .rdio-default input[type=radio]:checked+label:before {
  border-color: #d63384;
}

.loginForm .rdio-primary input[type=radio]:checked+label:before {
  border-color: #d63384;
}

.loginForm .rdio-primary input[type=radio]:checked+label::after {
  background-color: #d63384;
}

.Comments {
  height: auto !important
}

/*****--- Inner page Banner css*****---*/
.inner-banner-top {
  height: 320px;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: top center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.inner-banner-top .main-content {
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
}

.inner-banner-top .all_heading {
  font-size: 35px;
  letter-spacing: 1px
}

/* -----Contact us-----*/
.contactinfo-section .contactinfo-block {
  border: 1px solid #c32272;
}

.contactinfo-section .contactinfo-block:hover {
  background-color: #fefafc !important
}


/*-----Blog listing and blog-detail CSS------*/

.section-pagination {
  background-color: #fff;
  -webkit-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  display: inline-block;
  padding: 12px;
}

.section-pagination .page-item:first-child .page-link {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.section-pagination .page-link.page-link-first,
.section-pagination .page-link.page-link-last {
  background-color: transparent;
}

.section-pagination .page-link {
  border: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  margin-right: 2px;
  margin-left: 2px;
  color: #808996;
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -ms-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
  background-color: #fff;
  padding: 7px 13px;
  font-weight: 600;
}

.section-pagination .page-link {
  color: #808996;
  font-weight: 600;
}

.page-item:last-child .page-link {
  border-top-right-radius: .25rem;
  border-bottom-right-radius: .25rem;
}

.section-pagination .page-link.page-link-active {
  background-color: #d63384;
  color: #fff;
  border-color: #d63384;
}

.section-pagination .page-link:hover {
  color: #d63384;
  background-color: rgba(128, 137, 150, 0.1);
}

/* blog-detail*/
.article_main_thumb {
  position: relative;
  display: block;
  max-height: 450px;
  overflow: hidden;
  margin-bottom: 15px;
}

.article_mn_title h1 {
  font-size: 28px;
  font-weight: 600
}

.article_writer_info {
  display: flex;
  padding: 1rem 0;
  margin: 1.5rem 0;
  border-top: 1px solid #dbe2ea;
  border-bottom: 1px solid #dbe2ea;
  width: 100%;
}

.article_writer_info_first {
  flex: 1;
  font-size: 14px
}

.article_writer_info_first ul {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-bottom: 0;
}

.article_writer_info_first li {
  display: inline-block;
  margin-right: 1.5rem;
}

.article_writer_info_first li:last-child {
  margin-right: 0;
}

.article_secs p {
  font-size: 15px;
  line-height: 24px
}

.article_secs img {
  width: 100%;
  margin-bottom: 10px
}

.article_secs h1,
h2,
h2,
h4,
h5,
h6 {
  font-weight: 600 !important
}

ul.articles_cats {
  margin-top: 1rem;
  padding-left: 0;
}

ul.articles_cats li {
  margin-right: 0.2rem;
  display: inline-block;
}

ul.articles_cats li a {
  background: #fff8fb;
  padding: 5px 15px;
  border-radius: 4px;
  margin-bottom: 10px;
  display: inline-block;
  border: 1px solid #d63384;
  color: #000;
  font-size: 14px;
}

ul.articles_cats li a:hover {
  background-color: #d63384;
  border-color: #d63384;
  color: #fff;
}

.sidebar-widget {
  margin-bottom: 10px;
  border: 1px solid rgba(128, 137, 150, 0.1);
  padding: 30px;
  border-radius: 5px;
}

.widget-title {
  font-size: 20px
}

.widget-category li {
  list-style: none;
  margin-bottom: 5px;
  padding-left: 20px;
  position: relative;
}

.widget-category li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  background-color: #d63384;
  position: absolute;
  top: 8px;
  left: 0;
}

.widget-category li a {
  color: #333;
}

.widget-category li a:hover {
  color: #d63384;
}

.mini-list-card {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}

.mini-list-card .mini-list-img img {
  width: 85px;
  height: 100%;
  padding-right: 10px
}

.mini-list-card .mini-list-title {
  font-size: 13px;
  line-height: 18px;
}

.article_secs,
.article_secs p {
  line-height: 170%
}


/*------Career Page CSS------*/
.career-item {
  padding: 30px;
  background: #FFF;
  border: 1px solid #eee;
}

.career-item .title-item {
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
  margin-bottom: 15px;
}

.career-item h3 {
  color: #02185a;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
  display: block;
  line-height: 20px;
  margin-bottom: 15px;
}

.history span:first-child {
  color: #ffffff;
  font-weight: 600;
  background: #c32272;
  padding: 5px 10px;
  margin-right: 10px;
  font-size: 12px;
}

.history span {
  text-transform: uppercase;
  color: #989898;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.20px;
}

.career-item ul {
  padding-left: 0;
  margin-bottom: 0px;
  list-style: none;
}

.career-item ul li {
  margin-bottom: 5px;
  color: #666;
}

.career-item ul li span {
  margin-right: 10px;
  color: #c32272;
}

.career-item .read-more:hover {
  color: #ff6119;
  border-bottom: 1px solid #ff6119;
}

.career-item .read-more {
  color: #898989;
  font-size: 12px;
  display: inline-block;
  font-weight: 700;
  border-bottom: 1px solid #898989;
  line-height: 20px;
  text-transform: uppercase;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.career-item .read-more i {
  font-size: 11px;
  margin-left: 5px;
}

.AppFormLeft .form-control-lg {
  padding: .7rem 1rem;
}


/*#################_________Real Wedding_________#################*/
.RealWedding .Real-block {
  border-radius: 6px 6px 6px 20px;
  border-right: 5px solid #d63384;
  padding: 20px 20px 10px;
}

.RealWedding .Real-block p {
  font-size: 14px;
}

.RealWedding .Real-block img {
  max-width: 350px;
  margin-top: -50px;
}


/*------Venue Detail CSS----------*/

/*---breadcrumb---*/
.Wb-breadcrumb .breadcrumb {
  font-size: 12px;
  font-weight: 600
}

.Wb-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  padding-left: 5px;
  padding-right: 5px !important;
}

.Wb-breadcrumb .breadcrumb a {
  color: #4F4F4F;
}

.Wb-breadcrumb .breadcrumb a:hover {
  color: rgba(165, 165, 165, .8);
}

.Wb-breadcrumb .breadcrumb-item.active {
  color: #d63384
}

/*.ribbon-pop {align-items: center;border-top:15px solid #cf9812;border-bottom:15px solid #cf9812;border-right:15px solid transparent;display: flex;height: 0;justify-content: center;left: 0;position: absolute; top: 20px;width:auto;color: #fff;font-size: 12px;font-weight: 600;}*/

.ribbon-pop {
  width: auto;
  height: 30px;
  line-height: 30px;
  position: absolute;
  left: 0px;
  top: 20px;
  background: #cf9812;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.ribbon-pop:after {
  content: "";
  position: absolute;
}

.ribbon-pop:after {
  height: 0;
  width: 0;
  right: -14.1px;
  border-top: 16px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 14px solid #cf9812;
}


.all-detail-bg {
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #ddd;
}

.menu-sec-lft ul {
  padding: 20px 0px 20px 0px;
  text-align: center;
  margin-bottom: 0;
}

.menu-sec-lft li {
  display: inline-block
}

.menu-sec-lft li a {
  color: #212529;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font-heading), serif;
  padding: 0px 30px;
}

.menu-sec-lft li a:hover {
  color: #d63384
}

.menu-sec-lft.vendor li a {
  padding: 0px 45px;
}

.detail_heading {
  font-size: 19px;
  font-weight: 600;
  color: #151617
}

.about_text-area ul {
  padding-left: 18px
}

.Glance_block {
  height: 100%;
  border-bottom: 1px solid #D9D9D9;
  min-height: 95px;
  padding-top: 15px;
}

.venue_glanc {
  background-color: #FFF4FA;
  color: #D63384;
  font-size: 15px;
  font-weight: 600;
  padding: 10px 25px;
  font-family: var(--font-heading), serif;
}

/*----more less css------*/
.trigger-more {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: 0 0;
  border: none;
  float: right;
  color: #D63384;
}

.trigger-more:after {
  font-weight: normal;
  padding-left: 5px;
  font-family: "FontAwesome";
}

.trigger-more:not(.collapsed):after {
  content: "\f077";
  /* Icon for "Less" */
}

.trigger-more.collapsed:after {
  content: "\f078";
  /* Icon for "More" */
}

.target-div {
  display: none;
}


.trigger-more1 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  background: 0 0;
  border: none;
  color: #D63384;
}

.trigger-more1:after {
  font-weight: normal;
  padding-left: 5px;
  font-family: "FontAwesome";
}

.trigger-more1:not(.collapsed):after {
  content: "\f077";
  /* Icon for "Less" */
}

.trigger-more1.collapsed:after {
  content: "\f078";
  /* Icon for "More" */
}

.target-div1 {
  display: none;
}

.target-div1 {
  font-size: 13px;
  font-weight: 600
}

/*----Photo Video Gallery css------*/
.Photo__Gallery .nav-pills .nav-link.active {
  background: transparent;
  color: #D63384;
  border-bottom: 1px solid #D63384;
  border-radius: 0;
}

.Photo__Gallery .nav-link {
  font-weight: 600;
  color: #212529;
  font-size: 14px;
  padding-left: 0;
  padding-right: 0;
  margin-right: 15px;
}

.review_warp {
  border-top: 1px solid #E7E7E7;
  border-bottom: 1px solid #E7E7E7
}

.review_comments p {
  color: #495057;
  font-size: 14px
}

.review_comments span {
  color: #212529;
  font-weight: 600
}

.review_comments .rounded-pill {
  height: 50px;
  width: 50px;
}

.review-v-more {
  border-top: 1px solid #E7E7E7;
  margin-bottom: 5px
}

.Qa h6 {
  font-size: 16px;
  font-weight: 600
}

.Qa p {
  font-size: 15px;
}

.heart-icon {
  display: inline-block;
  color: #d63384;
}

.star-r .rating {
  color: #212529;
  font-size: 13px
}

.star-r .rating strong {
  font-size: 16px
}

.star-r .C-Reviews {
  color: #212529;
  font-size: 14px
}

.Write {
  border-bottom: 2px solid #6C6C6C;
  font-weight: 500;
  font-size: 12px
}

.locati-txt {
  color: #999
}

.View-Location {
  border-bottom: 2px solid #D63384;
  font-weight: 500;
  color: #D63384
}

.starting_price-block {
  border-top: 1px solid #E7E7E7
}



.details_right {
  position: sticky;
  top: 3px;
  margin-bottom: 25px
}

.send {
  background: #D63384;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  border-radius: 50px;
}

.send .icons {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 7px;
  color: #D63384;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.send:hover {
  background: #c32272;
  color: #fff
}

.view {
  background-color: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  font-weight: 600;
  font-size: 14px;
  color: #212529;
  border-radius: 50px;
  border: 2px solid #5BA829
}

.view .icons {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #5BA829;
  margin-right: 7px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.view:hover {
  background: #71bd3f;
  color: #fff
}


.view1 {
  background-color: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0px;
  font-weight: 600;
  border-radius: 50px
}

.view1 .icons {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #5BA829;
  margin-right: 7px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.view1:hover {
  background: #71bd3f;
  color: #fff
}


.form-detail .form-control {
  height: 45px;
  background: #F7F7F7;
  border-color: #F7F7F7;
  font-size: 13px
}

.more-to span {
  background-color: #F2F2F2;
  padding: 4px 11px;
  margin-right: 10px;
  border-radius: 15px;
  display: inline-block;
}

.Browse_Venues-slider .swiper-button-prev,
.highlights-slider .swiper-button-prev {
  margin-left: -5px;
  padding-bottom: 10px;
  top: 45%;
}

.Browse_Venues-slider .swiper-button-next,
.highlights-slider .swiper-button-next {
  margin-right: -5px;
  padding-bottom: 10px;
  top: 45%;
}

.Browse_Venues-slider.swiper {
  padding-left: 5px;
  padding-right: 5px;
  padding-bottom: 10px;
}


.ratevendor .form-control {
  height: 49px;
  font-size: 13px;
}

.ratevendor textarea {
  height: 100px !important;
  resize: none
}

.rate-btn {
  min-width: 100%;
  font-size: 12px;
  padding-top: 16px;
  padding-bottom: 16px;
  font-weight: 600;
  border-radius: 12px;
  display: inline-block;
}


.Enquiry_ribbon {
  font-size: 20px;
  color: #fff;
}

.Enquiry_ribbon {
  --f: .5em;
  /* control the folded part*/
  --r: .8em;
  /* control the ribbon shape */
  position: absolute;
  top: 5px;
  left: -22px;
  padding-inline: 1em;
  line-height: 2.1;
  background: #d63384;
  border-bottom: var(--f) solid #0005;
  border-right: var(--r) solid #0000;
  clip-path: polygon(0 0, 0 calc(100% - var(--f)), var(--f) 100%, var(--f) calc(100% - var(--f)), 100% calc(100% - var(--f)), calc(100% - var(--r)) calc(50% - var(--f)/2), 100% 0);
}


/*-----venue-listing------*/
.search-form .form-group #s {
  font-size: 13px;
  height: 45px;
  border-radius: 12px;
}

.search-form .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%)
}


.city_cats {
  margin-top: 1rem;
  padding-left: 0;
}

.city_cats li {
  margin-right: 0.2rem;
  display: inline-block;
}

.city_cats li a {
  background: #fff;
  padding: 7px 25px;
  border-radius: 12px;
  margin-bottom: 10px;
  display: inline-block;
  border: 1px solid transparent;
  color: #495057;
  font-size: 13px;
  min-width: 100px;
  text-align: center;
}

.city_cats li a:hover {
  background-color: #d63384;
  border-color: #d63384;
  color: #fff
}

.city_cats-more a {
  color: #333333 !important;
  border: 1px solid #979797 !important
}

.city_cats-more a:hover {
  background-color: #d63384 !important;
  border-color: #d63384 !important;
  color: #fff !important;
}

#loading {
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 5px solid #2F7DF2;
  border-radius: 50%;
  border-top-color: #D63384;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.Loading-More {
  display: inline-block;
  height: 29px;
  vertical-align: text-bottom;
}

/*----About us CSS----*/
.alternate-content {
  position: relative;
  min-height: 520px;
}

.alternate-content .image-bg {
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
}

.alternate-content:nth-child(even) .image-bg {
  left: auto;
  right: 0;
  background-position: left center;
}

.alternate-content .alternate-content-block {
  padding-left: 80px;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-right: 30px;
}

.alternate-content:nth-child(even) .alternate-content-block {
  padding-right: 100px;
  padding-left: 0;
}

.alternate-content p {
  font-size: 15px;
  line-height: 1.9;
  color: #444
}

/*----why-us Page css-----*/
.why-us-icon-sec:before {
  background: #FFEEDB;
  height: 250px;
  position: absolute;
  content: "";
  width: 100%;
  z-index: -1;
  bottom: 0
}

.why-us-icon {
  border-bottom: 8px solid #ffd6ea !important;
  margin-bottom: 20px;
  webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
  box-shadow: 0px 0px 18px 5px rgba(154, 161, 171, 0.10);
  min-height: 250px;
}

.why-us-icon:hover {
  background: #fdfdfd;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  -webkit-box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125);
  box-shadow: 0 1rem 3rem rgba(31, 45, 61, 0.125);
}

.why-us_text-area {
  font-size: 15px;
  line-height: 26px;
}

.why-us-icon figure img {
  width: 52px
}


#latest-message-alert {
  display: none
}

.hit-fx {
  height: 35px;
  overflow: hidden;
}

.banq-ico {
  width: 33px
}

/* For Webkit-based browsers (Chrome, Safari) */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

/* For Mozilla Firefox */
input[type=number] {
  -moz-appearance: textfield;
  /* Disables spin buttons */
  appearance: textfield;
}

.category-block img {
  height: 165px
}

/*HOME SELECT2 CSS*/
.search-select-wrapper .select2-container--default .select2-selection--single {
  border: transparent;
  border-radius: 0;
  font-size: 14px;
  padding-left: 13px;
  padding-top: 10px;
}

.search-select-wrapper .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 10px;
}

.select2-dropdown {
  font-size: 13px;
  margin-top: 5px
}

.realwedding-slider .realwedding-content .real-weding23 {
  height: 45px;
  overflow: hidden
}

.realwedding-block .weaddiing-profile img,
.realweddinginner-page .weaddiing-profile img {
  height: 300px
}

.RecentBlogs-section .article-block img {
  height: 310px
}

/*.gallery-slider .feature-block img, .photo-warp .feature-block img{height:195px } */
.featured-section img {
  height: 155px
}

.detail-pg-gallery img {
  height: 120px !important
}

.real-weding24 {
  height: 45px;
  overflow: hidden;
}

.RealWedding .Real-block img {
  height: 300px;
}

.in-photo-list {
  height: 235px
}

.details-banner figure {
  height: 425px;
  overflow: hidden;
  border-radius: 12px;
}


.fiter-new {
  background-color: var(--color-brand-5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #d63384;
}

.fiter-new:hover {
  background-color: var(--color-brand);
  color: #fff;
  cursor: pointer
}


.filters-sidebar .filter-block {
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.filters-sidebar .filter-block-title {
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  letter-spacing: 1.5px;
}

.filters-sidebar .filter-block-title i {
  font-size: 12px;
}

.filters-sidebar .filter-block-body {
  display: none;
  padding-bottom: 10px;
}

.filters-sidebar ul {
  margin: 0;
  padding: 0;
}

.filters-sidebar ul li {
  list-style: none;
}

.filters-sidebar ul li a {
  display: block;
  text-decoration: none;
  margin-top: 2px;
  margin-bottom: 2px;
}

.filters-sidebar ul li a,
.filters-sidebar .custom-control-label {
  font-size: 13px;
  color: #444;
  padding-left: 5px;
}

.filters-sidebar .custom-control.custom-checkbox {
  display: flex;
  align-items: center;
}


.sidebar-box.search-form-wrap {
  position: relative
}

.sidebar-box .search-form {
  margin-bottom: 0
}

#search-results .search-results {
  background: #fff;
  padding: 10px 0 5px 0;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.06);
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
}

#search-results .search-results ul {
  list-style: none;
  padding-left: 15px;
}

#search-results .search-results li {
  border-bottom: 1px solid rgba(192, 201, 210, .2);
  line-height: 25px;
  padding-bottom: 3px;
  font-size: 14px;
}

#search-results .search-results li:last-child {
  border-bottom: none
}



.fiter-new {
  background-color: var(--color-brand-5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  padding: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #d63384;
}

.fiter-new:hover {
  background-color: var(--color-brand);
  color: #fff;
  cursor: pointer
}


.filters-sidebar .filter-block {
  border-top: 1px solid rgba(0, 0, 0, .1);
}

.filters-sidebar .filter-block-title {
  font-size: 12px;
  color: #000;
  text-transform: uppercase;
  padding-top: 12px;
  padding-bottom: 12px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  letter-spacing: 1.5px;
}

.filters-sidebar .filter-block-title i {
  font-size: 12px;
}

.filters-sidebar .filter-block-body {
  display: none;
  padding-bottom: 10px;
}

.filters-sidebar ul {
  margin: 0;
  padding: 0;
}

.filters-sidebar ul li {
  list-style: none;
}

.filters-sidebar ul li a {
  display: block;
  text-decoration: none;
  margin-top: 2px;
  margin-bottom: 2px;
}

.filters-sidebar ul li a,
.filters-sidebar .custom-control-label {
  font-size: 13px;
  color: #444;
  padding-left: 5px;
}

.filters-sidebar .custom-control.custom-checkbox {
  display: flex;
  align-items: center;
}

.city_cats li a.f_active {
  background-color: #d63384;
  border-color: #d63384;
  color: #fff;
}

.ribbon-pop._choice {
  background: #d63384;
}

.ribbon-pop._choice:after {
  right: -15.1px;
  border-left: 14px solid #d63384;
}


.fixed-social {
  position: fixed;
  bottom: 20px;
  left: 5px;
  z-index: 5;
}

.fixed-bt {
  color: #fff;
  font-size: 28px;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50px !important;
}

.fixed-social .whatapp {
  background-color: #10b418;
  margin-top: 5px;
}

.fixed-social .whatapp:hover {
  background-color: #00ab08;
  color: #fff;
}


/* social icon */
.share.facebook {
  background-color: #3b5998;
}

.share.facebook:hover {
  background-color: #2d4373;
}

.share.twitter {
  background-color: #1da1f2;
}

.share.twitter:hover {
  background-color: #0d95e8;
}

.share.pinterest {
  background-color: #e60023;
}

.share.pinterest:hover {
  background-color: #b2001c;
}

.share.linkedin {
  background-color: #0077b5;
}

.share.linkedin:hover {
  background-color: #005582;
}

.share.whatsapp {
  background-color: #25D366;
}

.share.whatsapp:hover {
  background-color: #1DA851;
}

.share.gmail {
  background-color: #D44638;
}

.share.gmail:hover {
  background-color: #B33128;
}

.social .fbtn {
  width: 50px;
  height: 50px;
  display: flex;
  color: #fff;
  text-align: center;
  line-height: 18px;
  float: left;
  align-items: center;
  justify-content: center;
}

.social .fa {
  padding: 15px 0px
}

.share-button {
  text-align: right
}

.share-button.sharer .social.active.top {
  transform: scale(1) translateY(-10px);
}

.share-button.sharer .social.active {
  opacity: 1;
  transition: all 0.4s ease 0s;
  visibility: visible;
}

.share-button.sharer .social.networks-5 {}

.share-button.sharer .social.top {
  margin-top: -80px;
  transform-origin: 0 0 0;
}

.share-button.sharer .social {
  margin-left: -65px;
  opacity: 0;
  transition: all 0.4s ease 0s;
  visibility: hidden;
}


/*#################################################################*/
/*################___________MEDIAQUERIES____________##############*/
/*#################################################################*/

@media screen and (min-width: 1900px) {}

@media screen and (min-width: 1600px) {}

@media screen and (min-width: 1400px) {}

@media (max-width: 1439.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {
  .header-right {
    position: absolute;
    top: 6px;
    right: 12px;
  }

  .header-right .login-btn {
    border-radius: 8px;
    padding: 8px 16px;
    text-transform: uppercase;
    font-size: 12px;
    border: 1px solid #efdce5;
    height: 40px;
    margin-right: 10px;
  }

  .header-right button.navbar-toggler {
    height: 40px;
    border-radius: 8px;
    padding: 3px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 767.98px) {}

@media (max-width: 576.98px) {

  .header-tagline,
  .top-email,
  .hero-section .hero-slider,
  .loginForm .AppFormRight {
    display: none !important
  }

  .header-right {
    top: 11px;
  }

  .header-right .login-btn {
    padding: 8px 10px;
    font-size: 11px;
    margin-right: 8px;
  }

  .header-top .header-top-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .fixed-bt {
    font-size: 32px;
    height: 60px;
    width: 60px;
  }

  .col-auto.header-top-info {
    justify-content: space-between;
    display: flex;
    align-items: center;
    width: 100%;
  }

  .header-navbar {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .navbar-nav {
    margin-top: 20px;
    border-top: 1px solid #c71882;
    background: #f7f7f7;
  }

  .header-navbar .navbar-nav .nav-item .nav-link {
    height: 35px
  }

  .mega-content {
    padding: 15px 5px 15px 5px !important;
  }

  .mega-content .border-end {
    border-right: none !important
  }

  .hero-content {
    padding-top: 40px
  }

  .hero-content h2 {
    font-size: 22px;
    letter-spacing: 0
  }

  .popular-search-wrap {
    padding-top: 25px
  }

  .section-heading h2,
  .sectionhdn {
    font-size: 25px;
  }

  .header-navbar .header-logo .header-logo-img {
    width: 170px;
  }

  .realwedding-block .realwedding-content {
    padding: 52px 10px 13px;
  }

  .realwedding-content p {
    font-size: 13px
  }

  .testimonial-block {
    text-align: center
  }

  .author-text.fs16 {
    font-size: 15px
  }

  .author-img img {
    width: 235px;
    height: 235px;
  }

  .select2-container {
    width: 100% !important;
  }

  .collapse-block .collapse-header {
    padding: 20px;
    font-size: 13px;
  }

  .collapse-block .collapse-header .collapse-icon {
    right: 8px;
  }

  .need-help-sec .btns {
    width: 100%;
  }

  .footer-main {
    padding-top: 20px;
  }

  .info-block {
    margin-top: 10px
  }

  .gototop {
    text-align: center;
    margin-top: 10px;
  }

  /*----Inner pages start CSS----*/
  .city_cats {
    margin-top: 0;
  }

  .alternate-content .image-bg {
    background-repeat: no-repeat;
    background-position: top center !important;
    background-size: cover;
    width: 100%;
    position: relative;
    top: auto !important;
    bottom: auto !important;
    right: auto !important;
    display: block;
    height: 65vh;
  }

  .alternate-content .alternate-content-block {
    padding-top: 40px;
    padding-bottom: 25px;
    padding-right: 0;
    padding-left: 0;
  }

  .alternate-content:nth-child(2n) .alternate-content-block {
    padding-left: 0;
    padding-right: 0;
  }

  .alternate-content {
    min-height: auto;
  }

  .RealWedding .Real-block img {
    max-width: 100%;
  }

  .btns {
    min-width: 100%;
  }

  .hit-fx {
    height: auto;
  }

  .feature-block-content .col-md-4.text-end {
    text-align: left !important;
    margin: 10px 0
  }

  .Wb-breadcrumb .breadcrumb {
    font-size: 11px;
  }

  .venue_glanc {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .review_box .btn-outline-secondary {
    width: 100%;
    margin-bottom: 5px
  }

  .Enquiry_ribbon {
    top: -35px;
  }

  .view1 {
    justify-content: left;
    text-align: left;
    margin-top: 10px
  }

  .review_box .d-flex {
    display: block !important
  }

  .review_box .flex-grow-1.ms-3 {
    margin-left: 0 !important;
    margin-top: 10px
  }

  .menu-sec-lft.vendor li a {
    padding: 0px 25px;
  }

  .venue-search-block img,
  .photo-warp .feature-block img,
  .featured-section img,
  .realwedding-block .weaddiing-profile img,
  .realweddinginner-page .realwedding-block img,
  .RealWedding .Real-block img,
  .in-photo-list,
  .details-banner figure {
    height: auto
  }

  .category-block img {
    height: 110px;
  }
}

.pagination svg {
  width: 40px;
}

.leading-5 {
  margin-top: 12px;
}

.pagination {
  margin: 0 auto;
  text-align: center;
}